mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-02 06:26:16 +00:00
40 lines
1.4 KiB
TypeScript
40 lines
1.4 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 React from 'react';
|
|
import ConnectSourceControl from '@/pages/source-controls/components/connect-source-control';
|
|
import { DataTable } from '@/components/data-table';
|
|
import { columns } from '@/pages/source-controls/components/columns';
|
|
import { SourceControl } from '@/types/source-control';
|
|
import { Configs } from '@/types';
|
|
|
|
type Page = {
|
|
sourceControls: {
|
|
data: SourceControl[];
|
|
};
|
|
configs: Configs;
|
|
};
|
|
|
|
export default function SourceControls() {
|
|
const page = usePage<Page>();
|
|
|
|
return (
|
|
<SettingsLayout>
|
|
<Head title="Source Controls" />
|
|
<Container className="max-w-5xl">
|
|
<div className="flex items-start justify-between">
|
|
<Heading title="Source Controls" description="Here you can manage all of the source control connectinos" />
|
|
<div className="flex items-center gap-2">
|
|
<ConnectSourceControl providers={page.props.configs.source_control_providers}>
|
|
<Button>Connect</Button>
|
|
</ConnectSourceControl>
|
|
</div>
|
|
</div>
|
|
<DataTable columns={columns} data={page.props.sourceControls.data} />
|
|
</Container>
|
|
</SettingsLayout>
|
|
);
|
|
}
|