-
Notifications
You must be signed in to change notification settings - Fork 114
/
Copy pathFolderContent.js
43 lines (36 loc) · 1.29 KB
/
FolderContent.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import React, { useState } from 'react';
import Searchbar from '../Searchbar';
import useFetchFolderCategoryData from '../../hooks/useFetchFolderCategoryData';
import useFetchFolderCardsData from '../../hooks/useFetchFolderCardsData';
import FolderCategory from './FolderCategory';
import { FolderTitle } from './FolderTitle';
import { FolderCards } from './FolderCards';
function FolderContent() {
const [currentCategory, setCurrentCategory] = useState('전체');
const [folderId, setFolderId] = useState(0);
const folderCategory = useFetchFolderCategoryData();
const folderCards = useFetchFolderCardsData(folderId);
const handleCategoryButton = (e) => {
setCurrentCategory(e.target.innerText);
setFolderId(e.target.id);
};
return (
<>
<Searchbar />
{folderCategory ? (
<>
<FolderCategory
category={[{ name: '전체', id: 0 }, ...folderCategory]}
currentCategory={currentCategory}
handleCategoryButton={handleCategoryButton}
/>
<FolderTitle currentCategory={currentCategory} />
{folderCards && <FolderCards folder={folderCards} />}
</>
) : (
<div className="content-wrapper">저장된 링크가 없습니다.</div>
)}
</>
);
}
export default FolderContent;