Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | 'use client' import { animated, useSpring } from '@react-spring/web' import type { Piece } from '../../types' import { PieceRenderer } from '../PieceRenderer' export interface SvgPieceProps { piece: Piece cellSize: number padding: number labelMargin?: number opacity?: number useNativeAbacusNumbers?: boolean selected?: boolean shouldRotate?: boolean } export function SvgPiece({ piece, cellSize, padding, labelMargin = 0, opacity = 1, useNativeAbacusNumbers = false, selected = false, shouldRotate = false, }: SvgPieceProps) { const file = piece.square.charCodeAt(0) - 65 // A=0 const rank = Number.parseInt(piece.square.slice(1), 10) // 1-8 const row = 8 - rank // Invert for display const x = labelMargin + padding + file * cellSize const y = padding + row * cellSize const spring = useSpring({ x, y, config: { tension: 280, friction: 60 }, }) const pieceSize = cellSize * 0.85 return ( <animated.g transform={spring.x.to((xVal) => `translate(${xVal}, ${spring.y.get()})`)}> <foreignObject x={0} y={0} width={cellSize} height={cellSize}> <div style={{ width: '100%', height: '100%', display: 'flex', alignItems: 'center', justifyContent: 'center', opacity, }} > <PieceRenderer type={piece.type} color={piece.color} value={piece.type === 'P' ? piece.pyramidFaces?.[0] || 0 : piece.value || 0} size={pieceSize} useNativeAbacusNumbers={useNativeAbacusNumbers} selected={selected} pyramidFaces={piece.type === 'P' ? piece.pyramidFaces : undefined} shouldRotate={shouldRotate} /> </div> </foreignObject> </animated.g> ) } |