tldraw/state/code/line.ts
Steve Ruiz 48c659a68a Trims default false boolean props
This should reduce the size of files / saves, for example.
2021-07-04 09:47:37 +01:00

44 lines
1 KiB
TypeScript

import CodeShape from './index'
import { uniqueId } from 'utils/utils'
import { LineShape, ShapeProps, ShapeType } from 'types'
import { defaultStyle } from 'state/shape-styles'
/* ----------------- Start Copy Here ---------------- */
export default class Line extends CodeShape<LineShape> {
constructor(props = {} as ShapeProps<LineShape>) {
super({
id: uniqueId(),
parentId: (window as any).currentPageId,
type: ShapeType.Line,
isGenerated: true,
name: 'Line',
childIndex: 0,
point: [0, 0],
direction: [-0.5, 0.5],
rotation: 0,
...props,
style: {
...defaultStyle,
...props.style,
isFilled: false,
},
})
}
/**
* The line's direction.
*
* ```ts
* const shapeDirection = shape.direction
*
* shape.direction = [0,0]
* ```
*/
get direction(): number[] {
return this.shape.direction
}
set direction(direction: number[]) {
this.utils.setProperty(this.shape, 'direction', direction)
}
}