mirror of https://github.com/portainer/portainer
135 lines
3.7 KiB
TypeScript
135 lines
3.7 KiB
TypeScript
import { Plus, Trash2 } from 'react-feather';
|
|
import { useRouter } from '@uirouter/react';
|
|
|
|
import { useEnvironmentId } from '@/portainer/hooks/useEnvironmentId';
|
|
import { useNamespaces } from '@/react/kubernetes/namespaces/queries';
|
|
import { useAuthorizations, Authorized } from '@/portainer/hooks/useUser';
|
|
import { confirmDeletionAsync } from '@/portainer/services/modal.service/confirm';
|
|
|
|
import { Datatable } from '@@/datatables';
|
|
import { Button } from '@@/buttons';
|
|
import { Link } from '@@/Link';
|
|
|
|
import { DeleteIngressesRequest, Ingress } from '../types';
|
|
import { useDeleteIngresses, useIngresses } from '../queries';
|
|
|
|
import { createStore } from './datatable-store';
|
|
import { useColumns } from './columns';
|
|
|
|
import '../style.css';
|
|
|
|
interface SelectedIngress {
|
|
Namespace: string;
|
|
Name: string;
|
|
}
|
|
|
|
const useStore = createStore('ingresses');
|
|
|
|
export function IngressDataTable() {
|
|
const environmentId = useEnvironmentId();
|
|
|
|
const nsResult = useNamespaces(environmentId);
|
|
const ingressesQuery = useIngresses(
|
|
environmentId,
|
|
Object.keys(nsResult?.data || {})
|
|
);
|
|
|
|
const settings = useStore();
|
|
|
|
const columns = useColumns();
|
|
const deleteIngressesMutation = useDeleteIngresses();
|
|
|
|
const router = useRouter();
|
|
|
|
return (
|
|
<Datatable
|
|
dataset={ingressesQuery.data || []}
|
|
storageKey="ingressClassesNameSpace"
|
|
columns={columns}
|
|
settingsStore={settings}
|
|
isLoading={ingressesQuery.isLoading}
|
|
emptyContentLabel="No supported ingresses found"
|
|
titleOptions={{
|
|
icon: 'svg-route',
|
|
title: 'Ingresses',
|
|
}}
|
|
getRowId={(row) => row.Name + row.Type + row.Namespace}
|
|
renderTableActions={tableActions}
|
|
disableSelect={useCheckboxes()}
|
|
/>
|
|
);
|
|
|
|
function tableActions(selectedFlatRows: Ingress[]) {
|
|
return (
|
|
<div className="ingressDatatable-actions">
|
|
<Authorized authorizations="AzureContainerGroupDelete">
|
|
<Button
|
|
className="btn-wrapper"
|
|
color="dangerlight"
|
|
disabled={selectedFlatRows.length === 0}
|
|
onClick={() =>
|
|
handleRemoveClick(
|
|
selectedFlatRows.map((row) => ({
|
|
Name: row.Name,
|
|
Namespace: row.Namespace,
|
|
}))
|
|
)
|
|
}
|
|
icon={Trash2}
|
|
>
|
|
Remove
|
|
</Button>
|
|
</Authorized>
|
|
|
|
<Authorized authorizations="K8sIngressesW">
|
|
<Link to="kubernetes.ingresses.create" className="space-left">
|
|
<Button
|
|
icon={Plus}
|
|
className="btn-wrapper vertical-center"
|
|
color="secondary"
|
|
>
|
|
Add with form
|
|
</Button>
|
|
</Link>
|
|
</Authorized>
|
|
<Authorized authorizations="K8sIngressesW">
|
|
<Link to="kubernetes.deploy" className="space-left">
|
|
<Button icon={Plus} className="btn-wrapper">
|
|
Create from manifest
|
|
</Button>
|
|
</Link>
|
|
</Authorized>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function useCheckboxes() {
|
|
return !useAuthorizations(['K8sIngressesW']);
|
|
}
|
|
|
|
async function handleRemoveClick(ingresses: SelectedIngress[]) {
|
|
const confirmed = await confirmDeletionAsync(
|
|
'Are you sure you want to delete the selected ingresses?'
|
|
);
|
|
if (!confirmed) {
|
|
return null;
|
|
}
|
|
|
|
const payload: DeleteIngressesRequest = {} as DeleteIngressesRequest;
|
|
ingresses.forEach((ingress) => {
|
|
payload[ingress.Namespace] = payload[ingress.Namespace] || [];
|
|
payload[ingress.Namespace].push(ingress.Name);
|
|
});
|
|
|
|
deleteIngressesMutation.mutate(
|
|
{ environmentId, data: payload },
|
|
{
|
|
onSuccess: () => {
|
|
router.stateService.reload();
|
|
},
|
|
}
|
|
);
|
|
return ingresses;
|
|
}
|
|
}
|