mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-20 06:28:14 -04:00
* move tooltip into portal * Update navigation * Switch to useMatch * browser router * routing * Hide nav buttons on web * Include traffic lights and change icon
77 lines
2.5 KiB
TypeScript
77 lines
2.5 KiB
TypeScript
import { BloomOne } from '@sd/assets/images';
|
|
import clsx from 'clsx';
|
|
import { useEffect } from 'react';
|
|
import { Navigate, Outlet, useNavigate } from 'react-router';
|
|
import {
|
|
currentLibraryCache,
|
|
getOnboardingStore,
|
|
useCachedLibraries,
|
|
useDebugState
|
|
} from '@sd/client';
|
|
import { tw } from '@sd/ui';
|
|
import DragRegion from '~/components/DragRegion';
|
|
import { useOperatingSystem } from '~/hooks/useOperatingSystem';
|
|
import DebugPopover from '../$libraryId/Layout/Sidebar/DebugPopover';
|
|
import { macOnly } from '../$libraryId/Layout/Sidebar/helpers';
|
|
import Progress from './Progress';
|
|
|
|
export const OnboardingContainer = tw.div`flex flex-col items-center`;
|
|
export const OnboardingTitle = tw.h2`mb-2 text-3xl font-bold`;
|
|
export const OnboardingDescription = tw.p`max-w-xl text-center text-ink-dull`;
|
|
export const OnboardingImg = tw.img`w-20 h-20 mb-2`;
|
|
|
|
export const Component = () => {
|
|
const os = useOperatingSystem();
|
|
const debugState = useDebugState();
|
|
const navigate = useNavigate();
|
|
|
|
const libraries = useCachedLibraries();
|
|
const library =
|
|
libraries.data?.find((l) => l.uuid === currentLibraryCache.id) || libraries.data?.[0];
|
|
|
|
useEffect(
|
|
() => {
|
|
const obStore = getOnboardingStore();
|
|
|
|
// This is neat because restores the last active screen, but only if it is not the starting screen
|
|
// Ignoring if people navigate back to the start if progress has been made
|
|
if (obStore.unlockedScreens.length > 1 && !library) {
|
|
navigate(`/onboarding/${obStore.lastActiveScreen}`, { replace: true });
|
|
}
|
|
},
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
[]
|
|
);
|
|
|
|
if (libraries.isLoading) return null;
|
|
if (library?.uuid) return <Navigate to={`${library.uuid}/overview`} replace />;
|
|
return (
|
|
<div
|
|
className={clsx(
|
|
macOnly(os, 'bg-opacity-[0.75]'),
|
|
'flex h-screen flex-col bg-sidebar text-ink'
|
|
)}
|
|
>
|
|
<DragRegion className="z-50 h-9" />
|
|
<div className="-mt-5 flex grow flex-col p-10">
|
|
<div className="flex grow flex-col items-center justify-center">
|
|
<Outlet />
|
|
</div>
|
|
<Progress />
|
|
</div>
|
|
<div className="flex justify-center p-4">
|
|
<p className="text-xs text-ink-dull opacity-50">
|
|
© 2022 Spacedrive Technology Inc.
|
|
</p>
|
|
</div>
|
|
<div className="absolute -z-10">
|
|
<div className="relative h-screen w-screen">
|
|
<img src={BloomOne} className="absolute h-[2000px] w-[2000px]" />
|
|
{/* <img src={BloomThree} className="absolute w-[2000px] h-[2000px] -right-[200px]" /> */}
|
|
</div>
|
|
</div>
|
|
{debugState.enabled && <DebugPopover />}
|
|
</div>
|
|
);
|
|
};
|