2024-01-25 16:57:18 +08:00

58 lines
1.4 KiB
TypeScript

import { PublicConfigClass } from '@/packages/public'
import { CreateComponentType } from '@/packages/index.d'
import { TextCommonConfig } from './index'
import cloneDeep from 'lodash/cloneDeep'
import { CurrentSourceEnum } from '@/store/modules/chartEditStore/chartEditStore.d'
export enum WritingModeEnum {
HORIZONTAL = '水平',
VERTICAL = '垂直'
}
export const WritingModeObject = {
[WritingModeEnum.HORIZONTAL]: 'horizontal-tb',
[WritingModeEnum.VERTICAL]: 'vertical-rl'
}
export enum FontWeightEnum {
NORMAL = '常规',
BOLD = '加粗',
}
export const FontWeightObject = {
[FontWeightEnum.NORMAL]: 'normal',
[FontWeightEnum.BOLD]: 'bold',
}
export const option = {
link: '',
linkHead: 'http://',
dataset: '我是文本',
fontSize: 20,
fontColor: '#ffffff',
paddingX: 10,
paddingY: 10,
textAlign: 'center', // 水平对齐方式
fontWeight: 'normal',
// 边框
borderWidth: 0,
borderColor: '#ffffff',
borderRadius: 5,
// 字间距
letterSpacing: 5,
writingMode: 'horizontal-tb',
backgroundColor: '#00000000'
}
export default class Config extends PublicConfigClass implements CreateComponentType {
constructor() {
super();
this.commonData.currentSource = CurrentSourceEnum.SINGLEPOINT
}
public key = TextCommonConfig.key
public chartConfig = cloneDeep(TextCommonConfig)
public option = cloneDeep(option)
}