This repository has been archived by the owner on Dec 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
feat : conflict resolver #22
Merged
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
2727462
feat(theme): empty color 추가
5ewon 31c71ef
feat(merge modal): resolver modal 추가
5ewon bf2f1c4
fix(container): 속성명 변경 적용
5ewon 6f5380d
feat(editor): version 속성 추가, 컨플릭트 발생시 merge(resolver) modal 오픈
5ewon c81a3a1
fix(editor): version 속성 추가
5ewon 76bbc42
feat(resolver): 머지 컨플릭트 해결 컴포넌트 추가
5ewon bf79e7e
feat(resolver style): 머지 컨플릭트 해결 컴포넌트 스타일 추가
5ewon d3ae17f
feat(error): merge conflict 에러 코드 추가
5ewon 7ecdaed
feat(api): getConflictByTitle, requestMergeDocs 추가, requestUpdateDocs…
5ewon 0782c10
fix(like api): 쿼리 변경
5ewon db1c61b
fix(auth): 토큰 저장방식 변경
5ewon cbf94a0
fix(container): 조건부 렌더링 조건 변경
5ewon fd06a58
fix(api): conflicted query 제네릭 타입 객체화 및 적용
5ewon b1df6ee
fix(resolver): 구조분해할당 프롭스 type 직접 명시
5ewon 8e63ba8
fix(auth): props명 객체 속성명 통일
5ewon File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import ResolverContainer from "@/components/Resolver"; | ||
import * as styles from "../style.css"; | ||
|
||
const Merge = ({ title, contents }: { title: string; contents: string }) => { | ||
return ( | ||
<div className={styles.background}> | ||
<ResolverContainer title={title} contents={contents} /> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Merge; |
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
import *
대신 구조분해할당을 사용해 모듈을 들고오는 건 어떠신가요?개인적인 생각으로는, 문서의 타입을 먼저 확인하면
({ title, contents })
를 보고나서 { title: string; contents: string; }를 한번더 읽는 리소스가 발생하지 않을 거라고 생각합니다! 따라서 FC를 사용하시는 건 어떤지 여쭤보고 싶습니다 !!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.