mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-09 15:05:35 +00:00
refactor: remove all legacy files
+ comment/delete things that haven't yet migrated to mantine
This commit is contained in:
90
inertia/components/dashboard/dashboard_header.tsx
Normal file
90
inertia/components/dashboard/dashboard_header.tsx
Normal file
@@ -0,0 +1,90 @@
|
||||
import { Link } from '@inertiajs/react';
|
||||
import { route } from '@izzyjs/route/client';
|
||||
import { ActionIcon, AppShell, Burger, Group, Menu, Text } from '@mantine/core';
|
||||
import { useTranslation } from 'react-i18next';
|
||||
import { BsThreeDotsVertical } from 'react-icons/bs';
|
||||
import { GoPencil } from 'react-icons/go';
|
||||
import { IoIosAddCircleOutline } from 'react-icons/io';
|
||||
import { IoTrashOutline } from 'react-icons/io5';
|
||||
import { appendCollectionId } from '~/lib/navigation';
|
||||
import { useActiveCollection } from '~/store/collection_store';
|
||||
|
||||
interface DashboardHeaderProps {
|
||||
navbar: {
|
||||
opened: boolean;
|
||||
toggle: () => void;
|
||||
};
|
||||
aside: {
|
||||
opened: boolean;
|
||||
toggle: () => void;
|
||||
};
|
||||
}
|
||||
export function DashboardHeader({ navbar, aside }: DashboardHeaderProps) {
|
||||
const { t } = useTranslation('common');
|
||||
const { activeCollection } = useActiveCollection();
|
||||
return (
|
||||
<AppShell.Header style={{ display: 'flex', alignItems: 'center' }}>
|
||||
<Group justify="space-between" px="md" flex={1}>
|
||||
<Group h="100%">
|
||||
<Burger
|
||||
opened={navbar.opened}
|
||||
onClick={navbar.toggle}
|
||||
hiddenFrom="sm"
|
||||
size="sm"
|
||||
/>
|
||||
<Text lineClamp={1}>{activeCollection?.name}</Text>
|
||||
</Group>
|
||||
<Group>
|
||||
<Menu withinPortal shadow="md" width={225}>
|
||||
<Menu.Target>
|
||||
<ActionIcon variant="subtle" color="var(--mantine-color-text)">
|
||||
<BsThreeDotsVertical />
|
||||
</ActionIcon>
|
||||
</Menu.Target>
|
||||
<Menu.Dropdown>
|
||||
<Menu.Item
|
||||
component={Link}
|
||||
href={appendCollectionId(
|
||||
route('link.create-form').path,
|
||||
activeCollection?.id
|
||||
)}
|
||||
leftSection={<IoIosAddCircleOutline />}
|
||||
color="blue"
|
||||
>
|
||||
{t('link.create')}
|
||||
</Menu.Item>
|
||||
<Menu.Item
|
||||
component={Link}
|
||||
href={appendCollectionId(
|
||||
route('collection.edit-form').path,
|
||||
activeCollection?.id
|
||||
)}
|
||||
leftSection={<GoPencil />}
|
||||
color="blue"
|
||||
>
|
||||
{t('collection.edit')}
|
||||
</Menu.Item>
|
||||
<Menu.Item
|
||||
component={Link}
|
||||
href={appendCollectionId(
|
||||
route('collection.delete-form').path,
|
||||
activeCollection?.id
|
||||
)}
|
||||
leftSection={<IoTrashOutline />}
|
||||
color="red"
|
||||
>
|
||||
{t('collection.delete')}
|
||||
</Menu.Item>
|
||||
</Menu.Dropdown>
|
||||
</Menu>
|
||||
<Burger
|
||||
opened={aside.opened}
|
||||
onClick={aside.toggle}
|
||||
hiddenFrom="md"
|
||||
size="md"
|
||||
/>
|
||||
</Group>
|
||||
</Group>
|
||||
</AppShell.Header>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user