Skip to content
Open
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
5df2417
feat: 알람 컨테이너 UI 구현, 알람 리스트 thunk로 불러옴
live-small Aug 8, 2022
8303eb7
fix: alarm list 응답 타입, index.d.ts 파일에서 관리하도록 수정
live-small Aug 8, 2022
b771cf5
feat: 알람 아이템 > 알람보낸 프로필 UI 구현
live-small Aug 8, 2022
d653f62
feat: 알림 item 하나로 통일, 로딩처리, 알람없는 경우 처리
live-small Aug 10, 2022
7b650e7
feat: 알람 내 게시글 썸네일 클릭 시 해당 게시글로 이동
live-small Aug 10, 2022
d5682fe
fix: 알람 item UI 일부 수정
live-small Aug 10, 2022
deb3f1c
refactor: div 대신 ul,li 태그 이용
live-small Aug 11, 2022
48a352a
Merge branch 'develop' into feature/alarm
live-small Aug 30, 2022
f00d848
Merge branch 'develop' into feature/alarm
live-small Aug 30, 2022
766843e
feat: hashtag, mentions 링크,스타일링 적용
live-small Aug 30, 2022
5e067ed
fix: useOnView 수정: parameter, useEffect deps
live-small Sep 13, 2022
9b72f22
fix: Alarm 무한스크롤을 위해 Alarm type 수정
live-small Sep 13, 2022
f28db0c
feat: Alarm 무한스크롤 구현 - alarm list 컴포넌트에서 observing 붙임
live-small Sep 13, 2022
c390cff
fix: 불필요한 log 제거
live-small Sep 13, 2022
f987f73
Merge branch 'develop' into feature/alarm
live-small Sep 13, 2022
c09bec6
live-small Oct 3, 2022
020fd94
feat: 알람>팔로우, 팔로잉 버튼 UI, 모달 핸들러 구현
live-small Oct 3, 2022
73790af
fix: alarm type 중복되는 타입 묶어서 확장하는 방향으로 수정
live-small Oct 3, 2022
ef91700
feat: 알람 없을 때 UI 수정
live-small Oct 3, 2022
cb8722a
fix: 알람 모달상태값 isClickAlarm -> isAlarmOn
live-small Oct 3, 2022
0efa59a
fix: 안쓰는 컴포넌트 import 삭제
live-small Oct 3, 2022
d6e43f3
fix: 알람버튼 cursor pointer
live-small Oct 3, 2022
a62da14
fix: 공통 컨벤션으로 수정
live-small Dec 27, 2022
54e36fc
fix: Alarm 무한스크롤 구현 시 필요한 상태값, 컴포넌트에서 관리하도록 수정
live-small Dec 28, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions src/components/Common/Header/NavItems.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,10 @@ import { ReactComponent as DirectActive } from "assets/Svgs/direct-active.svg";
import { ReactComponent as NewArticle } from "assets/Svgs/new-article.svg";
import { ReactComponent as NewArticleActive } from "assets/Svgs/new-article-active.svg";

import { ReactComponent as Map } from "assets/Svgs/map.svg";
import { ReactComponent as MapActive } from "assets/Svgs/map-active.svg";

Comment on lines -11 to -13
Copy link
Member Author

Choose a reason for hiding this comment

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

안쓰는 이미지라서 삭제했습니다 @kimyoungyin
아마 저희가 저 기능 구현안하기로해서 작업안한거 맞죠..?

Copy link
Member Author

Choose a reason for hiding this comment

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

@kimyoungyin 영인님 이 부분도 봐주신거 맞나용?

import { ReactComponent as Heart } from "assets/Svgs/heart.svg";
import { ReactComponent as HeartActive } from "assets/Svgs/heart-active.svg";

import { NavLink, Link } from "react-router-dom";
import { NavLink } from "react-router-dom";
import { useAppDispatch, useAppSelector } from "app/store/Hooks";
import { selectView } from "app/store/ducks/direct/DirectSlice";
import { uploadActions } from "app/store/ducks/upload/uploadSlice";
Expand Down