Skip to content

Commit

Permalink
Fixed megamenu link to go to edit profile flow (#828)
Browse files Browse the repository at this point in the history
* Fixed megamenu link to go to edit profile flow

* Added view profile back to user menu

* Added edit profile button to own profile
  • Loading branch information
alalonde committed Sep 17, 2021
1 parent b69aa39 commit bfdc0e6
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 2 deletions.
10 changes: 9 additions & 1 deletion packages/web/components/MegaMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,7 @@ type PlayerStatsProps = {
const PlayerStats: React.FC<PlayerStatsProps> = ({ player }) => {
const { disconnect } = useWeb3();
const { pSeedBalance } = usePSeedBalance();

return (
<Flex
align="center"
Expand Down Expand Up @@ -311,11 +312,18 @@ const PlayerStats: React.FC<PlayerStatsProps> = ({ player }) => {
<MenuList mt="8px" color="black" fontFamily="exo2">
<MetaLink
color="black"
href={`/player/${getPlayerName(player)}`}
href={`/player/${player.username}`}
_hover={{ textDecoration: 'none' }}
>
<MenuItem>View Profile</MenuItem>
</MetaLink>
<MetaLink
color="black"
href="/profile/setup/username"
_hover={{ textDecoration: 'none' }}
>
<MenuItem>Edit Profile</MenuItem>
</MetaLink>
<MenuItem onClick={disconnect}>Disconnect</MenuItem>
</MenuList>
</Menu>
Expand Down
23 changes: 22 additions & 1 deletion packages/web/components/Player/Section/PlayerHero.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import { Box, Flex, HStack, Link, Text, VStack } from '@metafam/ds';
import { Box, Button, Flex, HStack, Link, Text, VStack } from '@metafam/ds';
import { PlayerAvatar } from 'components/Player/PlayerAvatar';
import { PlayerFragmentFragment } from 'graphql/autogen/types';
import { getPersonalityInfo } from 'graphql/getPersonalityInfo';
import { PersonalityOption } from 'graphql/types';
import { useUser } from 'lib/hooks';
import React, { useEffect } from 'react';
import { getPlayerDescription, getPlayerName } from 'utils/playerHelpers';

Expand All @@ -17,6 +18,8 @@ const MAX_BIO_LENGTH = 240;

type Props = { player: PlayerFragmentFragment };
export const PlayerHero: React.FC<Props> = ({ player }) => {
const { user } = useUser();

const description = getPlayerDescription(player);
const [show, setShow] = React.useState(description.length <= MAX_BIO_LENGTH);
const [types, setTypes] = React.useState<{
Expand All @@ -33,9 +36,27 @@ export const PlayerHero: React.FC<Props> = ({ player }) => {
loadTypes();
}, []);

const isOwnProfile = player.username === user?.username;

return (
<ProfileSection>
<VStack spacing={8}>
{isOwnProfile && (
<Flex width="100%" justifyContent="end">
<Button
variant="outline"
fontFamily="body"
fontSize="14px"
borderColor="purple.600"
backgroundColor="blackAlpha.400"
href="/profile/setup/username"
mb="-4"
_hover={{ backgroundColor: 'blackAlpha.500' }}
>
Edit Profile
</Button>
</Flex>
)}
<PlayerAvatar
w={{ base: 32, md: 56 }}
h={{ base: 32, md: 56 }}
Expand Down

1 comment on commit bfdc0e6

@vercel
Copy link

@vercel vercel bot commented on bfdc0e6 Sep 19, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.