tldraw/state/commands/style.ts

52 lines
1.2 KiB
TypeScript
Raw Normal View History

import Command from './command'
import history from '../history'
import { Data, ShapeStyles } from 'types'
import {
getDocumentBranch,
getPage,
getSelectedIds,
setToArray,
} from 'utils/utils'
2021-06-21 21:35:28 +00:00
import { getShapeUtils } from 'state/shape-utils'
import { current } from 'immer'
2021-05-26 10:34:10 +00:00
2021-06-21 21:35:28 +00:00
export default function styleCommand(
data: Data,
styles: Partial<ShapeStyles>
): void {
2021-06-04 17:56:46 +00:00
const cData = current(data)
const page = getPage(cData)
const { currentPageId } = cData
const selectedIds = setToArray(getSelectedIds(data))
const shapesToStyle = selectedIds
2021-06-04 17:56:46 +00:00
.flatMap((id) => getDocumentBranch(data, id))
.map((id) => page.shapes[id])
2021-05-26 10:34:10 +00:00
history.execute(
data,
new Command({
2021-06-19 17:22:46 +00:00
name: 'style_shapes',
category: 'canvas',
2021-05-26 10:34:10 +00:00
manualSelection: true,
do(data) {
const { shapes } = getPage(data, currentPageId)
2021-06-04 17:56:46 +00:00
for (const { id } of shapesToStyle) {
2021-05-26 10:34:10 +00:00
const shape = shapes[id]
getShapeUtils(shape).applyStyles(shape, styles)
}
},
undo(data) {
const { shapes } = getPage(data, currentPageId)
2021-06-04 17:56:46 +00:00
for (const { id, style } of shapesToStyle) {
2021-05-26 10:34:10 +00:00
const shape = shapes[id]
getShapeUtils(shape).applyStyles(shape, style)
}
},
})
)
}