tldraw/state/commands/rotate.ts

45 lines
1.2 KiB
TypeScript
Raw Normal View History

2021-05-17 21:27:18 +00:00
import Command from "./command"
import history from "../history"
import { Data } from "types"
import { RotateSnapshot } from "state/sessions/rotate-session"
import { getPage } from "utils/utils"
import { getShapeUtils } from "lib/shape-utils"
2021-05-17 21:27:18 +00:00
2021-05-19 09:35:00 +00:00
export default function rotateCommand(
2021-05-17 21:27:18 +00:00
data: Data,
before: RotateSnapshot,
after: RotateSnapshot
) {
history.execute(
data,
new Command({
name: "translate_shapes",
category: "canvas",
do(data) {
const { shapes } = getPage(data)
2021-05-17 21:27:18 +00:00
2021-05-18 08:32:20 +00:00
for (let { id, point, rotation } of after.shapes) {
const shape = shapes[id]
const utils = getShapeUtils(shape)
utils.rotate(shape, rotation)
utils.translate(shape, point)
2021-05-17 21:27:18 +00:00
}
2021-05-18 08:32:20 +00:00
data.boundsRotation = after.boundsRotation
2021-05-17 21:27:18 +00:00
},
undo(data) {
const { shapes } = getPage(data, before.currentPageId)
2021-05-17 21:27:18 +00:00
2021-05-18 08:32:20 +00:00
for (let { id, point, rotation } of before.shapes) {
const shape = shapes[id]
const utils = getShapeUtils(shape)
utils.rotate(shape, rotation)
utils.translate(shape, point)
2021-05-17 21:27:18 +00:00
}
2021-05-18 08:32:20 +00:00
data.boundsRotation = before.boundsRotation
2021-05-17 21:27:18 +00:00
},
})
)
}