You've already forked bilibili-subtitle
33 lines
1.1 KiB
TypeScript
33 lines
1.1 KiB
TypeScript
import { setCurFetched, setCurInfo, setData, setInfos, setTitle, setUrl } from '@/redux/envReducer'
|
|
import { useMemo } from 'react'
|
|
import { useAppDispatch } from './redux'
|
|
import { MESSAGE_TO_APP_SET_INFOS, MESSAGE_TO_APP_SET_VIDEO_INFO } from '@/const'
|
|
import useMessageService from '@/messaging/useMessageService'
|
|
|
|
const useMessagingService = () => {
|
|
const dispatch = useAppDispatch()
|
|
|
|
//methods
|
|
const methods: {
|
|
[key: string]: (params: any, context: MethodContext) => boolean
|
|
} = useMemo(() => ({
|
|
[MESSAGE_TO_APP_SET_INFOS]: (params: any, context: MethodContext) => {
|
|
dispatch(setInfos(params.infos))
|
|
dispatch(setCurInfo(undefined))
|
|
dispatch(setCurFetched(false))
|
|
dispatch(setData(undefined))
|
|
return true
|
|
},
|
|
[MESSAGE_TO_APP_SET_VIDEO_INFO]: (params: any, context: MethodContext) => {
|
|
dispatch(setInfos(params.infos))
|
|
dispatch(setUrl(params.url))
|
|
dispatch(setTitle(params.title))
|
|
console.debug('video title: ', params.title)
|
|
return true
|
|
},
|
|
}), [dispatch])
|
|
|
|
useMessageService(methods)
|
|
}
|
|
|
|
export default useMessagingService |