21 lines
459 B
TypeScript
Raw Normal View History

2022-02-25 21:26:56 +08:00
import { PickCreateComponentType } from '@/packages/index.d'
2022-02-16 20:06:51 +08:00
2022-02-25 21:26:56 +08:00
type AttrType = PickCreateComponentType<'attr'>
2022-01-26 17:38:16 +08:00
export const useComponentStyle = (attr: AttrType, index: number) => {
const componentStyle = {
zIndex: index + 1,
2022-01-26 17:38:16 +08:00
left: `${attr.x}px`,
2022-02-01 17:12:16 +08:00
top: `${attr.y}px`
2022-01-27 20:47:22 +08:00
}
return componentStyle
}
2022-01-27 23:16:51 +08:00
2022-01-27 20:47:22 +08:00
export const useSizeStyle = (attr: AttrType) => {
const sizeStyle = {
2022-01-26 17:38:16 +08:00
width: `${attr.w}px`,
height: `${attr.h}px`
}
2022-01-27 20:47:22 +08:00
return sizeStyle
2022-01-26 17:38:16 +08:00
}