impress-2020/src/app/PosePicker.js

441 lines
13 KiB
JavaScript
Raw Normal View History

2020-05-02 15:41:02 -07:00
import React from "react";
import gql from "graphql-tag";
import { useQuery } from "@apollo/react-hooks";
2020-05-02 15:41:02 -07:00
import { css, cx } from "emotion";
import {
Box,
Button,
Flex,
Popover,
PopoverArrow,
PopoverContent,
PopoverTrigger,
2020-05-02 22:04:20 -07:00
VisuallyHidden,
2020-05-02 15:41:02 -07:00
useTheme,
} from "@chakra-ui/core";
2020-05-02 21:04:54 -07:00
import { getVisibleLayers, petAppearanceFragment } from "./useOutfitAppearance";
2020-05-02 15:41:02 -07:00
2020-05-02 16:03:23 -07:00
// From https://twemoji.twitter.com/, thank you!
import twemojiSmile from "../images/twemoji/smile.svg";
import twemojiCry from "../images/twemoji/cry.svg";
import twemojiSick from "../images/twemoji/sick.svg";
import twemojiMasc from "../images/twemoji/masc.svg";
import twemojiFem from "../images/twemoji/fem.svg";
2020-05-02 21:04:54 -07:00
import { OutfitLayers } from "./OutfitPreview";
2020-05-02 16:03:23 -07:00
function PosePicker({
outfitState,
dispatchToOutfit,
onLockFocus,
onUnlockFocus,
}) {
2020-05-02 15:41:02 -07:00
const theme = useTheme();
2020-05-02 22:04:20 -07:00
const checkedInputRef = React.useRef();
const { loading, error, poses } = usePoses(outfitState);
2020-05-02 22:04:20 -07:00
if (loading) {
return null;
}
// This is a low-stakes enough control, where enough pairs don't have data
// anyway, that I think I want to just not draw attention to failures.
if (error) {
return null;
}
// If there's only one pose anyway, don't bother showing a picker!
2020-05-02 22:59:30 -07:00
const numAvailablePoses = Object.values(poses).filter((p) => p.isAvailable)
.length;
if (numAvailablePoses <= 1) {
return null;
}
const onChange = (e) => {
const [emotion, genderPresentation] = e.target.value.split("-");
dispatchToOutfit({
type: "setPose",
emotion,
genderPresentation,
});
};
2020-05-02 15:41:02 -07:00
return (
<Popover
2020-05-02 22:04:20 -07:00
placement="bottom-end"
2020-05-02 15:41:02 -07:00
usePortal
2020-05-02 23:04:31 -07:00
returnFocusOnClose
2020-05-02 15:41:02 -07:00
onOpen={onLockFocus}
onClose={onUnlockFocus}
2020-05-02 22:04:20 -07:00
initialFocusRef={checkedInputRef}
2020-05-02 15:41:02 -07:00
>
{({ isOpen }) => (
<>
<PopoverTrigger>
<Button
variant="unstyled"
boxShadow="md"
d="flex"
alignItems="center"
justifyContent="center"
_focus={{ borderColor: "gray.50" }}
_hover={{ borderColor: "gray.50" }}
outline="initial"
className={cx(
css`
2020-05-02 16:03:23 -07:00
border: 1px solid transparent !important;
transition: border-color 0.2s !important;
2020-05-02 15:41:02 -07:00
&:focus,
&:hover,
&.is-open {
2020-05-02 16:03:23 -07:00
border-color: ${theme.colors.gray["50"]} !important;
}
&.is-open {
border-width: 2px !important;
2020-05-02 15:41:02 -07:00
}
`,
isOpen && "is-open"
)}
>
2020-05-02 23:04:31 -07:00
{outfitState.emotion === "HAPPY" && (
<EmojiImage src={twemojiSmile} alt="Choose a pose" />
)}
{outfitState.emotion === "SAD" && (
<EmojiImage src={twemojiCry} alt="Choose a pose" />
)}
{outfitState.emotion === "SICK" && (
<EmojiImage src={twemojiSick} alt="Choose a pose" />
)}
2020-05-02 15:41:02 -07:00
</Button>
</PopoverTrigger>
<PopoverContent>
<Box p="4">
<table width="100%">
2020-05-02 15:41:02 -07:00
<thead>
<tr>
<th />
2020-05-02 16:03:23 -07:00
<Cell as="th">
2020-05-02 23:04:31 -07:00
<EmojiImage src={twemojiSmile} alt="Happy" />
2020-05-02 16:03:23 -07:00
</Cell>
<Cell as="th">
2020-05-02 23:04:31 -07:00
<EmojiImage src={twemojiCry} alt="Sad" />
2020-05-02 16:03:23 -07:00
</Cell>
<Cell as="th">
2020-05-02 23:04:31 -07:00
<EmojiImage src={twemojiSick} alt="Sick" />
2020-05-02 16:03:23 -07:00
</Cell>
2020-05-02 15:41:02 -07:00
</tr>
</thead>
<tbody>
<tr>
2020-05-02 16:03:23 -07:00
<Cell as="th">
2020-05-02 23:04:31 -07:00
<EmojiImage src={twemojiMasc} alt="Masculine" />
2020-05-02 16:03:23 -07:00
</Cell>
<Cell as="td">
2020-05-02 21:04:54 -07:00
<PoseButton
pose={poses.happyMasc}
onChange={onChange}
inputRef={poses.happyMasc.isSelected && checkedInputRef}
2020-05-02 21:04:54 -07:00
/>
2020-05-02 16:03:23 -07:00
</Cell>
<Cell as="td">
<PoseButton
pose={poses.sadMasc}
onChange={onChange}
inputRef={poses.sadMasc.isSelected && checkedInputRef}
/>
2020-05-02 16:03:23 -07:00
</Cell>
<Cell as="td">
<PoseButton
pose={poses.sickMasc}
onChange={onChange}
inputRef={poses.sickMasc.isSelected && checkedInputRef}
/>
2020-05-02 16:03:23 -07:00
</Cell>
2020-05-02 15:41:02 -07:00
</tr>
<tr>
2020-05-02 16:03:23 -07:00
<Cell as="th">
2020-05-02 23:04:31 -07:00
<EmojiImage src={twemojiFem} alt="Feminine" />
2020-05-02 16:03:23 -07:00
</Cell>
<Cell as="td">
<PoseButton
pose={poses.happyFem}
onChange={onChange}
inputRef={poses.happyFem.isSelected && checkedInputRef}
/>
2020-05-02 16:03:23 -07:00
</Cell>
<Cell as="td">
<PoseButton
pose={poses.sadFem}
onChange={onChange}
inputRef={poses.sadFem.isSelected && checkedInputRef}
/>
2020-05-02 16:03:23 -07:00
</Cell>
<Cell as="td">
<PoseButton
pose={poses.sickFem}
onChange={onChange}
inputRef={poses.sickFem.isSelected && checkedInputRef}
/>
2020-05-02 16:03:23 -07:00
</Cell>
2020-05-02 15:41:02 -07:00
</tr>
</tbody>
</table>
</Box>
<PopoverArrow />
</PopoverContent>
</>
)}
</Popover>
);
}
2020-05-02 16:03:23 -07:00
function Cell({ children, as }) {
const Tag = as;
2020-05-02 15:41:02 -07:00
return (
2020-05-02 16:03:23 -07:00
<Tag>
2020-05-02 15:41:02 -07:00
<Flex justify="center" p="1">
{children}
</Flex>
2020-05-02 16:03:23 -07:00
</Tag>
2020-05-02 15:41:02 -07:00
);
}
2020-05-02 22:04:20 -07:00
const EMOTION_STRINGS = {
HAPPY: "Happy",
SAD: "Sad",
SICK: "Sick",
};
const GENDER_PRESENTATION_STRINGS = {
MASCULINE: "Masculine",
FEMININE: "Feminine",
};
function PoseButton({ pose, onChange, inputRef }) {
2020-05-02 22:04:20 -07:00
const theme = useTheme();
const genderPresentationStr =
GENDER_PRESENTATION_STRINGS[pose.genderPresentation];
const emotionStr = EMOTION_STRINGS[pose.emotion];
2020-05-02 22:59:30 -07:00
let label = `${emotionStr} and ${genderPresentationStr}`;
if (!pose.isAvailable) {
label += ` (not modeled yet)`;
}
2020-05-02 15:41:02 -07:00
return (
2020-05-02 21:04:54 -07:00
<Box
2020-05-02 22:04:20 -07:00
as="label"
cursor="pointer"
onClick={(e) => {
// HACK: We need the timeout to beat the popover's focus stealing!
const input = e.currentTarget.querySelector("input");
setTimeout(() => input.focus(), 0);
}}
2020-05-02 21:04:54 -07:00
>
2020-05-02 22:04:20 -07:00
<VisuallyHidden
as="input"
type="radio"
2020-05-02 22:59:30 -07:00
aria-label={label}
2020-05-02 22:04:20 -07:00
name="pose"
value={`${pose.emotion}-${pose.genderPresentation}`}
checked={pose.isSelected}
2020-05-02 22:59:30 -07:00
disabled={!pose.isAvailable}
onChange={onChange}
ref={inputRef || null}
2020-05-02 22:04:20 -07:00
/>
<Box
2020-05-02 22:59:30 -07:00
aria-hidden
2020-05-02 22:04:20 -07:00
rounded="full"
boxShadow="md"
overflow="hidden"
width="50px"
height="50px"
2020-05-02 22:40:34 -07:00
title={
2020-05-02 22:59:30 -07:00
pose.isAvailable
? // A lil debug output, so that we can quickly identify glitched
// PetStates and manually mark them as glitched!
window.location.hostname.includes("localhost") &&
`#${pose.petStateId}`
: "Not modeled yet"
2020-05-02 22:40:34 -07:00
}
2020-05-02 22:04:20 -07:00
position="relative"
className={css`
transform: scale(0.8);
opacity: 0.8;
transition: all 0.2s;
input:checked + & {
transform: scale(1);
opacity: 1;
}
`}
>
<Box
rounded="full"
position="absolute"
top="0"
bottom="0"
left="0"
right="0"
zIndex="2"
2020-05-02 22:59:30 -07:00
className={cx(
css`
border: 0px solid ${theme.colors.green["600"]};
transition: border-width 0.2s;
2020-05-02 22:04:20 -07:00
2020-05-02 22:59:30 -07:00
&.not-available {
border-color: ${theme.colors.gray["500"]};
border-width: 1px;
}
2020-05-02 22:04:20 -07:00
2020-05-02 22:59:30 -07:00
input:checked + * & {
border-width: 1px;
}
input:focus + * & {
border-width: 3px;
}
`,
!pose.isAvailable && "not-available"
)}
2020-05-02 22:04:20 -07:00
/>
2020-05-02 22:59:30 -07:00
{pose.isAvailable ? (
<Box
width="50px"
height="50px"
transform={
transformsByBodyId[pose.bodyId] || transformsByBodyId.default
2020-05-02 22:59:30 -07:00
}
>
<OutfitLayers visibleLayers={getVisibleLayers(pose, [])} />
</Box>
) : (
<Flex align="center" justify="center">
<Box
fontFamily="Delicious, sans-serif"
2020-05-02 22:59:30 -07:00
fontSize="3xl"
fontWeight="900"
color="gray.600"
>
?
</Box>
</Flex>
)}
2020-05-02 22:04:20 -07:00
</Box>
2020-05-02 15:41:02 -07:00
</Box>
);
}
2020-05-02 23:04:31 -07:00
function EmojiImage({ src, alt }) {
return <img src={src} alt={alt} width="16px" height="16px" />;
2020-05-02 16:03:23 -07:00
}
function usePoses(outfitState) {
2020-05-02 22:40:34 -07:00
const { speciesId, colorId } = outfitState;
2020-05-02 22:04:20 -07:00
const { loading, error, data } = useQuery(
gql`
query PosePicker($speciesId: ID!, $colorId: ID!) {
petAppearances(speciesId: $speciesId, colorId: $colorId) {
2020-05-02 21:04:54 -07:00
id
2020-05-02 22:40:34 -07:00
petStateId
bodyId
genderPresentation
emotion
2020-05-02 21:04:54 -07:00
approximateThumbnailUrl
...PetAppearanceForOutfitPreview
}
}
${petAppearanceFragment}
`,
{ variables: { speciesId, colorId } }
);
const petAppearances = data?.petAppearances || [];
2020-05-02 22:59:30 -07:00
const buildPose = (e, gp) => {
const appearance = petAppearances.find(
(pa) => pa.emotion === e && pa.genderPresentation === gp
2020-05-02 22:59:30 -07:00
);
return {
...appearance,
isAvailable: Boolean(appearance),
isSelected:
outfitState.emotion === e && outfitState.genderPresentation === gp,
};
};
const poses = {
2020-05-02 22:04:20 -07:00
happyMasc: buildPose("HAPPY", "MASCULINE"),
sadMasc: buildPose("SAD", "MASCULINE"),
sickMasc: buildPose("SICK", "MASCULINE"),
happyFem: buildPose("HAPPY", "FEMININE"),
sadFem: buildPose("SAD", "FEMININE"),
sickFem: buildPose("SICK", "FEMININE"),
};
return { loading, error, poses };
}
const transformsByBodyId = {
"93": "translate(-5px, 10px) scale(2.8)",
"106": "translate(-8px, 8px) scale(2.9)",
"47": "translate(-1px, 17px) scale(3)",
"84": "translate(-21px, 22px) scale(3.2)",
"146": "translate(2px, 15px) scale(3.3)",
"250": "translate(-14px, 28px) scale(3.4)",
"212": "translate(-4px, 8px) scale(2.9)",
"74": "translate(-26px, 30px) scale(3.0)",
"94": "translate(-4px, 8px) scale(3.1)",
"132": "translate(-14px, 18px) scale(3.0)",
"56": "translate(-7px, 24px) scale(2.9)",
"90": "translate(-16px, 20px) scale(3.5)",
"136": "translate(-11px, 18px) scale(3.0)",
"138": "translate(-14px, 26px) scale(3.5)",
"166": "translate(-13px, 24px) scale(3.1)",
"119": "translate(-6px, 29px) scale(3.1)",
"126": "translate(3px, 13px) scale(3.1)",
"67": "translate(2px, 27px) scale(3.4)",
"163": "translate(-7px, 16px) scale(3.1)",
"147": "translate(-2px, 15px) scale(3.0)",
"80": "translate(-2px, -17px) scale(3.0)",
"117": "translate(-14px, 16px) scale(3.6)",
"201": "translate(-16px, 16px) scale(3.2)",
"51": "translate(-2px, 6px) scale(3.2)",
"208": "translate(-3px, 6px) scale(3.7)",
"196": "translate(-7px, 19px) scale(5.2)",
"143": "translate(-16px, 20px) scale(3.5)",
"150": "translate(-3px, 24px) scale(3.2)",
"175": "translate(-9px, 15px) scale(3.4)",
"173": "translate(3px, 57px) scale(4.4)",
"199": "translate(-28px, 35px) scale(3.8)",
"52": "translate(-8px, 33px) scale(3.5)",
"109": "translate(-8px, -6px) scale(3.2)",
"134": "translate(-14px, 14px) scale(3.1)",
"95": "translate(-12px, 0px) scale(3.4)",
"96": "translate(6px, 23px) scale(3.3)",
"154": "translate(-20px, 25px) scale(3.6)",
"55": "translate(-16px, 28px) scale(4.0)",
"76": "translate(-8px, 11px) scale(3.0)",
"156": "translate(2px, 12px) scale(3.5)",
"78": "translate(-3px, 18px) scale(3.0)",
"191": "translate(-18px, 46px) scale(4.4)",
"187": "translate(-6px, 22px) scale(3.2)",
"46": "translate(-2px, 19px) scale(3.4)",
"178": "translate(-11px, 32px) scale(3.3)",
"100": "translate(-13px, 23px) scale(3.3)",
"130": "translate(-14px, 4px) scale(3.1)",
"188": "translate(-9px, 24px) scale(3.5)",
"257": "translate(-14px, 25px) scale(3.4)",
"206": "translate(-7px, 4px) scale(3.6)",
"101": "translate(-13px, 16px) scale(3.2)",
"68": "translate(-2px, 13px) scale(3.2)",
"182": "translate(-6px, 4px) scale(3.1)",
"180": "translate(-15px, 22px) scale(3.6)",
"306": "translate(1px, 14px) scale(3.1)",
2020-05-02 21:04:54 -07:00
default: "scale(2.5)",
};
2020-05-02 15:41:02 -07:00
export default PosePicker;