mysticsymbolic.github.io/lib/pages/gallery-page.tsx

171 wiersze
4.7 KiB
TypeScript

import React, { useContext, useEffect, useRef } from "react";
import { AutoSizingSvg } from "../auto-sizing-svg";
import {
CreatureContext,
CreatureContextType,
CreatureSymbol,
} from "../creature-symbol";
import {
GalleryComposition,
GalleryCompositionKind,
GalleryContext,
} from "../gallery-context";
import { LoadingIndicator } from "../loading-indicator";
import { Page } from "../page";
import { createPageWithStateSearchParams } from "../page-with-shareable-state";
import { svgScale, SvgTransform } from "../svg-transform";
import { CreatureDesign } from "./creature-page/core";
import { deserializeCreatureDesign } from "./creature-page/serialization";
import { getFriendlyPageName } from "./friendly-page-names";
import "./gallery-page.css";
import {
createMandalaAnimationRenderer,
MandalaDesign,
} from "./mandala-page/core";
import { deserializeMandalaDesign } from "./mandala-page/serialization";
function compositionRemixUrl(comp: GalleryComposition): string {
return (
"?" +
createPageWithStateSearchParams(comp.kind, comp.serializedValue).toString()
);
}
const THUMBNAIL_CLASS = "gallery-thumbnail canvas";
const THUMBNAIL_SCALE = 0.2;
const ErrorThumbnail: React.FC<{ title?: string }> = ({ title }) => (
<div className={THUMBNAIL_CLASS + " is-empty"} title={title}>
<span></span>
</div>
);
const CreatureThumbnail: React.FC<{ design: CreatureDesign }> = (props) => {
const svgRef = useRef<SVGSVGElement>(null);
const ctx: CreatureContextType = {
...useContext(CreatureContext),
...props.design.compCtx,
};
const { background } = props.design.compCtx;
return (
<div className={THUMBNAIL_CLASS} style={{ backgroundColor: background }}>
<CreatureContext.Provider value={ctx}>
<AutoSizingSvg padding={10} ref={svgRef} bgColor={background}>
<SvgTransform transform={svgScale(THUMBNAIL_SCALE)}>
<CreatureSymbol {...props.design.creature} />
</SvgTransform>
</AutoSizingSvg>
</CreatureContext.Provider>
</div>
);
};
const MandalaThumbnail: React.FC<{ design: MandalaDesign }> = (props) => {
const render = createMandalaAnimationRenderer(props.design, THUMBNAIL_SCALE);
const { background } = props.design.baseCompCtx;
const svgRef = useRef<SVGSVGElement>(null);
const canvasRef = useRef<HTMLDivElement>(null);
return (
<div
className={THUMBNAIL_CLASS}
style={{ backgroundColor: background }}
ref={canvasRef}
>
<AutoSizingSvg
ref={svgRef}
bgColor={background}
sizeToElement={canvasRef}
>
{render(0)}
</AutoSizingSvg>
</div>
);
};
const THUMBNAILERS: {
[key in GalleryCompositionKind]: (gc: GalleryComposition) => JSX.Element;
} = {
creature: (gc) => (
<CreatureThumbnail design={deserializeCreatureDesign(gc.serializedValue)} />
),
mandala: (gc) => (
<MandalaThumbnail design={deserializeMandalaDesign(gc.serializedValue)} />
),
};
function getThumbnail(gc: GalleryComposition): JSX.Element {
let errorTitle: string;
if (gc.kind in THUMBNAILERS) {
try {
return THUMBNAILERS[gc.kind](gc);
} catch (e) {
errorTitle = `Could not deserialize ${gc.kind} "${gc.title}": ${e.message}`;
console.error(e);
}
} else {
errorTitle = `Found unknown gallery composition kind "${gc.kind}".`;
}
console.log(errorTitle);
return <ErrorThumbnail title={errorTitle} />;
}
const GalleryCompositionView: React.FC<GalleryComposition> = (props) => {
const thumbnail = getThumbnail(props);
const url = compositionRemixUrl(props);
return (
<div className="gallery-item">
<a href={url} target="_blank">
{thumbnail}
</a>
<p>
<a href={url} target="_blank">
{props.title}
</a>{" "}
{getFriendlyPageName(props.kind)} by {props.ownerName}
</p>
</div>
);
};
export const GalleryPage: React.FC<{}> = () => {
const ctx = useContext(GalleryContext);
useEffect(() => {
if (ctx.lastRefresh === 0) {
ctx.refresh();
}
}, [ctx]);
return (
<Page title="Gallery!">
<div className="sidebar">
<p style={{ marginTop: "0" }}>
You can publish to this gallery via the sidebar on other pages of this
site.
</p>
<button onClick={ctx.refresh} disabled={ctx.isLoading}>
{ctx.isLoading ? "Loading\u2026" : "Refresh"}
</button>
{ctx.error && <p className="error">{ctx.error}</p>}
</div>
<div className="canvas scrollable">
{ctx.isLoading ? (
<LoadingIndicator />
) : (
ctx.compositions.map((comp) => (
<GalleryCompositionView key={comp.id} {...comp} />
))
)}
</div>
</Page>
);
};