fb77323ef2
* Fix escape key for menu * Adds filesystem support, readonly mode * Move file system events to external hook * Adds onSignIn callback, prevent event by default
43 lines
1.1 KiB
TypeScript
43 lines
1.1 KiB
TypeScript
import * as React from 'react'
|
|
import { TLDrawState } from '@tldraw/tldraw'
|
|
|
|
export function useFileSystem(tlstate: TLDrawState) {
|
|
const promptSaveBeforeChange = React.useCallback(async () => {
|
|
if (tlstate.isDirty) {
|
|
if (tlstate.fileSystemHandle) {
|
|
if (window.confirm('Do you want to save changes to your current project?')) {
|
|
await tlstate.saveProject()
|
|
}
|
|
} else {
|
|
if (window.confirm('Do you want to save your current project?')) {
|
|
await tlstate.saveProject()
|
|
}
|
|
}
|
|
}
|
|
}, [tlstate])
|
|
|
|
const onNewProject = React.useCallback(async () => {
|
|
await promptSaveBeforeChange()
|
|
tlstate.newProject()
|
|
}, [tlstate, promptSaveBeforeChange])
|
|
|
|
const onSaveProject = React.useCallback(() => {
|
|
tlstate.saveProject()
|
|
}, [tlstate])
|
|
|
|
const onSaveProjectAs = React.useCallback(() => {
|
|
tlstate.saveProjectAs()
|
|
}, [tlstate])
|
|
|
|
const onOpenProject = React.useCallback(async () => {
|
|
await promptSaveBeforeChange()
|
|
tlstate.openProject()
|
|
}, [tlstate, promptSaveBeforeChange])
|
|
|
|
return {
|
|
onNewProject,
|
|
onSaveProject,
|
|
onSaveProjectAs,
|
|
onOpenProject,
|
|
}
|
|
}
|