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-05-16 07:09:46 +00:00
|
|
|
|
2021-06-28 20:45:06 +00:00
|
|
|
export default function useLoadOnMount(roomId: string) {
|
2021-05-16 07:09:46 +00:00
|
|
|
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')
|
|
|
|
state.send('RT_LOADED_ROOM', { id: roomId })
|
|
|
|
})
|
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])
|
2021-05-16 07:09:46 +00:00
|
|
|
}
|