Skip to content

Commit

Permalink
[deploy] Fix Valorant ui (#122)
Browse files Browse the repository at this point in the history
  • Loading branch information
PMtHk authored Sep 21, 2023
2 parents 21e22d0 + 6cd1b43 commit 06f2593
Show file tree
Hide file tree
Showing 15 changed files with 109 additions and 42 deletions.
2 changes: 1 addition & 1 deletion src/apis/api/valorant.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const verifyNickname = async (nickname: string) => {
*/

export const loadHistory = async (agentName: string) => {
await defaultAxios.get(`/api/valorant/user/${agentName}`);
await defaultAxios.get(`/api/valorant/user/${agentName.replace('#', '%23')}`);

return null;
};
Expand Down
5 changes: 4 additions & 1 deletion src/pages/battlegrounds/MemberSlot.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ const MemberSlot = ({ name, oauth2Id: MemberOauth2Id }: MemberSlotProps) => {

const [memberInfo, setMemberInfo] = React.useState<any>({});
const [isLoading, setIsLoading] = React.useState<boolean>(true);
const [isFollowed, setIsFollowed] = React.useState<boolean>(false);

// author info
const authorTier = tierList.find((aTier) => aTier.value === memberInfo.tier);
Expand Down Expand Up @@ -201,6 +202,7 @@ const MemberSlot = ({ name, oauth2Id: MemberOauth2Id }: MemberSlotProps) => {
severity: 'error',
}),
);
setIsFollowed(true);
} else {
dispatch(
snackbarActions.OPEN_SNACKBAR({
Expand Down Expand Up @@ -327,7 +329,8 @@ const MemberSlot = ({ name, oauth2Id: MemberOauth2Id }: MemberSlotProps) => {
</IconButton>
</MuiToolTip>
)}
{isInParty(currentCard.memberList, oauth2Id) &&
{!isFollowed &&
isInParty(currentCard.memberList, oauth2Id) &&
!isGuest(MemberOauth2Id) &&
oauth2Id !== MemberOauth2Id &&
!MemberOauth2Id.startsWith('guest') && (
Expand Down
5 changes: 4 additions & 1 deletion src/pages/leagueoflegends/MemberSlot.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ const MemberSlot = ({

const [memberInfo, setMemberInfo] = React.useState<any>({});
const [isLoading, setIsLoading] = React.useState<boolean>(true);
const [isFollowed, setIsFollowed] = React.useState<boolean>(false);

// author info
const mostLane = positionList.find(
Expand Down Expand Up @@ -194,6 +195,7 @@ const MemberSlot = ({
severity: 'error',
}),
);
setIsFollowed(true);
} else {
dispatch(
snackbarActions.OPEN_SNACKBAR({
Expand Down Expand Up @@ -315,7 +317,8 @@ const MemberSlot = ({
</IconButton>
</MuiToolTip>
)}
{isInParty(currentCard.memberList, oauth2Id) &&
{!isFollowed &&
isInParty(currentCard.memberList, oauth2Id) &&
!isGuest(MemberOauth2Id) &&
oauth2Id !== MemberOauth2Id && (
<MuiToolTip title="팔로우" placement="right">
Expand Down
1 change: 0 additions & 1 deletion src/pages/login/AdminLogin.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ const AdminLogin = () => {

navigate(`/${representative}`);
} catch (error: any) {
console.log(error.response);
if (error.response.status === 404) {
dispatch(
snackbarActions.OPEN_SNACKBAR({
Expand Down
15 changes: 12 additions & 3 deletions src/pages/mypage/Games.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import { changeRepresentative } from 'apis/api/user';
import { loadHistory as lolLoadHistory } from 'apis/api/leagueoflegends';
import { getPlatform, loadHistory as pubgLoadHistory } from 'apis/api/pubg';
import { loadHistory as owLoadHistory } from 'apis/api/overwatch';
import { loadHistory as vlrtLoadHistory } from 'apis/api/valorant';
import { RootState } from 'store';
import { snackbarActions } from 'store/snackbar-slice';
import { userActions } from 'store/user-slice';
Expand All @@ -28,7 +29,7 @@ import Nickname from './Games/Nickname';

interface GameFilterProps {
selectedGame: string;
setSelectedGame: Dispatch<SetStateAction<string>>;
setSelectedGame: Dispatch<SetStateAction<GAME_ID>>;
representative: string;
}

Expand Down Expand Up @@ -71,6 +72,8 @@ const GameFilterBar = ({
);
};

const MemoizedGameFilterBar = React.memo(GameFilterBar);

const GameDataUpdateButton = ({ game }: any) => {
const dispatch = useDispatch();

Expand Down Expand Up @@ -100,6 +103,11 @@ const GameDataUpdateButton = ({ game }: any) => {
dispatch(mypageActions.TOGGLE_REFRESH_OVERWATCH());
}

if (game === 'valorant') {
await vlrtLoadHistory(nickname);
dispatch(mypageActions.TOGGLE_REFRESH_VALORANT());
}

setIsLoading(false);
dispatch(
snackbarActions.OPEN_SNACKBAR({
Expand Down Expand Up @@ -146,6 +154,7 @@ const ChangeRepresentativeButton = ({ game, representative }: any) => {
);
}
};

return (
<UpdateButton
fullWidth
Expand All @@ -169,7 +178,7 @@ const Games = () => {
overwatchInfo: overwatchData,
} = useSelector((state: RootState) => state.mypage);

const [selectedGame, setSelectedGame] = useState<string>(representative);
const [selectedGame, setSelectedGame] = useState<GAME_ID>(representative);

const gameComponents = {
lol: <LolInfo data={lolData} />,
Expand All @@ -181,7 +190,7 @@ const Games = () => {
return (
<>
{/* 게임 필터 바 */}
<GameFilterBar
<MemoizedGameFilterBar
selectedGame={selectedGame}
setSelectedGame={setSelectedGame}
representative={representative}
Expand Down
17 changes: 11 additions & 6 deletions src/pages/mypage/Games/Nickname.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,25 @@ import {
} from 'apis/api/overwatch';
import { userActions } from 'store/user-slice';
import { snackbarActions } from 'store/snackbar-slice';

const Nickname = ({ name, game, isNew }: any) => {
import { GAME_ID } from 'types/games';

const Nickname = ({
name,
game,
isNew,
}: {
name: string;
game: GAME_ID;
isNew: boolean;
}) => {
const dispatch = useDispatch();

const [nickname, setNickname] = useState<string>(name);

const handleNickname = (e: React.ChangeEvent<HTMLInputElement>) => {
setNickname(e.target.value);
};

const [isPosting, setIsPosting] = useState<boolean>(false);

const [isEdit, setIsEdit] = useState<boolean>(false);

const [error, setError] = useState<boolean>(false);

useEffect(() => {
Expand Down
35 changes: 24 additions & 11 deletions src/pages/mypage/MyInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ const Content = ({ title, content }: ContentProps) => {
);
};

const MemoizedContent = React.memo(Content);

type InfoProps = {
title: string;
children: JSX.Element | JSX.Element[];
Expand All @@ -36,27 +38,38 @@ const Info = ({ title, children }: InfoProps) => {
);
};

const MyInfo = () => {
const { email, created, likeCount, dislikeCount, matchCount } = useSelector(
(state: RootState) => state.mypage,
);

const MyInfo = ({
email,
created,
likeCount,
dislikeCount,
matchCount,
}: {
email: string;
created: string;
likeCount: number;
dislikeCount: number;
matchCount: number;
}) => {
return (
<>
<Info title="이메일 및 가입 일자">
<Content title="이메일" content={email} />
<Content title="가입 일자" content={created.slice(0, 11)} />
<MemoizedContent title="이메일" content={email} />
<MemoizedContent title="가입 일자" content={created.slice(0, 11)} />
</Info>

<Info title="받은 평가">
<Content title="매칭 횟수" content={matchCount} />
<Content title="받은 좋아요" content={likeCount} />
<Content title="받은 싫어요" content={dislikeCount} />
<MemoizedContent title="매칭 횟수" content={matchCount} />
<MemoizedContent title="받은 좋아요" content={likeCount} />
<MemoizedContent title="받은 싫어요" content={dislikeCount} />
</Info>
</>
);
};
export default MyInfo;

const MemoizedMyInfo = React.memo(MyInfo);

export default MemoizedMyInfo;

const Container = styled(MuiBox)(() => ({
width: '100%',
Expand Down
11 changes: 11 additions & 0 deletions src/pages/mypage/RsoCallback.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,13 @@ import { connectRSOMypage } from 'apis/api/valorant';
import { changeNickname } from 'apis/api/user';
import { snackbarActions } from 'store/snackbar-slice';
import Linear from 'components/loading/Linear';
import { useDispatch } from 'react-redux';
import { userActions } from 'store/user-slice';

const RsoCallback = () => {
const navigate = useNavigate();
const dispatch = useDispatch();

const params = new URL(document.URL).searchParams;
const rsoAccessCode = params.get('code');

Expand All @@ -26,6 +30,13 @@ const RsoCallback = () => {
await defaultAxios.get(`/api/valorant/user/${gameName}%23${tagLine}`);

await changeNickname('valorant', `${gameName}#${tagLine}`);

dispatch(
userActions.SET_GAMES_WITH_ID({
id: 'valorant',
value: `${gameName}#${tagLine}`,
}),
);
} catch (error: any) {
snackbarActions.OPEN_SNACKBAR({
message:
Expand Down
14 changes: 13 additions & 1 deletion src/pages/mypage/UserInfoContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ const UserInfoContainer = () => {
(state: RootState) => state.mypage,
);

const { email, created, likeCount, dislikeCount, matchCount } = useSelector(
(state: RootState) => state.mypage,
);

const [currentMenu, setCurrentMenu] = useState<string>(menuList[0].value);

const [title, setTItle] = useState<string>(menuList[0].label);
Expand Down Expand Up @@ -85,7 +89,15 @@ const UserInfoContainer = () => {
<MenuContainer>
{
{
myInfo: <MyInfo />,
myInfo: (
<MyInfo
email={email}
created={created}
likeCount={likeCount}
dislikeCount={dislikeCount}
matchCount={matchCount}
/>
),
games: <Games />,
follow: <Follow />,
withdrawal: <Withdrawal />,
Expand Down
22 changes: 9 additions & 13 deletions src/pages/mypage/UserInfoFetcher.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,6 @@ const UserInfoFetcher = ({ children }: UserInfoFetcherProps) => {
dispatch(mypageActions.SET_LOLINFO({ duoRankInfo, freeRankInfo }));
};

if (games.lol) {
getLolData();
}
}, [games.lol, refreshLolInfo]);

useEffect(() => {
const getPubgData = async () => {
const platform = await getPlatform(games.pubg);
const duoInfo = await getPubgPlayerInfo(games.pubg, platform, 'DUO');
Expand All @@ -58,22 +52,24 @@ const UserInfoFetcher = ({ children }: UserInfoFetcherProps) => {
);
};

if (games.pubg) {
getPubgData();
}
}, [games.pubg, refreshPubgInfo]);

useEffect(() => {
const getOverwatchData = async () => {
const rankInfo = await getOWPlayerInfo(games.overwatch, 'RANKED');
const normalInfo = await getOWPlayerInfo(games.overwatch, 'NORMAL');
dispatch(mypageActions.SET_OVERWATCHINFO({ rankInfo, normalInfo }));
};

if (games.lol) {
getLolData();
}

if (games.pubg) {
getPubgData();
}

if (games.overwatch) {
getOverwatchData();
}
}, [games.overwatch, refreshOverwatchInfo]);
}, [refreshLolInfo, refreshPubgInfo, refreshOverwatchInfo]);

return <div>{children}</div>;
};
Expand Down
6 changes: 5 additions & 1 deletion src/pages/overwatch/MemberSlot.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ const MemberSlot = ({ name, oauth2Id: MemberOauth2Id }: MemberSlotProps) => {
mostHero: [],
});
const [isLoading, setIsLoading] = React.useState<boolean>(true);
const [isFollowed, setIsFollowed] = React.useState<boolean>(false);

// author info
const authorNickname = memberInfo.name.split('#')[0];

Expand Down Expand Up @@ -184,6 +186,7 @@ const MemberSlot = ({ name, oauth2Id: MemberOauth2Id }: MemberSlotProps) => {
severity: 'error',
}),
);
setIsFollowed(true);
} else {
dispatch(
snackbarActions.OPEN_SNACKBAR({
Expand Down Expand Up @@ -435,7 +438,8 @@ const MemberSlot = ({ name, oauth2Id: MemberOauth2Id }: MemberSlotProps) => {
</IconButton>
</MuiToolTip>
)}
{isInParty(currentCard.memberList, oauth2Id) &&
{!isFollowed &&
isInParty(currentCard.memberList, oauth2Id) &&
!isGuest(MemberOauth2Id) &&
oauth2Id !== MemberOauth2Id &&
!MemberOauth2Id.startsWith('guest') && (
Expand Down
2 changes: 1 addition & 1 deletion src/pages/valorant/Card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ const Card = ({ item, expired }: CardProps) => {
const authorTier = tierList[item.author.tier];

const totalPlayed = item.author.wins + item.author.losses;
const winRate = Math.round((item.author.wins / totalPlayed) * 100);
const winRate = Math.round((item.author.wins / totalPlayed) * 100) || 0;

const maxMember = queueType?.maxMember || 5;
const currentMember = item.memberList.length;
Expand Down
7 changes: 5 additions & 2 deletions src/pages/valorant/MemberSlot.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ const MemberSlot = ({

const [memberInfo, setMemberInfo] = React.useState<any>({});
const [isLoading, setIsLoading] = React.useState<boolean>(true);
const [isFollowed, setIsFollowed] = React.useState<boolean>(false);

// author info
const tier = tierList[memberInfo?.tier];
Expand Down Expand Up @@ -147,7 +148,7 @@ const MemberSlot = ({
// 아래 구문은 조금 더 찾아보고 수정할 수 있도록 하겠음. - 6/28 나주엽
// eslint-disable-next-line no-unsafe-optional-chaining
const totalPlayed = memberInfo?.wins + memberInfo?.losses;
const winRate = Math.round((memberInfo.wins / totalPlayed) * 100);
const winRate = Math.round((memberInfo.wins / totalPlayed) * 100) || 0;

const isAuthor = oauth2Id === currentCard?.oauth2Id;

Expand Down Expand Up @@ -231,6 +232,7 @@ const MemberSlot = ({
severity: 'error',
}),
);
setIsFollowed(true);
} else {
dispatch(
snackbarActions.OPEN_SNACKBAR({
Expand Down Expand Up @@ -340,7 +342,8 @@ const MemberSlot = ({
</IconButton>
</MuiToolTip>
)}
{isInParty(currentCard.memberList, oauth2Id) &&
{!isFollowed &&
isInParty(currentCard.memberList, oauth2Id) &&
oauth2Id !== MemberOauth2Id && (
<MuiToolTip title="팔로우" placement="right">
<IconButton onClick={handleFollow}>
Expand Down
Loading

0 comments on commit 06f2593

Please sign in to comment.