123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- import Command from './command'
- import history from '../history'
- import { Data } from 'types'
- import {
- getDocumentBranch,
- getPage,
- getPageState,
- getSelectedIds,
- setToArray,
- uniqueArray,
- } from 'utils'
- import { getShapeUtils } from 'state/shape-utils'
- import storage from 'state/storage'
-
- export default function moveToPageCommand(data: Data, newPageId: string): void {
- const { currentPageId: oldPageId } = data
- const oldPage = getPage(data)
- const selectedIds = setToArray(getSelectedIds(data))
-
- const idsToMove = uniqueArray(
- ...selectedIds.flatMap((id) => getDocumentBranch(data, id))
- )
-
- const oldParentIds = Object.fromEntries(
- idsToMove.map((id) => [id, oldPage.shapes[id].parentId])
- )
-
- // const selectedParents = uniqueArray(
- // ...selectedIds.map((id) => getTopParentId(data, id))
- // )
-
- history.execute(
- data,
- new Command({
- name: 'move_to_page',
- category: 'canvas',
- manualSelection: true,
- do(data) {
- const fromPageId = oldPageId
- const toPageId = newPageId
-
- const fromPage = getPage(data, fromPageId)
-
- // Get all of the selected shapes and their descendents
- const shapesToMove = idsToMove.map((id) => fromPage.shapes[id])
-
- shapesToMove.forEach((shape) => {
- // If the shape is a parent of a group that isn't selected,
- // remove the shape's id from its parent's children.
- if (
- shape.parentId !== fromPageId &&
- !idsToMove.includes(shape.parentId)
- ) {
- const parent = fromPage.shapes[shape.parentId]
-
- getShapeUtils(parent).setProperty(
- parent,
- 'children',
- parent.children.filter((id) => id !== shape.id)
- )
- }
-
- // Delete the shapes from the "from" page
- delete fromPage.shapes[shape.id]
- })
-
- // Clear the current page state's selected ids
- getPageState(data, fromPageId).selectedIds.clear()
-
- // Save the "from" page
- storage.savePage(data, data.document.id, fromPageId)
-
- // Load the "to" page
- storage.loadPage(data, toPageId)
-
- // The page we're moving the shapes to
- const toPage = getPage(data, toPageId)
-
- // Add all of the selected shapes to the "from" page.
- shapesToMove.forEach((shape) => {
- toPage.shapes[shape.id] = shape
- })
-
- // If a shape's parent isn't in the document, re-parent to the page.
- shapesToMove.forEach((shape) => {
- if (!toPage.shapes[shape.parentId]) {
- getShapeUtils(shape).setProperty(shape, 'parentId', toPageId)
- }
- })
-
- // Select the selected ids on the new page
- getPageState(data, toPageId).selectedIds = new Set(selectedIds)
-
- // Move to the new page
- data.currentPageId = toPageId
- },
- undo(data) {
- const fromPageId = newPageId
- const toPageId = oldPageId
-
- const fromPage = getPage(data, fromPageId)
-
- const shapesToMove = idsToMove.map((id) => fromPage.shapes[id])
-
- shapesToMove.forEach((shape) => {
- if (
- shape.parentId !== fromPageId &&
- !idsToMove.includes(shape.parentId)
- ) {
- const parent = fromPage.shapes[shape.parentId]
-
- getShapeUtils(parent).setProperty(
- parent,
- 'children',
- parent.children.filter((id) => id !== shape.id)
- )
- }
-
- delete fromPage.shapes[shape.id]
- })
-
- getPageState(data, fromPageId).selectedIds.clear()
-
- storage.savePage(data, data.document.id, fromPageId)
-
- storage.loadPage(data, toPageId)
-
- const toPage = getPage(data, toPageId)
-
- shapesToMove.forEach((shape) => {
- toPage.shapes[shape.id] = shape
-
- // Move shapes back to their old parent
- const parentId = oldParentIds[shape.id]
- getShapeUtils(shape).setProperty(shape, 'parentId', parentId)
-
- // And add the shape back to the parent's children
- if (parentId !== toPageId) {
- const parent = toPage.shapes[parentId]
- getShapeUtils(parent).setProperty(parent, 'children', [
- ...parent.children,
- shape.id,
- ])
- }
- })
-
- getPageState(data, toPageId).selectedIds = new Set(selectedIds)
-
- data.currentPageId = toPageId
- },
- })
- )
- }
|