This repository was archived by the owner on Feb 4, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.tsx
More file actions
103 lines (99 loc) · 2.4 KB
/
index.tsx
File metadata and controls
103 lines (99 loc) · 2.4 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
import {
ButtonItem,
definePlugin,
PanelSection,
PanelSectionRow,
Router,
ServerAPI,
SidebarNavigation,
staticClasses,
} from "decky-frontend-lib";
import { VFC } from "react";
import { FaShip } from "react-icons/fa";
import {
ButtonPlayground,
DropdownPlayground,
ProgressBarPlayground,
SliderPlayground,
TextFieldPlayground,
TogglePlayground,
} from "./playgrounds";
const Content: VFC<{ serverAPI: ServerAPI }> = ({}) => {
return (
<PanelSection title="Panel Section">
<PanelSectionRow>
<ButtonItem
layout="below"
onClick={() => {
Router.CloseSideMenus();
Router.Navigate("/decky-playground");
}}
>
Decky Playground
</ButtonItem>
</PanelSectionRow>
<PanelSectionRow>
<ButtonItem
layout="below"
onClick={() => {
Router.CloseSideMenus();
Router.Navigate("/zoo");
}}
>
Deck Zoo
</ButtonItem>
</PanelSectionRow>
</PanelSection>
);
};
const DeckyPluginRouterTest: VFC = () => {
return (
<SidebarNavigation
title="Decky Playground"
showTitle
pages={[
{
title: "TextField",
content: <TextFieldPlayground />,
route: "/decky-playground/textfield",
},
{
title: "Button",
content: <ButtonPlayground />,
route: "/decky-playground/button",
},
{
title: "Dropdown",
content: <DropdownPlayground />,
route: "/decky-playground/dropdown",
},
{
title: "Slider",
content: <SliderPlayground />,
route: "/decky-playground/slider",
},
{
title: "Toggle",
content: <TogglePlayground />,
route: "/decky-playground/toggle",
},
{
title: "Progress Bar",
content: <ProgressBarPlayground />,
route: "/decky-playground/progressbar",
},
]}
/>
);
};
export default definePlugin((serverApi: ServerAPI) => {
serverApi.routerHook.addRoute("/decky-playground", DeckyPluginRouterTest);
return {
title: <div className={staticClasses.Title}>Example Plugin</div>,
content: <Content serverAPI={serverApi} />,
icon: <FaShip />,
onDismount() {
serverApi.routerHook.removeRoute("/decky-playground");
},
};
});