diff options
author | Anton Tananaev <anton@traccar.org> | 2022-06-20 08:36:36 -0700 |
---|---|---|
committer | Anton Tananaev <anton@traccar.org> | 2022-06-20 08:36:36 -0700 |
commit | d2de65460577a46dfa20f8df6870b10fa9c7d49e (patch) | |
tree | 03d72d3bafe4022a041811c9d1b40fe63626cb50 /modern/src/settings/NotificationsPage.js | |
parent | b43c68e16e8af8db474b879421369e66a6f5da5f (diff) | |
download | trackermap-web-d2de65460577a46dfa20f8df6870b10fa9c7d49e.tar.gz trackermap-web-d2de65460577a46dfa20f8df6870b10fa9c7d49e.tar.bz2 trackermap-web-d2de65460577a46dfa20f8df6870b10fa9c7d49e.zip |
Loading shimmer for settings
Diffstat (limited to 'modern/src/settings/NotificationsPage.js')
-rw-r--r-- | modern/src/settings/NotificationsPage.js | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/modern/src/settings/NotificationsPage.js b/modern/src/settings/NotificationsPage.js index bdc9857f..6e268507 100644 --- a/modern/src/settings/NotificationsPage.js +++ b/modern/src/settings/NotificationsPage.js @@ -11,6 +11,7 @@ import PageLayout from '../common/components/PageLayout'; import SettingsMenu from './components/SettingsMenu'; import CollectionFab from './components/CollectionFab'; import CollectionActions from './components/CollectionActions'; +import TableShimmer from '../common/components/TableShimmer'; const useStyles = makeStyles((theme) => ({ columnAction: { @@ -25,13 +26,19 @@ const NotificationsPage = () => { const [timestamp, setTimestamp] = useState(Date.now()); const [items, setItems] = useState([]); + const [loading, setLoading] = useState(false); useEffectAsync(async () => { - const response = await fetch('/api/notifications'); - if (response.ok) { - setItems(await response.json()); - } else { - throw Error(await response.text()); + setLoading(true); + try { + const response = await fetch('/api/notifications'); + if (response.ok) { + setItems(await response.json()); + } else { + throw Error(await response.text()); + } + } finally { + setLoading(false); } }, [timestamp]); @@ -59,7 +66,7 @@ const NotificationsPage = () => { </TableRow> </TableHead> <TableBody> - {items.map((item) => ( + {!loading ? items.map((item) => ( <TableRow key={item.id}> <TableCell>{t(prefixString('event', item.type))}</TableCell> <TableCell>{formatBoolean(item.always, t)}</TableCell> @@ -69,7 +76,7 @@ const NotificationsPage = () => { <CollectionActions itemId={item.id} editPath="/settings/notification" endpoint="notifications" setTimestamp={setTimestamp} /> </TableCell> </TableRow> - ))} + )) : (<TableShimmer columns={5} />)} </TableBody> </Table> <CollectionFab editPath="/settings/notification" /> |