import { defineMigrations } from '@bigbluebutton/store' import { T } from '@bigbluebutton/validate' import { assetIdValidator } from '../assets/TLBaseAsset' import { vec2dModelValidator } from '../misc/geometry-types' import { ShapePropsType, TLBaseShape } from './TLBaseShape' /** @public */ export const ImageShapeCrop = T.object({ topLeft: vec2dModelValidator, bottomRight: vec2dModelValidator, }) /** @public */ export type TLImageShapeCrop = T.TypeOf /** @public */ export const imageShapeProps = { w: T.nonZeroNumber, h: T.nonZeroNumber, playing: T.boolean, url: T.string, assetId: assetIdValidator.nullable(), crop: ImageShapeCrop.nullable(), } /** @public */ export type TLImageShapeProps = ShapePropsType /** @public */ export type TLImageShape = TLBaseShape<'image', TLImageShapeProps> const Versions = { AddUrlProp: 1, AddCropProp: 2, } as const /** @internal */ export const imageShapeMigrations = defineMigrations({ currentVersion: Versions.AddCropProp, migrators: { [Versions.AddUrlProp]: { up: (shape) => { return { ...shape, props: { ...shape.props, url: '' } } }, down: (shape) => { const { url: _, ...props } = shape.props return { ...shape, props } }, }, [Versions.AddCropProp]: { up: (shape) => { return { ...shape, props: { ...shape.props, crop: null } } }, down: (shape) => { const { crop: _, ...props } = shape.props return { ...shape, props } }, }, }, })