|
1 | | -import { useState } from 'react'; |
| 1 | +import { useEffect, useState } from 'react'; |
| 2 | +import { useNavigate } from 'react-router'; |
2 | 3 |
|
| 4 | +import { getTimeLines } from '@/apis/notification'; |
3 | 5 | import PageTitle from '@/components/PageTitle'; |
4 | 6 |
|
5 | 7 | import NotificationItem from './components/NotificationItem'; |
6 | 8 | import WarningModal from './components/WarningModal'; |
7 | 9 |
|
8 | | -const DUMMY_NOTI = [ |
9 | | - { id: 1, type: 'letter', message: '12E31님이 편지를 보냈습니다.', isRead: false }, |
10 | | - { id: 2, type: 'warning', message: '따숨님, 욕설로 인해 경고를 받으셨어요.', isRead: false }, |
11 | | - { id: 3, type: 'letter', message: '12E31님이 편지를 보냈습니다.', isRead: false }, |
12 | | - { id: 4, type: 'letter', message: '12E31님이 편지를 보냈습니다.', isRead: true }, |
13 | | - { id: 5, type: 'letter', message: '12E31님이 편지를 보냈습니다.', isRead: false }, |
14 | | - { id: 6, type: 'board', message: '12E31님과의 대화가 게시판에 공유되었어요.', isRead: false }, |
| 10 | +const DUMMY_NOTI: Noti[] = [ |
15 | 11 | { |
16 | | - id: 7, |
17 | | - type: 'board', |
| 12 | + timelineId: 1, |
| 13 | + alarmType: 'LETTER', |
| 14 | + content: 1, |
| 15 | + message: '12E31님이 편지를 보냈습니다.', |
| 16 | + read: false, |
| 17 | + }, |
| 18 | + { |
| 19 | + timelineId: 2, |
| 20 | + alarmType: 'REPORT', |
| 21 | + content: '욕설 확인되어 경고 조치함.', |
| 22 | + message: '따숨님, 욕설로 인해 경고를 받으셨어요.', |
| 23 | + read: false, |
| 24 | + }, |
| 25 | + { |
| 26 | + timelineId: 3, |
| 27 | + alarmType: 'LETTER', |
| 28 | + content: 1, |
| 29 | + message: '12E31님이 편지를 보냈습니다.', |
| 30 | + read: false, |
| 31 | + }, |
| 32 | + { |
| 33 | + timelineId: 4, |
| 34 | + alarmType: 'LETTER', |
| 35 | + content: 1, |
| 36 | + message: '12E31님이 편지를 보냈습니다.', |
| 37 | + read: true, |
| 38 | + }, |
| 39 | + { |
| 40 | + timelineId: 5, |
| 41 | + alarmType: 'LETTER', |
| 42 | + content: 1, |
| 43 | + message: '12E31님이 편지를 보냈습니다.', |
| 44 | + read: false, |
| 45 | + }, |
| 46 | + { |
| 47 | + timelineId: 6, |
| 48 | + alarmType: 'POSTED', |
| 49 | + content: 1, |
| 50 | + message: '12E31님과의 대화가 게시판에 공유되었어요.', |
| 51 | + read: false, |
| 52 | + }, |
| 53 | + { |
| 54 | + timelineId: 7, |
| 55 | + alarmType: 'SHARE', |
| 56 | + content: 1, |
18 | 57 | message: '12E31님과의 게시글에 대한 공유요청을 보냈어요.', |
19 | | - isRead: false, |
| 58 | + read: false, |
20 | 59 | }, |
21 | 60 | ]; |
22 | 61 |
|
23 | 62 | const NotificationsPage = () => { |
| 63 | + const navigate = useNavigate(); |
| 64 | + |
| 65 | + const [noti, getNoti] = useState<Noti[]>([]); |
| 66 | + |
24 | 67 | const [isOpenWarningModal, setIsOpenWarningModal] = useState(false); |
25 | 68 |
|
26 | | - const handleClickItem = (type: string) => { |
27 | | - if (type === 'warning') { |
| 69 | + const [adminText, setAdmintext] = useState<string>(''); |
| 70 | + |
| 71 | + const handleClickItem = (alarmType: string, content?: string | number) => { |
| 72 | + if (alarmType === 'LETTER') { |
| 73 | + navigate(`/letter/${content}`); |
| 74 | + } |
| 75 | + if (alarmType === 'REPORT') { |
28 | 76 | setIsOpenWarningModal(true); |
| 77 | + if (typeof content === 'string') setAdmintext(content); |
| 78 | + } |
| 79 | + if (alarmType === 'SHARE') { |
| 80 | + navigate(`/board/letter/${content}`, { state: { isShareLetterPreview: true } }); |
| 81 | + } |
| 82 | + if (alarmType === 'POSTED') { |
| 83 | + navigate(`/board/letter/${content}`); |
29 | 84 | } |
30 | 85 | }; |
31 | 86 |
|
| 87 | + useEffect(() => { |
| 88 | + getTimeLines(getNoti); |
| 89 | + }, []); |
| 90 | + |
32 | 91 | return ( |
33 | 92 | <> |
34 | | - <WarningModal isOpen={isOpenWarningModal} onClose={() => setIsOpenWarningModal(false)} /> |
| 93 | + <WarningModal |
| 94 | + isOpen={isOpenWarningModal} |
| 95 | + adminText={adminText} |
| 96 | + onClose={() => setIsOpenWarningModal(false)} |
| 97 | + /> |
35 | 98 | <main className="flex grow flex-col items-center px-5 pt-20 pb-9"> |
36 | 99 | <PageTitle className="mb-10">알림</PageTitle> |
37 | 100 | <button type="button" className="body-sb text-gray-60 place-self-end"> |
38 | 101 | 모두 읽음 |
39 | 102 | </button> |
40 | 103 | <ul className="mt-2 flex h-full w-full flex-col gap-2 pb-10"> |
41 | 104 | {DUMMY_NOTI.map((notification) => ( |
42 | | - <li key={notification.id}> |
| 105 | + <li key={notification.timelineId}> |
43 | 106 | <NotificationItem |
44 | | - type={notification.type} |
| 107 | + type={notification.alarmType} |
45 | 108 | message={notification.message} |
46 | | - isRead={notification.isRead} |
47 | | - onClick={() => handleClickItem(notification.type)} |
| 109 | + read={notification.read} |
| 110 | + onClick={() => handleClickItem(notification.alarmType, notification.content)} |
48 | 111 | /> |
49 | 112 | </li> |
50 | 113 | ))} |
|
0 commit comments