Add Quickaction to home page

This commit is contained in:
Matthias Mair 2024-08-22 00:19:32 +02:00
parent 0a38aed90e
commit 08625ce500
No known key found for this signature in database
GPG Key ID: A593429DDA23B66A
3 changed files with 33 additions and 25 deletions

View File

@ -10,16 +10,24 @@ import {
} from '@mantine/core';
import { IconHome } from '@tabler/icons-react';
import { ActionButton } from '../../../../components/buttons/ActionButton';
import { PlaceholderPill } from '../../../../components/items/Placeholder';
import { ActionButton } from '../buttons/ActionButton';
import { PlaceholderPill } from '../items/Placeholder';
export function generateQuickAction(navigate: any) {
return () => (
<Stack gap={'xs'} ml={'sm'}>
export const QuickAction = ({
navigate,
ml = 'sm'
}: {
navigate?: any;
ml?: string;
}) => {
return (
<Stack gap={'xs'} ml={ml}>
<Title order={5}>
<Trans>Quick Actions</Trans>
</Title>
<Flex align={'flex-end'}>
{navigate ? (
<>
<ActionButton
icon={<IconHome />}
color="blue"
@ -30,6 +38,8 @@ export function generateQuickAction(navigate: any) {
onClick={() => navigate('home')}
/>
<Divider orientation="vertical" mx="md" />
</>
) : null}
<SimpleGrid cols={3}>
<Paper shadow="xs" p="sm" withBorder>
<Text>
@ -48,4 +58,4 @@ export function generateQuickAction(navigate: any) {
</Flex>
</Stack>
);
}
};

View File

@ -1,8 +1,10 @@
import { Trans, t } from '@lingui/macro';
import { Alert, Button, Divider, Stack, Title } from '@mantine/core';
import { Alert, Button, Stack, Title } from '@mantine/core';
import { IconBrandGithub } from '@tabler/icons-react';
export default function HomePanel() {
import { QuickAction } from '../../../../components/settings/QuickAction';
export default function HomePanel(): JSX.Element {
return (
<Stack gap="xs">
<Alert color="blue" title={t`This is new!`}>
@ -21,10 +23,7 @@ export default function HomePanel() {
<IconBrandGithub /> <Trans>Open an issue</Trans>
</Button>
</Alert>
<Title order={5}>
<Trans>Quick actions</Trans>
</Title>
TBD
<QuickAction ml="" />
<Title order={5}>
<Trans>System status</Trans>
</Title>

View File

@ -23,10 +23,10 @@ import { useLocation, useNavigate } from 'react-router-dom';
import PermissionDenied from '../../../../components/errors/PermissionDenied';
import { PanelGroup, PanelType } from '../../../../components/nav/PanelGroup';
import { SettingsHeader } from '../../../../components/nav/SettingsHeader';
import { QuickAction } from '../../../../components/settings/QuickAction';
import { GlobalSettingList } from '../../../../components/settings/SettingList';
import { Loadable } from '../../../../functions/loading';
import { useUserState } from '../../../../states/UserState';
import { generateQuickAction } from './generateQuickAction';
const ReportTemplatePanel = Loadable(
lazy(() => import('./ReportTemplatePanel'))
@ -96,7 +96,6 @@ export default function AdminCenter() {
return panel !== 'home';
}, [panel]);
const QuickAction = generateQuickAction(navigate);
const adminCenterPanels: PanelType[] = useMemo(() => {
return [
{
@ -213,7 +212,7 @@ export default function AdminCenter() {
switch_link="/settings/system"
switch_text="System Settings"
/>
{showQuickAction ? <QuickAction /> : null}
{showQuickAction ? <QuickAction navigate={navigate} /> : null}
<PanelGroup
pageKey="admin-center"
panels={adminCenterPanels}