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 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 | import React from "react"; interface MetaspriteGridProps { width: number; height: number; showGrid: boolean; gridSize: number; zoom: number; children: React.ReactNode; onClick?: (e: React.MouseEvent<HTMLDivElement, MouseEvent>) => void; } const MetaspriteGrid = ({ width, height, gridSize, showGrid, zoom, onClick, children, }: MetaspriteGridProps) => { // When canvas width is not 8 or a multiple of 16 then // an offset is needed to align grid lines correctly const offsetGridX = width % 16 !== 0 && width !== 8 ? `${4 * zoom}px` : "0"; return ( <div style={{ position: "relative", width: width * zoom, height: height * zoom, background: "#fff", }} > <div style={{ pointerEvents: "none", position: "absolute", bottom: 0, left: Math.max(0, width / 2 - 8) * zoom, width: (width === 8 ? width : 16) * zoom, height: 8 * zoom, background: "rgba(0, 188, 212, 0.4)", }} /> <div style={{ pointerEvents: "none", position: "absolute", top: 0, left: 0, right: 0, bottom: 0, border: `${1 / zoom}px solid #d4d4d4`, backgroundSize: `${gridSize * zoom}px ${gridSize * zoom}px`, backgroundPositionX: offsetGridX, backgroundImage: (showGrid && (zoom >= 8 ? `linear-gradient(to right, #d4d4d4 1px, transparent 1px, transparent 7px, #efefef 8px, transparent 8px, transparent 15px, #efefef 16px, transparent 16px, transparent 23px, #efefef 24px, transparent 24px, transparent 31px, #efefef 32px, transparent 32px, transparent 39px, #efefef 40px, transparent 40px, transparent 47px, #efefef 48px, transparent 48px, transparent 55px, #efefef 56px, transparent 56px ), linear-gradient(to bottom, #d4d4d4 1px, transparent 1px, transparent 7px, #efefef 8px, transparent 8px, transparent 15px, #efefef 16px, transparent 16px, transparent 23px, #efefef 24px, transparent 24px, transparent 31px, #efefef 32px, transparent 32px, transparent 39px, #efefef 40px, transparent 40px, transparent 47px, #efefef 48px, transparent 48px, transparent 55px, #efefef 56px, transparent 56px )` : "linear-gradient(to right, #efefef 1px, transparent 1px), linear-gradient(to bottom, #efefef 1px, transparent 1px)")) || "none", }} /> <div style={{ position: "absolute", top: 0, right: 0, bottom: 0, left: 0, }} onMouseDown={onClick} /> <div style={{ position: "relative", width, transform: `translate3d(${Math.max(0, width / 2 - 8) * zoom}px, ${ height * zoom }px, 0) scale(${zoom})`, transformOrigin: "top left", }} > {children} </div> </div> ); }; export default MetaspriteGrid; |