From 78cb67c641e5723af59e0cf8a172a443aafa6f33 Mon Sep 17 00:00:00 2001 From: Pawel Kowalski <25907418+MentorPK@users.noreply.github.com> Date: Fri, 27 Oct 2023 02:19:31 +0200 Subject: feat: change loader component (#1410) * CHANGED react-loater to react-loader-spinner * CHANGED brandColor to primary * feat: change loader component - remove redundant /index path from Loader imports in multiple files - remove commented out braces in RecipesDashboard - remove redundant color which is default from Loader in InfoBar - update size of Loader in InfoBar to be the same as InfoBox - change passed size prop from string to number in Button component - add slight gap for FullscreenLoader to styles.ts - fix Loader to check for color primary which is passed rather than brandColor - remove hardcoded width and height from WorkspaceSwitchingIndicator which lead to elements not being vertically centered - remove color prop from Loader in WorkspaceSwitchingIndicator since white is already the default - remove switchingIndicator.spinnerColor from default theme since white is already the default * implement PR feedback * re-add color to WorkspaceSwitchingIndicator --------- Co-authored-by: MCMXC <16797721+mcmxcdev@users.noreply.github.com> --- src/components/settings/recipes/RecipesDashboard.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/components/settings/recipes/RecipesDashboard.tsx') diff --git a/src/components/settings/recipes/RecipesDashboard.tsx b/src/components/settings/recipes/RecipesDashboard.tsx index 7b7ba19b1..c7aeaa9b3 100644 --- a/src/components/settings/recipes/RecipesDashboard.tsx +++ b/src/components/settings/recipes/RecipesDashboard.tsx @@ -10,7 +10,7 @@ import { H1, H2, H3 } from '../../ui/headline'; import SearchInput from '../../ui/SearchInput'; import Infobox from '../../ui/infobox/index'; import RecipeItem from './RecipeItem'; -import Loader from '../../ui/Loader'; +import Loader from '../../ui/loader'; import Appear from '../../ui/effects/Appear'; import { FERDIUM_SERVICE_REQUEST } from '../../../config'; import RecipePreview from '../../../models/RecipePreview'; @@ -219,7 +219,7 @@ class RecipesDashboard extends Component { - {/* )} */} + {isLoading ? ( ) : ( -- cgit v1.2.3-54-g00ecf