Skip to content

[Feature] Tags on study group opening creation page - #23

Merged
saseungmin merged 1 commit into
CodeSoom:mainfrom
saseungmin:write-tags-submit
Nov 24, 2020
Merged

[Feature] Tags on study group opening creation page#23
saseungmin merged 1 commit into
CodeSoom:mainfrom
saseungmin:write-tags-submit

Conversation

@saseungmin

@saseungminsaseungmin commented Nov 23, 2020

Copy link
Copy Markdown
Collaborator
  • 스터디 그룹 개설(작성) 페이지의 태그에 대한 작업
    • 태그 추가
    • 태그 삭제
      tags

- write study creation page input tags
@saseungminsaseungmin added the enhancement New feature or request label Nov 23, 2020
Comment on lines +47 to +69
<TagsFormWrapper>
<h4>태그</h4>
<input
type="text"
placeholder="태그를 입력하세요"
value={tag}
onChange={handleChange}
onKeyPress={handleSubmit}
/>
<div>
{inputTags.map((inputTag) => (
<span
key={inputTag}
onClick={() => handleRemove(inputTag)}
onKeyPress={() => {}}
role="button"
tabIndex="-1"
>
{`#${inputTag}`}
</span>
))}
</div>
</TagsFormWrapper>

Copy link
Copy Markdown
CollaboratorAuthor

Choose a reason for hiding this comment

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

  • 리팩토링 하기 컴포넌트 분리하기

Comment on lines 11 to 27
<input type="text" placeholder="제목을 입력하세요" />
</div>
<div>
<textarea rows="10" cols="100" placeholder="내용" />
<span>모집 마감 날짜</span>
<input type="date" />
</div>
<div>
<input type="text" placeholder="태그를 입력하세요" />
<span>참여 인원 수</span>
<input type="number" />
</div>
<div>
<textarea rows="10" cols="100" placeholder="내용" />
</div>
<TagFormContainer />
<div>
<button type="button">저장</button>
</div>

Copy link
Copy Markdown
CollaboratorAuthor

Choose a reason for hiding this comment

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

  • 컴포넌트 분리하기

@saseungmin
saseungmin merged commit 1673066 into CodeSoom:mainNov 24, 2020
@saseungminsaseungmin mentioned this pull request Nov 24, 2020
20 tasks
@saseungmin
saseungmin deleted the write-tags-submit branch July 5, 2021 19:54
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

enhancementNew feature or request

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

@saseungmin