generated from vivid-lapin/ts
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathLocalRenderer.tsx
76 lines (74 loc) · 2.09 KB
/
LocalRenderer.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import clsx from "clsx"
import React, { useEffect, useMemo } from "react"
import { useRecoilValue, useSetRecoilState } from "recoil"
import { FileSelector } from "./components/FileSelector"
import { LOCAL_META, Local_RECORDS_WINDOW_ID } from "./constants"
import { ContentPlayerPlayingContent, InitPlugin } from "../@types/plugin"
import { DEFAULT_SERVICES } from "../shared/services"
import tailwind from "../tailwind.scss"
export const LocalRenderer: InitPlugin["renderer"] = ({
appInfo,
functions,
atoms,
rpc,
}) => {
return {
...LOCAL_META,
exposedAtoms: [],
sharedAtoms: [],
storedAtoms: [],
setup() {
return
},
components: [],
destroy() {
return
},
windows: {
[Local_RECORDS_WINDOW_ID]: () => {
const activeId = useRecoilValue(
atoms.globalActiveContentPlayerIdSelector
)
const setPlayingContent = useSetRecoilState(
atoms.globalContentPlayerPlayingContentFamily(activeId ?? 0)
)
const services = useRecoilValue(atoms.mirakurunServicesSelector)
const filledServices = useMemo(
() => services || DEFAULT_SERVICES,
[services]
)
useEffect(() => {
rpc.setWindowTitle(`ローカル - ${appInfo.name}`)
}, [])
return (
<>
<style>{tailwind}</style>
<div
className={clsx(
"w-full",
"h-screen",
"bg-gray-100",
"text-gray-900",
"flex",
"leading-loose"
)}
>
<FileSelector
services={filledServices}
setPlayingContent={setPlayingContent}
openContentPlayer={(
playingContent: ContentPlayerPlayingContent
) => {
return functions.openContentPlayerWindow({
playingContent,
})
}}
requestDialog={rpc.requestDialog}
/>
</div>
</>
)
},
},
}
}