Tldraw/hooks/useLoadOnMount.ts

28 wiersze
834 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'
2021-07-02 12:04:45 +00:00
import coopState from 'state/coop/coop-state'
export default function useLoadOnMount(roomId?: string) {
useEffect(() => {
2021-07-04 18:45:07 +00:00
if ('fonts' in document) {
const fonts = (document as any).fonts
fonts.load('12px Verveine Regular', 'Fonts are loaded!').then(() => {
state.send('MOUNTED', { roomId })
2021-06-17 10:43:55 +00:00
// if (roomId !== undefined) {
// state.send('RT_LOADED_ROOM', { id: roomId })
// coopState.send('JOINED_ROOM', { id: roomId })
// }
2021-07-04 18:45:07 +00:00
})
} else {
setTimeout(() => state.send('MOUNTED'), 1000)
}
2021-06-17 10:43:55 +00:00
2021-05-17 21:27:18 +00:00
return () => {
state.send('UNMOUNTED', { roomId })
2021-07-02 12:04:45 +00:00
coopState.send('LEFT_ROOM', { id: roomId })
2021-05-17 21:27:18 +00:00
}
2021-06-28 20:45:06 +00:00
}, [roomId])
}