Update loading components

This commit is contained in:
2026-02-24 22:16:46 -05:00
parent a61e7ce19a
commit 637b3a0c34
43 changed files with 1363 additions and 930 deletions

View File

@@ -1,22 +1,32 @@
import type { LoadingDotsProps } from "$/types/LoadingTypes";
import { usePrefersReducedMotion } from "$/util/AccessibilityUtil";
import { useId } from "react";
export default function FadingDots({
size,
width,
height,
className,
animationDuration = 0.75,
animationDuration = 750,
color,
stroke,
fill
}: LoadingDotsProps){
fill,
ariaLabel = "Loading"
}: Readonly<LoadingDotsProps>){
//https://github.com/n3r4zzurr0/svg-spinners/blob/main/svg-smil/3-dots-fade.svg
const id = crypto.randomUUID().replaceAll("-", "");
const id = useId();
const reducedMotion = usePrefersReducedMotion();
const dur = reducedMotion ? animationDuration / 100 : animationDuration / 1000;
return (
<svg
width={width}
height={height}
width={size ?? width}
height={size ?? height}
role="status"
aria-live="polite"
aria-label={ariaLabel}
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
@@ -26,14 +36,14 @@ export default function FadingDots({
r="3"
opacity="1"
className={className}
stroke={stroke}
fill={fill}
stroke={color ?? stroke}
fill={color ?? fill}
>
<animate
id={`firstFadingDots_${id}`}
begin={`0;lastFadingDots_${id}.end-${animationDuration / 3}s`}
begin={`0;lastFadingDots_${id}.end-${dur / 3}s`}
attributeName="opacity"
dur={animationDuration}
dur={dur}
values="1;.2"
fill="freeze"
/>
@@ -44,14 +54,14 @@ export default function FadingDots({
r="3"
opacity=".4"
className={className}
stroke={stroke}
fill={fill}
stroke={color ?? stroke}
fill={color ?? fill}
>
<animate
id={`secondFadingDots_${id}`}
begin={`firstFadingDots_${id}.begin+${animationDuration / 5}s`}
begin={`firstFadingDots_${id}.begin+${dur / 5}s`}
attributeName="opacity"
dur={animationDuration}
dur={dur}
values="1;.2"
fill="freeze"
/>
@@ -62,14 +72,14 @@ export default function FadingDots({
r="3"
opacity=".3"
className={className}
stroke={stroke}
fill={fill}
stroke={color ?? stroke}
fill={color ?? fill}
>
<animate
id={`lastFadingDots_${id}`}
begin={`secondFadingDots_${id}.begin+${animationDuration / 5}s`}
begin={`secondFadingDots_${id}.begin+${dur / 5}s`}
attributeName="opacity"
dur={animationDuration}
dur={dur}
values="1;.2"
fill="freeze"
/>