-
Notifications
You must be signed in to change notification settings - Fork 4
[#5] TextField component 개발 #18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
This file contains hidden or 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
`TextField`는 `TEXT_FIELD_TYPE`을 설정해서 text input 방식 또는 dropdown select 방식 중 하나로 사용 가능
- Dropdown type의 `TextField`를 선택하면 dropdown 표시 - Dropdown의 option 1개를 클릭하면 해당 `TextField`의 `value`가 선택된 값으로 교체
…ropdown 닫기 구현 React의 portal 개념을 활용해서 구현합니다.
Closed
4 tasks
Collaborator
Author
|
nidor022
approved these changes
Aug 12, 2025
Collaborator
nidor022
left a comment
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.
👍
This was referenced Aug 12, 2025
Merged
Merged
gummmmmy0v0
approved these changes
Aug 12, 2025
Collaborator
|
🫡 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
📝 작업 내용
TextFieldcomponent 구현TEXT_FIELD_TYPE값으로 입력 방식 설정TEXT_FIELD_TYPE.input: Text를 직접 입력하는TextInput구현TEXT_FIELD_TYPE.dropdown: Dropdown에서 선택한 값을 입력하는DropdownInput구현react-routerpackage를 설치하고 component를 test하기 위한 page에 대해 route 분기📷 스크린샷 (선택)
👀 새로 알게 된 내용 (선택)
Toast나Modal을 구현할 때에도 비슷한 방법을 사용해서 구현할 수 있을 것 같습니다.💬 리뷰어에게 남길 말 (선택)
TestPagecomponent의 예시 코드를 확인해주세요.