tldraw/state/commands/change-page.ts
2021-07-09 19:42:43 +01:00

33 lines
935 B
TypeScript

import Command from './command'
import history from '../history'
import { Data } from 'types'
import tld from 'utils/tld'
import storage from 'state/storage'
export default function changePage(data: Data, toPageId: string): void {
const { currentPageId: fromPageId } = data
history.execute(
data,
new Command({
name: 'change_page',
category: 'canvas',
manualSelection: true,
do(data) {
storage.savePage(data, data.document.id, fromPageId)
storage.loadPage(data, data.document.id, toPageId)
data.currentPageId = toPageId
data.currentParentId = toPageId
tld.setZoomCSS(tld.getPageState(data).camera.zoom)
},
undo(data) {
storage.loadPage(data, data.document.id, fromPageId)
data.currentPageId = fromPageId
data.currentParentId = fromPageId
tld.setZoomCSS(tld.getPageState(data).camera.zoom)
},
})
)
}