tldraw/state/commands/rotate.ts

41 lines
1 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"
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 } = data.document.pages[after.currentPageId]
2021-05-18 08:32:20 +00:00
for (let { id, point, rotation } of after.shapes) {
const shape = shapes[id]
shape.rotation = rotation
shape.point = 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 } = data.document.pages[before.currentPageId]
2021-05-18 08:32:20 +00:00
for (let { id, point, rotation } of before.shapes) {
const shape = shapes[id]
shape.rotation = rotation
shape.point = 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
},
})
)
}