transfer-out: transfer out
This commit is contained in:
parent
ec84f64e63
commit
29ed921c67
1056 changed files with 154507 additions and 0 deletions
954
packages/ui/src/lib/hooks/useActions.tsx
Normal file
954
packages/ui/src/lib/hooks/useActions.tsx
Normal file
|
@ -0,0 +1,954 @@
|
|||
import {
|
||||
ANIMATION_MEDIUM_MS,
|
||||
App,
|
||||
DEFAULT_BOOKMARK_HEIGHT,
|
||||
DEFAULT_BOOKMARK_WIDTH,
|
||||
getEmbedInfo,
|
||||
openWindow,
|
||||
TLBookmarkShapeDef,
|
||||
TLEmbedShapeDef,
|
||||
TLShapeId,
|
||||
TLShapePartial,
|
||||
TLTextShape,
|
||||
useApp,
|
||||
} from '@tldraw/editor'
|
||||
import { approximately, Box2d, TAU, Vec2d } from '@tldraw/primitives'
|
||||
import { compact } from '@tldraw/utils'
|
||||
import * as React from 'react'
|
||||
import { EditLinkDialog } from '../components/EditLinkDialog'
|
||||
import { EmbedDialog } from '../components/EmbedDialog'
|
||||
import { TLUiIconType } from '../icon-types'
|
||||
import { useMenuClipboardEvents } from './useClipboardEvents'
|
||||
import { useCopyAs } from './useCopyAs'
|
||||
import { useDialogs } from './useDialogsProvider'
|
||||
import { useExportAs } from './useExportAs'
|
||||
import { useInsertMedia } from './useInsertMedia'
|
||||
import { usePrint } from './usePrint'
|
||||
import { useToasts } from './useToastsProvider'
|
||||
import { TLTranslationKey } from './useTranslation/TLTranslationKey'
|
||||
|
||||
/** @public */
|
||||
export interface ActionItem {
|
||||
icon?: TLUiIconType
|
||||
id: string
|
||||
kbd?: string
|
||||
title?: string
|
||||
label?: TLTranslationKey
|
||||
menuLabel?: TLTranslationKey
|
||||
shortcutsLabel?: TLTranslationKey
|
||||
contextMenuLabel?: TLTranslationKey
|
||||
readonlyOk: boolean
|
||||
checkbox?: boolean
|
||||
onSelect: () => Promise<void> | void
|
||||
}
|
||||
|
||||
/** @public */
|
||||
export type ActionsContextType = Record<string, ActionItem>
|
||||
|
||||
/** @public */
|
||||
export const ActionsContext = React.createContext<ActionsContextType>({})
|
||||
|
||||
/** @public */
|
||||
export type ActionsProviderProps = {
|
||||
overrides?: (app: App, actions: ActionsContextType, helpers: undefined) => ActionsContextType
|
||||
children: any
|
||||
}
|
||||
|
||||
function makeActions(actions: ActionItem[]) {
|
||||
return Object.fromEntries(actions.map((action) => [action.id, action])) as ActionsContextType
|
||||
}
|
||||
|
||||
/** @public */
|
||||
export function ActionsProvider({ overrides, children }: ActionsProviderProps) {
|
||||
const app = useApp()
|
||||
|
||||
// const saveFile = useSaveFile()
|
||||
// const saveFileAs = useSaveFileAs()
|
||||
// const newFile = useNewFile()
|
||||
// const openFile = useOpenFile()
|
||||
|
||||
const { addDialog, clearDialogs } = useDialogs()
|
||||
const { clearToasts } = useToasts()
|
||||
|
||||
const insertMedia = useInsertMedia()
|
||||
const printSelectionOrPages = usePrint()
|
||||
const { cut, copy } = useMenuClipboardEvents()
|
||||
const copyAs = useCopyAs()
|
||||
const exportAs = useExportAs()
|
||||
|
||||
// should this be a useMemo? looks like it doesn't actually deref any reactive values
|
||||
const actions = React.useMemo<ActionsContextType>(() => {
|
||||
const actions = makeActions([
|
||||
// 'new-project': {
|
||||
// id: 'file.new',
|
||||
// label: 'file.new',
|
||||
// onSelect() {
|
||||
// newFile()
|
||||
// },
|
||||
// },
|
||||
// 'open-project': {
|
||||
// id: 'file.open',
|
||||
// label: 'file.open',
|
||||
// kbd: '$o',
|
||||
// onSelect() {
|
||||
// openFile()
|
||||
// },
|
||||
// },
|
||||
// 'save-project': {
|
||||
// id: 'file.save',
|
||||
// label: 'file.save',
|
||||
// kbd: '$s',
|
||||
// onSelect() {
|
||||
// saveFile()
|
||||
// },
|
||||
// },
|
||||
// 'save-project-as': {
|
||||
// id: 'file.save-as',
|
||||
// label: 'file.save-as',
|
||||
// kbd: '$!s',
|
||||
// onSelect() {
|
||||
// saveFileAs()
|
||||
// },
|
||||
// },
|
||||
{
|
||||
id: 'edit-link',
|
||||
label: 'action.edit-link',
|
||||
icon: 'link',
|
||||
readonlyOk: false,
|
||||
onSelect() {
|
||||
app.mark('edit-link')
|
||||
addDialog({ component: EditLinkDialog })
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'insert-embed',
|
||||
label: 'action.insert-embed',
|
||||
readonlyOk: false,
|
||||
kbd: '$i',
|
||||
onSelect() {
|
||||
addDialog({ component: EmbedDialog })
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'insert-media',
|
||||
label: 'action.insert-media',
|
||||
kbd: '$u',
|
||||
readonlyOk: false,
|
||||
onSelect() {
|
||||
insertMedia()
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'undo',
|
||||
label: 'action.undo',
|
||||
icon: 'undo',
|
||||
kbd: '$z',
|
||||
readonlyOk: false,
|
||||
onSelect() {
|
||||
app.undo()
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'redo',
|
||||
label: 'action.redo',
|
||||
icon: 'redo',
|
||||
kbd: '$!z',
|
||||
readonlyOk: false,
|
||||
onSelect() {
|
||||
app.redo()
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'export-as-svg',
|
||||
label: 'action.export-as-svg',
|
||||
menuLabel: 'action.export-as-svg.short',
|
||||
contextMenuLabel: 'action.export-as-svg.short',
|
||||
readonlyOk: true,
|
||||
onSelect() {
|
||||
exportAs(app.selectedIds, 'svg')
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'export-as-png',
|
||||
label: 'action.export-as-png',
|
||||
menuLabel: 'action.export-as-png.short',
|
||||
contextMenuLabel: 'action.export-as-png.short',
|
||||
readonlyOk: true,
|
||||
onSelect() {
|
||||
exportAs(app.selectedIds, 'png')
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'export-as-json',
|
||||
label: 'action.export-as-json',
|
||||
menuLabel: 'action.export-as-json.short',
|
||||
contextMenuLabel: 'action.export-as-json.short',
|
||||
readonlyOk: true,
|
||||
onSelect() {
|
||||
exportAs(app.selectedIds, 'json')
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'copy-as-svg',
|
||||
label: 'action.copy-as-svg',
|
||||
menuLabel: 'action.copy-as-svg.short',
|
||||
contextMenuLabel: 'action.copy-as-svg.short',
|
||||
kbd: '$!c',
|
||||
readonlyOk: true,
|
||||
onSelect() {
|
||||
copyAs(app.selectedIds, 'svg')
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'copy-as-png',
|
||||
label: 'action.copy-as-png',
|
||||
menuLabel: 'action.copy-as-png.short',
|
||||
contextMenuLabel: 'action.copy-as-png.short',
|
||||
readonlyOk: true,
|
||||
onSelect() {
|
||||
copyAs(app.selectedIds, 'png')
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'copy-as-json',
|
||||
label: 'action.copy-as-json',
|
||||
menuLabel: 'action.copy-as-json.short',
|
||||
contextMenuLabel: 'action.copy-as-json.short',
|
||||
readonlyOk: true,
|
||||
onSelect() {
|
||||
copyAs(app.selectedIds, 'json')
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'toggle-auto-size',
|
||||
label: 'action.toggle-auto-size',
|
||||
readonlyOk: false,
|
||||
onSelect() {
|
||||
app.mark()
|
||||
app.updateShapes(
|
||||
app.selectedShapes
|
||||
.filter((shape) => shape && shape.type === 'text' && shape.props.autoSize === false)
|
||||
.map((shape: TLTextShape) => {
|
||||
return {
|
||||
id: shape.id,
|
||||
type: shape.type,
|
||||
props: {
|
||||
...shape.props,
|
||||
w: 8,
|
||||
autoSize: true,
|
||||
},
|
||||
} as TLTextShape
|
||||
})
|
||||
)
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'open-embed-link',
|
||||
label: 'action.open-embed-link',
|
||||
readonlyOk: true,
|
||||
onSelect() {
|
||||
const ids = app.selectedIds
|
||||
const warnMsg = 'No embed shapes selected'
|
||||
if (ids.length !== 1) {
|
||||
console.error(warnMsg)
|
||||
return
|
||||
}
|
||||
const shape = app.getShapeById(ids[0])
|
||||
if (!shape || !TLEmbedShapeDef.is(shape)) {
|
||||
console.error(warnMsg)
|
||||
return
|
||||
}
|
||||
|
||||
openWindow(shape.props.url, '_blank')
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'convert-to-bookmark',
|
||||
label: 'action.convert-to-bookmark',
|
||||
readonlyOk: false,
|
||||
onSelect() {
|
||||
const ids = app.selectedIds
|
||||
const shapes = ids.map((id) => app.getShapeById(id))
|
||||
|
||||
const createList: TLShapePartial[] = []
|
||||
const deleteList: TLShapeId[] = []
|
||||
for (const shape of shapes) {
|
||||
if (!shape || !TLEmbedShapeDef.is(shape) || !shape.props.url) continue
|
||||
|
||||
const newPos = new Vec2d(shape.x, shape.y)
|
||||
newPos.rot(-shape.rotation)
|
||||
newPos.add(
|
||||
new Vec2d(
|
||||
shape.props.w / 2 - DEFAULT_BOOKMARK_WIDTH / 2,
|
||||
shape.props.h / 2 - DEFAULT_BOOKMARK_HEIGHT / 2
|
||||
)
|
||||
)
|
||||
newPos.rot(shape.rotation)
|
||||
|
||||
createList.push({
|
||||
id: app.createShapeId(),
|
||||
type: 'bookmark',
|
||||
rotation: shape.rotation,
|
||||
x: newPos.x,
|
||||
y: newPos.y,
|
||||
props: {
|
||||
url: shape.props.url,
|
||||
opacity: '1',
|
||||
},
|
||||
})
|
||||
deleteList.push(shape.id)
|
||||
}
|
||||
|
||||
app.mark('convert shapes to bookmark')
|
||||
app.deleteShapes(deleteList)
|
||||
app.createShapes(createList)
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'convert-to-embed',
|
||||
label: 'action.convert-to-embed',
|
||||
readonlyOk: false,
|
||||
onSelect() {
|
||||
const ids = app.selectedIds
|
||||
const shapes = compact(ids.map((id) => app.getShapeById(id)))
|
||||
|
||||
const createList: TLShapePartial[] = []
|
||||
const deleteList: TLShapeId[] = []
|
||||
for (const shape of shapes) {
|
||||
if (!TLBookmarkShapeDef.is(shape)) continue
|
||||
|
||||
const { url } = shape.props
|
||||
|
||||
const embedInfo = getEmbedInfo(shape.props.url)
|
||||
|
||||
if (!embedInfo) continue
|
||||
if (!embedInfo.definition) continue
|
||||
|
||||
const { width, height, doesResize } = embedInfo.definition
|
||||
|
||||
const newPos = new Vec2d(shape.x, shape.y)
|
||||
newPos.rot(-shape.rotation)
|
||||
newPos.add(new Vec2d(shape.props.w / 2 - width / 2, shape.props.h / 2 - height / 2))
|
||||
newPos.rot(shape.rotation)
|
||||
|
||||
createList.push({
|
||||
id: app.createShapeId(),
|
||||
type: 'embed',
|
||||
x: newPos.x,
|
||||
y: newPos.y,
|
||||
rotation: shape.rotation,
|
||||
props: {
|
||||
url: url,
|
||||
w: width,
|
||||
h: height,
|
||||
doesResize,
|
||||
},
|
||||
})
|
||||
deleteList.push(shape.id)
|
||||
}
|
||||
|
||||
app.mark('convert shapes to embed')
|
||||
app.deleteShapes(deleteList)
|
||||
app.createShapes(createList)
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'duplicate',
|
||||
kbd: '$d',
|
||||
label: 'action.duplicate',
|
||||
icon: 'duplicate',
|
||||
readonlyOk: false,
|
||||
onSelect() {
|
||||
if (app.currentToolId !== 'select') return
|
||||
const ids = app.selectedIds
|
||||
const commonBounds = Box2d.Common(compact(ids.map((id) => app.getPageBoundsById(id))))
|
||||
const offset = app.canMoveCamera
|
||||
? {
|
||||
x: commonBounds.width + 10,
|
||||
y: 0,
|
||||
}
|
||||
: {
|
||||
x: 16 / app.zoomLevel,
|
||||
y: 16 / app.zoomLevel,
|
||||
}
|
||||
app.mark('duplicate shapes')
|
||||
app.duplicateShapes(ids, offset)
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'ungroup',
|
||||
label: 'action.ungroup',
|
||||
kbd: '$!g',
|
||||
icon: 'ungroup',
|
||||
readonlyOk: false,
|
||||
onSelect() {
|
||||
app.mark('ungroup')
|
||||
app.ungroupShapes(app.selectedIds)
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'group',
|
||||
label: 'action.group',
|
||||
kbd: '$g',
|
||||
icon: 'group',
|
||||
readonlyOk: false,
|
||||
onSelect() {
|
||||
if (app.selectedShapes.length === 1 && app.selectedShapes[0].type === 'group') {
|
||||
app.mark('ungroup')
|
||||
app.ungroupShapes(app.selectedIds)
|
||||
} else {
|
||||
app.mark('group')
|
||||
app.groupShapes(app.selectedIds)
|
||||
}
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'align-left',
|
||||
label: 'action.align-left',
|
||||
kbd: '?A',
|
||||
icon: 'align-left',
|
||||
readonlyOk: false,
|
||||
onSelect() {
|
||||
app.mark('align left')
|
||||
app.alignShapes('left', app.selectedIds)
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'align-center-horizontal',
|
||||
label: 'action.align-center-horizontal',
|
||||
contextMenuLabel: 'action.align-center-horizontal.short',
|
||||
kbd: '?H',
|
||||
icon: 'align-center-horizontal',
|
||||
readonlyOk: false,
|
||||
onSelect() {
|
||||
app.mark('align center horizontal')
|
||||
app.alignShapes('center-horizontal', app.selectedIds)
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'align-right',
|
||||
label: 'action.align-right',
|
||||
kbd: '?D',
|
||||
icon: 'align-right',
|
||||
readonlyOk: false,
|
||||
onSelect() {
|
||||
app.mark('align right')
|
||||
app.alignShapes('right', app.selectedIds)
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'align-center-vertical',
|
||||
label: 'action.align-center-vertical',
|
||||
contextMenuLabel: 'action.align-center-vertical.short',
|
||||
kbd: '?V',
|
||||
icon: 'align-center-vertical',
|
||||
readonlyOk: false,
|
||||
onSelect() {
|
||||
app.mark('align center vertical')
|
||||
app.alignShapes('center-vertical', app.selectedIds)
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'align-top',
|
||||
label: 'action.align-top',
|
||||
icon: 'align-top',
|
||||
kbd: '?W',
|
||||
readonlyOk: false,
|
||||
onSelect() {
|
||||
app.mark('align top')
|
||||
app.alignShapes('top', app.selectedIds)
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'align-bottom',
|
||||
label: 'action.align-bottom',
|
||||
icon: 'align-bottom',
|
||||
kbd: '?S',
|
||||
readonlyOk: false,
|
||||
onSelect() {
|
||||
app.mark('align bottom')
|
||||
app.alignShapes('bottom', app.selectedIds)
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'distribute-horizontal',
|
||||
label: 'action.distribute-horizontal',
|
||||
contextMenuLabel: 'action.distribute-horizontal.short',
|
||||
icon: 'distribute-horizontal',
|
||||
readonlyOk: false,
|
||||
onSelect() {
|
||||
app.mark('distribute horizontal')
|
||||
app.distributeShapes('horizontal', app.selectedIds)
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'distribute-vertical',
|
||||
label: 'action.distribute-vertical',
|
||||
contextMenuLabel: 'action.distribute-vertical.short',
|
||||
icon: 'distribute-vertical',
|
||||
readonlyOk: false,
|
||||
onSelect() {
|
||||
app.mark('distribute vertical')
|
||||
app.distributeShapes('vertical', app.selectedIds)
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'stretch-horizontal',
|
||||
label: 'action.stretch-horizontal',
|
||||
contextMenuLabel: 'action.stretch-horizontal.short',
|
||||
icon: 'stretch-horizontal',
|
||||
readonlyOk: false,
|
||||
onSelect() {
|
||||
app.mark('stretch horizontal')
|
||||
app.stretchShapes('horizontal', app.selectedIds)
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'stretch-vertical',
|
||||
label: 'action.stretch-vertical',
|
||||
contextMenuLabel: 'action.stretch-vertical.short',
|
||||
icon: 'stretch-vertical',
|
||||
readonlyOk: false,
|
||||
onSelect() {
|
||||
app.mark('stretch vertical')
|
||||
app.stretchShapes('vertical', app.selectedIds)
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'flip-horizontal',
|
||||
label: 'action.flip-horizontal',
|
||||
contextMenuLabel: 'action.flip-horizontal.short',
|
||||
kbd: '!h',
|
||||
readonlyOk: false,
|
||||
onSelect() {
|
||||
app.mark('flip horizontal')
|
||||
app.flipShapes('horizontal', app.selectedIds)
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'flip-vertical',
|
||||
label: 'action.flip-vertical',
|
||||
contextMenuLabel: 'action.flip-vertical.short',
|
||||
kbd: '!v',
|
||||
readonlyOk: false,
|
||||
onSelect() {
|
||||
app.mark('flip vertical')
|
||||
app.flipShapes('vertical', app.selectedIds)
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'pack',
|
||||
label: 'action.pack',
|
||||
icon: 'pack',
|
||||
readonlyOk: false,
|
||||
onSelect() {
|
||||
app.mark('pack')
|
||||
app.packShapes(app.selectedIds)
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'stack-vertical',
|
||||
label: 'action.stack-vertical',
|
||||
contextMenuLabel: 'action.stack-vertical.short',
|
||||
icon: 'stack-vertical',
|
||||
readonlyOk: false,
|
||||
onSelect() {
|
||||
app.mark('stack-vertical')
|
||||
app.stackShapes('vertical', app.selectedIds)
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'stack-horizontal',
|
||||
label: 'action.stack-horizontal',
|
||||
contextMenuLabel: 'action.stack-horizontal.short',
|
||||
icon: 'stack-horizontal',
|
||||
readonlyOk: false,
|
||||
onSelect() {
|
||||
app.mark('stack-horizontal')
|
||||
app.stackShapes('horizontal', app.selectedIds)
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'bring-to-front',
|
||||
label: 'action.bring-to-front',
|
||||
kbd: ']',
|
||||
icon: 'bring-to-front',
|
||||
readonlyOk: false,
|
||||
onSelect() {
|
||||
app.mark('bring to front')
|
||||
app.bringToFront()
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'bring-forward',
|
||||
label: 'action.bring-forward',
|
||||
icon: 'bring-forward',
|
||||
kbd: '?]',
|
||||
readonlyOk: false,
|
||||
onSelect() {
|
||||
app.mark('bring forward')
|
||||
app.bringForward()
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'send-backward',
|
||||
label: 'action.send-backward',
|
||||
icon: 'send-backward',
|
||||
kbd: '?[',
|
||||
readonlyOk: false,
|
||||
onSelect() {
|
||||
app.mark('send backward')
|
||||
app.sendBackward()
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'send-to-back',
|
||||
label: 'action.send-to-back',
|
||||
icon: 'send-to-back',
|
||||
kbd: '[',
|
||||
readonlyOk: false,
|
||||
onSelect() {
|
||||
app.mark('send to back')
|
||||
app.sendToBack()
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'cut',
|
||||
label: 'action.cut',
|
||||
kbd: '$x',
|
||||
readonlyOk: false,
|
||||
onSelect() {
|
||||
app.mark('cut')
|
||||
cut()
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'copy',
|
||||
label: 'action.copy',
|
||||
kbd: '$c',
|
||||
readonlyOk: true,
|
||||
onSelect() {
|
||||
copy()
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'paste',
|
||||
label: 'action.paste',
|
||||
kbd: '$v',
|
||||
readonlyOk: false,
|
||||
onSelect() {
|
||||
// must be inlined with a custom menu item
|
||||
// the kbd listed here should have no effect
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'select-all',
|
||||
label: 'action.select-all',
|
||||
kbd: '$a',
|
||||
readonlyOk: true,
|
||||
onSelect() {
|
||||
if (app.currentToolId !== 'select') {
|
||||
app.cancel()
|
||||
app.setSelectedTool('select')
|
||||
}
|
||||
|
||||
app.mark('select all kbd')
|
||||
app.selectAll()
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'select-none',
|
||||
label: 'action.select-none',
|
||||
readonlyOk: true,
|
||||
onSelect() {
|
||||
app.mark('select none')
|
||||
app.selectNone()
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'delete',
|
||||
label: 'action.delete',
|
||||
kbd: '⌫',
|
||||
icon: 'trash',
|
||||
readonlyOk: false,
|
||||
onSelect() {
|
||||
if (app.currentToolId !== 'select') return
|
||||
app.mark('delete')
|
||||
app.deleteShapes()
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'rotate-cw',
|
||||
label: 'action.rotate-cw',
|
||||
icon: 'rotate-cw',
|
||||
readonlyOk: false,
|
||||
onSelect() {
|
||||
if (app.selectedIds.length === 0) return
|
||||
app.mark('rotate-cw')
|
||||
const offset = app.selectionRotation % (TAU / 2)
|
||||
const dontUseOffset = approximately(offset, 0) || approximately(offset, TAU / 2)
|
||||
app.rotateShapesBy(app.selectedIds, TAU / 2 - (dontUseOffset ? 0 : offset))
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'rotate-ccw',
|
||||
label: 'action.rotate-ccw',
|
||||
icon: 'rotate-ccw',
|
||||
readonlyOk: false,
|
||||
onSelect() {
|
||||
if (app.selectedIds.length === 0) return
|
||||
app.mark('rotate-ccw')
|
||||
const offset = app.selectionRotation % (TAU / 2)
|
||||
const offsetCloseToZero = approximately(offset, 0)
|
||||
app.rotateShapesBy(app.selectedIds, offsetCloseToZero ? -(TAU / 2) : -offset)
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'zoom-in',
|
||||
label: 'action.zoom-in',
|
||||
kbd: '$=',
|
||||
readonlyOk: true,
|
||||
onSelect() {
|
||||
app.zoomIn(app.viewportScreenCenter, { duration: ANIMATION_MEDIUM_MS })
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'zoom-out',
|
||||
label: 'action.zoom-out',
|
||||
kbd: '$-',
|
||||
readonlyOk: true,
|
||||
onSelect() {
|
||||
app.zoomOut(app.viewportScreenCenter, { duration: ANIMATION_MEDIUM_MS })
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'zoom-to-100',
|
||||
label: 'action.zoom-to-100',
|
||||
icon: 'reset-zoom',
|
||||
kbd: '!0',
|
||||
readonlyOk: true,
|
||||
onSelect() {
|
||||
app.resetZoom(app.viewportScreenCenter, { duration: ANIMATION_MEDIUM_MS })
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'zoom-to-fit',
|
||||
label: 'action.zoom-to-fit',
|
||||
kbd: '!1',
|
||||
readonlyOk: true,
|
||||
onSelect() {
|
||||
app.zoomToFit({ duration: ANIMATION_MEDIUM_MS })
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'zoom-to-selection',
|
||||
label: 'action.zoom-to-selection',
|
||||
kbd: '!2',
|
||||
readonlyOk: true,
|
||||
onSelect() {
|
||||
app.zoomToSelection({ duration: ANIMATION_MEDIUM_MS })
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'toggle-snap-mode',
|
||||
label: 'action.toggle-snap-mode',
|
||||
menuLabel: 'action.toggle-snap-mode.menu',
|
||||
readonlyOk: false,
|
||||
onSelect() {
|
||||
app.updateUserDocumentSettings(
|
||||
{
|
||||
isSnapMode: !app.userDocumentSettings.isSnapMode,
|
||||
},
|
||||
true
|
||||
)
|
||||
},
|
||||
checkbox: true,
|
||||
},
|
||||
{
|
||||
id: 'toggle-dark-mode',
|
||||
label: 'action.toggle-dark-mode',
|
||||
menuLabel: 'action.toggle-dark-mode.menu',
|
||||
kbd: '$/',
|
||||
readonlyOk: true,
|
||||
onSelect() {
|
||||
app.updateUserDocumentSettings(
|
||||
{
|
||||
isDarkMode: !app.userDocumentSettings.isDarkMode,
|
||||
},
|
||||
true
|
||||
)
|
||||
},
|
||||
checkbox: true,
|
||||
},
|
||||
{
|
||||
id: 'toggle-transparent',
|
||||
label: 'action.toggle-transparent',
|
||||
menuLabel: 'action.toggle-transparent.menu',
|
||||
contextMenuLabel: 'action.toggle-transparent.context-menu',
|
||||
readonlyOk: true,
|
||||
onSelect() {
|
||||
app.updateInstanceState(
|
||||
{
|
||||
exportBackground: !app.instanceState.exportBackground,
|
||||
},
|
||||
true
|
||||
)
|
||||
},
|
||||
checkbox: true,
|
||||
},
|
||||
{
|
||||
id: 'toggle-tool-lock',
|
||||
label: 'action.toggle-tool-lock',
|
||||
menuLabel: 'action.toggle-tool-lock.menu',
|
||||
readonlyOk: false,
|
||||
kbd: 'q',
|
||||
onSelect() {
|
||||
app.updateInstanceState(
|
||||
{
|
||||
isToolLocked: !app.instanceState.isToolLocked,
|
||||
},
|
||||
true
|
||||
)
|
||||
},
|
||||
checkbox: true,
|
||||
},
|
||||
{
|
||||
id: 'toggle-focus-mode',
|
||||
label: 'action.toggle-focus-mode',
|
||||
menuLabel: 'action.toggle-focus-mode.menu',
|
||||
readonlyOk: true,
|
||||
kbd: '$.',
|
||||
checkbox: true,
|
||||
onSelect() {
|
||||
// this needs to be deferred because it causes the menu
|
||||
// UI to unmount which puts us in a dodgy state
|
||||
requestAnimationFrame(() => {
|
||||
app.batch(() => {
|
||||
clearDialogs()
|
||||
clearToasts()
|
||||
app.updateInstanceState(
|
||||
{
|
||||
isFocusMode: !app.instanceState.isFocusMode,
|
||||
},
|
||||
true
|
||||
)
|
||||
})
|
||||
})
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'toggle-grid',
|
||||
label: 'action.toggle-grid',
|
||||
menuLabel: 'action.toggle-grid.menu',
|
||||
readonlyOk: true,
|
||||
kbd: "$'",
|
||||
onSelect() {
|
||||
app.updateUserDocumentSettings(
|
||||
{
|
||||
isGridMode: !app.userDocumentSettings.isGridMode,
|
||||
},
|
||||
true
|
||||
)
|
||||
},
|
||||
checkbox: true,
|
||||
},
|
||||
{
|
||||
id: 'toggle-debug-mode',
|
||||
label: 'action.toggle-debug-mode',
|
||||
menuLabel: 'action.toggle-debug-mode.menu',
|
||||
readonlyOk: true,
|
||||
onSelect() {
|
||||
app.updateInstanceState(
|
||||
{
|
||||
isDebugMode: !app.instanceState.isDebugMode,
|
||||
},
|
||||
true
|
||||
)
|
||||
},
|
||||
checkbox: true,
|
||||
},
|
||||
{
|
||||
id: 'print',
|
||||
label: 'action.print',
|
||||
kbd: '$p',
|
||||
readonlyOk: true,
|
||||
onSelect() {
|
||||
printSelectionOrPages()
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'exit-pen-mode',
|
||||
label: 'action.exit-pen-mode',
|
||||
icon: 'cross-2',
|
||||
readonlyOk: true,
|
||||
onSelect() {
|
||||
app.setPenMode(false)
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'stop-following',
|
||||
label: 'action.stop-following',
|
||||
icon: 'cross-2',
|
||||
readonlyOk: true,
|
||||
onSelect() {
|
||||
app.stopFollowingUser()
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'back-to-content',
|
||||
label: 'action.back-to-content',
|
||||
icon: 'arrow-left',
|
||||
readonlyOk: true,
|
||||
onSelect() {
|
||||
const bounds = app.selectedPageBounds ?? app.allShapesCommonBounds
|
||||
|
||||
if (bounds) {
|
||||
app.zoomToBounds(
|
||||
bounds.minX,
|
||||
bounds.minY,
|
||||
bounds.width,
|
||||
bounds.height,
|
||||
Math.min(1, app.zoomLevel),
|
||||
{ duration: 220 }
|
||||
)
|
||||
}
|
||||
},
|
||||
},
|
||||
])
|
||||
|
||||
if (overrides) {
|
||||
return overrides(app, actions, undefined)
|
||||
}
|
||||
|
||||
return actions
|
||||
}, [
|
||||
overrides,
|
||||
app,
|
||||
addDialog,
|
||||
insertMedia,
|
||||
exportAs,
|
||||
copyAs,
|
||||
cut,
|
||||
copy,
|
||||
clearDialogs,
|
||||
clearToasts,
|
||||
printSelectionOrPages,
|
||||
])
|
||||
|
||||
return <ActionsContext.Provider value={asActions(actions)}>{children}</ActionsContext.Provider>
|
||||
}
|
||||
|
||||
/** @public */
|
||||
export function useActions() {
|
||||
const ctx = React.useContext(ActionsContext)
|
||||
|
||||
if (!ctx) {
|
||||
throw new Error('useTools must be used within a ToolProvider')
|
||||
}
|
||||
|
||||
return ctx
|
||||
}
|
||||
|
||||
function asActions<T extends Record<string, ActionItem>>(actions: T) {
|
||||
return actions as Record<keyof typeof actions, ActionItem>
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue