2021-03-03 15:06:52 +08:00
|
|
|
import Vue from 'vue'
|
|
|
|
import Vuex from 'vuex'
|
|
|
|
import getters from './getters'
|
|
|
|
import app from './modules/app'
|
|
|
|
import settings from './modules/settings'
|
|
|
|
import user from './modules/user'
|
|
|
|
import permission from './modules/permission'
|
|
|
|
import dataset from './modules/dataset'
|
2021-03-03 18:35:51 +08:00
|
|
|
import chart from './modules/chart'
|
2021-03-04 14:58:52 +08:00
|
|
|
import request from './modules/request'
|
2021-03-08 14:31:09 +08:00
|
|
|
import panel from './modules/panel'
|
2021-03-29 21:24:33 +08:00
|
|
|
import application from './modules/application'
|
2021-05-12 16:19:41 +08:00
|
|
|
import lic from './modules/lic'
|
2021-07-09 18:37:07 +08:00
|
|
|
import msg from './modules/msg'
|
2021-03-30 15:38:32 +08:00
|
|
|
import animation from '@/components/canvas/store/animation'
|
|
|
|
import compose from '@/components/canvas/store/compose'
|
|
|
|
import contextmenu from '@/components/canvas/store/contextmenu'
|
|
|
|
import copy from '@/components/canvas/store/copy'
|
|
|
|
import event from '@/components/canvas/store/event'
|
|
|
|
import layer from '@/components/canvas/store/layer'
|
|
|
|
import snapshot from '@/components/canvas/store/snapshot'
|
|
|
|
import lock from '@/components/canvas/store/lock'
|
2021-06-08 16:03:49 +08:00
|
|
|
import { valueValid, formatCondition } from '@/utils/conditionUtil'
|
2021-05-05 22:14:23 +08:00
|
|
|
import {
|
2021-06-24 12:08:42 +08:00
|
|
|
DEFAULT_COMMON_CANVAS_STYLE_STRING
|
2021-05-05 22:14:23 +08:00
|
|
|
} from '@/views/panel/panel'
|
|
|
|
|
2021-03-03 15:06:52 +08:00
|
|
|
Vue.use(Vuex)
|
|
|
|
|
2021-03-25 19:16:32 +08:00
|
|
|
const data = {
|
|
|
|
state: {
|
|
|
|
...animation.state,
|
|
|
|
...compose.state,
|
|
|
|
...contextmenu.state,
|
|
|
|
...copy.state,
|
|
|
|
...event.state,
|
|
|
|
...layer.state,
|
|
|
|
...snapshot.state,
|
|
|
|
...lock.state,
|
|
|
|
|
|
|
|
editMode: 'edit', // 编辑器模式 edit preview
|
2021-06-24 12:08:42 +08:00
|
|
|
canvasStyleData: DEFAULT_COMMON_CANVAS_STYLE_STRING, // 页面全局数据 //扩展公共样式 公共的仪表板样式,用来实时响应样式的变化
|
2021-03-25 19:16:32 +08:00
|
|
|
componentData: [], // 画布组件数据
|
|
|
|
curComponent: null,
|
2021-06-01 13:40:26 +08:00
|
|
|
curCanvasScale: null,
|
2021-03-25 19:16:32 +08:00
|
|
|
curComponentIndex: null,
|
|
|
|
// 点击画布时是否点中组件,主要用于取消选中组件用。
|
|
|
|
// 如果没点中组件,并且在画布空白处弹起鼠标,则取消当前组件的选中状态
|
2021-05-05 22:14:23 +08:00
|
|
|
isClickComponent: false,
|
2021-06-24 12:08:42 +08:00
|
|
|
canvasCommonStyleData: DEFAULT_COMMON_CANVAS_STYLE_STRING
|
2021-03-25 19:16:32 +08:00
|
|
|
},
|
|
|
|
mutations: {
|
|
|
|
...animation.mutations,
|
|
|
|
...compose.mutations,
|
|
|
|
...contextmenu.mutations,
|
|
|
|
...copy.mutations,
|
|
|
|
...event.mutations,
|
|
|
|
...layer.mutations,
|
|
|
|
...snapshot.mutations,
|
|
|
|
...lock.mutations,
|
|
|
|
|
|
|
|
setClickComponentStatus(state, status) {
|
|
|
|
state.isClickComponent = status
|
|
|
|
},
|
|
|
|
|
|
|
|
setEditMode(state, mode) {
|
|
|
|
state.editMode = mode
|
|
|
|
},
|
|
|
|
|
|
|
|
setCanvasStyle(state, style) {
|
|
|
|
state.canvasStyleData = style
|
|
|
|
},
|
|
|
|
|
|
|
|
setCurComponent(state, { component, index }) {
|
2021-07-23 13:45:01 +08:00
|
|
|
state.styleChangeTimes = 0
|
2021-03-25 19:16:32 +08:00
|
|
|
state.curComponent = component
|
|
|
|
state.curComponentIndex = index
|
|
|
|
},
|
|
|
|
|
2021-06-01 13:40:26 +08:00
|
|
|
setCurCanvasScale(state, curCanvasScale) {
|
|
|
|
state.curCanvasScale = curCanvasScale
|
|
|
|
},
|
|
|
|
|
|
|
|
setShapeStyle({ curComponent, canvasStyleData, curCanvasScale }, { top, left, width, height, rotate }) {
|
2021-06-11 17:44:47 +08:00
|
|
|
if (top || top === 0) curComponent.style.top = canvasStyleData.selfAdaption ? (top * 100 / curCanvasScale.scaleHeight) : top
|
|
|
|
if (left || left === 0) curComponent.style.left = canvasStyleData.selfAdaption ? (left * 100 / curCanvasScale.scaleWidth) : left
|
|
|
|
if (width || width === 0) curComponent.style.width = canvasStyleData.selfAdaption ? (width * 100 / curCanvasScale.scaleWidth) : width
|
|
|
|
if (height || height === 0) curComponent.style.height = canvasStyleData.selfAdaption ? (height * 100 / curCanvasScale.scaleHeight) : height
|
2021-06-10 17:12:31 +08:00
|
|
|
if (rotate || rotate === 0) curComponent.style.rotate = rotate
|
|
|
|
// console.log('setShapeStyle:curComponent' + 'top:' + top + ';left:' + left + '====' + JSON.stringify(curComponent))
|
2021-03-25 19:16:32 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
setShapeSingleStyle({ curComponent }, { key, value }) {
|
|
|
|
curComponent.style[key] = value
|
|
|
|
},
|
|
|
|
|
|
|
|
setComponentData(state, componentData = []) {
|
|
|
|
Vue.set(state, 'componentData', componentData)
|
|
|
|
},
|
|
|
|
|
|
|
|
addComponent(state, { component, index }) {
|
|
|
|
if (index !== undefined) {
|
|
|
|
state.componentData.splice(index, 0, component)
|
|
|
|
} else {
|
|
|
|
state.componentData.push(component)
|
|
|
|
}
|
|
|
|
},
|
2021-06-08 12:39:04 +08:00
|
|
|
removeViewFilter(state, componentId) {
|
|
|
|
state.componentData = state.componentData.map(item => {
|
|
|
|
const newItem = item
|
|
|
|
newItem.filters = newItem.filters && newItem.filters.filter(filter => filter.componentId !== componentId) || []
|
|
|
|
return newItem
|
|
|
|
})
|
|
|
|
},
|
|
|
|
addViewFilter(state, data) {
|
|
|
|
const condition = formatCondition(data)
|
|
|
|
const vValid = valueValid(condition)
|
|
|
|
// 1.根据componentId过滤
|
|
|
|
const filterComponentId = condition.componentId
|
2021-03-25 19:16:32 +08:00
|
|
|
|
2021-06-08 12:39:04 +08:00
|
|
|
// 2.循环每个Component 得到 三种情况 a增加b删除c无操作
|
|
|
|
const viewIdMatch = (viewIds, viewId) => !viewIds || viewIds.length === 0 || viewIds.includes(viewId)
|
2021-03-25 19:16:32 +08:00
|
|
|
|
2021-06-08 12:39:04 +08:00
|
|
|
for (let index = 0; index < state.componentData.length; index++) {
|
|
|
|
const element = state.componentData[index]
|
|
|
|
if (!element.type || element.type !== 'view') continue
|
|
|
|
const currentFilters = element.filters || []
|
|
|
|
const vidMatch = viewIdMatch(condition.viewIds, element.propValue.viewId)
|
|
|
|
|
|
|
|
let j = currentFilters.length
|
2021-06-08 16:03:49 +08:00
|
|
|
// let filterExist = false
|
2021-06-08 12:39:04 +08:00
|
|
|
while (j--) {
|
|
|
|
const filter = currentFilters[j]
|
|
|
|
if (filter.componentId === filterComponentId) {
|
2021-06-08 16:03:49 +08:00
|
|
|
// filterExist = true
|
2021-06-08 12:39:04 +08:00
|
|
|
// 已存在该条件 且 条件值有效 直接替换原体检
|
2021-06-08 16:03:49 +08:00
|
|
|
// vidMatch && vValid && (currentFilters[j] = condition)
|
2021-06-08 12:39:04 +08:00
|
|
|
// 已存在该条件 且 条件值无效 直接删除原条件
|
2021-06-08 16:03:49 +08:00
|
|
|
// vidMatch && !vValid && (currentFilters.splice(j, 1))
|
|
|
|
currentFilters.splice(j, 1)
|
2021-06-08 12:39:04 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// 不存在该条件 且 条件有效 直接保存该条件
|
2021-06-08 16:03:49 +08:00
|
|
|
// !filterExist && vValid && currentFilters.push(condition)
|
|
|
|
vidMatch && vValid && currentFilters.push(condition)
|
2021-06-08 12:39:04 +08:00
|
|
|
element.filters = currentFilters
|
|
|
|
state.componentData[index] = element
|
|
|
|
}
|
|
|
|
},
|
2021-04-19 10:47:07 +08:00
|
|
|
setComponentWithId(state, component) {
|
|
|
|
for (let index = 0; index < state.componentData.length; index++) {
|
|
|
|
const element = state.componentData[index]
|
|
|
|
if (element.id && element.id === component.id) {
|
|
|
|
state.componentData[index] = component
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
state.componentData.push(component)
|
|
|
|
},
|
|
|
|
deleteComponentWithId(state, id) {
|
|
|
|
for (let index = 0; index < state.componentData.length; index++) {
|
|
|
|
const element = state.componentData[index]
|
|
|
|
if (element.id && element.id === id) {
|
|
|
|
state.componentData.splice(index, 1)
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2021-03-25 19:16:32 +08:00
|
|
|
deleteComponent(state, index) {
|
|
|
|
if (index === undefined) {
|
|
|
|
index = state.curComponentIndex
|
|
|
|
}
|
|
|
|
state.componentData.splice(index, 1)
|
|
|
|
}
|
|
|
|
},
|
2021-03-03 15:06:52 +08:00
|
|
|
modules: {
|
|
|
|
app,
|
|
|
|
settings,
|
|
|
|
user,
|
|
|
|
permission,
|
2021-03-03 18:35:51 +08:00
|
|
|
dataset,
|
2021-03-04 14:58:52 +08:00
|
|
|
chart,
|
2021-03-08 14:31:09 +08:00
|
|
|
request,
|
2021-03-29 21:24:33 +08:00
|
|
|
panel,
|
2021-05-12 16:19:41 +08:00
|
|
|
application,
|
2021-07-09 18:37:07 +08:00
|
|
|
lic,
|
|
|
|
msg
|
2021-03-03 15:06:52 +08:00
|
|
|
},
|
|
|
|
getters
|
2021-03-25 19:16:32 +08:00
|
|
|
}
|
2021-03-03 15:06:52 +08:00
|
|
|
|
2021-03-25 19:16:32 +08:00
|
|
|
export default new Vuex.Store(data)
|