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

[실습] 연습문제 week1/URL/addQuery 제출합니다 #16

Open
wants to merge 4 commits into
base: main
Choose a base branch
from

Conversation

minsoo-web
Copy link
Member

Describe your changes

너무 재밌는 문제였습니다. 실습 문제라기보다는 실무의 문제를 해결한 기분이었어요
순수함수를 만들려고 노력했고, protocol이 꼭 붙어야 하는 강제성을 띄우고 싶지 않아서 URL 객체를 사용하지 않았습니다.

테스트 코드를 작성하면서 예외 사항들을 많이 생각한다고 더 추가해봤는데, 어디까지 추가해야 할지 감이 잘 안 오긴했습니다 ㅠ

💬 질문 사항이에요

  1. addQuery니까 사실 이미 있는 쿼리면 교체가 아니라 추가를 해야 하지 않을까? 싶었지만, 요구 사항에 맞게 작업했습니다.
  2. includes 를 hasIncludes 라는 wrapper로 한 번 감싸 봤는데, 의견 주시면 감사하겠습니다..

🤷‍♂️ 확인 받고 싶은 부분이에요

🔥 이건 꼭 확인해주세요

@minsoo-web minsoo-web self-assigned this Aug 2, 2023
@minsoo-web minsoo-web requested a review from a team August 2, 2023 07:28
@minsoo-web minsoo-web added the 실습 문제 제출 실습 문제가 제출되었을 때 사용되는 라벨입니다. label Aug 2, 2023
@yejineee
Copy link
Member

yejineee commented Aug 3, 2023

저도 실습...! 풀어야겠읍니다!!!!
나중에 다시 읽어보고, 질문 사항에 대해서도 답변 드릴게요!
나머지 PR도 챙겨보도록 하겠습니다 :)!!

const hasIncludes = (url: string, value: string): 'YES' | 'NO' =>
url.includes(value) ? 'YES' : 'NO'

export const splitHashPart = (
Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
export const splitHashPart = (
export const getHashParts = (

면 어떨까용? split은 Array.split메소드랑 비슷한 네이밍이라 Array를 리턴하는 함수로 오해 받을 수 있을 거 같아요

Copy link
Member Author

Choose a reason for hiding this comment

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

오 좋네요..! 동의합니다. 반영해볼게요!

Copy link
Member Author

Choose a reason for hiding this comment

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

review: change prefix split -> get 반영해봤습니다!!

Copy link

@minsour minsour Aug 5, 2023

Choose a reason for hiding this comment

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

hash 뿐 아니라 nonHash도 같이 return 하고 있어서, get 대신 parse나 decode 같은것도 좋아보입니다!

Copy link
Member Author

Choose a reason for hiding this comment

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

const { hash, nonHash } = getHashParts("https://naver.com")
const { hash, nonHash } = parseHashParts("https://naver.com")
const { hash, nonHash } = decodeHashParts("https://naver.com")

ㅜㅜ 네이밍만 봐서는 저는 다 좋아보여서,, 챗지피티한테 물어봤는데 이렇게 답해주더라구요

image

파싱은 해시만 뜯어내는 역할이 아니라, 다른 작업도 해줘야 할 것 같고,
디코드는 인코딩된 애를 디코딩해주는 역할도 포함인 것 같아서
지금 제 함수 역할은 단순히 # 뒤의 문자열부터 뜯어내는 역할이라, get이 조금 더 명확한 것 같은데 민수님 의견도 궁금합니다!

Copy link

Choose a reason for hiding this comment

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

아 그러네요 parse나 decode는 hash가 아니라 url이 대상이라 좀 어색해지는군요!
그렇다면 get이 좋아보입니다ㅎㅎ

제가 걸렸던건 { hash: string; nonHash: string; } 이 객체에 hash가 있는데 그 객체 자체를 hash라고 부르니까 헷갈릴까봐서였는데,
지금 다시 보니까 hashParts라고 해서 nonHash도 포함된 걸로 볼 수 있었겠네요. ☺️

Copy link
Member Author

Choose a reason for hiding this comment

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

맞습니다! 민수님이 짚어주신 부분이 저도 공감되어서 고민해봤는데 get이 지금은 제일 무난해보입니다..! 좋은 의견 감사해요!

Comment on lines +35 to +48
/**
* 출제자: 예진님 (yejineee)
* URL의 쿼리스트링 관련 유틸 함수를 계산 을 최대한 이용하여 만들기
*
* - 해쉬가 있다면, 유지해야 함
* - 기존 쿼리가 있다면, 유지해야 함
* - 기존 쿼리와 추가하려는 쿼리의 key가 동일하다면, 기존 쿼리가 대체됨
*/

export const addQuery = (
originURL: string,
key: string,
value: string | number,
) => {
Copy link
Member

Choose a reason for hiding this comment

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

  • 해쉬가 있다면, 유지해야 함
  • 기존 쿼리가 있다면, 유지해야 함
  • 기존 쿼리와 추가하려는 쿼리의 key가 동일하다면, 기존 쿼리가 대체됨

위와 같은 요구사항이라면 set이라는 이름을 쓰면 어떨까요? 뭔가 set이 더 어울리는 것 같아요
addQuery라면 queryParam을 배열로 사용하는 경우로 오해받을 수도 있을 거 같아보여서요

Suggested change
/**
* 출제자: 예진님 (yejineee)
* URL의 쿼리스트링 관련 유틸 함수를 계산 최대한 이용하여 만들기
*
* - 해쉬가 있다면, 유지해야
* - 기존 쿼리가 있다면, 유지해야
* - 기존 쿼리와 추가하려는 쿼리의 key가 동일하다면, 기존 쿼리가 대체됨
*/
export const addQuery = (
originURL: string,
key: string,
value: string | number,
) => {
/**
* 출제자: 예진님 (yejineee)
* URL의 쿼리스트링 관련 유틸 함수를 계산 최대한 이용하여 만들기
*
* - 해쉬가 있다면, 유지해야
* - 기존 쿼리가 있다면, 유지해야
* - 기존 쿼리와 추가하려는 쿼리의 key가 동일하다면, 기존 쿼리가 대체됨
*/
export const setQuery = (
originURL: string,
key: string,
value: string | number,
) => {

Copy link
Member Author

Choose a reason for hiding this comment

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

오,, 저두 이거 약간 헷갈리는 것 같긴했는데 출제자인 예진님이 함수 이름을 정해주신거라! 예진님 의견도 궁금합니다!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
실습 문제 제출 실습 문제가 제출되었을 때 사용되는 라벨입니다.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants