mirror of
https://github.com/kremalicious/umami.git
synced 2024-12-18 15:23:38 +01:00
Merge pull request #51 from PabloSzx/loading_share_page
share page loading
This commit is contained in:
commit
05dc77ca35
@ -6,6 +6,7 @@ import NotFound from 'pages/404';
|
|||||||
import { get } from 'lib/web';
|
import { get } from 'lib/web';
|
||||||
|
|
||||||
export default function SharePage() {
|
export default function SharePage() {
|
||||||
|
const [loading, setLoading] = useState(true);
|
||||||
const [websiteId, setWebsiteId] = useState();
|
const [websiteId, setWebsiteId] = useState();
|
||||||
const [notFound, setNotFound] = useState(false);
|
const [notFound, setNotFound] = useState(false);
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
@ -23,10 +24,16 @@ export default function SharePage() {
|
|||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (id) {
|
if (id) {
|
||||||
loadData();
|
loadData().finally(() => {
|
||||||
|
setLoading(false);
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
setLoading(false);
|
||||||
}
|
}
|
||||||
}, [id]);
|
}, [id]);
|
||||||
|
|
||||||
|
if (loading) return null;
|
||||||
|
|
||||||
if (!id || notFound) {
|
if (!id || notFound) {
|
||||||
return <NotFound />;
|
return <NotFound />;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user