2020-04-23 13:31:39 -07:00
|
|
|
import React from "react";
|
|
|
|
import gql from "graphql-tag";
|
|
|
|
import { useQuery } from "@apollo/react-hooks";
|
|
|
|
import { Flex, Image, Spinner, Text, Icon, Box } from "@chakra-ui/core";
|
|
|
|
|
|
|
|
import { Delay } from "./util";
|
|
|
|
|
|
|
|
function OutfitPreview({ itemIds, speciesId, colorId }) {
|
|
|
|
const { loading, error, data } = useQuery(
|
|
|
|
gql`
|
|
|
|
query($itemIds: [ID!]!, $speciesId: ID!, $colorId: ID!) {
|
2020-04-23 14:23:46 -07:00
|
|
|
petAppearance(speciesId: $speciesId, colorId: $colorId) {
|
|
|
|
layers {
|
|
|
|
id
|
|
|
|
imageUrl(size: SIZE_600)
|
|
|
|
zone {
|
|
|
|
depth
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-23 13:31:39 -07:00
|
|
|
items(ids: $itemIds) {
|
|
|
|
id
|
|
|
|
appearanceOn(speciesId: $speciesId, colorId: $colorId) {
|
|
|
|
layers {
|
|
|
|
id
|
|
|
|
imageUrl(size: SIZE_600)
|
2020-04-23 14:23:46 -07:00
|
|
|
zone {
|
|
|
|
depth
|
|
|
|
}
|
2020-04-23 13:31:39 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
{ variables: { itemIds, speciesId, colorId } }
|
|
|
|
);
|
|
|
|
|
|
|
|
if (loading) {
|
|
|
|
return (
|
|
|
|
<FullScreenCenter>
|
|
|
|
<Delay>
|
|
|
|
<Spinner color="green.400" size="lg" />
|
|
|
|
</Delay>
|
|
|
|
</FullScreenCenter>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
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>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-04-23 14:23:46 -07:00
|
|
|
const allLayers = [
|
|
|
|
...data.petAppearance.layers,
|
|
|
|
...data.items.map((i) => i.appearanceOn.layers).flat(),
|
|
|
|
];
|
|
|
|
allLayers.sort((a, b) => a.zone.depth - b.zone.depth);
|
|
|
|
|
2020-04-23 13:31:39 -07:00
|
|
|
return (
|
2020-04-23 14:23:46 -07:00
|
|
|
<Box pos="relative" height="100%" width="100%">
|
|
|
|
{allLayers.map((layer) => (
|
|
|
|
<Box pos="absolute" top="0" right="0" bottom="0" left="0">
|
|
|
|
<FullScreenCenter>
|
|
|
|
<Image src={layer.imageUrl} maxWidth="100%" maxHeight="100%" />
|
|
|
|
</FullScreenCenter>
|
|
|
|
</Box>
|
|
|
|
))}
|
|
|
|
</Box>
|
2020-04-23 13:31:39 -07:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
function FullScreenCenter({ children }) {
|
|
|
|
return (
|
|
|
|
<Flex
|
|
|
|
alignItems="center"
|
|
|
|
justifyContent="center"
|
|
|
|
height="100%"
|
|
|
|
width="100%"
|
|
|
|
>
|
|
|
|
{children}
|
|
|
|
</Flex>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default OutfitPreview;
|