| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212 |
- import { Data, Edge, Corner, Bounds } from 'types'
- import vec from 'utils/vec'
- import BaseSession from './base-session'
- import commands from 'state/commands'
- import { current, freeze } from 'immer'
- import { getShapeUtils } from 'lib/shape-utils'
- import {
- getBoundsCenter,
- getBoundsFromPoints,
- getCommonBounds,
- getDocumentBranch,
- getPage,
- getRelativeTransformedBoundingBox,
- getSelectedIds,
- getTransformedBoundingBox,
- setToArray,
- updateParents,
- } from 'utils/utils'
-
- export default class TransformSession extends BaseSession {
- scaleX = 1
- scaleY = 1
- transformType: Edge | Corner
- origin: number[]
- snapshot: TransformSnapshot
-
- constructor(data: Data, transformType: Corner | Edge, point: number[]) {
- super(data)
- this.origin = point
- this.transformType = transformType
- this.snapshot = getTransformSnapshot(data, transformType)
- }
-
- update(data: Data, point: number[], isAspectRatioLocked = false) {
- const { transformType } = this
-
- const { shapeBounds, initialBounds, isAllAspectRatioLocked } = this.snapshot
-
- const { shapes } = getPage(data)
-
- const newBoundingBox = getTransformedBoundingBox(
- initialBounds,
- transformType,
- vec.vec(this.origin, point),
- data.boundsRotation,
- isAspectRatioLocked || isAllAspectRatioLocked
- )
-
- this.scaleX = newBoundingBox.scaleX
- this.scaleY = newBoundingBox.scaleY
-
- // Now work backward to calculate a new bounding box for each of the shapes.
-
- for (let id in shapeBounds) {
- const { initialShape, initialShapeBounds, transformOrigin } =
- shapeBounds[id]
-
- const newShapeBounds = getRelativeTransformedBoundingBox(
- newBoundingBox,
- initialBounds,
- initialShapeBounds,
- this.scaleX < 0,
- this.scaleY < 0
- )
-
- const shape = shapes[id]
-
- getShapeUtils(shape).transform(shape, newShapeBounds, {
- type: this.transformType,
- initialShape,
- scaleX: this.scaleX,
- scaleY: this.scaleY,
- transformOrigin,
- })
-
- shapes[id] = { ...shape }
- }
-
- updateParents(data, Object.keys(shapeBounds))
- }
-
- cancel(data: Data) {
- const { currentPageId, shapeBounds } = this.snapshot
-
- const { shapes } = getPage(data, currentPageId)
-
- for (let id in shapeBounds) {
- const shape = shapes[id]
-
- const { initialShape, initialShapeBounds, transformOrigin } =
- shapeBounds[id]
-
- getShapeUtils(shape).transform(shape, initialShapeBounds, {
- type: this.transformType,
- initialShape,
- scaleX: 1,
- scaleY: 1,
- transformOrigin,
- })
-
- updateParents(data, Object.keys(shapeBounds))
- }
- }
-
- complete(data: Data) {
- if (!this.snapshot.hasUnlockedShapes) return
-
- commands.transform(
- data,
- this.snapshot,
- getTransformSnapshot(data, this.transformType),
- this.scaleX,
- this.scaleY
- )
- }
- }
-
- export function getTransformSnapshot(data: Data, transformType: Edge | Corner) {
- const cData = current(data)
- const { currentPageId } = cData
- const page = getPage(cData)
-
- const initialShapes = setToArray(getSelectedIds(data))
- .flatMap((id) => getDocumentBranch(cData, id).map((id) => page.shapes[id]))
- .filter((shape) => !shape.isLocked)
-
- const hasUnlockedShapes = initialShapes.length > 0
-
- const isAllAspectRatioLocked = initialShapes.every(
- (shape) => shape.isAspectRatioLocked
- )
-
- const shapesBounds = Object.fromEntries(
- initialShapes.map((shape) => [
- shape.id,
- getShapeUtils(shape).getBounds(shape),
- ])
- )
-
- const boundsArr = Object.values(shapesBounds)
-
- const commonBounds = getCommonBounds(...boundsArr)
-
- const initialInnerBounds = getBoundsFromPoints(boundsArr.map(getBoundsCenter))
-
- // Return a mapping of shapes to bounds together with the relative
- // positions of the shape's bounds within the common bounds shape.
- return {
- type: transformType,
- hasUnlockedShapes,
- isAllAspectRatioLocked,
- currentPageId,
- initialBounds: commonBounds,
- shapeBounds: Object.fromEntries(
- initialShapes.map((shape) => {
- const initialShapeBounds = shapesBounds[shape.id]
- const ic = getBoundsCenter(initialShapeBounds)
-
- let ix = (ic[0] - initialInnerBounds.minX) / initialInnerBounds.width
- let iy = (ic[1] - initialInnerBounds.minY) / initialInnerBounds.height
-
- return [
- shape.id,
- {
- initialShape: shape,
- initialShapeBounds,
- transformOrigin: [ix, iy],
- },
- ]
- })
- ),
- }
- }
-
- export type TransformSnapshot = ReturnType<typeof getTransformSnapshot>
-
- // const transformOrigins = {
- // [Edge.Top]: [0.5, 1],
- // [Edge.Right]: [0, 0.5],
- // [Edge.Bottom]: [0.5, 0],
- // [Edge.Left]: [1, 0.5],
- // [Corner.TopLeft]: [1, 1],
- // [Corner.TopRight]: [0, 1],
- // [Corner.BottomLeft]: [1, 0],
- // [Corner.BottomRight]: [0, 0],
- // }
-
- // const origin = transformOrigins[this.transformType]
-
- // function resizeDescendants(data: Data, shapeId: string, bounds: Bounds) {
-
- // const { initialShape, initialShapeBounds, transformOrigin } =
- // shapeBounds[id]
-
- // const newShapeBounds = getRelativeTransformedBoundingBox(
- // newBoundingBox,
- // initialBounds,
- // initialShapeBounds,
- // this.scaleX < 0,
- // this.scaleY < 0
- // )
-
- // const shape = shapes[id]
-
- // getShapeUtils(shape).transform(shape, newShapeBounds, {
- // type: this.transformType,
- // initialShape,
- // scaleX: this.scaleX,
- // scaleY: this.scaleY,
- // transformOrigin,
- // })
- // }
|