mirror of
https://github.com/SteamDeckHomebrew/decky-loader.git
synced 2026-06-17 00:37:49 +00:00
49 lines
1.4 KiB
TypeScript
49 lines
1.4 KiB
TypeScript
import {
|
|
ButtonItem,
|
|
PanelSection,
|
|
PanelSectionRow,
|
|
joinClassNames,
|
|
scrollClasses,
|
|
staticClasses,
|
|
} from 'decky-frontend-lib';
|
|
import { VFC } from 'react';
|
|
|
|
import { useDeckyState } from './DeckyState';
|
|
import NotificationBadge from './NotificationBadge';
|
|
|
|
const PluginView: VFC = () => {
|
|
const { plugins, updates, activePlugin, setActivePlugin } = useDeckyState();
|
|
|
|
if (activePlugin) {
|
|
return (
|
|
<div
|
|
className={joinClassNames(staticClasses.TabGroupPanel, scrollClasses.ScrollPanel, scrollClasses.ScrollY)}
|
|
style={{ height: '100%' }}
|
|
>
|
|
{activePlugin.content}
|
|
</div>
|
|
);
|
|
}
|
|
return (
|
|
<div className={joinClassNames(staticClasses.TabGroupPanel, scrollClasses.ScrollPanel, scrollClasses.ScrollY)}>
|
|
<PanelSection>
|
|
{plugins
|
|
.filter((p) => p.content)
|
|
.map(({ name, icon }) => (
|
|
<PanelSectionRow key={name}>
|
|
<ButtonItem layout="below" onClick={() => setActivePlugin(name)}>
|
|
<div style={{ display: 'flex', justifyContent: 'space-between' }}>
|
|
<div>{icon}</div>
|
|
<div>{name}</div>
|
|
<NotificationBadge show={updates?.has(name)} style={{ top: '-5px', right: '-5px' }} />
|
|
</div>
|
|
</ButtonItem>
|
|
</PanelSectionRow>
|
|
))}
|
|
</PanelSection>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default PluginView;
|