diff --git a/public/bar-chart-loading.svg b/public/loading/bar-chart.svg similarity index 86% rename from public/bar-chart-loading.svg rename to public/loading/bar-chart.svg index a97072f..ac135f1 100755 --- a/public/bar-chart-loading.svg +++ b/public/loading/bar-chart.svg @@ -1,5 +1,5 @@ - + diff --git a/src/components/LoadingBarChart.tsx b/src/components/LoadingBarChart.tsx new file mode 100644 index 0000000..74f1d39 --- /dev/null +++ b/src/components/LoadingBarChart.tsx @@ -0,0 +1,25 @@ +import Image from "next/image"; + +export const LoadingBarChart = ({ + width, + height, +}: { + width: number; + height: number; +}) => { + return ( +
+
+ loading content +

+ page content loading +

+
+
+ ); +}; diff --git a/src/pages/resources/index.tsx b/src/pages/resources/index.tsx index 5922096..d27cb1d 100644 --- a/src/pages/resources/index.tsx +++ b/src/pages/resources/index.tsx @@ -7,6 +7,7 @@ import { api } from "~/utils/api"; import { parseQueryData } from "~/utils/parseSearchForm"; import Footer from "~/components/Footer"; import Header from "~/components/Header"; +import { LoadingBarChart } from "~/components/LoadingBarChart"; const Resources = () => { const router = useRouter(); @@ -31,7 +32,7 @@ const Resources = () => { const ConditionalTable = () => { if (!resourceQuery.data) { - return <>; + return ; } const totalPages = Math.ceil(resourceQuery.data.count / queryData.perPage);