mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-02-11 06:24:56 -05:00
109 lines
2.8 KiB
TypeScript
109 lines
2.8 KiB
TypeScript
import {
|
|
MetaButton,
|
|
MetaHeading,
|
|
MetaTheme,
|
|
SelectSearch,
|
|
selectStyles,
|
|
useToast,
|
|
} from '@metafam/ds';
|
|
import { FlexContainer } from 'components/Container';
|
|
import { useSetupFlow } from 'contexts/SetupContext';
|
|
import {
|
|
SkillCategory_Enum,
|
|
useUpdatePlayerSkillsMutation,
|
|
} from 'graphql/autogen/types';
|
|
import { SkillColors } from 'graphql/types';
|
|
import { useUser } from 'lib/hooks';
|
|
import React, { useState } from 'react';
|
|
import { CategoryOption, SkillOption } from 'utils/skillHelpers';
|
|
|
|
export type SetupSkillsProps = {
|
|
skillChoices: Array<CategoryOption>;
|
|
skills: Array<SkillOption>;
|
|
setSkills: React.Dispatch<React.SetStateAction<Array<SkillOption>>>;
|
|
};
|
|
|
|
const styles: typeof selectStyles = {
|
|
...selectStyles,
|
|
multiValue: (s, { data }) => ({
|
|
...s,
|
|
background: SkillColors[data.category as SkillCategory_Enum],
|
|
color: MetaTheme.colors.white,
|
|
}),
|
|
multiValueLabel: (s, { data }) => ({
|
|
...s,
|
|
background: SkillColors[data.category as SkillCategory_Enum],
|
|
color: MetaTheme.colors.white,
|
|
}),
|
|
groupHeading: (s, { children }) => ({
|
|
...s,
|
|
...(selectStyles.groupHeading &&
|
|
selectStyles.groupHeading(s, { children })),
|
|
background: SkillColors[children as SkillCategory_Enum],
|
|
}),
|
|
};
|
|
|
|
export const SetupSkills: React.FC<SetupSkillsProps> = ({
|
|
skillChoices,
|
|
skills,
|
|
setSkills,
|
|
}) => {
|
|
const { onNextPress, nextButtonLabel } = useSetupFlow();
|
|
const { user } = useUser({ redirectTo: '/' });
|
|
const toast = useToast();
|
|
|
|
const [updateSkillsRes, updateSkills] = useUpdatePlayerSkillsMutation();
|
|
const [loading, setLoading] = useState(false);
|
|
|
|
const handleNextPress = async () => {
|
|
if (!user) return;
|
|
|
|
setLoading(true);
|
|
const { error } = await updateSkills({
|
|
skills: skills.map((s) => ({ skill_id: s.id })),
|
|
});
|
|
|
|
if (error) {
|
|
console.warn(error); // eslint-disable-line no-console
|
|
toast({
|
|
title: 'Error',
|
|
description: 'Unable to update player skills. The octo is sad 😢',
|
|
status: 'error',
|
|
isClosable: true,
|
|
});
|
|
setLoading(false);
|
|
return;
|
|
}
|
|
|
|
onNextPress();
|
|
};
|
|
|
|
return (
|
|
<FlexContainer>
|
|
<MetaHeading mb={10} mt={-64} textAlign="center">
|
|
What are your super­powers?
|
|
</MetaHeading>
|
|
<FlexContainer w="100%" align="stretch" maxW="50rem">
|
|
<SelectSearch
|
|
isMulti
|
|
styles={styles}
|
|
value={skills}
|
|
onChange={(value) => setSkills(value as Array<SkillOption>)}
|
|
options={skillChoices}
|
|
autoFocus
|
|
closeMenuOnSelect={false}
|
|
placeholder="ADD YOUR SKILLS"
|
|
/>
|
|
</FlexContainer>
|
|
<MetaButton
|
|
onClick={handleNextPress}
|
|
mt={10}
|
|
isLoading={updateSkillsRes.fetching || loading}
|
|
loadingText="Saving"
|
|
>
|
|
{nextButtonLabel}
|
|
</MetaButton>
|
|
</FlexContainer>
|
|
);
|
|
};
|