forked from platypush/platypush
[#341] Added return
block to ProcedureEditor
.
This commit is contained in:
parent
152c2020de
commit
b337bf7a53
5 changed files with 362 additions and 46 deletions
|
@ -9,13 +9,12 @@
|
||||||
|
|
||||||
<div class="actions" :class="{dragging: isDragging}">
|
<div class="actions" :class="{dragging: isDragging}">
|
||||||
<div class="row item action"
|
<div class="row item action"
|
||||||
v-for="(action, index) in newValue"
|
v-for="(action, index) in visibleActions"
|
||||||
:key="index">
|
:key="index">
|
||||||
<ConditionBlock v-bind="componentsData[index].props"
|
<ConditionBlock v-bind="componentsData[index].props"
|
||||||
v-on="componentsData[index].on"
|
v-on="componentsData[index].on"
|
||||||
:collapsed="collapsedBlocks[index]"
|
:collapsed="collapsedBlocks[index]"
|
||||||
:dragging="isDragging"
|
:dragging="isDragging"
|
||||||
:has-else="!!elses[index + 1]"
|
|
||||||
@add-else="addElse"
|
@add-else="addElse"
|
||||||
v-if="conditions[index]" />
|
v-if="conditions[index]" />
|
||||||
|
|
||||||
|
@ -26,12 +25,18 @@
|
||||||
:is-else="true"
|
:is-else="true"
|
||||||
v-else-if="elses[index]" />
|
v-else-if="elses[index]" />
|
||||||
|
|
||||||
|
<ReturnTile v-bind="componentsData[index].props"
|
||||||
|
:value="returnValue"
|
||||||
|
@change="editReturn($event)"
|
||||||
|
@delete="deleteAction(index)"
|
||||||
|
v-else-if="isReturn(action)" />
|
||||||
|
|
||||||
<ActionsListItem v-bind="componentsData[index].props"
|
<ActionsListItem v-bind="componentsData[index].props"
|
||||||
v-on="componentsData[index].on"
|
v-on="componentsData[index].on"
|
||||||
v-else-if="isAction(action) && !collapsed" />
|
v-else-if="isAction(action) && !collapsed" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="row item action add-action-container" v-if="!readOnly && !collapsed">
|
<div class="row item action add-action-container" v-if="visibleAddButtons.action">
|
||||||
<ListItem :active="isDragging"
|
<ListItem :active="isDragging"
|
||||||
:readOnly="false"
|
:readOnly="false"
|
||||||
:spacerBottom="false"
|
:spacerBottom="false"
|
||||||
|
@ -44,16 +49,27 @@
|
||||||
</ListItem>
|
</ListItem>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="row item action add-if-container" v-if="!readOnly && !collapsed">
|
<div class="add-buttons-expander" v-if="showAddButtonsExpander">
|
||||||
|
<button @click.stop.prevent="collapseAddButtons = !collapseAddButtons">
|
||||||
|
<i class="fas" :class="collapseAddButtons ? 'fa-angle-down' : 'fa-angle-up'" />
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="extra-add-buttons fade-in" v-if="showAddButtons">
|
||||||
|
<div class="row item action add-return-container" v-if="visibleAddButtons.return">
|
||||||
|
<AddTile icon="fas fa-angle-right" title="Add Return" @click="addReturn" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row item action add-if-container" v-if="visibleAddButtons.condition">
|
||||||
<AddTile icon="fas fa-question" title="Add Condition" @click="addCondition" />
|
<AddTile icon="fas fa-question" title="Add Condition" @click="addCondition" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="row item action add-else-container"
|
<div class="row item action add-else-container" v-if="visibleAddButtons.else">
|
||||||
v-if="!readOnly && !collapsed && parent && getCondition(parent) && !hasElse">
|
|
||||||
<AddTile icon="fas fa-question" title="Add Else" @click="$emit('add-else')" />
|
<AddTile icon="fas fa-question" title="Add Else" @click="$emit('add-else')" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
@ -63,6 +79,7 @@ import AddTile from "./AddTile"
|
||||||
import ConditionBlock from "./ConditionBlock"
|
import ConditionBlock from "./ConditionBlock"
|
||||||
import ListItem from "./ListItem"
|
import ListItem from "./ListItem"
|
||||||
import Mixin from "./Mixin"
|
import Mixin from "./Mixin"
|
||||||
|
import ReturnTile from "./ReturnTile"
|
||||||
import Utils from "@/Utils"
|
import Utils from "@/Utils"
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
@ -88,6 +105,7 @@ export default {
|
||||||
AddTile,
|
AddTile,
|
||||||
ConditionBlock,
|
ConditionBlock,
|
||||||
ListItem,
|
ListItem,
|
||||||
|
ReturnTile,
|
||||||
},
|
},
|
||||||
|
|
||||||
props: {
|
props: {
|
||||||
|
@ -132,6 +150,7 @@ export default {
|
||||||
|
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
collapseAddButtons: true,
|
||||||
newValue: [],
|
newValue: [],
|
||||||
dragIndices: undefined,
|
dragIndices: undefined,
|
||||||
initialValue: undefined,
|
initialValue: undefined,
|
||||||
|
@ -192,6 +211,14 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (
|
||||||
|
this.getCondition(action) &&
|
||||||
|
this.newValue[index + 1] &&
|
||||||
|
this.isElse(this.newValue[index + 1])
|
||||||
|
) {
|
||||||
|
data.props.hasElse = true
|
||||||
|
}
|
||||||
|
|
||||||
if (this.isActionsBlock(action)) {
|
if (this.isActionsBlock(action)) {
|
||||||
data.props.indent = this.indent + 1
|
data.props.indent = this.indent + 1
|
||||||
}
|
}
|
||||||
|
@ -274,6 +301,91 @@ export default {
|
||||||
return this.dragIndices?.[0]
|
return this.dragIndices?.[0]
|
||||||
},
|
},
|
||||||
|
|
||||||
|
returnIndex() {
|
||||||
|
const ret = this.newValue?.reduce?.((acc, action, index) => {
|
||||||
|
if (acc >= 0)
|
||||||
|
return acc
|
||||||
|
|
||||||
|
if (this.isReturn(action))
|
||||||
|
return index
|
||||||
|
|
||||||
|
return acc
|
||||||
|
}, -1)
|
||||||
|
|
||||||
|
return ret >= 0 ? ret : null
|
||||||
|
},
|
||||||
|
|
||||||
|
returnValue() {
|
||||||
|
if (this.returnIndex == null)
|
||||||
|
return ''
|
||||||
|
|
||||||
|
const ret = this.newValue[this.returnIndex]
|
||||||
|
if (ret == null)
|
||||||
|
return ''
|
||||||
|
|
||||||
|
let retValue = null
|
||||||
|
if (Array.isArray(ret))
|
||||||
|
retValue = ret.length === 1 ? ret[0].match(/^return\s*(.*)$/)?.[1] : ret
|
||||||
|
else
|
||||||
|
retValue = ret.return
|
||||||
|
|
||||||
|
return retValue || ''
|
||||||
|
},
|
||||||
|
|
||||||
|
showAddButtons() {
|
||||||
|
return (
|
||||||
|
this.newValue.length === 0 || !this.collapseAddButtons
|
||||||
|
)
|
||||||
|
},
|
||||||
|
|
||||||
|
showAddButtonsExpander() {
|
||||||
|
return (
|
||||||
|
!this.readOnly &&
|
||||||
|
this.newValue?.length > 0 &&
|
||||||
|
Object.entries(this.visibleAddButtons).filter(
|
||||||
|
([key, value]) => value && key != 'action'
|
||||||
|
).length > 1
|
||||||
|
)
|
||||||
|
},
|
||||||
|
|
||||||
|
stopIndex() {
|
||||||
|
return this.returnIndex
|
||||||
|
},
|
||||||
|
|
||||||
|
visibleActions() {
|
||||||
|
return this.newValue.reduce((acc, action, index) => {
|
||||||
|
if (this.stopIndex != null && index > this.stopIndex)
|
||||||
|
return acc
|
||||||
|
|
||||||
|
if (
|
||||||
|
this.conditions[index] ||
|
||||||
|
this.elses[index] ||
|
||||||
|
this.isAction(action) ||
|
||||||
|
this.isReturn(action)
|
||||||
|
) {
|
||||||
|
acc[index] = action
|
||||||
|
}
|
||||||
|
|
||||||
|
return acc
|
||||||
|
}, {})
|
||||||
|
},
|
||||||
|
|
||||||
|
visibleAddButtons() {
|
||||||
|
return {
|
||||||
|
action: !this.readOnly && !this.collapsed && this.stopIndex == null,
|
||||||
|
return: !this.readOnly && !this.collapsed && this.stopIndex == null,
|
||||||
|
condition: !this.readOnly && !this.collapsed && this.stopIndex == null,
|
||||||
|
else: (
|
||||||
|
!this.readOnly &&
|
||||||
|
!this.collapsed &&
|
||||||
|
this.parent &&
|
||||||
|
this.getCondition(this.parent) &&
|
||||||
|
!this.hasElse &&
|
||||||
|
this.stopIndex == null
|
||||||
|
),
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
visibleTopSpacers() {
|
visibleTopSpacers() {
|
||||||
const dragIndex = this.dragIndex
|
const dragIndex = this.dragIndex
|
||||||
return this.newValue.reduce((acc, tile, index) => {
|
return this.newValue.reduce((acc, tile, index) => {
|
||||||
|
@ -361,24 +473,21 @@ export default {
|
||||||
}
|
}
|
||||||
|
|
||||||
event.stopPropagation()
|
event.stopPropagation()
|
||||||
|
let dropIndices = []
|
||||||
|
|
||||||
if (!event.detail?.length) {
|
if (!event.detail?.length) {
|
||||||
event = new CustomEvent(
|
dropIndices = [dropIndex]
|
||||||
'drop', {
|
|
||||||
bubbles: false,
|
|
||||||
cancelable: true,
|
|
||||||
detail: [dropIndex],
|
|
||||||
}
|
|
||||||
)
|
|
||||||
} else {
|
} else {
|
||||||
|
dropIndices = [dropIndex, ...event.detail]
|
||||||
|
}
|
||||||
|
|
||||||
event = new CustomEvent(
|
event = new CustomEvent(
|
||||||
'drop', {
|
'drop', {
|
||||||
bubbles: false,
|
bubbles: false,
|
||||||
cancelable: true,
|
cancelable: true,
|
||||||
detail: [dropIndex, ...event.detail],
|
detail: dropIndices,
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
}
|
|
||||||
|
|
||||||
if (this.indent > 0) {
|
if (this.indent > 0) {
|
||||||
// If the current drop location is within a nested block, then we need to
|
// If the current drop location is within a nested block, then we need to
|
||||||
|
@ -389,7 +498,6 @@ export default {
|
||||||
|
|
||||||
// If we are at the root level, then we have the full picture of the underlying
|
// If we are at the root level, then we have the full picture of the underlying
|
||||||
// data structure, and we can perform the drop operation directly.
|
// data structure, and we can perform the drop operation directly.
|
||||||
const dropIndices = event.detail
|
|
||||||
const dragIndex = this.dragIndices.slice(-1)[0]
|
const dragIndex = this.dragIndices.slice(-1)[0]
|
||||||
dropIndex = event.detail.slice(-1)[0]
|
dropIndex = event.detail.slice(-1)[0]
|
||||||
|
|
||||||
|
@ -435,7 +543,6 @@ export default {
|
||||||
let parent = this.newValue
|
let parent = this.newValue
|
||||||
while (parent && indices.length > 1) {
|
while (parent && indices.length > 1) {
|
||||||
parent = parent[indices.shift()]
|
parent = parent[indices.shift()]
|
||||||
}
|
|
||||||
|
|
||||||
if (parent) {
|
if (parent) {
|
||||||
const blockKey = this.getKey(parent)
|
const blockKey = this.getKey(parent)
|
||||||
|
@ -443,6 +550,7 @@ export default {
|
||||||
parent = parent[blockKey]
|
parent = parent[blockKey]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return parent
|
return parent
|
||||||
},
|
},
|
||||||
|
@ -462,11 +570,29 @@ export default {
|
||||||
},
|
},
|
||||||
|
|
||||||
addAction(action) {
|
addAction(action) {
|
||||||
this.newValue.push(action)
|
this.newValue.push(
|
||||||
|
{
|
||||||
|
...action,
|
||||||
|
action: action.name || action.action,
|
||||||
|
}
|
||||||
|
)
|
||||||
},
|
},
|
||||||
|
|
||||||
addCondition() {
|
addCondition() {
|
||||||
this.newValue.push({ 'if ${True}': [] })
|
this.newValue.push({ 'if ${True}': [] })
|
||||||
|
this.selectLastExprEditor()
|
||||||
|
},
|
||||||
|
|
||||||
|
addReturn() {
|
||||||
|
this.newValue.push({ 'return': null })
|
||||||
|
this.selectLastExprEditor()
|
||||||
|
},
|
||||||
|
|
||||||
|
editReturn(value) {
|
||||||
|
this.newValue[this.returnIndex] = { 'return': value?.length ? value : null }
|
||||||
|
},
|
||||||
|
|
||||||
|
selectLastExprEditor() {
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
const newTile = this.$refs[`action-tile-${this.newValue.length - 1}`]?.[0]
|
const newTile = this.$refs[`action-tile-${this.newValue.length - 1}`]?.[0]
|
||||||
if (!newTile) {
|
if (!newTile) {
|
||||||
|
@ -480,12 +606,12 @@ export default {
|
||||||
|
|
||||||
newTileElement.click()
|
newTileElement.click()
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
const conditionEditor = newTile.$el?.querySelector('.condition-editor-container')
|
const exprEditor = newTile.$el?.querySelector('.expr-editor-container')
|
||||||
if (!conditionEditor) {
|
if (!exprEditor) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
const input = conditionEditor.querySelector('input[type="text"]')
|
const input = exprEditor.querySelector('input[type="text"]')
|
||||||
if (!input) {
|
if (!input) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
@ -611,5 +737,28 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.add-buttons-expander {
|
||||||
|
width: 100%;
|
||||||
|
height: 1em;
|
||||||
|
margin: -0.5em 0 0.5em 0;
|
||||||
|
|
||||||
|
button {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
background: none;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
border: none;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0.5em 0 0 0;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: $default-hover-fg;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -46,17 +46,19 @@
|
||||||
<Modal title="Edit Condition"
|
<Modal title="Edit Condition"
|
||||||
:visible="true"
|
:visible="true"
|
||||||
@close="showConditionEditor = false">
|
@close="showConditionEditor = false">
|
||||||
<ConditionEditor :value="value"
|
<ExpressionEditor :value="value"
|
||||||
ref="conditionEditor"
|
ref="conditionEditor"
|
||||||
@input.prevent.stop="onConditionChange"
|
@input.prevent.stop="onConditionChange"
|
||||||
v-if="showConditionEditor" />
|
v-if="showConditionEditor">
|
||||||
|
Condition
|
||||||
|
</ExpressionEditor>
|
||||||
</Modal>
|
</Modal>
|
||||||
</div>
|
</div>
|
||||||
</ListItem>
|
</ListItem>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import ConditionEditor from "./ConditionEditor"
|
import ExpressionEditor from "./ExpressionEditor"
|
||||||
import ListItem from "./ListItem"
|
import ListItem from "./ListItem"
|
||||||
import Modal from "@/components/Modal"
|
import Modal from "@/components/Modal"
|
||||||
import Tile from "@/components/elements/Tile"
|
import Tile from "@/components/elements/Tile"
|
||||||
|
@ -76,7 +78,7 @@ export default {
|
||||||
],
|
],
|
||||||
|
|
||||||
components: {
|
components: {
|
||||||
ConditionEditor,
|
ExpressionEditor,
|
||||||
ListItem,
|
ListItem,
|
||||||
Modal,
|
Modal,
|
||||||
Tile,
|
Tile,
|
||||||
|
|
|
@ -1,11 +1,13 @@
|
||||||
<template>
|
<template>
|
||||||
<form class="condition-editor" @submit.prevent.stop="onSubmit">
|
<form class="expression-editor" @submit.prevent.stop="onSubmit">
|
||||||
<label for="condition">
|
<label for="expression">
|
||||||
Condition
|
<slot />
|
||||||
|
|
||||||
<input type="text"
|
<input type="text"
|
||||||
name="condition"
|
name="expression"
|
||||||
autocomplete="off"
|
autocomplete="off"
|
||||||
:autofocus="true"
|
:autofocus="true"
|
||||||
|
:placeholder="placeholder"
|
||||||
:value="value"
|
:value="value"
|
||||||
ref="text"
|
ref="text"
|
||||||
@input.stop="onInput" />
|
@input.stop="onInput" />
|
||||||
|
@ -28,7 +30,17 @@ export default {
|
||||||
props: {
|
props: {
|
||||||
value: {
|
value: {
|
||||||
type: String,
|
type: String,
|
||||||
required: true,
|
default: '',
|
||||||
|
},
|
||||||
|
|
||||||
|
allowEmpty: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
|
|
||||||
|
placeholder: {
|
||||||
|
type: String,
|
||||||
|
default: '',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -41,7 +53,7 @@ export default {
|
||||||
methods: {
|
methods: {
|
||||||
onSubmit(event) {
|
onSubmit(event) {
|
||||||
const value = this.$refs.text.value.trim()
|
const value = this.$refs.text.value.trim()
|
||||||
if (!value.length) {
|
if (!value.length && !this.allowEmpty) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -52,7 +64,7 @@ export default {
|
||||||
onInput(event) {
|
onInput(event) {
|
||||||
const value = '' + event.target.value
|
const value = '' + event.target.value
|
||||||
if (!value?.trim()?.length) {
|
if (!value?.trim()?.length) {
|
||||||
this.hasChanges = false
|
this.hasChanges = this.allowEmpty
|
||||||
} else {
|
} else {
|
||||||
this.hasChanges = value !== this.value
|
this.hasChanges = value !== this.value
|
||||||
}
|
}
|
||||||
|
@ -70,6 +82,11 @@ export default {
|
||||||
},
|
},
|
||||||
|
|
||||||
mounted() {
|
mounted() {
|
||||||
|
this.hasChanges = false
|
||||||
|
if (!this.value?.trim()?.length) {
|
||||||
|
this.hasChanges = this.allowEmpty
|
||||||
|
}
|
||||||
|
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.$refs.text.focus()
|
this.$refs.text.focus()
|
||||||
})
|
})
|
||||||
|
@ -80,7 +97,7 @@ export default {
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
@import "common";
|
@import "common";
|
||||||
|
|
||||||
.condition-editor {
|
.expression-editor {
|
||||||
min-width: 40em;
|
min-width: 40em;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
display: flex;
|
display: flex;
|
|
@ -31,6 +31,16 @@ export default {
|
||||||
isElse(value) {
|
isElse(value) {
|
||||||
return (this.getKey(value) || value)?.toLowerCase?.()?.trim?.() === 'else'
|
return (this.getKey(value) || value)?.toLowerCase?.()?.trim?.() === 'else'
|
||||||
},
|
},
|
||||||
|
|
||||||
|
isReturn(value) {
|
||||||
|
if (!value)
|
||||||
|
return false
|
||||||
|
|
||||||
|
if (Array.isArray(value))
|
||||||
|
return value.length === 1 && value[0]?.length && value[0].match(/^return\s*$/i)
|
||||||
|
|
||||||
|
return this.getKey(value) === 'return'
|
||||||
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -0,0 +1,138 @@
|
||||||
|
<template>
|
||||||
|
<ListItem class="return-tile"
|
||||||
|
:value="value"
|
||||||
|
:active="active"
|
||||||
|
:read-only="readOnly"
|
||||||
|
:spacer-bottom="spacerBottom"
|
||||||
|
:spacer-top="spacerTop"
|
||||||
|
@input="$emit('input', $event)">
|
||||||
|
<Tile v-bind="tileConf.props"
|
||||||
|
v-on="tileConf.on"
|
||||||
|
@click.stop="showExprEditor = true">
|
||||||
|
<div class="tile-name">
|
||||||
|
<span class="icon">
|
||||||
|
<i class="fas fa-angle-right" />
|
||||||
|
</span>
|
||||||
|
<span class="name">
|
||||||
|
<span class="keyword">return</span> <span class="code" v-text="value" />
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</Tile>
|
||||||
|
|
||||||
|
<div class="expr-editor-container" v-if="showExprEditor && !readOnly">
|
||||||
|
<Modal title="Edit Return"
|
||||||
|
:visible="true"
|
||||||
|
@close="showExprEditor = false">
|
||||||
|
<ExpressionEditor :value="value"
|
||||||
|
:allow-empty="true"
|
||||||
|
placeholder="Optional return value"
|
||||||
|
ref="exprEditor"
|
||||||
|
@input.prevent.stop="onExprChange"
|
||||||
|
v-if="showExprEditor">
|
||||||
|
Value or Expression
|
||||||
|
</ExpressionEditor>
|
||||||
|
</Modal>
|
||||||
|
</div>
|
||||||
|
</ListItem>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import ExpressionEditor from "./ExpressionEditor"
|
||||||
|
import ListItem from "./ListItem"
|
||||||
|
import Modal from "@/components/Modal"
|
||||||
|
import Tile from "@/components/elements/Tile"
|
||||||
|
|
||||||
|
export default {
|
||||||
|
emits: [
|
||||||
|
'change',
|
||||||
|
'click',
|
||||||
|
'delete',
|
||||||
|
'input',
|
||||||
|
],
|
||||||
|
|
||||||
|
components: {
|
||||||
|
ExpressionEditor,
|
||||||
|
ListItem,
|
||||||
|
Modal,
|
||||||
|
Tile,
|
||||||
|
},
|
||||||
|
|
||||||
|
props: {
|
||||||
|
value: {
|
||||||
|
type: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
|
||||||
|
active: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
|
|
||||||
|
isElse: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
|
|
||||||
|
readOnly: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
|
|
||||||
|
spacerBottom: {
|
||||||
|
type: Boolean,
|
||||||
|
default: true,
|
||||||
|
},
|
||||||
|
|
||||||
|
spacerTop: {
|
||||||
|
type: Boolean,
|
||||||
|
default: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
computed: {
|
||||||
|
tileConf() {
|
||||||
|
return {
|
||||||
|
props: {
|
||||||
|
value: this.value,
|
||||||
|
class: 'keyword',
|
||||||
|
draggable: false,
|
||||||
|
readOnly: this.readOnly,
|
||||||
|
withDelete: !this.readOnly,
|
||||||
|
},
|
||||||
|
|
||||||
|
on: {
|
||||||
|
delete: () => this.$emit('delete'),
|
||||||
|
input: this.onInput,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
showExprEditor: false,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
methods: {
|
||||||
|
onExprChange(event) {
|
||||||
|
this.showExprEditor = false
|
||||||
|
if (this.readOnly) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
const expr = event.target.value?.trim()
|
||||||
|
event.target.value = expr
|
||||||
|
this.$emit('change', expr)
|
||||||
|
},
|
||||||
|
|
||||||
|
onInput(value) {
|
||||||
|
if (!value || this.readOnly) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
this.$emit('input', value)
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
Loading…
Reference in a new issue