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/ComputedAttributesPage.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/ComputedAttributesPage.js')
-rw-r--r-- | modern/src/settings/ComputedAttributesPage.js | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/modern/src/settings/ComputedAttributesPage.js b/modern/src/settings/ComputedAttributesPage.js index 5de79dc0..952ea677 100644 --- a/modern/src/settings/ComputedAttributesPage.js +++ b/modern/src/settings/ComputedAttributesPage.js @@ -10,6 +10,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: { @@ -24,14 +25,20 @@ const ComputedAttributesPage = () => { const [timestamp, setTimestamp] = useState(Date.now()); const [items, setItems] = useState([]); + const [loading, setLoading] = useState(false); const administrator = useAdministrator(); useEffectAsync(async () => { - const response = await fetch('/api/attributes/computed'); - if (response.ok) { - setItems(await response.json()); - } else { - throw Error(await response.text()); + setLoading(true); + try { + const response = await fetch('/api/attributes/computed'); + if (response.ok) { + setItems(await response.json()); + } else { + throw Error(await response.text()); + } + } finally { + setLoading(false); } }, [timestamp]); @@ -48,7 +55,7 @@ const ComputedAttributesPage = () => { </TableRow> </TableHead> <TableBody> - {items.map((item) => ( + {!loading ? items.map((item) => ( <TableRow key={item.id}> <TableCell>{item.description}</TableCell> <TableCell>{item.attribute}</TableCell> @@ -60,7 +67,7 @@ const ComputedAttributesPage = () => { </TableCell> )} </TableRow> - ))} + )) : (<TableShimmer columns={administrator ? 5 : 4} />)} </TableBody> </Table> <CollectionFab editPath="/settings/attribute" /> |