b68a4681e1
* move folders out of packages * Remove custom yarn stuff, remove duplicate readme * Remove stitches config * Add README script. * bump deps * Fix script * Update package.json
37 lines
960 B
TypeScript
37 lines
960 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) => {
|
|
if (reason.startsWith('command')) {
|
|
gtag.event({
|
|
action: reason,
|
|
category: 'editor',
|
|
label: `page:${id}`,
|
|
value: 0,
|
|
})
|
|
}
|
|
},
|
|
[id]
|
|
)
|
|
|
|
return (
|
|
<div className="tldraw">
|
|
<TLDraw id={id} onMount={handleMount} onChange={handleChange} autofocus />
|
|
</div>
|
|
)
|
|
}
|