mirror of
https://github.com/jeffvli/feishin.git
synced 2026-07-21 18:06:30 +02:00
97 lines
4.4 KiB
TypeScript
97 lines
4.4 KiB
TypeScript
import { openContextModal } from '@mantine/modals';
|
|
import isElectron from 'is-electron';
|
|
import { useTranslation } from 'react-i18next';
|
|
|
|
import { isServerLock } from '/@/renderer/features/action-required/utils/window-properties';
|
|
import JellyfinLogo from '/@/renderer/features/servers/assets/jellyfin.png';
|
|
import NavidromeLogo from '/@/renderer/features/servers/assets/navidrome.png';
|
|
import OpenSubsonicLogo from '/@/renderer/features/servers/assets/opensubsonic.png';
|
|
import { AddServerForm } from '/@/renderer/features/servers/components/add-server-form';
|
|
import { IgnoreCorsSslSwitches } from '/@/renderer/features/servers/components/ignore-cors-ssl-switches';
|
|
import { ServerListItem } from '/@/renderer/features/servers/components/server-list-item';
|
|
import { useCurrentServer, useServerList } from '/@/renderer/store';
|
|
import { Accordion } from '/@/shared/components/accordion/accordion';
|
|
import { Button } from '/@/shared/components/button/button';
|
|
import { Divider } from '/@/shared/components/divider/divider';
|
|
import { Group } from '/@/shared/components/group/group';
|
|
import { Icon } from '/@/shared/components/icon/icon';
|
|
import { ContextModalVars } from '/@/shared/components/modal/modal';
|
|
import { Stack } from '/@/shared/components/stack/stack';
|
|
import { Text } from '/@/shared/components/text/text';
|
|
import { ServerType } from '/@/shared/types/domain-types';
|
|
|
|
export const ServerList = () => {
|
|
const { t } = useTranslation();
|
|
const currentServer = useCurrentServer();
|
|
const serverListQuery = useServerList();
|
|
const serverLock = isServerLock();
|
|
|
|
const handleAddServerModal = () => {
|
|
openContextModal({
|
|
innerProps: {
|
|
modalBody: (vars: ContextModalVars) => (
|
|
<AddServerForm onCancel={() => vars.context.closeModal(vars.id)} />
|
|
),
|
|
},
|
|
modal: 'base',
|
|
title: t('form.addServer.title'),
|
|
});
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<Stack>
|
|
<Accordion variant="separated">
|
|
{Object.keys(serverListQuery)?.map((serverId) => {
|
|
const server = serverListQuery[serverId];
|
|
return (
|
|
<Accordion.Item key={server.id} value={server.id}>
|
|
<Accordion.Control>
|
|
<Group>
|
|
<img
|
|
src={
|
|
server.type === ServerType.NAVIDROME
|
|
? NavidromeLogo
|
|
: server.type === ServerType.JELLYFIN
|
|
? JellyfinLogo
|
|
: OpenSubsonicLogo
|
|
}
|
|
style={{
|
|
height: 'var(--theme-font-size-lg)',
|
|
width: 'var(--theme-font-size-lg)',
|
|
}}
|
|
/>
|
|
<Text fw={server.id === currentServer?.id ? 600 : 400}>
|
|
{server?.name}
|
|
</Text>
|
|
</Group>
|
|
</Accordion.Control>
|
|
<Accordion.Panel>
|
|
<ServerListItem server={server} />
|
|
</Accordion.Panel>
|
|
</Accordion.Item>
|
|
);
|
|
})}
|
|
{!serverLock && (
|
|
<Group grow pt="md">
|
|
<Button
|
|
autoFocus
|
|
leftSection={<Icon icon="add" />}
|
|
onClick={handleAddServerModal}
|
|
>
|
|
{t('form.addServer.title')}
|
|
</Button>
|
|
</Group>
|
|
)}
|
|
</Accordion>
|
|
{isElectron() && (
|
|
<>
|
|
<Divider />
|
|
<IgnoreCorsSslSwitches />
|
|
</>
|
|
)}
|
|
</Stack>
|
|
</>
|
|
);
|
|
};
|