mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
27 lines
759 B
JavaScript
27 lines
759 B
JavaScript
import { Loading } from 'react-basics';
|
|
import useApi from 'hooks/useApi';
|
|
import WebsitesTable from 'components/pages/settings/websites/WebsitesTable';
|
|
import useMessages from 'hooks/useMessages';
|
|
|
|
export function UserWebsites({ userId }) {
|
|
const { formatMessage, messages } = useMessages();
|
|
const { get, useQuery } = useApi();
|
|
const { data, isLoading } = useQuery(['user:websites', userId], () =>
|
|
get(`/users/${userId}/websites`),
|
|
);
|
|
const hasData = data && data.length !== 0;
|
|
|
|
if (isLoading) {
|
|
return <Loading icon="dots" style={{ minHeight: 300 }} />;
|
|
}
|
|
|
|
return (
|
|
<div>
|
|
{hasData && <WebsitesTable data={data} />}
|
|
{!hasData && formatMessage(messages.noDataAvailable)}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default UserWebsites;
|