2019-06-23 03:35:23 -07:00
|
|
|
<template>
|
|
|
|
<div v-if="dialogVisible" @keydown.stop>
|
|
|
|
<el-dialog :visible="dialogVisible" custom-class="expression-dialog" append-to-body width="80%" title="Edit Expression" :before-close="closeDialog">
|
|
|
|
<el-row>
|
|
|
|
<el-col :span="8">
|
|
|
|
<div class="header-side-menu">
|
|
|
|
<div class="headline">
|
|
|
|
Edit Expression
|
|
|
|
</div>
|
|
|
|
<div class="sub-headline">
|
|
|
|
Variable Selector
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="variable-selector">
|
|
|
|
<variable-selector :path="path" @itemSelected="itemSelected"></variable-selector>
|
|
|
|
</div>
|
|
|
|
</el-col>
|
|
|
|
<el-col :span="16" class="right-side">
|
|
|
|
<div class="expression-editor-wrapper">
|
|
|
|
<div class="editor-description">
|
|
|
|
Expression
|
|
|
|
</div>
|
|
|
|
<div class="expression-editor">
|
|
|
|
<expression-input :parameter="parameter" ref="inputFieldExpression" rows="8" :value="value" :path="path" @change="valueChanged" @keydown.stop="noOp"></expression-input>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="expression-result-wrapper">
|
|
|
|
<div class="editor-description">
|
|
|
|
Result
|
|
|
|
</div>
|
2021-05-29 19:08:41 -07:00
|
|
|
<expression-input :parameter="parameter" resolvedValue="true" ref="expressionResult" rows="8" :value="displayValue" :path="path"></expression-input>
|
2019-06-23 03:35:23 -07:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</el-col>
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
</el-dialog>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import ExpressionInput from '@/components/ExpressionInput.vue';
|
|
|
|
import VariableSelector from '@/components/VariableSelector.vue';
|
|
|
|
|
|
|
|
import { IVariableItemSelected } from '@/Interface';
|
|
|
|
|
2021-05-11 20:12:53 -07:00
|
|
|
import { externalHooks } from '@/components/mixins/externalHooks';
|
2021-05-29 19:08:41 -07:00
|
|
|
import { genericHelpers } from '@/components/mixins/genericHelpers';
|
2021-05-11 20:12:53 -07:00
|
|
|
|
|
|
|
import mixins from 'vue-typed-mixins';
|
|
|
|
|
2021-05-29 19:08:41 -07:00
|
|
|
export default mixins(
|
|
|
|
externalHooks,
|
|
|
|
genericHelpers,
|
|
|
|
).extend({
|
2019-06-23 03:35:23 -07:00
|
|
|
name: 'ExpressionEdit',
|
|
|
|
props: [
|
|
|
|
'dialogVisible',
|
|
|
|
'parameter',
|
|
|
|
'path',
|
|
|
|
'value',
|
|
|
|
],
|
|
|
|
components: {
|
|
|
|
ExpressionInput,
|
|
|
|
VariableSelector,
|
|
|
|
},
|
|
|
|
data () {
|
|
|
|
return {
|
2021-05-29 19:08:41 -07:00
|
|
|
displayValue: '',
|
|
|
|
latestValue: '',
|
2019-06-23 03:35:23 -07:00
|
|
|
};
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
valueChanged (value: string) {
|
2021-05-29 19:08:41 -07:00
|
|
|
this.latestValue = value;
|
|
|
|
this.callDebounced('updateDisplayValue', 500);
|
|
|
|
},
|
|
|
|
|
|
|
|
updateDisplayValue () {
|
|
|
|
this.displayValue = this.latestValue;
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
closeDialog () {
|
|
|
|
// Handle the close externally as the visible parameter is an external prop
|
|
|
|
// and is so not allowed to be changed here.
|
2021-05-29 19:08:41 -07:00
|
|
|
this.$emit('valueChanged', this.latestValue);
|
2019-06-23 03:35:23 -07:00
|
|
|
this.$emit('closeDialog');
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
|
|
|
|
itemSelected (eventData: IVariableItemSelected) {
|
2021-05-11 20:12:53 -07:00
|
|
|
// User inserted item from Expression Editor variable selector
|
2019-06-23 03:35:23 -07:00
|
|
|
(this.$refs.inputFieldExpression as any).itemSelected(eventData); // tslint:disable-line:no-any
|
2021-05-11 20:12:53 -07:00
|
|
|
|
|
|
|
this.$externalHooks().run('expressionEdit.itemSelected', { parameter: this.parameter, value: this.value, selectedItem: eventData });
|
|
|
|
},
|
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
dialogVisible (newValue) {
|
2021-05-29 20:41:54 -07:00
|
|
|
this.displayValue = this.value;
|
|
|
|
this.latestValue = this.value;
|
|
|
|
|
2021-05-11 20:12:53 -07:00
|
|
|
const resolvedExpressionValue = this.$refs.expressionResult && (this.$refs.expressionResult as any).getValue() || undefined; // tslint:disable-line:no-any
|
|
|
|
this.$externalHooks().run('expressionEdit.dialogVisibleChanged', { dialogVisible: newValue, parameter: this.parameter, value: this.value, resolvedExpressionValue });
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
|
.editor-description {
|
|
|
|
font-weight: bold;
|
|
|
|
padding: 0 0 0.5em 0.2em;;
|
|
|
|
}
|
|
|
|
|
|
|
|
.expression-result-wrapper,
|
|
|
|
.expression-editor-wrapper {
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.expression-result-wrapper {
|
|
|
|
margin-top: 1em;
|
|
|
|
}
|
|
|
|
|
2020-02-07 08:36:23 -08:00
|
|
|
::v-deep .expression-dialog {
|
2019-06-23 03:35:23 -07:00
|
|
|
.el-dialog__header {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
.el-dialog__title {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.el-dialog__body {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.right-side {
|
|
|
|
background-color: #f9f9f9;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-side-menu {
|
|
|
|
padding: 1em 0 0.5em 1.8em;
|
|
|
|
|
|
|
|
background-color: $--custom-window-sidebar-top;
|
|
|
|
color: #555;
|
|
|
|
border-bottom: 1px solid $--color-primary;
|
|
|
|
margin-bottom: 1em;
|
|
|
|
|
|
|
|
.headline {
|
|
|
|
font-size: 1.35em;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sub-headline {
|
|
|
|
font-weight: 600;
|
|
|
|
font-size: 1.1em;
|
|
|
|
text-align: center;
|
|
|
|
padding-top: 1.5em;
|
|
|
|
color: $--color-primary;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.variable-selector {
|
|
|
|
margin: 0 1em;
|
|
|
|
}
|
|
|
|
</style>
|