File tree 2 files changed +8
-1
lines changed
2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,10 @@ import {
22
22
contentPlayerTotSelector ,
23
23
contentPlayerTsFirstPcrSelector ,
24
24
} from "./atoms/contentPlayerSelectors"
25
- import { globalContentPlayerPlayingContentFamily } from "./atoms/globalFamilies"
25
+ import {
26
+ globalContentPlayerPlayingContentFamily ,
27
+ globalContentPlayerSelectedServiceFamily ,
28
+ } from "./atoms/globalFamilies"
26
29
import {
27
30
globalActiveContentPlayerIdSelector ,
28
31
globalContentPlayerIdsSelector ,
@@ -102,6 +105,7 @@ export const PluginLoader: React.FC<{
102
105
globalContentPlayerIdsSelector,
103
106
globalContentPlayerPlayingContentFamily,
104
107
globalActiveContentPlayerIdSelector,
108
+ globalContentPlayerSelectedServiceFamily,
105
109
contentPlayerPlayingContentAtom :
106
110
globalContentPlayerPlayingContentFamily ( window . id ?? - 1 ) ,
107
111
contentPlayerServiceSelector,
Original file line number Diff line number Diff line change @@ -84,6 +84,9 @@ export type PluginInRendererArgs = {
84
84
globalActiveContentPlayerIdSelector : Recoil . RecoilValueReadOnly <
85
85
number | null
86
86
>
87
+ globalContentPlayerSelectedServiceFamily : (
88
+ n : number
89
+ ) => Recoil . RecoilState < Service | null >
87
90
contentPlayerPlayingContentAtom : Recoil . RecoilState < ContentPlayerPlayingContent | null >
88
91
contentPlayerServiceSelector : Recoil . RecoilValueReadOnly < Service | null >
89
92
contentPlayerProgramSelector : Recoil . RecoilValueReadOnly < Program | null >
You can’t perform that action at this time.
0 commit comments