-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[김은재] Week15 #466
The head ref may contain hidden characters: "part3-\uAE40\uC740\uC7AC-week15"
[김은재] Week15 #466
Changes from all commits
29ccc6c
88517f2
1009c4f
ba000c7
da966d2
99f230c
b4f8bd3
62c9a1d
66d551e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
import { BASE_URL } from "@/constants/url"; | ||
import navEntireTab from "@/constants/folderNav"; | ||
|
||
export const getFolderNavInfo = async () => { | ||
export const getFolderNavInfo = async (userId: number) => { | ||
try { | ||
const response = await fetch(`${BASE_URL}/api/users/1/folders`); | ||
const response = await fetch(`${BASE_URL}/api/users/${userId}/folders`); | ||
if (!response.ok) { | ||
throw new Error(`${response.status}`); | ||
} | ||
|
@@ -16,15 +15,25 @@ export const getFolderNavInfo = async () => { | |
} | ||
}; | ||
|
||
export const getFolderListInfo = async (id: number) => { | ||
let query = "/api/users/1/links"; | ||
if (id !== navEntireTab) { | ||
query = `${query}?folderId=${id}`; | ||
export const getFolderListInfo = async ( | ||
navId: string | string[] | undefined, | ||
userToken: string | undefined | ||
) => { | ||
let query = "/api/links"; | ||
if (navId) { | ||
query += `?folderId=${navId}`; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 이렇게 넣는다면 navId 는 string[] 타입인 경우보다는 string 타입인 경우만 해당될 것 같네요 다른 부분도 마찬가지 |
||
} | ||
|
||
try { | ||
const response = await fetch(BASE_URL + query); | ||
const response = await fetch(BASE_URL + query, { | ||
headers: { | ||
Authorization: `Bearer ${userToken}`, | ||
}, | ||
}); | ||
if (!response.ok) { | ||
if (response.status === 401) { | ||
throw new Error("로그인 인증 "); | ||
} | ||
throw new Error(`${response.status}`); | ||
} | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,38 @@ | ||
import { BASE_URL } from "../constants/url"; | ||
|
||
export const getSharedInfo = async () => { | ||
export const getSharedFolderInfo = async ( | ||
folderId: string | string[] | undefined | ||
) => { | ||
try { | ||
const response = await fetch(`${BASE_URL}/api/sample/folder`); | ||
const response = await fetch(`${BASE_URL}/api/folders/${folderId}`); | ||
if (!response.ok) { | ||
throw new Error(`${response.status}`); | ||
} | ||
|
||
const result = await response.json(); | ||
return result; | ||
} catch (error) { | ||
if (error instanceof Error) alert(`${error.message}에러 발생!`); | ||
if (error instanceof Error) alert(`${error.message}에러 발생!!`); | ||
return false; | ||
} | ||
}; | ||
|
||
export const getSharedLinkList = async ( | ||
userId: string, | ||
folderId: string | string[] | ||
) => { | ||
try { | ||
const response = await fetch( | ||
`${BASE_URL}/api/users/${userId}/links?folderId=${folderId}` | ||
); | ||
if (!response.ok) { | ||
throw new Error(`${response.status}`); | ||
} | ||
|
||
const result = await response.json(); | ||
return result; | ||
} catch (error) { | ||
if (error instanceof Error) alert(`${error.message}에러 발생2!`); | ||
return false; | ||
} | ||
}; |
Original file line number | Diff line number | Diff line change | ||
---|---|---|---|---|
@@ -1,22 +1,26 @@ | ||||
import * as S from "./LinkAddContent.styled"; | ||||
import { useState, useEffect, useRef } from "react"; | ||||
import { useState, useEffect, useRef, useContext } from "react"; | ||||
import Button from "@/components/common/Button"; | ||||
import { getFolderNavInfo } from "@/api/folder"; | ||||
import checkIcon from "@/public/image/icon/check.svg"; | ||||
import { INavItem } from "@/types/FolderNav"; | ||||
import Image from "next/image"; | ||||
import { UserInfoContext } from "@/context/User"; | ||||
|
||||
const LinkAddContent = () => { | ||||
const [navList, setNavList] = useState([]); | ||||
const [isLoading, setIsLoading] = useState(false); | ||||
const [currentSelectedFolder, setFolder] = useState(null); | ||||
const selectedFoler: React.MutableRefObject<any> = useRef({}); | ||||
const userInfo = useContext(UserInfoContext); | ||||
|
||||
useEffect(() => { | ||||
const folderNavInfo = async () => { | ||||
try { | ||||
setIsLoading(true); | ||||
const response = await getFolderNavInfo(); | ||||
|
||||
if (!userInfo) return; | ||||
const response = await getFolderNavInfo(userInfo?.id); | ||||
|
||||
if (response !== null) { | ||||
setNavList(response.data); | ||||
|
@@ -39,6 +43,7 @@ const LinkAddContent = () => { | |||
<S.Content> | ||||
<S.FolderList> | ||||
{navList.map((navItem: INavItem, i) => { | ||||
console.log(navItem); | ||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. PR 올린 후 불필요한 코드가 있는지 꼭 확인해주세요
Suggested change
|
||||
return ( | ||||
<li | ||||
key={navItem.id} | ||||
|
Original file line number | Diff line number | Diff line change | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,4 +1,4 @@ | ||||||||||||||||||
import React, { useEffect, useState } from "react"; | ||||||||||||||||||
import React, { useContext, useEffect, useState } from "react"; | ||||||||||||||||||
import { getFolderNavInfo } from "@/api/folder"; | ||||||||||||||||||
import * as S from "./NavBox.styled"; | ||||||||||||||||||
import useModal from "@/hooks/useModal"; | ||||||||||||||||||
|
@@ -11,40 +11,45 @@ import deleteIcon from "@/public/image/icon/delete.svg"; | |||||||||||||||||
import { ModalParam } from "@/types/Modal"; | ||||||||||||||||||
import { INavItem } from "@/types/FolderNav"; | ||||||||||||||||||
import Image from "next/image"; | ||||||||||||||||||
import navEntireTab from "@/constants/folderNav"; | ||||||||||||||||||
import { UserInfoContext } from "@/context/User"; | ||||||||||||||||||
|
||||||||||||||||||
interface FolderNav { | ||||||||||||||||||
navId?: number; | ||||||||||||||||||
onClickNavItem: (navId: number) => void; | ||||||||||||||||||
pageNavId?: string | string[]; | ||||||||||||||||||
} | ||||||||||||||||||
|
||||||||||||||||||
const NavBox = ({ navId, onClickNavItem }: FolderNav) => { | ||||||||||||||||||
const NavBox = ({ pageNavId }: FolderNav) => { | ||||||||||||||||||
const { openModal } = useModal(); | ||||||||||||||||||
const [navList, setNavList] = useState<INavItem[]>([]); | ||||||||||||||||||
const [currentNav, setCurrentNav] = useState("전체"); | ||||||||||||||||||
const userInfo = useContext(UserInfoContext); | ||||||||||||||||||
|
||||||||||||||||||
const handleLoadInfo = async () => { | ||||||||||||||||||
const folderNavInfo = await getFolderNavInfo(); | ||||||||||||||||||
const handleGetNavData = async () => { | ||||||||||||||||||
if (!userInfo) return; | ||||||||||||||||||
const folderNavInfo = await getFolderNavInfo(userInfo.id); | ||||||||||||||||||
|
||||||||||||||||||
if (folderNavInfo !== null) { | ||||||||||||||||||
setNavList(folderNavInfo.data); | ||||||||||||||||||
setNavList(folderNavInfo.data.folder); | ||||||||||||||||||
} | ||||||||||||||||||
}; | ||||||||||||||||||
|
||||||||||||||||||
useEffect(() => { | ||||||||||||||||||
handleLoadInfo(); | ||||||||||||||||||
}, []); | ||||||||||||||||||
handleGetNavData(); | ||||||||||||||||||
}, [userInfo]); | ||||||||||||||||||
|
||||||||||||||||||
useEffect(() => { | ||||||||||||||||||
if (navId === navEntireTab) { | ||||||||||||||||||
if (!pageNavId) { | ||||||||||||||||||
setCurrentNav("전체"); | ||||||||||||||||||
} | ||||||||||||||||||
|
||||||||||||||||||
navList.forEach((navListItem: INavItem) => { | ||||||||||||||||||
if (navListItem.name && navListItem.id === navId) | ||||||||||||||||||
if ( | ||||||||||||||||||
navListItem.name && | ||||||||||||||||||
pageNavId && | ||||||||||||||||||
navListItem.id === parseInt(pageNavId[0]) | ||||||||||||||||||
) | ||||||||||||||||||
setCurrentNav(navListItem.name); | ||||||||||||||||||
}); | ||||||||||||||||||
}, [navId, navList]); | ||||||||||||||||||
}, [pageNavId]); | ||||||||||||||||||
|
||||||||||||||||||
const handleOpenModal = ({ type, props }: ModalParam) => { | ||||||||||||||||||
openModal({ type, props }); | ||||||||||||||||||
|
@@ -53,26 +58,24 @@ const NavBox = ({ navId, onClickNavItem }: FolderNav) => { | |||||||||||||||||
return ( | ||||||||||||||||||
<> | ||||||||||||||||||
<S.NavWrapBox> | ||||||||||||||||||
<ul> | ||||||||||||||||||
<NavItem | ||||||||||||||||||
navName="전체" | ||||||||||||||||||
onClick={onClickNavItem} | ||||||||||||||||||
navId={navEntireTab} | ||||||||||||||||||
isCurrentNav={navId === navEntireTab} | ||||||||||||||||||
/> | ||||||||||||||||||
<S.NavList> | ||||||||||||||||||
<NavItem navName="전체" isCurrentNav={!pageNavId} /> | ||||||||||||||||||
{navList && | ||||||||||||||||||
navList.map((navItem) => { | ||||||||||||||||||
return ( | ||||||||||||||||||
<NavItem | ||||||||||||||||||
key={navItem.id} | ||||||||||||||||||
navName={navItem.name} | ||||||||||||||||||
navId={navItem.id} | ||||||||||||||||||
onClick={onClickNavItem} | ||||||||||||||||||
isCurrentNav={navItem.id === navId ? true : false} | ||||||||||||||||||
isCurrentNav={ | ||||||||||||||||||
pageNavId && navItem.id?.toString() === pageNavId[0] | ||||||||||||||||||
? true | ||||||||||||||||||
: false | ||||||||||||||||||
} | ||||||||||||||||||
/> | ||||||||||||||||||
Comment on lines
+70
to
+74
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 조건문 자체가 boolean 이므로 간단하게 변경해볼수있겠네요
Suggested change
|
||||||||||||||||||
); | ||||||||||||||||||
})} | ||||||||||||||||||
</ul> | ||||||||||||||||||
</S.NavList> | ||||||||||||||||||
<button | ||||||||||||||||||
onClick={() => | ||||||||||||||||||
handleOpenModal({ | ||||||||||||||||||
|
@@ -88,7 +91,7 @@ const NavBox = ({ navId, onClickNavItem }: FolderNav) => { | |||||||||||||||||
</S.NavWrapBox> | ||||||||||||||||||
<S.NavSettingBox> | ||||||||||||||||||
<span>{currentNav}</span> | ||||||||||||||||||
{navId !== navEntireTab && ( | ||||||||||||||||||
{pageNavId && ( | ||||||||||||||||||
<div> | ||||||||||||||||||
<button | ||||||||||||||||||
onClick={() => | ||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
undefined 인 경우 아래와 같이 선택적 프로퍼티로 작성할 수도 있습니다!