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: #182 칸반 보드에서 일정 삭제 / 상태 삭제 후 순서 변경이 제대로 일어나지 않는 문제 해결 #184

Merged
merged 3 commits into from
Oct 4, 2024

Conversation

Seok93
Copy link
Contributor

@Seok93 Seok93 commented Oct 4, 2024

PR Type

What kind of change does this PR introduce?

  • [Fix] 버그를 수정했어요.

Related Issues

What does this PR do?

  • MSW 일정 삭제 처리에 삭제 후 sortOrder재정렬 기능 추가
  • MSW 상태 삭제 처리에 삭제 후 sortOrder 재정렬 기능 추가

@Seok93 Seok93 added the 💉 Fix 에러 혹은 버그를 수정했어요 label Oct 4, 2024
@Seok93 Seok93 self-assigned this Oct 4, 2024
Copy link

coderabbitai bot commented Oct 4, 2024

Walkthrough

이 변경 사항은 src/mocks/services/statusServiceHandler.tssrc/mocks/services/taskServiceHandler.ts 파일의 API 핸들러를 수정하여 삭제 작업 후 남은 항목들의 정렬 순서를 재조정하는 기능을 추가합니다. 상태 삭제 후 남은 상태의 sortOrder를 업데이트하고, 작업 삭제 후 동일한 상태를 가진 작업들의 sortOrder를 정렬하여 유지하는 로직이 포함되었습니다. 나머지 API 핸들러는 변경되지 않았습니다.

Changes

파일 경로 변경 요약
src/mocks/services/statusServiceHandler.ts 상태 삭제 후 남은 상태의 sortOrder를 재조정하는 로직 추가.
src/mocks/services/taskServiceHandler.ts 작업 삭제 후 동일 상태의 남은 작업들의 sortOrder를 재조정하는 로직 추가. 관련된 작업 사용자 및 파일 정보 삭제 로직 포함.

Assessment against linked issues

Objective Addressed Explanation
MSW 일정 삭제 처리에 삭제 후 sortOrder 재정렬 기능 추가 (#182)
MSW 상태 삭제 처리에 삭제 후 sortOrder 재정렬 기능 추가 (#182)

Possibly related PRs

Suggested labels

🎨 UI, 🌟 Feature

Suggested reviewers

  • ice-bear98
  • Yoonyesol

🐰 삭제 후 순서가 바뀌어,
상태가 정리되어 기뻐요.
작업도 마찬가지로,
정렬이 잘 되니 흐뭇해요.
모두 함께 즐거운 하루,
정돈된 순서로 뛰어놀아요! 🎉


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 0

🧹 Outside diff range and nitpick comments (2)
src/mocks/services/statusServiceHandler.ts (1)

95-98: 상태 삭제 후 정렬 순서 재조정 로직 추가

새로 추가된 코드는 상태 삭제 후 남은 상태들의 sortOrder를 재조정하는 기능을 구현하고 있습니다. 이는 PR의 목적과 연결된 이슈 #182에서 제기된 문제를 해결하는 데 도움이 됩니다.

몇 가지 개선 사항을 제안드립니다:

  1. 코드의 가독성을 높이기 위해 별도의 함수로 분리하는 것이 좋겠습니다.
  2. 재정렬 로직에 대한 주석을 추가하여 코드의 의도를 명확히 설명하면 좋겠습니다.
  3. 에러 처리를 추가하여 재정렬 과정에서 발생할 수 있는 문제에 대비하는 것이 좋겠습니다.

다음과 같이 코드를 개선할 것을 제안합니다:

// 프로젝트 상태의 정렬 순서를 재조정하는 함수
const reorderProjectStatuses = (projectId: number) => {
  try {
    STATUS_DUMMY.filter((status) => status.projectId === projectId)
      .sort((a, b) => a.sortOrder - b.sortOrder)
      .forEach((status, index) => {
        status.sortOrder = index + 1;
      });
  } catch (error) {
    console.error('상태 재정렬 중 오류 발생:', error);
    // 필요한 경우 추가적인 에러 처리 로직을 구현하세요
  }
};

// 기존 삭제 로직 이후에 호출
reorderProjectStatuses(Number(projectId));

이렇게 변경하면 코드의 가독성과 유지보수성이 향상될 것입니다.

src/mocks/services/taskServiceHandler.ts (1)

239-242: LGTM! 작업 순서 재정렬 로직이 잘 구현되었습니다.

삭제 후 작업 순서를 재정렬하는 로직이 효과적으로 구현되었습니다. 이는 PR의 목표와 #182 이슈를 잘 해결합니다.

성능 최적화를 위해 다음과 같이 map을 사용하여 코드를 약간 수정할 수 있습니다:

-    TASK_DUMMY.filter((target) => target.statusId === task.statusId)
-      .sort((a, b) => a.sortOrder - b.sortOrder)
-      .forEach((task, index) => (task.sortOrder = index + 1));
+    TASK_DUMMY.filter((target) => target.statusId === task.statusId)
+      .sort((a, b) => a.sortOrder - b.sortOrder)
+      .map((task, index) => ({ ...task, sortOrder: index + 1 }));

이 변경은 기존 객체를 직접 수정하는 대신 새로운 객체를 생성하여 불변성을 유지합니다.

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Files that changed from the base of the PR and between 70aadd7 and 230b757.

📒 Files selected for processing (2)
  • src/mocks/services/statusServiceHandler.ts (1 hunks)
  • src/mocks/services/taskServiceHandler.ts (1 hunks)
🔇 Additional comments (1)
src/mocks/services/statusServiceHandler.ts (1)

Line range hint 1-102: 전체 변경 사항 요약 및 영향 평가

이 PR은 칸반 보드에서 상태 삭제 후 정렬 순서가 제대로 업데이트되지 않는 문제를 해결하고 있습니다. 주요 변경 사항은 다음과 같습니다:

  1. 상태 삭제 API 핸들러에 정렬 순서 재조정 로직이 추가되었습니다.
  2. 삭제 후 남은 상태들의 sortOrder가 올바르게 업데이트됩니다.

이러한 변경으로 인한 영향:

  • 사용자 경험이 개선되어 칸반 보드의 일관성이 유지됩니다.
  • 새로운 상태 추가 시 정렬 순서 충돌 문제가 해결됩니다.

추가 고려 사항:

  1. 다른 API 핸들러(생성, 수정)에서도 유사한 정렬 로직이 필요한지 검토해 보시기 바랍니다.
  2. 실제 백엔드 구현 시 이 로직이 동일하게 적용되어야 함을 명심하세요.
  3. 프론트엔드에서 이 변경사항을 활용할 수 있도록 관련 컴포넌트나 상태 관리 로직을 업데이트해야 할 수 있습니다.

전반적으로 이 변경사항은 문제를 효과적으로 해결하고 있으며, 제안된 개선사항을 적용하면 코드 품질이 더욱 향상될 것입니다.

Copy link
Contributor

@ice-bear98 ice-bear98 left a comment

Choose a reason for hiding this comment

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

순서 재정렬 에러 수정 고생하셨습니다!

src/mocks/services/statusServiceHandler.ts Show resolved Hide resolved
Copy link
Contributor

@Yoonyesol Yoonyesol left a comment

Choose a reason for hiding this comment

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

말씀해주셨던 재정렬 문제 관련해서 추가하셨군요!!👍👍

@Seok93 Seok93 changed the title Fix: 칸반 보드에서 일정 삭제 / 상태 삭제 후 순서 변경이 제대로 일어나지 않는 문제 해결 Fix: #182 칸반 보드에서 일정 삭제 / 상태 삭제 후 순서 변경이 제대로 일어나지 않는 문제 해결 Oct 4, 2024
@Seok93
Copy link
Contributor Author

Seok93 commented Oct 4, 2024

@ice-bear98 @Yoonyesol 리뷰 감사합니다 ㅎㅎ

@Seok93 Seok93 merged commit 741ce24 into develop Oct 4, 2024
@Seok93 Seok93 deleted the feature/#182-fix-delete-logic branch October 4, 2024 11:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
💉 Fix 에러 혹은 버그를 수정했어요
Projects
None yet
Development

Successfully merging this pull request may close these issues.

칸반 보드에서 일정 / 상태 삭제 후 순서 변경이 제대로 일어나지 않은 문제 해결
3 participants