3328350766
6 天以前 761eb03d6b3bebd0b197179564c84d89d3d12a0d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
<template>
  <el-dialog
    :close-on-click-modal="false"
    title="表达式"
    width="60%"
    :visible.sync="formVisible"
    class="bs-dialog-wrap bs-el-dialog"
  >
    <div class="main-box">
      <div class="left-box">
        <el-tree
          ref="tree"
          :data="treeData"
          :indent="0"
          :props="defaultProps"
          :default-expand-all="true"
          :highlight-current="true"
          :expand-on-click-node="false"
          class="bs-el-tree tree-box"
          @node-click="handleNodeClick"
        >
          <template #default="{ node, data }">
            <!-- Check if the node is a top-level node -->
            <span
              v-if="node.level === 1"
              :class="{ 'disabled': node.disabled}"
            >
              <i
                class="el-icon-folder"
              />
              {{ data.label }}
            </span>
            <span
              v-else
              :class="{ 'disabled': node.disabled}"
              style="padding-left: 20px"
            >
              {{ data.label }}
            </span>
          </template>
        </el-tree>
      </div>
      <div class="right-box">
        <div class="codemirror-wrap">
          <codemirror
            ref="codemirrorRef"
            v-model="currentConfig.expression"
            class="codemirror-box"
            :options="codemirrorOption"
            @dragover.prevent
          />
          <el-button
            class="btn-box"
            type="primary"
            @click="executeScript"
          >
            运行脚本
          </el-button>
        </div>
        <div class="script-content-box">
          {{ scriptContent }}
        </div>
      </div>
    </div>
    <div
      slot="footer"
      class="dialog-footer"
    >
      <el-button
        class="bs-el-button-default cancel"
        @click="cancel"
      >
        取消
      </el-button>
      <el-button
        type="primary"
        @click="sure"
      >
        确定
      </el-button>
    </div>
  </el-dialog>
</template>
 
<script>
import { codemirror } from 'vue-codemirror'
import 'codemirror/mode/javascript/javascript'
import 'codemirror/lib/codemirror.css'
import 'codemirror/theme/nord.css'
import { mapMutations, mapState } from 'vuex'
import cloneDeep from 'lodash/cloneDeep'
export default {
  name: 'ExpressionDialog',
  components: {
    codemirror
  },
  props: {
    config: {
      type: Object,
      default: () => {
      }
    }
  },
  data () {
    return {
      scriptContent: '', // 脚本执行的内容
      expression: '123',
      formVisible: false,
      codemirrorOption: {
        mode: 'text/javascript',
        lineNumbers: true,
        lineWrapping: true,
        theme: 'nord',
        extraKey: { Ctrl: 'autocomplete' },
        hintOptions: {
          completeSingle: true
        }
      },
      defaultProps: { label: 'label', children: 'children' }
    }
  },
  computed: {
    ...mapState({
      dataset: state => state.bigScreen.dataset,
      computedDatas: state => state.bigScreen.computedDatas
    }),
    // 获取树节点数据
    treeData () {
      const list = []
      for (const item in this.dataset) {
        let children = []
        if (this.dataset[item][0]) {
          const fields = Object.keys(this.dataset[item][0])
          children = fields.map((field) => {
            return {
              label: field,
              code: item,
              value: `dataset['${item}'][0].${field}`,
              disabled: item.includes(this.config.code)
            }
          })
        }
 
        list.push({
          label: item.split('_')[0],
          code: item,
          value: `dataset['${item}']`,
          disabled: item.includes(this.config.code),
          children
        })
      }
      for (const item in this.computedDatas) {
        list.push({
          label: item.split('_')[0],
          code: item,
          value: `computedDatas['${item}']`,
          disabled: item.includes(this.config.code)
        })
      }
      return list
    },
    currentConfig () {
      return cloneDeep(this.config)
    }
  },
  watch: {},
  created () {},
  mounted () {},
  methods: {
    ...mapMutations({
      changeChartConfig: 'bigScreen/changeChartConfig'
    }),
    init () {
      this.formVisible = true
    },
    // 运行脚本
    executeScript () {
      // eslint-disable-next-line no-new-func
      const result = new Function('dataset', 'computedDatas', this.currentConfig.expression)
      this.scriptContent = result(this.dataset, this.computedDatas)
    },
    // 点击树节点将数据添加到脚本编辑器中
    handleNodeClick (node, data, nodeObj) {
      const str = node.value
      const code = node.code
      if (node.disabled) return
      // 判断编辑器里面是return + 0或者多个空格 还是包含其他表达式,每次添加第一个表达式时不要加‘+’,防止计算错误
      const isInit = /^[\w\s]+$/.test(this.currentConfig.expression)
      const newStr = isInit ? this.currentConfig.expression + str : this.currentConfig.expression + ' +  ' + str
      this.$refs.codemirrorRef.codemirror.setValue(newStr)
      // 同时将点击的数据存在expressionCodes中
      if (this.currentConfig.expressionCodes && Array.isArray(this.currentConfig.expressionCodes)) {
        this.currentConfig.expressionCodes.push(code)
      }
    },
    cancel () {
      this.formVisible = false
    },
    sure () {
      this.formVisible = false
      this.changeChartConfig(this.currentConfig)
    }
  }
}
</script>
 
<style scoped lang="scss">
@import '../../assets/style/bsTheme.scss';
.bs-dialog-wrap{
  ::v-deep .el-dialog__body{
    min-height: 500px;
  }
}
  .main-box{
    width: 100%;
    height: 500px;
    display: flex;
    .left-box{
      flex: 1;
      height: 100%;
      .tree-box{
        height: 100%;
        overflow-y: auto;
      }
    }
    .right-box{;
      flex: 3 ;
      height: 100%;
      .codemirror-wrap{
        height: 50%;
        position: relative;
        .btn-box{
          position: absolute;
          right: 10px;
          bottom: 10px;
        }
      }
      .codemirror-box {
        height: 100% !important;
        ::v-deep .CodeMirror {
          height: 100% !important;
          font-family: Helvetica, Tahoma;
        }
      }
      .script-content-box{
        padding:10px
      }
    }
  }
.disabled{
  cursor: not-allowed;
  color: #666666;
}
</style>