panel-web/packages/shadcn/src/components/ui/flickering-grid.tsx
2024-11-14 01:22:43 +07:00

179 lines
4.6 KiB
TypeScript

'use client';
import React, { useCallback, useEffect, useMemo, useRef, useState } from 'react';
interface FlickeringGridProps {
squareSize?: number;
gridGap?: number;
flickerChance?: number;
color?: string;
width?: number;
height?: number;
className?: string;
maxOpacity?: number;
}
const FlickeringGrid: React.FC<FlickeringGridProps> = ({
squareSize = 4,
gridGap = 6,
flickerChance = 0.3,
color = 'rgb(0, 0, 0)',
width,
height,
className,
maxOpacity = 0.3,
}) => {
const canvasRef = useRef<HTMLCanvasElement>(null);
const [isInView, setIsInView] = useState(false);
const memoizedColor = useMemo(() => {
const toRGBA = (color: string) => {
if (typeof window === 'undefined') {
return `rgba(0, 0, 0,`;
}
const canvas = document.createElement('canvas');
canvas.width = canvas.height = 1;
const ctx = canvas.getContext('2d');
if (!ctx) return 'rgba(255, 0, 0,';
ctx.fillStyle = color;
ctx.fillRect(0, 0, 1, 1);
const [r, g, b] = ctx.getImageData(0, 0, 1, 1).data;
return `rgba(${r}, ${g}, ${b},`;
};
return toRGBA(color);
}, [color]);
const setupCanvas = useCallback(
(canvas: HTMLCanvasElement) => {
const canvasWidth = width || canvas.clientWidth;
const canvasHeight = height || canvas.clientHeight;
const dpr = window.devicePixelRatio || 1;
canvas.width = canvasWidth * dpr;
canvas.height = canvasHeight * dpr;
canvas.style.width = `${canvasWidth}px`;
canvas.style.height = `${canvasHeight}px`;
const cols = Math.floor(canvasWidth / (squareSize + gridGap));
const rows = Math.floor(canvasHeight / (squareSize + gridGap));
const squares = new Float32Array(cols * rows);
for (let i = 0; i < squares.length; i++) {
squares[i] = Math.random() * maxOpacity;
}
return {
width: canvasWidth,
height: canvasHeight,
cols,
rows,
squares,
dpr,
};
},
[squareSize, gridGap, width, height, maxOpacity],
);
const updateSquares = useCallback(
(squares: Float32Array, deltaTime: number) => {
for (let i = 0; i < squares.length; i++) {
if (Math.random() < flickerChance * deltaTime) {
squares[i] = Math.random() * maxOpacity;
}
}
},
[flickerChance, maxOpacity],
);
const drawGrid = useCallback(
(
ctx: CanvasRenderingContext2D,
width: number,
height: number,
cols: number,
rows: number,
squares: Float32Array,
dpr: number,
) => {
ctx.clearRect(0, 0, width, height);
ctx.fillStyle = 'transparent';
ctx.fillRect(0, 0, width, height);
for (let i = 0; i < cols; i++) {
for (let j = 0; j < rows; j++) {
const opacity = squares[i * rows + j];
ctx.fillStyle = `${memoizedColor}${opacity})`;
ctx.fillRect(
i * (squareSize + gridGap) * dpr,
j * (squareSize + gridGap) * dpr,
squareSize * dpr,
squareSize * dpr,
);
}
}
},
[memoizedColor, squareSize, gridGap],
);
useEffect(() => {
const canvas = canvasRef.current;
if (!canvas) return;
const ctx = canvas.getContext('2d');
if (!ctx) return;
let animationFrameId: number;
let { width, height, cols, rows, squares, dpr } = setupCanvas(canvas);
let lastTime = 0;
const animate = (time: number) => {
if (!isInView) return;
const deltaTime = (time - lastTime) / 1000;
lastTime = time;
updateSquares(squares, deltaTime);
drawGrid(ctx, width * dpr, height * dpr, cols, rows, squares, dpr);
animationFrameId = requestAnimationFrame(animate);
};
const handleResize = () => {
({ width, height, cols, rows, squares, dpr } = setupCanvas(canvas));
};
const observer = new IntersectionObserver(
([entry]) => {
setIsInView(entry.isIntersecting);
},
{ threshold: 0 },
);
observer.observe(canvas);
window.addEventListener('resize', handleResize);
if (isInView) {
animationFrameId = requestAnimationFrame(animate);
}
return () => {
window.removeEventListener('resize', handleResize);
cancelAnimationFrame(animationFrameId);
observer.disconnect();
};
}, [setupCanvas, updateSquares, drawGrid, width, height, isInView]);
return (
<canvas
ref={canvasRef}
className={`pointer-events-none size-full ${className}`}
style={{
width: width || '100%',
height: height || '100%',
}}
width={width}
height={height}
/>
);
};
export default FlickeringGrid;