-
-
Notifications
You must be signed in to change notification settings - Fork 243
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
582 additions
and
23 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
233 changes: 233 additions & 0 deletions
233
bundles/org.openhab.ui/web/src/components/widgets/layout/oh-canvas-item.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,233 @@ | ||
<template> | ||
<vue-draggable-resizable | ||
:id="'oh-canvas-item-vdr-' +id" | ||
:key="reloadKey" | ||
:x="x" | ||
:y="y" | ||
:w="w" | ||
:h="h" | ||
:parent="true" | ||
:draggable="!!context.editmode" | ||
:resizable="!!context.editmode && !autosize" | ||
:class-name="!!context.editmode ? 'oh-canvas-item-editmode' : 'oh-canvas-item-runmode'" | ||
:grid="gridEnable ? [gridPitch,gridPitch] : undefined" | ||
:min-height="gridEnable ? gridPitch : undefined" | ||
:min-width="gridEnable ? gridPitch : undefined" | ||
v-if="visible" class="oh-canvas-item no-margin" | ||
@dragging="onDrag" | ||
@resizing="onResize" | ||
:on-drag-start="onDragStartCallback" | ||
:on-resize-start="onResizeStartCallback"> | ||
<f7-menu v-if="context.editmode" class="configure-canvas-menu"> | ||
<f7-menu-item icon-f7="menu" dropdown icon-only> | ||
<f7-menu-dropdown right> | ||
<f7-menu-dropdown-item @click="context.editmode.configureWidget(context.component, context.parent)" href="#" text="Configure container" /> | ||
<f7-menu-dropdown-item v-if="context.component.slots.default.length > 0" @click="context.editmode.configureWidget(context.component.slots.default[0], context)" href="#" text="Configure Widget" /> | ||
<f7-menu-dropdown-item @click="context.editmode.editWidgetCode(context.component, context.parent)" href="#" text="Edit YAML" /> | ||
<f7-menu-dropdown-item v-if="context.component.slots.default.length > 0" @click="toggleAutoSize()" href="#"> | ||
<span>Auto Size</span> | ||
<f7-icon class="margin-left" :f7="autosize ? 'checkmark_square' : 'square'" /> | ||
</f7-menu-dropdown-item> | ||
<f7-menu-dropdown-item v-if="context.component.slots.default.length > 0" @click="toggleShadow()" href="#"> | ||
<span>Shadow</span> | ||
<f7-icon class="margin-left" :f7="shadow ? 'checkmark_square' : 'square'" /> | ||
</f7-menu-dropdown-item> | ||
<f7-menu-dropdown-item v-if="context.component.slots.default.length > 0" divider /> | ||
<f7-menu-dropdown-item @click="context.editmode.copyWidget(context.component, context.parent)" href="#" text="Copy" /> | ||
<f7-menu-dropdown-item divider /> | ||
<f7-menu-dropdown-item @click="context.editmode.bringWidgetToFront(context.component, context.parent, 'canvas')" href="#" text="Bring to Front" /> | ||
<f7-menu-dropdown-item @click="context.editmode.moveWidgetDown(context.component, context.parent, 'canvas')" href="#" text="Move Up" /> | ||
<f7-menu-dropdown-item @click="context.editmode.moveWidgetUp(context.component, context.parent, 'canvas')" href="#" text="Move Down" /> | ||
<f7-menu-dropdown-item @click="context.editmode.sendWidgetToBack(context.component, context.parent, 'canvas')" href="#" text="Send to Back" /> | ||
<f7-menu-dropdown-item divider /> | ||
<f7-menu-dropdown-item @click="context.editmode.removeWidget(context.component, context.parent, 'canvas')" href="#" text="Remove Item" /> | ||
</f7-menu-dropdown> | ||
</f7-menu-item> | ||
</f7-menu> | ||
<div @click.capture="eventControl" style="width: 100%; height: 100%; position:absolute;"> | ||
<oh-placeholder-widget v-if="context.editmode && !context.component.slots.default.length" @click="context.editmode.addWidget(context.component, null, context.parent)" class="oh-canvas-item-content" /> | ||
<generic-widget-component v-else-if="context.component.slots.default.length" :context="childContext(context.component.slots.default[0])" @command="onCommand" class="oh-canvas-item-content" | ||
:class="{ | ||
'oh-canvas-item-styled' : styled, | ||
'oh-canvas-item-shadow' : styled && shadow | ||
}" /> | ||
</div> | ||
<f7-icon v-if="context.editmode" class="drag-handle" f7="move" size="15" color="gray" /> | ||
</vue-draggable-resizable> | ||
</template> | ||
|
||
<style lang="stylus"> | ||
.oh-canvas-item-editmode | ||
outline 1px dashed #F00 | ||
.oh-canvas-item | ||
position absolute | ||
.oh-canvas-item-content | ||
width 100% | ||
height 100% | ||
margin 0 | ||
.oh-canvas-item-styled // override background obscuring styles from system widgets | ||
&.card // apply to card items | ||
box-shadow none | ||
background none | ||
.card-content, .card-footer | ||
.segmented, .stepper, .toggle | ||
background var(--f7-card-bg-color) | ||
.oh-canvas-item-shadow // shadow tuned to various card widgets | ||
&.card // apply to card items | ||
.card-content, .card-footer | ||
.segmented, .stepper, .toggle | ||
box-shadow var(--oh-canvas-item-box-shadow) | ||
.oh-slider | ||
.range-bar, .range-knob, .range-knob-label | ||
box-shadow var(--oh-canvas-item-box-shadow) | ||
img, svg | ||
filter var(--oh-canvas-item-svg-shadow) | ||
.label-card-content | ||
text-shadow var(--oh-canvas-item-text-shadow) | ||
.placeholder-widget a | ||
height 100% | ||
padding 0 | ||
display flex | ||
.drag-handle // show drag handle on upper left corner | ||
position absolute !important | ||
top 0px | ||
left 0px | ||
padding 2px | ||
z-index 1000 | ||
.configure-canvas-menu // show menu icon on upper right corner | ||
position absolute | ||
top 2px | ||
right 2px | ||
.menu-inner | ||
padding 0px | ||
.menu-inner:after | ||
width 0px | ||
</style> | ||
|
||
<script> | ||
import mixin from '../widget-mixin' | ||
import OhPlaceholderWidget from './oh-placeholder-widget.vue' | ||
import { OhCanvasItemDefinition } from '@/assets/definitions/widgets/layout' | ||
export default { | ||
mixins: [mixin], | ||
widget: OhCanvasItemDefinition, | ||
components: { | ||
'vue-draggable-resizable': | ||
() => import('vue-draggable-resizable'), | ||
OhPlaceholderWidget | ||
}, | ||
props: { | ||
gridPitch: Number, | ||
gridEnable: Boolean, | ||
id: String | ||
}, | ||
data () { | ||
return { | ||
x: 0, | ||
y: 0, | ||
w: 0, | ||
h: 0, | ||
reloadKey: 0, | ||
shadow: true, | ||
styled: true | ||
} | ||
}, | ||
created () { | ||
this.x = this.config.x || 20 | ||
this.y = this.config.y || 20 | ||
this.w = this.config.w || 100 | ||
this.h = this.config.h || 100 | ||
this.shadow = !this.config.noCanvasShadow | ||
this.styled = !this.config.notStyled | ||
}, | ||
computed: { | ||
autosize () { | ||
return this.w === 'auto' | ||
} | ||
}, | ||
methods: { | ||
toggleAutoSize () { | ||
if (this.w === 'auto') { | ||
const elem = document.getElementById('oh-canvas-item-vdr-' + this.id) | ||
this.w = this.context.component.config.w = Math.max(10, elem.clientWidth) | ||
this.h = this.context.component.config.h = Math.max(10, elem.clientHeight) | ||
} else { | ||
this.w = this.context.component.config.w = 'auto' | ||
this.h = this.context.component.config.h = 'auto' | ||
this.reloadKey += 1 | ||
} | ||
}, | ||
toggleShadow () { | ||
this.shadow = !this.shadow | ||
this.context.component.config.noCanvasShadow = !this.shadow | ||
}, | ||
onResize (x, y, width, height) { | ||
this.x = this.context.component.config.x = x | ||
this.y = this.context.component.config.y = y | ||
this.w = this.context.component.config.w = width | ||
this.h = this.context.component.config.h = height | ||
}, | ||
onDrag (x, y) { | ||
this.x = this.context.component.config.x = x | ||
this.y = this.context.component.config.y = y | ||
}, | ||
onResizeStartCallback (ev) { | ||
if (this.w === 'auto' || this.h === 'auto') { | ||
return false | ||
} | ||
const posOK = this.onDragStartCallback(ev) | ||
if (this.gridEnable) { | ||
const snapW = Math.round(this.w / this.gridPitch) * this.gridPitch | ||
const snapH = Math.round(this.h / this.gridPitch) * this.gridPitch | ||
if (this.w === snapW && this.h === snapH) { | ||
// Widget already on grid, can continue to resize | ||
return true && posOK | ||
} else { | ||
// Widget was not on grid, snap to grid upon first action | ||
this.w = this.context.component.config.w = snapW | ||
this.h = this.context.component.config.h = snapH | ||
return false | ||
} | ||
} else { | ||
return true | ||
} | ||
}, | ||
onDragStartCallback (ev) { | ||
if (this.gridEnable) { | ||
const snapX = Math.round(this.x / this.gridPitch) * this.gridPitch | ||
const snapY = Math.round(this.y / this.gridPitch) * this.gridPitch | ||
if (this.x === snapX && this.y === snapY) { | ||
// Origin on grid, continue dragging action | ||
return true | ||
} else { | ||
// First snap to grid component and stop action | ||
this.x = this.context.component.config.x = snapX | ||
this.y = this.context.component.config.y = snapY | ||
return false | ||
} | ||
} else { | ||
return true | ||
} | ||
}, | ||
eventControl (ev) { | ||
// Events are captured before bubbling to prevent undesired widget interaction when a widget has been | ||
// added but the page is in edit mode. | ||
if (this.context.editmode && this.context.component.slots.default.length > 0) { | ||
ev.stopPropagation() | ||
ev.preventDefault() | ||
} | ||
} | ||
} | ||
} | ||
</script> |
Oops, something went wrong.