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

feat: version 필드 추가 및 Type 변경 #33

Merged
merged 9 commits into from
Feb 27, 2024
Merged

feat: version 필드 추가 및 Type 변경 #33

merged 9 commits into from
Feb 27, 2024

Conversation

Hanna922
Copy link
Member

1️⃣ 어떤 작업을 했나요? (Summary)

기존 코드에 영향을 미치는 변경사항

  • 24일 회의 결과! event 내부는 전부 any로 처리해주세요라는 요청을 받아 Type을 변경했습니다.
    • eslint no-explicit-any 설정을 off 했습니다.
  • version 필드를 추가하였고, 사용처에서 넣어주도록 설정하였습니다.
  • api response type을 정의합니다. => success일 경우에만 로컬 스토리지를 삭제합니다.
    • 궁금한 점: 10개의 로그가 쌓인 상태에서 계속 백엔드 요청 에러가 날 경우,,,, 어떻게 해야 할까요...?
  • api request type이 달라 수정했습니다!
  • 사용하지 않는 LogParamsProvider를 제거했습니다.
  • demo app을 type에 맞게 수정하였고, event 내부에 각각 다른 값을 넣어보았습니다.

demo app 기반 실행화면

확인 한 번 부탁드려용~!

image

3️⃣ 추후 작업

테스트!!!

4️⃣ 체크리스트 (Checklist)

  • main 브랜치의 최신 코드를 pull 받았나요?

@Hanna922 Hanna922 added enhancement New feature or request refactor labels Feb 26, 2024
@Hanna922 Hanna922 self-assigned this Feb 26, 2024
const res = await postLog();
const res = await postLog(remainList);
if (res.success) {
SetLocalStorageClear();
Copy link
Collaborator

Choose a reason for hiding this comment

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

궁금한 점: 10개의 로그가 쌓인 상태에서 계속 백엔드 요청 에러가 날 경우,,,, 어떻게 해야 할까요...?

성공시에만 로컬스토리지를 지우는 로직 추가해주셔서 감사합니당!
10개가 쌓인 상태에서도 에러가 난다면 우선 로컬스토리지에는 로그를 계속 적재해 두는게 맞을것 같아요 제가 이슈파서 수정해둘게요!

Copy link
Collaborator

Choose a reason for hiding this comment

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

+) 머지하시면 수정해서 pr올려둘게용!

Copy link
Member Author

@Hanna922 Hanna922 Feb 27, 2024

Choose a reason for hiding this comment

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

현재 '10개가 쌓인 상태에서 에러가 날 경우에도 로컬스토리지에 로그를 계속 적재해 두는 상태'인 것 같은데 혹쉬 아닐까용??

Copy link
Collaborator

Choose a reason for hiding this comment

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

아아 맞아요! 그러면 이대로 가도 될것 같아용!!

@JjungminLee
Copy link
Collaborator

수고하셨어요! 데모 실행화면도 확인했습니다!

const res = await postLog();
const res = await postLog(remainList);
if (res.success) {
SetLocalStorageClear();
Copy link
Collaborator

Choose a reason for hiding this comment

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

아아 맞아요! 그러면 이대로 가도 될것 같아용!!

@Hanna922 Hanna922 merged commit 6e03bba into develop Feb 27, 2024
1 check passed
@Hanna922 Hanna922 deleted the feat/#31 branch February 27, 2024 06:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request refactor
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[FEAT] version 필드 추가 및 params 추가
2 participants