Files
vito/resources/js/pages/notification-channels/index.tsx
2025-05-25 22:17:19 +02:00

38 lines
1.5 KiB
TypeScript

import SettingsLayout from '@/layouts/settings/layout';
import { Head, usePage } from '@inertiajs/react';
import Container from '@/components/container';
import Heading from '@/components/heading';
import { Button } from '@/components/ui/button';
import ConnectNotificationChannel from '@/pages/notification-channels/components/connect-notification-channel';
import { DataTable } from '@/components/data-table';
import { columns } from '@/pages/notification-channels/components/columns';
import { NotificationChannel } from '@/types/notification-channel';
import { Configs, PaginatedData } from '@/types';
type Page = {
notificationChannels: PaginatedData<NotificationChannel>;
configs: Configs;
};
export default function NotificationChannels() {
const page = usePage<Page>();
return (
<SettingsLayout>
<Head title="Notification Channels" />
<Container className="max-w-5xl">
<div className="flex items-start justify-between">
<Heading title="Notification Channels" description="Here you can manage all of the notification channel connectinos" />
<div className="flex items-center gap-2">
<ConnectNotificationChannel providers={page.props.configs.notification_channels_providers}>
<Button>Connect</Button>
</ConnectNotificationChannel>
</div>
</div>
<DataTable columns={columns} paginatedData={page.props.notificationChannels} />
</Container>
</SettingsLayout>
);
}