Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added the loader files #461

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"axios": "^1.6.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"cobe": "^0.6.3",
"lucide-react": "^0.292.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
Expand Down
65 changes: 65 additions & 0 deletions frontend/src/components/rotating-globe.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
import createGlobe from 'cobe';
import { useEffect, useRef } from 'react';

function RotatingGlobe() {
const canvasRef = useRef();
useEffect(() => {
let phi = 0;
let width = 0;
const onResize = () => canvasRef.current && (width = canvasRef.current.offsetWidth);
window.addEventListener('resize', onResize);
onResize();
const globe = createGlobe(canvasRef.current, {
devicePixelRatio: 2,
width: width * 2,
height: width * 2,
phi: 0,
theta: 0.3,
dark: 1,
diffuse: 3,
mapSamples: 16000,
mapBrightness: 1.2,
baseColor: [1, 1, 1],
markerColor: [251 / 255, 100 / 255, 21 / 255],
glowColor: [1.2, 1.2, 1.2],
markers: [],
onRender: (state) => {
// Called on every animation frame.
// `state` will be an empty object, return updated params.
state.phi = phi;
phi += 0.005;
state.width = width * 2;
state.height = width * 2;
},
});
setTimeout(() => (canvasRef.current.style.opacity = '1'));
return () => {
globe.destroy();
window.removeEventListener('resize', onResize);
};
}, []);
return (
<div
style={{
width: '100%',
maxWidth: 600,
aspectRatio: 1,
margin: 'auto',
position: 'relative',
}}
>
<canvas
ref={canvasRef}
style={{
width: '100%',
height: '100%',
contain: 'layout paint size',
opacity: 0,
transition: 'opacity 1s ease',
}}
/>
</div>
);
}

export default RotatingGlobe;
35 changes: 17 additions & 18 deletions frontend/src/components/skeletons/loader.tsx
Original file line number Diff line number Diff line change
@@ -1,23 +1,22 @@
import RotatingGlobe from '../rotating-globe';

function Loader() {
return (
<div role="status">
<svg
aria-hidden="true"
className="h-8 w-8 animate-spin fill-blue-600 text-gray-200 dark:text-gray-600"
viewBox="0 0 100 101"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M100 50.5908C100 78.2051 77.6142 100.591 50 100.591C22.3858 100.591 0 78.2051 0 50.5908C0 22.9766 22.3858 0.59082 50 0.59082C77.6142 0.59082 100 22.9766 100 50.5908ZM9.08144 50.5908C9.08144 73.1895 27.4013 91.5094 50 91.5094C72.5987 91.5094 90.9186 73.1895 90.9186 50.5908C90.9186 27.9921 72.5987 9.67226 50 9.67226C27.4013 9.67226 9.08144 27.9921 9.08144 50.5908Z"
fill="currentColor"
/>
<path
d="M93.9676 39.0409C96.393 38.4038 97.8624 35.9116 97.0079 33.5539C95.2932 28.8227 92.871 24.3692 89.8167 20.348C85.8452 15.1192 80.8826 10.7238 75.2124 7.41289C69.5422 4.10194 63.2754 1.94025 56.7698 1.05124C51.7666 0.367541 46.6976 0.446843 41.7345 1.27873C39.2613 1.69328 37.813 4.19778 38.4501 6.62326C39.0873 9.04874 41.5694 10.4717 44.0505 10.1071C47.8511 9.54855 51.7191 9.52689 55.5402 10.0491C60.8642 10.7766 65.9928 12.5457 70.6331 15.2552C75.2735 17.9648 79.3347 21.5619 82.5849 25.841C84.9175 28.9121 86.7997 32.2913 88.1811 35.8758C89.083 38.2158 91.5421 39.6781 93.9676 39.0409Z"
fill="currentFill"
/>
</svg>
<span className="sr-only">Loading...</span>
<div
role="status"
className="bg-slate-5 flex items-center justify-center pb-[15rem] pt-[8rem] dark:bg-dark-card md:pb-[8rem] md:pt-[8rem]"
>
<div className="w-[25rem] dark:mix-blend-soft-light dark:invert">
<RotatingGlobe />
</div>
<div>
<div className="text-lg font-extralight text-gray-500 dark:text-gray-700 md:text-3xl">
Please wait...
</div>
<div className="w-[70%] text-xl text-gray-600 dark:text-gray-500 md:text-4xl">
While we get things ready for you
</div>
</div>
</div>
);
}
Expand Down
Loading