tldraw/state/commands/duplicate.ts

57 lines
1.2 KiB
TypeScript
Raw Normal View History

2021-05-28 20:30:27 +00:00
import Command from './command'
import history from '../history'
import { Data } from 'types'
import {
2021-06-24 12:34:43 +00:00
deepClone,
getCurrentCamera,
getPage,
getSelectedShapes,
setSelectedIds,
2021-06-24 08:18:14 +00:00
} from 'utils'
import { uniqueId } from 'utils'
import vec from 'utils/vec'
2021-05-28 20:30:27 +00:00
2021-06-21 21:35:28 +00:00
export default function duplicateCommand(data: Data): void {
2021-06-24 12:34:43 +00:00
const selectedShapes = getSelectedShapes(data).map(deepClone)
2021-05-28 20:30:27 +00:00
const duplicates = selectedShapes.map((shape) => ({
...shape,
id: uniqueId(),
2021-06-03 12:06:39 +00:00
point: vec.add(shape.point, vec.div([16, 16], getCurrentCamera(data).zoom)),
2021-06-19 17:22:46 +00:00
isGenerated: false,
2021-05-28 20:30:27 +00:00
}))
history.execute(
data,
new Command({
name: 'duplicate_shapes',
category: 'canvas',
manualSelection: true,
do(data) {
2021-06-24 12:34:43 +00:00
const { shapes } = getPage(data)
2021-05-28 20:30:27 +00:00
for (const duplicate of duplicates) {
shapes[duplicate.id] = duplicate
}
setSelectedIds(
data,
duplicates.map((d) => d.id)
)
2021-05-28 20:30:27 +00:00
},
undo(data) {
2021-06-24 12:34:43 +00:00
const { shapes } = getPage(data)
2021-05-28 20:30:27 +00:00
for (const duplicate of duplicates) {
delete shapes[duplicate.id]
}
setSelectedIds(
data,
selectedShapes.map((d) => d.id)
)
2021-05-28 20:30:27 +00:00
},
})
)
}