mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 04:37:11 +01:00
share page loading
since there isn't a spinner, just returning null, just like pages/dashboard.js
This commit is contained in:
parent
8d27a0a846
commit
0787818bc8
1 changed files with 8 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue