Tldraw/hooks/useLoadOnMount.ts

23 wiersze
595 B
TypeScript
Czysty Zwykły widok Historia

2021-06-21 21:35:28 +00:00
/* eslint-disable @typescript-eslint/explicit-module-boundary-types */
2021-06-17 10:43:55 +00:00
import { useEffect } from 'react'
import state from 'state'
export default function useLoadOnMount(roomId: string = undefined) {
useEffect(() => {
2021-06-17 10:43:55 +00:00
const fonts = (document as any).fonts
2021-06-28 20:45:06 +00:00
fonts.load('12px Verveine Regular', 'Fonts are loaded!').then(() => {
state.send('MOUNTED')
2021-06-30 20:33:30 +00:00
if (roomId !== undefined) {
state.send('RT_LOADED_ROOM', { id: roomId })
}
2021-06-28 20:45:06 +00:00
})
2021-06-17 10:43:55 +00:00
2021-05-17 21:27:18 +00:00
return () => {
2021-06-17 10:43:55 +00:00
state.send('UNMOUNTED')
2021-06-28 20:45:06 +00:00
state.send('RT_UNLOADED_ROOM', { id: roomId })
2021-05-17 21:27:18 +00:00
}
2021-06-28 20:45:06 +00:00
}, [roomId])
}