2023-01-25 16:42:46 +01:00
|
|
|
import { Loading } from 'react-basics';
|
|
|
|
import { useIntl } from 'react-intl';
|
|
|
|
import useApi from 'hooks/useApi';
|
|
|
|
import WebsitesTable from 'components/pages/settings/websites/WebsitesTable';
|
|
|
|
import { messages } from 'components/messages';
|
|
|
|
|
|
|
|
export default function UserWebsites({ userId }) {
|
|
|
|
const { formatMessage } = useIntl();
|
|
|
|
const { get, useQuery } = useApi();
|
2023-02-02 03:39:54 +01:00
|
|
|
const { data, isLoading } = useQuery(['user:websites', userId], () =>
|
2023-01-25 16:42:46 +01:00
|
|
|
get(`/users/${userId}/websites`),
|
|
|
|
);
|
|
|
|
const hasData = data && data.length !== 0;
|
|
|
|
|
|
|
|
if (isLoading) {
|
|
|
|
return <Loading icon="dots" position="block" />;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
{hasData && <WebsitesTable data={data} />}
|
|
|
|
{!hasData && formatMessage(messages.noData)}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|