mirror of
https://gitee.com/dromara/go-view.git
synced 2025-04-22 13:36:23 +08:00
71 lines
1.7 KiB
TypeScript
71 lines
1.7 KiB
TypeScript
import { defineStore } from 'pinia'
|
|
import { store } from '@/store'
|
|
import { ChartLayoutType, ChartLayoutFilterType } from './chartLayoutStore.d'
|
|
import { setLocalStorage, getLocalStorage } from '@/utils'
|
|
import { StorageEnum } from '@/enums/storageEnum'
|
|
|
|
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)
|
|
},
|
|
setFilter<T extends keyof ChartLayoutFilterType>(key: T, value: boolean): void {
|
|
;(this.filter as any)[key] = value
|
|
setLocalStorage(GO_CHART_LAYOUT_STORE, this.$state)
|
|
},
|
|
},
|
|
})
|
|
|
|
export function useChartLayoutSettingWithOut() {
|
|
return useChartLayoutStore(store)
|
|
}
|