From 3d04bdcd827033ab903bacaf10b0b3ed1306ab20 Mon Sep 17 00:00:00 2001 From: Atul Varma Date: Wed, 17 Feb 2021 09:14:06 -0500 Subject: [PATCH] Group 'Export SVG' button with other buttons. --- lib/pages/creature-page.tsx | 88 ++++++++++++++++++++----------------- 1 file changed, 48 insertions(+), 40 deletions(-) diff --git a/lib/pages/creature-page.tsx b/lib/pages/creature-page.tsx index 5867093..88b5478 100644 --- a/lib/pages/creature-page.tsx +++ b/lib/pages/creature-page.tsx @@ -246,7 +246,12 @@ function getSvgMarkup(el: SVGSVGElement): string { ].join("\n"); } -function exportSvg(filename: string, svgEl: SVGSVGElement) { +function exportSvg(filename: string, svgRef: React.RefObject) { + const svgEl = svgRef.current; + if (!svgEl) { + alert("Oops, an error occurred! Please try again later."); + return; + } const dataURL = `data:image/svg+xml;utf8,${encodeURIComponent( getSvgMarkup(svgEl) )}`; @@ -258,30 +263,31 @@ function exportSvg(filename: string, svgEl: SVGSVGElement) { document.body.removeChild(anchor); } -const AutoSizingSvg: React.FC<{ - padding: number; - children: JSX.Element | JSX.Element[]; - downloadFilename?: string; -}> = ({ downloadFilename, ...props }) => { - const ref = useRef(null); - const [x, setX] = useState(0); - const [y, setY] = useState(0); - const [width, setWidth] = useState(1); - const [height, setHeight] = useState(1); - const svgEl = ref.current; +const AutoSizingSvg = React.forwardRef( + ( + props: { + padding: number; + children: JSX.Element | JSX.Element[]; + }, + ref: React.ForwardedRef + ) => { + const [x, setX] = useState(0); + const [y, setY] = useState(0); + const [width, setWidth] = useState(1); + const [height, setHeight] = useState(1); - useEffect(() => { - if (ref.current) { - const bbox = ref.current.getBBox(); - setX(bbox.x - props.padding); - setY(bbox.y - props.padding); - setWidth(bbox.width + props.padding * 2); - setHeight(bbox.height + props.padding * 2); - } - }); + useEffect(() => { + const svgEl = ref && typeof ref === "object" && ref.current; + if (svgEl) { + const bbox = svgEl.getBBox(); + setX(bbox.x - props.padding); + setY(bbox.y - props.padding); + setWidth(bbox.width + props.padding * 2); + setHeight(bbox.height + props.padding * 2); + } + }); - return ( - <> + return ( {props.children} - {downloadFilename && svgEl && ( -

- -

- )} - - ); -}; + ); + } +); + +function getDownloadFilename(randomSeed: number | null) { + let downloadBasename = "mystic-symbolic-creature"; + + if (randomSeed !== null) { + downloadBasename += `-${randomSeed}`; + } + + return `${downloadBasename}.svg`; +} export const CreaturePage: React.FC<{}> = () => { + const svgRef = useRef(null); const [randomSeed, setRandomSeed] = useState(null); const [symbolCtx, setSymbolCtx] = useState(createSvgSymbolContext()); const defaultCtx = useContext(CreatureContext); @@ -316,11 +326,8 @@ export const CreaturePage: React.FC<{}> = () => { randomSeed === null ? EYE_CREATURE : randomlyReplaceParts(new Random(randomSeed), EYE_CREATURE); - let downloadBasename = "mystic-symbolic-creature"; - - if (randomSeed !== null) { - downloadBasename += `-${randomSeed}`; - } + const handleSvgExport = () => + exportSvg(getDownloadFilename(randomSeed), svgRef); return ( <> @@ -328,10 +335,11 @@ export const CreaturePage: React.FC<{}> = () => {

{" "} - + {" "} +

- + {creature}