-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Feature/BAR-150] 참고하는 메인 필터, 서브 필터 UI 개발 (#56)
* feat: 아이콘 반영 * feat: button이 호버되었을 때 svg의 fill 활성화 global 설정 * feat: Button 컴포넌트 확장 * feat: 아이콘의 기본 색상 props로 전달 * feat: 참고하는 탭 작성 * feat: 기본 모델 작성 * feat: FilterHeader 작성 * feat: FilterButton 작성 * feat: 버튼 호버시 아이콘의 색상 변경 * fix: pointerEvents 위치 변경 * refactor: api 하위 폴더 index 파일로 변경 * refactor: query hook 형식 변경 * [Feature/BAR-153] 폴더 만들기 기능 추가 (#57) * feat: 필요 api 작성 * feat: 에러 아이콘 추가 * feat: 불필요 모달 타입 제거 * feat: button, dialog 컴포넌트 확장 * fix: dialog z-index 수정 * feat: 새폴더만들기 모달 작성 * feat: dialog 연동 * feat: Dropdown 컴포넌트 반영 * feat: 템플릿에 대한 api 연동 * feat: 리뷰 반영 * feat: 템플릿 저장 기능 추가 * feat: mutate 처리 추가 * feat: 수정 사항 반영
- Loading branch information
Showing
49 changed files
with
897 additions
and
192 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { http } from '@api/http'; | ||
|
||
import { type Folder } from './types'; | ||
|
||
export const getMemoFolders = () => http.get<Folder[]>('/memo-folders'); | ||
|
||
export const postMemoFolders = (folderName: string) => | ||
http.post('/memo-folders', { folderName }); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
export interface Folder { | ||
id: number; | ||
name: string; | ||
} |
File renamed without changes.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.