1d988f132a
* This PR restores the sentry and pwa features * Add gtag to editor in events.
32 lines
870 B
TypeScript
32 lines
870 B
TypeScript
import { TLDraw, TLDrawState, Data } from '@tldraw/tldraw'
|
|
import * as gtag from '-utils/gtag'
|
|
import React from 'react'
|
|
|
|
interface EditorProps {
|
|
id?: string
|
|
}
|
|
|
|
export default function Editor({ id = 'home' }: EditorProps) {
|
|
// Put the tlstate into the window, for debugging.
|
|
const handleMount = React.useCallback((tlstate: TLDrawState) => {
|
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
// @ts-ignore
|
|
window.tlstate = tlstate
|
|
}, [])
|
|
|
|
// Send events to gtag as actions.
|
|
const handleChange = React.useCallback((_tlstate: TLDrawState, _state: Data, reason: string) => {
|
|
gtag.event({
|
|
action: reason,
|
|
category: 'editor',
|
|
label: `page:${id}`,
|
|
value: 0,
|
|
})
|
|
}, [])
|
|
|
|
return (
|
|
<div className="tldraw">
|
|
<TLDraw id={id} onMount={handleMount} onChange={handleChange} autofocus />
|
|
</div>
|
|
)
|
|
}
|