From 395069f8cecd2deab2dfe1a2d7b97f379413e009 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Sun, 16 Jan 2022 14:18:54 +0100 Subject: chore: add a spinner when content is loading --- src/components/Widgets/RecentPosts/RecentPosts.tsx | 13 +++++--- src/components/Widgets/Sharing/Sharing.tsx | 2 +- .../Widgets/ThematicsList/ThematicsList.tsx | 38 ++++++++++++++-------- src/components/Widgets/TopicsList/TopicsList.tsx | 38 ++++++++++++++-------- 4 files changed, 57 insertions(+), 34 deletions(-) (limited to 'src/components/Widgets') diff --git a/src/components/Widgets/RecentPosts/RecentPosts.tsx b/src/components/Widgets/RecentPosts/RecentPosts.tsx index 1569284..9c13aa2 100644 --- a/src/components/Widgets/RecentPosts/RecentPosts.tsx +++ b/src/components/Widgets/RecentPosts/RecentPosts.tsx @@ -1,3 +1,4 @@ +import Spinner from '@components/Spinner/Spinner'; import { t } from '@lingui/macro'; import { getPublishedPosts } from '@services/graphql/queries'; import { ArticlePreview } from '@ts/types/articles'; @@ -52,12 +53,14 @@ const RecentPosts = () => { ); }; - if (error) return
{t`Failed to load.`}
; - if (!data) return
{t`Loading...`}
; + const getPostsItems = () => { + if (error) return t`Failed to load.`; + if (!data) return ; - return ( - - ); + return data.posts.map((post) => getPost(post)); + }; + + return ; }; export default RecentPosts; diff --git a/src/components/Widgets/Sharing/Sharing.tsx b/src/components/Widgets/Sharing/Sharing.tsx index bc52f9b..89b48ca 100644 --- a/src/components/Widgets/Sharing/Sharing.tsx +++ b/src/components/Widgets/Sharing/Sharing.tsx @@ -94,7 +94,7 @@ const Sharing = ({ excerpt, title }: { excerpt: string; title: string }) => { title={name} className={`${styles.link} ${styles[linkModifier]}`} > - {name} + {t`Share on ${name}`} ); diff --git a/src/components/Widgets/ThematicsList/ThematicsList.tsx b/src/components/Widgets/ThematicsList/ThematicsList.tsx index 8523bd1..e5162b4 100644 --- a/src/components/Widgets/ThematicsList/ThematicsList.tsx +++ b/src/components/Widgets/ThematicsList/ThematicsList.tsx @@ -1,3 +1,4 @@ +import Spinner from '@components/Spinner/Spinner'; import { ExpandableWidget, List } from '@components/WidgetParts'; import { t } from '@lingui/macro'; import { getAllThematics } from '@services/graphql/queries'; @@ -21,24 +22,33 @@ const ThematicsList = ({ const { data, error } = useSWR('/api/thematics', getAllThematics); - if (error) return
{t`Failed to load.`}
; - if (!data) return
{t`Loading...`}
; + const getList = () => { + if (error) return ; + if (!data) + return ( + + ); - const thematics = data.map((thematic) => { - return currentThematicSlug !== thematic.slug ? ( -
  • - - {thematic.title} - -
  • - ) : ( - '' - ); - }); + const thematics = data.map((thematic) => { + return currentThematicSlug !== thematic.slug ? ( +
  • + + {thematic.title} + +
  • + ) : ( + '' + ); + }); + + return ; + }; return ( - + {getList()} ); }; diff --git a/src/components/Widgets/TopicsList/TopicsList.tsx b/src/components/Widgets/TopicsList/TopicsList.tsx index 5bf12b9..c7843b7 100644 --- a/src/components/Widgets/TopicsList/TopicsList.tsx +++ b/src/components/Widgets/TopicsList/TopicsList.tsx @@ -1,3 +1,4 @@ +import Spinner from '@components/Spinner/Spinner'; import { ExpandableWidget, List } from '@components/WidgetParts'; import { t } from '@lingui/macro'; import { getAllSubjects } from '@services/graphql/queries'; @@ -21,24 +22,33 @@ const TopicsList = ({ const { data, error } = useSWR('/api/subjects', getAllSubjects); - if (error) return
    {t`Failed to load.`}
    ; - if (!data) return
    {t`Loading...`}
    ; + const getList = () => { + if (error) return
      {t`Failed to load.`}
    ; + if (!data) + return ( +
      + +
    + ); - const subjects = data.map((subject) => { - return currentTopicSlug !== subject.slug ? ( -
  • - - {subject.title} - -
  • - ) : ( - '' - ); - }); + const subjects = data.map((subject) => { + return currentTopicSlug !== subject.slug ? ( +
  • + + {subject.title} + +
  • + ) : ( + '' + ); + }); + + return ; + }; return ( - + {getList()} ); }; -- cgit v1.2.3