Skip to content
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

fix: 일관된 한글 표기법 적용 #138

Merged
merged 16 commits into from
Jul 13, 2024

Conversation

Collection50
Copy link
Contributor

@Collection50 Collection50 commented Jun 26, 2024

Overview


  • 문서(docs)에는 chosung으로 안내하도록 수정했습니다.
  • 외부로 노출되는 초성, 종성, 중성의 함수 인터페이스는 sung~, seong~을 혼용했고, sung~ 함수에 @deprecated를 적용했습니다.
  • 내부에서만 사용하거나 테스트 코드의 경우에는 용이한 마이그레이션을 위해 seong을 사용했습니다.

PR Checklist

  • I read and included theses actions below
  1. I have read the Contributing Guide
  2. I have written documents and tests, if needed.

close #131

Copy link

changeset-bot bot commented Jun 26, 2024

🦋 Changeset detected

Latest commit: 44db24e

The changes in this PR will be included in the next version bump.

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

Copy link

vercel bot commented Jun 26, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
es-hangul ❌ Failed (Inspect) Jul 12, 2024 3:47pm

src/index.ts Outdated
@@ -1,5 +1,5 @@
export * from './assemble';
export * from './chosungIncludes';
export * from './choseongIncludes';
Copy link
Member

Choose a reason for hiding this comment

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

아직 BC를 발생시키기 전이기때문에,
chosungIncludes는 라이브러리를 사용하는 사람들이 안전하게 사용하도록 chosungIncludes, choseongIncludes 을 동시에 export 해주고,

2버전으로 넘어갈때, chosungIncludes를 제거하는것은 어떤가요?
그전에 chosungIncludes 에 jsdoc으로 deprecated 주석을 남겨두는것도 좋을 것 같아요

Copy link
Contributor Author

Choose a reason for hiding this comment

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

chosung~ 버전의 함수와 choseong~ 버전의 함수가 일단 공존하는게 좋다는 말씀일까요??
만약 말씀을 잘 이해한 것이라면 2개 버전의 함수가 모두 존재하고, export도 하는 것으로 작업하겠습니다 !!

Copy link
Member

Choose a reason for hiding this comment

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

네네 맞습니다! 오픈소스이다보니,
major update를 하지않았는데도 불구하고, 유저가 서비스의 코드를 수정해야하는상황을 막고 싶었어요!

Copy link
Contributor Author

Choose a reason for hiding this comment

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

네 알겠습니다 !

Copy link
Member

Choose a reason for hiding this comment

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

👍👍👍

Copy link
Member

Choose a reason for hiding this comment

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

chosungIncludes에는 jsdoc으로 deprecated와 choseongIncludes로 사용할 수 있게 처리해주시면 감사하겠습니다

@@ -1,7 +1,7 @@
import React, { useState } from 'react';
import { chosungIncludes } from 'es-hangul';

export function ChosungIncludesDemo() {
export function chosungIncludesDemo() {
const [searchWord, setSearchWord] = useState<string>('홍길동');
Copy link
Member

Choose a reason for hiding this comment

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

이거 소문자로 바꾸신 이유가 있으신가요?
이 부분도 sung이 아닌, seong이 되면 좋겠어요!

Copy link
Contributor Author

@Collection50 Collection50 Jul 3, 2024

Choose a reason for hiding this comment

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

네 알겠습니다 ! 👍

해당 PR에서 hangul을 제외하는 것도 진행해도 괜찮은지 여쭙고 싶습니다 !
만약 PR을 분리해야 한다면, 제가 맡고 싶습니다 :)

Copy link
Member

Choose a reason for hiding this comment

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

PR을 분리하면 좋을 것 같아요!
맡아주신다니 영광입니다, BC가 없도록 두가지 메서드씩 모두 살려두는 방향으로 작업해주시면 좋을 것 같아요!

Copy link
Member

Choose a reason for hiding this comment

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

sung => seong 이 작업 및 컨플리긑 해결 부탁드립니다 🙏

Copy link
Contributor Author

Choose a reason for hiding this comment

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

완료했습니다 !

@Collection50
Copy link
Contributor Author

안녕하세요 ! @okinawaa

image

Jongsung, Chosung 등을 사용할 수 없다고 오류가 발생해요 !
해결 방법을 알려주시면 적용하겠습니다 !

Copy link
Member

@minsoo-web minsoo-web left a comment

Choose a reason for hiding this comment

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

아직 *sung 으로 남는 표기가 많은 것 같아요..! 확인 한 번 부탁드립니다!

image

또한 eslint 에러로 표기되는 이슈는 #172 이 merge 되면 warning 으로 반영된다는 점 참고 부탁드립니다!

Copy link
Member

Choose a reason for hiding this comment

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

deprecated 되었다는 표기를 남기고 새로운 문서를 만드는 것이 좋지 않을까요? 🤔
패키지 상에서는 deprecated 인데, 문서는 없어지는 것이 우려됩니다.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

리뷰해주셔서 감사합니다 ! @minsoo-web

chosungIncludes는 라이브러리를 사용하는 사람들이 안전하게 사용하도록 chosungIncludes, choseongIncludes 을 동시에 export 해주고,

chosung~choseong~ 모두 작성하는 것으로 위 문장을 이해했는데 잘못 이해한 부분이 있다면 말씀해주시면 감사하겠습니다 !


새로운 문서를 만드는 것이 좋지 않을까요? 🤔

문서 또한 chosung~choseong~ 모두 작성하는 것으로 진행할까요??

Copy link
Member

Choose a reason for hiding this comment

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

chosung과 choseong 모두 작성하는 것으로 위 문장을 이해했는데 잘못 이해한 부분이 있다면 말씀해주시면 감사하겠습니다 !

네네! 같은 방향으로 이해한 것 같습니다.
다만, chosung 이 잘못된 표기니까, deprecated 처리 하되 문서는 url이 chosung 이 포함된 url 이 있다면, choseong 으로 이동할 수 있도록 가이드 하면 어떨까요?

예시)
기존:
https://es-hangul.slash.page/docs/api/chosungIncludes

변경 후:
https://es-hangul.slash.page/docs/api/chosungIncludes (deprecated) > choseongIncludes 를 사용해주세요!
https://es-hangul.slash.page/docs/api/choseongInclues

이런 느낌이죠!!

아니면, deprecated features 라는 페이지를 만들어서 기재해두어도 괜찮을 것 같아요!
ref: https://v2.chakra-ui.com/getting-started/migration#5-deprecated-features

Copy link
Contributor Author

Choose a reason for hiding this comment

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

넵 알겠습니다 !

  1. chosung은 deprecated 처리
  2. chousng의 문서는 삭제하지 않고 choseong과 함께 존재

정리하자면 위와 같이 진행하면 되는 것일까요??

Copy link
Member

Choose a reason for hiding this comment

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

제가 바라는 방향성입니다!!
문의 주신 내용에 대해서는 @okinawaa 님이 답변 주시면 너무 좋을 것 같아요!!

제가 확답 드리지 못하는 이유는, 저는 메인테이너도 코드오너도 아니기 때문입니다 !!

Copy link
Member

Choose a reason for hiding this comment

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

넵 저도 @minsoo-web 님 의견 너무 좋습니다~ 문서도 살려두면 좋겠네요!

@okinawaa
Copy link
Member

okinawaa commented Jul 9, 2024

@Collection50

Jongsung, Chosung 등을 사용할 수 없다고 오류가 발생해요 !
해결 방법을 알려주시면 적용하겠습니다 !

#172 이 머지되어서 해결되었을 것 같아요! 감사합니다.

@Collection50
Copy link
Contributor Author

안녕하세요 @okinawaa !

작업 완료 했습니다 !

@codecov-commenter
Copy link

codecov-commenter commented Jul 9, 2024

Codecov Report

Attention: Patch coverage is 92.30769% with 4 lines in your changes missing coverage. Please review.

Project coverage is 95.18%. Comparing base (135e419) to head (44db24e).

Additional details and impacted files

Impacted file tree graph

@@             Coverage Diff             @@
##              main     #138      +/-   ##
===========================================
- Coverage   100.00%   95.18%   -4.82%     
===========================================
  Files           16       17       +1     
  Lines          275      291      +16     
  Branches        66       67       +1     
===========================================
+ Hits           275      277       +2     
- Misses           0       13      +13     
- Partials         0        1       +1     

@okinawaa
Copy link
Member

src/index.ts에서 chosengIncludes를 export 해줘야할것 같아요

@okinawaa
Copy link
Member

컨플릭트도 해결 부탁드릴게요!

okinawaa
okinawaa previously approved these changes Jul 12, 2024
Copy link
Member

@okinawaa okinawaa left a comment

Choose a reason for hiding this comment

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

긴 작업 정말 감사합니다!

@okinawaa
Copy link
Member

_internal/src 쪽에서 CI 오류가 발생하고있어요.

@Collection50
Copy link
Contributor Author

_internal/src 쪽에서 CI 오류가 발생하고있어요.

해결했습니다 !

Copy link
Member

@okinawaa okinawaa left a comment

Choose a reason for hiding this comment

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

감사합니다!

@okinawaa okinawaa merged commit 6160363 into toss:main Jul 13, 2024
9 of 10 checks passed
@github-actions github-actions bot mentioned this pull request Jul 13, 2024
okinawaa added a commit that referenced this pull request Jul 13, 2024
* fix: 일관된 한글 표기법 적용

* fix: 기존의 함수를 유지한 채, deprecated 되도록 수정

* fix: main 브랜치와 merge를 위한 수정

* fix: conflict 수정

* fix: 문서에는 chosung prefix를 사용하도록 수정

* fix: ChoseongIncludesDemo 함수명 수정

* chore: cspell.json 으로 설정을 변경합니다. (#172)

* fix: 일관된 한글 표기법 적용

* fix: 기존의 함수를 유지한 채, deprecated 되도록 수정

* docs: chosung~ 문서 작성

* fix: choseongIncludes의 인덱싱 처리

* Create fifty-wolves-melt.md

* fix: import CI 오류 해결

---------

Co-authored-by: Minsoo Kim <[email protected]>
Co-authored-by: 박찬혁 <[email protected]>
okinawaa added a commit that referenced this pull request Jul 13, 2024
* fix: 일관된 한글 표기법 적용

* fix: 기존의 함수를 유지한 채, deprecated 되도록 수정

* fix: main 브랜치와 merge를 위한 수정

* fix: conflict 수정

* fix: 문서에는 chosung prefix를 사용하도록 수정

* fix: ChoseongIncludesDemo 함수명 수정

* chore: cspell.json 으로 설정을 변경합니다. (#172)

* fix: 일관된 한글 표기법 적용

* fix: 기존의 함수를 유지한 채, deprecated 되도록 수정

* docs: chosung~ 문서 작성

* fix: choseongIncludes의 인덱싱 처리

* Create fifty-wolves-melt.md

* fix: import CI 오류 해결

---------

Co-authored-by: Minsoo Kim <[email protected]>
Co-authored-by: 박찬혁 <[email protected]>
okinawaa added a commit that referenced this pull request Jul 14, 2024
* docs

* Update docs/src/pages/docs/introduction.ko.mdx

Co-authored-by: Jonghyeon Ko <[email protected]>

* Update docs/src/pages/index.ko.mdx

Co-authored-by: Jonghyeon Ko <[email protected]>

* chore: version packages (#183)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

* fix: 일관된 한글 표기법 적용 (#138)

* fix: 일관된 한글 표기법 적용

* fix: 기존의 함수를 유지한 채, deprecated 되도록 수정

* fix: main 브랜치와 merge를 위한 수정

* fix: conflict 수정

* fix: 문서에는 chosung prefix를 사용하도록 수정

* fix: ChoseongIncludesDemo 함수명 수정

* chore: cspell.json 으로 설정을 변경합니다. (#172)

* fix: 일관된 한글 표기법 적용

* fix: 기존의 함수를 유지한 채, deprecated 되도록 수정

* docs: chosung~ 문서 작성

* fix: choseongIncludes의 인덱싱 처리

* Create fifty-wolves-melt.md

* fix: import CI 오류 해결

---------

Co-authored-by: Minsoo Kim <[email protected]>
Co-authored-by: 박찬혁 <[email protected]>

* english

* Update docs/src/pages/docs/introduction.ko.mdx

Co-authored-by: Jonghyeon Ko <[email protected]>

* english

* Update docs/src/pages/index.ko.mdx

* Update docs/src/pages/docs/introduction.ko.mdx

---------

Co-authored-by: Jonghyeon Ko <[email protected]>
@crucifyer
Copy link
Contributor

HANGUL_CHARACTERS_BY_FIRST_INDEX
HANGUL_CHARACTERS_BY_MIDDLE_INDEX
HANGUL_CHARACTERS_BY_LAST_INDEX
이것도 초,중,종으로 통일이 필요하지 않을까요?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Feature]: 초성, 종성, 중성에 일관된 변수명을 사용하기
6 participants