tldraw/state/code/dot.ts
2021-06-23 23:32:21 +01:00

32 lines
770 B
TypeScript

import CodeShape from './index'
import { uniqueId } from 'utils/utils'
import { DotShape, ShapeStyles, ShapeType } from 'types'
import { defaultStyle } from 'state/shape-styles'
/**
* ## Dot
*/
export default class Dot extends CodeShape<DotShape> {
constructor(props = {} as Partial<DotShape> & Partial<ShapeStyles>) {
super({
id: uniqueId(),
seed: Math.random(),
parentId: (window as any).currentPageId,
type: ShapeType.Dot,
isGenerated: true,
name: 'Dot',
childIndex: 0,
point: [0, 0],
rotation: 0,
isAspectRatioLocked: false,
isLocked: false,
isHidden: false,
...props,
style: {
...defaultStyle,
...props.style,
isFilled: true,
},
})
}
}