2021-06-23 22:32:21 +00:00
|
|
|
import CodeShape from './index'
|
2021-06-24 08:18:14 +00:00
|
|
|
import { uniqueId } from 'utils'
|
2021-06-24 22:09:36 +00:00
|
|
|
import { DrawShape, ShapeProps, ShapeType } from 'types'
|
2021-06-23 22:32:21 +00:00
|
|
|
import { defaultStyle } from 'state/shape-styles'
|
|
|
|
|
2021-06-25 10:28:52 +00:00
|
|
|
/* ----------------- Start Copy Here ---------------- */
|
|
|
|
|
2021-06-23 22:32:21 +00:00
|
|
|
export default class Draw extends CodeShape<DrawShape> {
|
2021-06-24 22:09:36 +00:00
|
|
|
constructor(props = {} as ShapeProps<DrawShape>) {
|
2021-06-23 22:32:21 +00:00
|
|
|
super({
|
|
|
|
id: uniqueId(),
|
2021-06-25 11:01:22 +00:00
|
|
|
|
2021-06-23 22:32:21 +00:00
|
|
|
type: ShapeType.Draw,
|
|
|
|
isGenerated: false,
|
2021-06-25 10:28:52 +00:00
|
|
|
parentId: (window as any).currentPageId,
|
2021-06-23 22:32:21 +00:00
|
|
|
name: 'Draw',
|
|
|
|
childIndex: 0,
|
|
|
|
point: [0, 0],
|
|
|
|
points: [],
|
|
|
|
rotation: 0,
|
|
|
|
isAspectRatioLocked: false,
|
|
|
|
isLocked: false,
|
|
|
|
isHidden: false,
|
|
|
|
...props,
|
|
|
|
style: {
|
|
|
|
...defaultStyle,
|
|
|
|
...props.style,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|