mirror of
https://gitee.com/dromara/go-view.git
synced 2025-04-21 21:16:23 +08:00
75 lines
1.9 KiB
TypeScript
75 lines
1.9 KiB
TypeScript
import { defineStore } from 'pinia'
|
|
import { ChartLayoutType, ChartLayoutFilterType } from './chartLayoutStore.d'
|
|
import { setLocalStorage, getLocalStorage } from '@/utils'
|
|
import { StorageEnum } from '@/enums/storageEnum'
|
|
import { useChartEditStoreStore } from '@/store/modules/chartEditStore/chartEditStore'
|
|
|
|
const chartEditStore = useChartEditStoreStore()
|
|
|
|
const { GO_CHART_LAYOUT_STORE } = StorageEnum
|
|
|
|
const storageChartLayout: ChartLayoutType = getLocalStorage( GO_CHART_LAYOUT_STORE)
|
|
|
|
// 编辑区域布局和静态设置
|
|
export const useChartLayoutStore = defineStore({
|
|
id: 'useChartLayoutStore',
|
|
state: (): ChartLayoutType =>
|
|
storageChartLayout || {
|
|
// 图层控制
|
|
layers: true,
|
|
// 图表组件
|
|
charts: true,
|
|
// 详情设置
|
|
details: true,
|
|
// 对齐线
|
|
alignLine: true,
|
|
// 滤镜
|
|
filter: {
|
|
// 色相
|
|
hueRotate: 0,
|
|
// 饱和度
|
|
saturate: 0,
|
|
// 亮度
|
|
brightness: 100,
|
|
// 对比度
|
|
contrast: 100,
|
|
// 不透明度
|
|
unOpacity: 100
|
|
}
|
|
},
|
|
getters: {
|
|
getLayers(): boolean {
|
|
return this.layers
|
|
},
|
|
getCharts(): boolean {
|
|
return this.charts
|
|
},
|
|
getDetails(): boolean {
|
|
return this.details
|
|
},
|
|
getAlignLine(): boolean {
|
|
return this.alignLine
|
|
},
|
|
getFilter(): ChartLayoutFilterType {
|
|
return this.filter
|
|
}
|
|
},
|
|
actions: {
|
|
setItem(key: string, value: boolean): void {
|
|
;(this as any)[key] = value
|
|
setLocalStorage(GO_CHART_LAYOUT_STORE, this.$state)
|
|
// 重新计算拖拽区域缩放比例
|
|
setTimeout(() => {
|
|
chartEditStore.computedScale()
|
|
}, 500)
|
|
},
|
|
setFilter<T extends keyof ChartLayoutFilterType>(
|
|
key: T,
|
|
value: boolean
|
|
): void {
|
|
;(this.filter as any)[key] = value
|
|
setLocalStorage(GO_CHART_LAYOUT_STORE, this.$state)
|
|
}
|
|
}
|
|
})
|