tldraw/state/sessions/transform-session.ts
2021-05-23 14:46:04 +01:00

173 lines
4.5 KiB
TypeScript

import { Data, Edge, Corner } from "types"
import * as vec from "utils/vec"
import BaseSession from "./base-session"
import commands from "state/commands"
import { current } from "immer"
import { getShapeUtils } from "lib/shape-utils"
import {
getBoundsCenter,
getBoundsFromPoints,
getCommonBounds,
getPage,
getRelativeTransformedBoundingBox,
getShapes,
getTransformedBoundingBox,
} 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 { selectedIds, shapeBounds, initialBounds } = this.snapshot
const { shapes } = getPage(data)
const newBoundingBox = getTransformedBoundingBox(
initialBounds,
transformType,
vec.vec(this.origin, point),
data.boundsRotation,
isAspectRatioLocked
)
this.scaleX = newBoundingBox.scaleX
this.scaleY = newBoundingBox.scaleY
// Now work backward to calculate a new bounding box for each of the shapes.
selectedIds.forEach((id) => {
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,
})
})
}
cancel(data: Data) {
const { currentPageId, selectedIds, shapeBounds } = this.snapshot
const page = getPage(data, currentPageId)
selectedIds.forEach((id) => {
const shape = page.shapes[id]
const { initialShape, initialShapeBounds, transformOrigin } =
shapeBounds[id]
getShapeUtils(shape).transform(shape, initialShapeBounds, {
type: this.transformType,
initialShape,
scaleX: 1,
scaleY: 1,
transformOrigin,
})
})
}
complete(data: Data) {
commands.transform(
data,
this.snapshot,
getTransformSnapshot(data, this.transformType),
this.scaleX,
this.scaleY
)
}
}
export function getTransformSnapshot(data: Data, transformType: Edge | Corner) {
const {
document: { pages },
selectedIds,
currentPageId,
} = current(data)
const pageShapes = pages[currentPageId].shapes
// A mapping of selected shapes and their bounds
const shapesBounds = Object.fromEntries(
Array.from(selectedIds.values()).map((id) => {
const shape = pageShapes[id]
return [shape.id, getShapeUtils(shape).getBounds(shape)]
})
)
const boundsArr = Object.values(shapesBounds)
// The common (exterior) bounds of the selected shapes
const bounds = 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,
currentPageId,
selectedIds: new Set(selectedIds),
initialBounds: bounds,
shapeBounds: Object.fromEntries(
Array.from(selectedIds.values()).map((id) => {
const shape = pageShapes[id]
const initialShapeBounds = shapesBounds[id]
const ic = getBoundsCenter(initialShapeBounds)
let ix = (ic[0] - initialInnerBounds.minX) / initialInnerBounds.width
let iy = (ic[1] - initialInnerBounds.minY) / initialInnerBounds.height
return [
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]