-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FE] hooks 네이밍 수정 및 wiki, 리드미 업데이트 (#267)
* Refactor: 모든 id타입 number -> string으로 변경(uuid) * Rename: useAxios fetch요청함수 (command, query) - getExecution: query(조회) HTTP GET 요청 - notGetExecution: command(명령) HTTP POST, DELETE, PATCH ,etc... 요청 * Rename: HocLoadingCommentList * Refactor: useCommentAPI.js 제거 * Fix : DemoAlert에 wrapperId 설정 * Chore: Modal의 onClose 파라미터 타입 변경(bool -> func) * Chore: useForm jsdoc 수정 - event -> Event - FORM_MODE * Rename: isLikedUserIdsContainLoggedInUserId * Feat: 댓글 command요청 이후 query요청 실행 * Refactor: 이미지 컴포넌트에 isMock 추가 - mock api로 실행할 때 이미지 보여지게 하는 용도 * Chore: EditUserProfile 변수 및 함수명 오타 수정 * Build: js-docs 빌드 툴 * Docs: hooks 정리 위키 추가 * Chore: useAuthService 주석수정 * Chore: useCheckUserDuplicate 주석수정 * Chore: useDropdown 주석수정 * Chore: useFileUploader 주석수정 * Chore: useForm 주석 수정 * Chore: useSetTimeout 주석 수정 * Chore: 사용하지 않는 Hooks 제거 * Revert "Refactor: 모든 id타입 number -> string으로 변경(uuid)" This reverts commit 9b56271. * Feat: fakerUniqueNumId * Refactor: 댓글 좋아요 동작 이후 자동 업데이트 취소 * Refactor: userDetailTypeSchema의 status타입 변경 * Fix: comment utils의 좋아요 누른 유저 id 배열 수정 * Chore: eslint waring : 00 is assigned a value but never used no-unused-vars * Docs: 기술스택 추가
- Loading branch information
1 parent
a4f1db9
commit c2ec450
Showing
41 changed files
with
617 additions
and
640 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"plugins": ["plugins/markdown"], | ||
"source": { | ||
"include": ["src/"], | ||
"includePattern": ".js(x)?$", | ||
"excludePattern": "^(node_modules|docs)" | ||
}, | ||
"sourceType": "module", | ||
"tags": { | ||
"allowUnknownTags": true, | ||
"dictionaries": ["jsdoc", "closure"] | ||
}, | ||
"templates": { | ||
"cleverLinks": false, | ||
"monospaceLinks": false, | ||
"theme": "cosmo" | ||
} | ||
} |
Oops, something went wrong.