Initial commit

This commit is contained in:
Jonas Dellinger 2022-04-23 00:42:11 +02:00
commit 52f6ca1c58
8 changed files with 2679 additions and 0 deletions

51
src/index.tsx Normal file
View file

@ -0,0 +1,51 @@
import {
Button,
definePlugin,
PanelSection,
PanelSectionRow,
ServerAPI,
TabTitle,
} from "decky-frontend-lib";
import { useState, VFC } from "react";
import { FaShip } from "react-icons/fa";
interface AddMethodArgs {
left: number;
right: number;
}
const Content: VFC<{ serverAPI: ServerAPI }> = ({ serverAPI }) => {
const [result, setResult] = useState<number | undefined>();
const onClick = async () => {
const result = await serverAPI.callPluginMethod<AddMethodArgs, number>(
"add",
{
left: 2,
right: 2,
}
);
if (result.success) {
setResult(result.result);
}
};
return (
<PanelSection>
<PanelSectionRow>
<Button layout="below" bottomSeparator={false} onClick={onClick}>
What is 2+2?
</Button>
<div>Server says: {result}</div>
</PanelSectionRow>
</PanelSection>
);
};
export default definePlugin((serverApi) => {
return {
title: <TabTitle>Example Plugin</TabTitle>,
content: <Content serverAPI={serverApi} />,
icon: <FaShip />,
};
});