mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-23 17:40:23 +03:00
71 lines
2.3 KiB
TypeScript
71 lines
2.3 KiB
TypeScript
import type { FC } from 'react';
|
|
import { useEffect } from 'react';
|
|
import { Message, Result, SearchField, SimpleCard } from '../../shlink-frontend-kit/src';
|
|
import { ShlinkApiError } from '../common/ShlinkApiError';
|
|
import { DomainRow } from './DomainRow';
|
|
import type { EditDomainRedirects } from './reducers/domainRedirects';
|
|
import type { DomainsList } from './reducers/domainsList';
|
|
|
|
interface ManageDomainsProps {
|
|
listDomains: Function;
|
|
filterDomains: (searchTerm: string) => void;
|
|
editDomainRedirects: (redirects: EditDomainRedirects) => Promise<void>;
|
|
checkDomainHealth: (domain: string) => void;
|
|
domainsList: DomainsList;
|
|
}
|
|
|
|
const headers = ['', 'Domain', 'Base path redirect', 'Regular 404 redirect', 'Invalid short URL redirect', '', ''];
|
|
|
|
export const ManageDomains: FC<ManageDomainsProps> = (
|
|
{ listDomains, domainsList, filterDomains, editDomainRedirects, checkDomainHealth },
|
|
) => {
|
|
const { filteredDomains: domains, defaultRedirects, loading, error, errorData } = domainsList;
|
|
const resolvedDefaultRedirects = defaultRedirects ?? domains.find(({ isDefault }) => isDefault)?.redirects;
|
|
|
|
useEffect(() => {
|
|
listDomains();
|
|
}, []);
|
|
|
|
if (loading) {
|
|
return <Message loading />;
|
|
}
|
|
|
|
const renderContent = () => {
|
|
if (error) {
|
|
return (
|
|
<Result type="error">
|
|
<ShlinkApiError errorData={errorData} fallbackMessage="Error loading domains :(" />
|
|
</Result>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<SimpleCard>
|
|
<table className="table table-hover responsive-table mb-0">
|
|
<thead className="responsive-table__header">
|
|
<tr>{headers.map((column, index) => <th key={index}>{column}</th>)}</tr>
|
|
</thead>
|
|
<tbody>
|
|
{domains.length < 1 && <tr><td colSpan={headers.length} className="text-center">No results found</td></tr>}
|
|
{domains.map((domain) => (
|
|
<DomainRow
|
|
key={domain.domain}
|
|
domain={domain}
|
|
editDomainRedirects={editDomainRedirects}
|
|
checkDomainHealth={checkDomainHealth}
|
|
defaultRedirects={resolvedDefaultRedirects}
|
|
/>
|
|
))}
|
|
</tbody>
|
|
</table>
|
|
</SimpleCard>
|
|
);
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<SearchField className="mb-3" onChange={filterDomains} />
|
|
{renderContent()}
|
|
</>
|
|
);
|
|
};
|