ef9d457a14
* fix types * Update .eslintrc.json
59 lines
1.4 KiB
TypeScript
59 lines
1.4 KiB
TypeScript
import { Tldraw, TldrawApp, TldrawProps, useFileSystem } from '@tldraw/tldraw'
|
|
import { useAccountHandlers } from 'hooks/useAccountHandlers'
|
|
import { useUploadAssets } from 'hooks/useUploadAssets'
|
|
import * as React from 'react'
|
|
import * as gtag from 'utils/gtag'
|
|
|
|
declare const window: Window & { app: TldrawApp }
|
|
|
|
interface EditorProps {
|
|
id?: string
|
|
isUser?: boolean
|
|
isSponsor?: boolean
|
|
}
|
|
|
|
const Editor = ({
|
|
id = 'home',
|
|
isUser = false,
|
|
isSponsor = false,
|
|
...rest
|
|
}: EditorProps & Partial<TldrawProps>) => {
|
|
const handleMount = React.useCallback((app: TldrawApp) => {
|
|
window.app = app
|
|
}, [])
|
|
|
|
// Send events to gtag as actions.
|
|
const handlePersist = React.useCallback((_app: TldrawApp, reason?: string) => {
|
|
gtag.event({
|
|
action: reason ?? '',
|
|
category: 'editor',
|
|
label: reason ?? 'persist',
|
|
value: 0,
|
|
})
|
|
}, [])
|
|
|
|
const fileSystemEvents = useFileSystem()
|
|
|
|
const { onSignIn, onSignOut } = useAccountHandlers()
|
|
|
|
const { onAssetUpload } = useUploadAssets()
|
|
|
|
return (
|
|
<div className="tldraw">
|
|
<Tldraw
|
|
id={id}
|
|
autofocus
|
|
onMount={handleMount}
|
|
onPersist={handlePersist}
|
|
showSponsorLink={!isSponsor}
|
|
onSignIn={isSponsor ? undefined : onSignIn}
|
|
onSignOut={isUser ? onSignOut : undefined}
|
|
onAssetUpload={onAssetUpload}
|
|
{...fileSystemEvents}
|
|
{...rest}
|
|
/>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Editor
|