mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 17:28:27 -04:00
68 lines
1.6 KiB
TypeScript
68 lines
1.6 KiB
TypeScript
import { memo } from "react";
|
|
import { styled, keyframes } from "../../lib/styles/stitches.config";
|
|
import type { ComponentProps } from "react";
|
|
|
|
const pulse = keyframes({
|
|
"0%, 80%, 100%": {
|
|
transform: "scale(0)",
|
|
},
|
|
"40%": {
|
|
transform: "scale(0.6)",
|
|
},
|
|
});
|
|
|
|
const Wrapper = styled("div", {
|
|
display: "inline-block",
|
|
textAlign: "center",
|
|
});
|
|
|
|
const Box = styled("div", {
|
|
display: "inline-block",
|
|
height: "100%",
|
|
animation: `${pulse} 1.5s infinite ease-in-out both`,
|
|
backgroundColor: "$mediumLight",
|
|
});
|
|
|
|
export type LoadingProps = ComponentProps<typeof Wrapper> & {
|
|
width: number; // of entire container, in pixels
|
|
boxes?: number; // total number of boxes (default: 3)
|
|
timing?: number; // staggered timing between each box's pulse, in seconds (default: 0.1s)
|
|
};
|
|
|
|
const Loading = ({ width, boxes = 3, timing = 0.1, css, ...rest }: LoadingProps) => {
|
|
// each box is just an empty div
|
|
const divs = [];
|
|
|
|
// allow a custom number of pulsing boxes (defaults to 3)
|
|
for (let i = 0; i < boxes; i++) {
|
|
// width of each box correlates with number of boxes (with a little padding)
|
|
// each individual box's animation has a staggered start in corresponding order
|
|
divs.push(
|
|
<Box
|
|
key={i}
|
|
css={{
|
|
width: `${width / (boxes + 1)}px`,
|
|
}}
|
|
style={{
|
|
animationDelay: `${i * timing}s`,
|
|
}}
|
|
/>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<Wrapper
|
|
css={{
|
|
width: `${width}px`,
|
|
height: `${width / 2}px`,
|
|
...css,
|
|
}}
|
|
{...rest}
|
|
>
|
|
{divs}
|
|
</Wrapper>
|
|
);
|
|
};
|
|
|
|
export default memo(Loading);
|