impress-2020/src/app/OutfitPreview.js

407 lines
11 KiB
JavaScript
Raw Normal View History

import React from "react";
2020-04-25 23:17:59 -07:00
import { css } from "emotion";
2020-04-24 00:28:00 -07:00
import { CSSTransition, TransitionGroup } from "react-transition-group";
import gql from "graphql-tag";
import { useQuery } from "@apollo/react-hooks";
2020-04-24 23:13:28 -07:00
import {
Box,
Flex,
Icon,
IconButton,
Image,
PseudoBox,
Spinner,
2020-04-25 07:22:03 -07:00
Stack,
2020-04-24 23:13:28 -07:00
Text,
Tooltip,
2020-04-25 07:22:03 -07:00
useClipboard,
2020-04-24 23:13:28 -07:00
} from "@chakra-ui/core";
import { Delay } from "./util";
2020-04-25 05:29:27 -07:00
import OutfitResetModal from "./OutfitResetModal";
2020-04-25 04:33:05 -07:00
import SpeciesColorPicker from "./SpeciesColorPicker";
export const itemAppearanceFragment = gql`
fragment AppearanceForOutfitPreview on Appearance {
layers {
id
imageUrl(size: SIZE_600)
zone {
id
depth
}
}
restrictedZones {
id
}
}
`;
2020-04-25 04:33:05 -07:00
function OutfitPreview({ outfitState, dispatchToOutfit }) {
2020-04-24 19:16:24 -07:00
const { wornItemIds, speciesId, colorId } = outfitState;
2020-04-25 04:33:05 -07:00
const [hasFocus, setHasFocus] = React.useState(false);
2020-04-25 05:29:27 -07:00
const [showResetModal, setShowResetModal] = React.useState(false);
2020-04-24 19:16:24 -07:00
const { loading, error, data } = useQuery(
gql`
2020-04-24 19:16:24 -07:00
query($wornItemIds: [ID!]!, $speciesId: ID!, $colorId: ID!) {
petAppearance(speciesId: $speciesId, colorId: $colorId) {
...AppearanceForOutfitPreview
}
2020-04-24 19:16:24 -07:00
items(ids: $wornItemIds) {
id
appearanceOn(speciesId: $speciesId, colorId: $colorId) {
...AppearanceForOutfitPreview
}
}
}
${itemAppearanceFragment}
`,
2020-04-23 23:43:39 -07:00
{
2020-04-24 19:16:24 -07:00
variables: { wornItemIds, speciesId, colorId },
2020-04-23 23:43:39 -07:00
}
);
2020-04-24 23:13:28 -07:00
const visibleLayers = getVisibleLayers(data);
const [downloadImageUrl, prepareDownload] = useDownloadableImage(
visibleLayers
);
2020-04-25 07:22:03 -07:00
const { onCopy, hasCopied } = useClipboard(getShareUrl(outfitState));
if (error) {
return (
<FullScreenCenter>
<Text color="gray.50" d="flex" alignItems="center">
<Icon name="warning" />
<Box width={2} />
Could not load preview. Try again?
</Text>
</FullScreenCenter>
);
}
return (
2020-04-24 23:13:28 -07:00
<PseudoBox role="group" pos="relative" height="100%" width="100%">
2020-04-24 00:28:00 -07:00
<TransitionGroup>
2020-04-24 23:13:28 -07:00
{visibleLayers.map((layer) => (
2020-04-24 00:28:00 -07:00
<CSSTransition
key={layer.id}
2020-04-25 23:17:59 -07:00
classNames={css`
&-exit {
opacity: 1;
}
&-exit-active {
opacity: 0;
transition: opacity 0.2s;
}
`}
2020-04-24 00:28:00 -07:00
timeout={200}
>
<FullScreenCenter>
<Image
src={layer.imageUrl}
objectFit="contain"
maxWidth="100%"
maxHeight="100%"
2020-04-25 23:17:59 -07:00
className={css`
opacity: 0.01;
&[src] {
opacity: 1;
transition: opacity 0.2s;
}
`}
2020-04-24 23:13:28 -07:00
// This sets up the cache to not need to reload images during
// download!
// TODO: Re-enable this once we get our change into Chakra
// main. For now, this will make Downloads a bit slower, which
// is fine!
// crossOrigin="Anonymous"
2020-04-24 00:28:00 -07:00
/>
</FullScreenCenter>
</CSSTransition>
))}
</TransitionGroup>
{loading && (
<Delay>
<FullScreenCenter>
<Box
width="100%"
height="100%"
backgroundColor="gray.900"
opacity="0.8"
/>
</FullScreenCenter>
<FullScreenCenter>
<Spinner color="green.400" size="xl" />
</FullScreenCenter>
</Delay>
)}
2020-04-25 02:32:41 -07:00
<Box
pos="absolute"
2020-04-28 01:14:07 -07:00
left="0"
right="0"
top="0"
bottom="0"
padding={{ base: 2, lg: 6 }}
2020-04-25 04:33:05 -07:00
display="grid"
2020-04-28 01:14:07 -07:00
overflow="auto"
gridTemplateAreas={`"back sharing"
"space space"
"picker picker"`}
gridTemplateRows="auto minmax(1rem, 1fr) auto"
2020-04-25 02:32:41 -07:00
>
2020-04-28 01:14:07 -07:00
<Box gridArea="back">
<IconButton
icon="arrow-back"
aria-label="Leave this outfit"
variant="unstyled"
backgroundColor="gray.600"
isRound={true}
d="flex"
alignItems="center"
justifyContent="center"
color="gray.50"
opacity={hasFocus ? 1 : 0}
transition="all 0.2s"
_groupHover={{
opacity: 1,
}}
2020-04-25 04:33:05 -07:00
onFocus={() => setHasFocus(true)}
onBlur={() => setHasFocus(false)}
2020-04-28 01:14:07 -07:00
onClick={() => setShowResetModal(true)}
2020-04-25 02:32:41 -07:00
/>
2020-04-28 01:14:07 -07:00
</Box>
<Stack
gridArea="sharing"
alignSelf="flex-end"
spacing={{ base: "2", lg: "4" }}
align="flex-end"
>
2020-04-25 07:22:03 -07:00
<Box>
2020-04-28 01:14:07 -07:00
<Tooltip label="Download" placement="left">
2020-04-25 07:22:03 -07:00
<IconButton
2020-04-28 01:14:07 -07:00
icon="download"
aria-label="Download"
2020-04-25 07:22:03 -07:00
isRound
2020-04-28 01:14:07 -07:00
as="a"
// eslint-disable-next-line no-script-url
href={downloadImageUrl || "javascript:void 0"}
download={(outfitState.name || "Outfit") + ".png"}
onMouseEnter={prepareDownload}
onFocus={() => {
prepareDownload();
setHasFocus(true);
}}
2020-04-25 07:22:03 -07:00
onBlur={() => setHasFocus(false)}
2020-04-28 01:14:07 -07:00
cursor={!downloadImageUrl && "wait"}
2020-04-25 07:22:03 -07:00
variant="unstyled"
backgroundColor="gray.600"
color="gray.50"
boxShadow="md"
d="flex"
alignItems="center"
justifyContent="center"
opacity={hasFocus ? 1 : 0}
transition="all 0.2s"
_groupHover={{
opacity: 1,
}}
_focus={{
opacity: 1,
backgroundColor: "gray.500",
}}
_hover={{
backgroundColor: "gray.500",
}}
outline="initial"
/>
</Tooltip>
</Box>
<Box>
2020-04-28 01:14:07 -07:00
<Tooltip
label={hasCopied ? "Copied!" : "Copy link"}
placement="left"
>
2020-04-25 07:22:03 -07:00
<IconButton
2020-04-28 01:14:07 -07:00
icon={hasCopied ? "check" : "link"}
aria-label="Copy link"
2020-04-25 07:22:03 -07:00
isRound
2020-04-28 01:14:07 -07:00
onClick={onCopy}
onFocus={() => setHasFocus(true)}
2020-04-25 07:22:03 -07:00
onBlur={() => setHasFocus(false)}
variant="unstyled"
backgroundColor="gray.600"
color="gray.50"
boxShadow="md"
d="flex"
alignItems="center"
justifyContent="center"
opacity={hasFocus ? 1 : 0}
transition="all 0.2s"
_groupHover={{
opacity: 1,
}}
_focus={{
opacity: 1,
backgroundColor: "gray.500",
}}
_hover={{
backgroundColor: "gray.500",
}}
outline="initial"
/>
</Tooltip>
</Box>
</Stack>
2020-04-28 01:14:07 -07:00
<Box gridArea="space"></Box>
<PseudoBox
gridArea="picker"
opacity={hasFocus ? 1 : 0}
2020-04-28 01:14:07 -07:00
_groupHover={{ opacity: 1 }}
transition="opacity 0.2s"
display="flex"
justifyContent="center"
>
<SpeciesColorPicker
outfitState={outfitState}
dispatchToOutfit={dispatchToOutfit}
onFocus={() => setHasFocus(true)}
onBlur={() => setHasFocus(false)}
/>
</PseudoBox>
</Box>
2020-04-25 05:29:27 -07:00
<OutfitResetModal
isOpen={showResetModal}
onClose={() => setShowResetModal(false)}
dispatchToOutfit={dispatchToOutfit}
/>
2020-04-24 23:13:28 -07:00
</PseudoBox>
);
}
function getVisibleLayers(data) {
if (!data) {
return [];
}
2020-04-23 14:44:06 -07:00
const allAppearances = [
data.petAppearance,
2020-04-23 23:43:39 -07:00
...(data.items || []).map((i) => i.appearanceOn),
].filter((a) => a);
let allLayers = allAppearances.map((a) => a.layers).flat();
// Clean up our data a bit, by ensuring only one layer per zone. This
// shouldn't happen in theory, but sometimes our database doesn't clean up
// after itself correctly :(
allLayers = allLayers.filter((l, i) => {
return allLayers.findIndex((l2) => l2.zone.id === l.zone.id) === i;
});
2020-04-23 14:44:06 -07:00
const allRestrictedZoneIds = allAppearances
.map((l) => l.restrictedZones)
.flat()
.map((z) => z.id);
const visibleLayers = allLayers.filter(
(l) => !allRestrictedZoneIds.includes(l.zone.id)
);
visibleLayers.sort((a, b) => a.zone.depth - b.zone.depth);
return visibleLayers;
}
function FullScreenCenter({ children }) {
return (
<Flex
pos="absolute"
top="0"
right="0"
bottom="0"
left="0"
alignItems="center"
justifyContent="center"
>
{children}
</Flex>
);
}
2020-04-24 23:13:28 -07:00
function useDownloadableImage(visibleLayers) {
const [downloadImageUrl, setDownloadImageUrl] = React.useState(null);
const [preparedForLayerIds, setPreparedForLayerIds] = React.useState([]);
const prepareDownload = React.useCallback(async () => {
// Skip if the current image URL is already correct for these layers.
const layerIds = visibleLayers.map((l) => l.id);
if (layerIds.join(",") === preparedForLayerIds.join(",")) {
return;
}
2020-04-25 04:33:05 -07:00
setDownloadImageUrl(null);
2020-04-24 23:13:28 -07:00
const imagePromises = visibleLayers.map(
(layer) =>
new Promise((resolve, reject) => {
const image = new window.Image();
image.crossOrigin = "Anonymous"; // Requires S3 CORS config!
image.addEventListener("load", () => resolve(image), false);
image.addEventListener("error", (e) => reject(e), false);
image.src = layer.imageUrl + "&xoxo";
2020-04-24 23:13:28 -07:00
})
);
const images = await Promise.all(imagePromises);
const canvas = document.createElement("canvas");
const context = canvas.getContext("2d");
canvas.width = 600;
canvas.height = 600;
for (const image of images) {
context.drawImage(image, 0, 0);
}
console.log(
"Generated image for download",
layerIds,
canvas.toDataURL("image/png")
);
setDownloadImageUrl(canvas.toDataURL("image/png"));
setPreparedForLayerIds(layerIds);
}, [preparedForLayerIds, visibleLayers]);
return [downloadImageUrl, prepareDownload];
}
2020-04-25 07:22:03 -07:00
function getShareUrl(outfitState) {
const {
name,
speciesId,
colorId,
wornItemIds,
closetedItemIds,
} = outfitState;
const params = new URLSearchParams();
params.append("name", name);
params.append("species", speciesId);
params.append("color", colorId);
for (const itemId of wornItemIds) {
params.append("objects[]", itemId);
}
for (const itemId of closetedItemIds) {
params.append("closet[]", itemId);
}
const { origin, pathname } = window.location;
const url = origin + pathname + "?" + params.toString();
return url;
}
export default OutfitPreview;