fix(layout): TaskDetail SidePanel 열릴 때 다른 패널 자동 닫힘 처리 - #114
Merged
Conversation
- layout.tsx content div에 pt-16 추가로 단일 오프셋 처리 - Container의 py-25를 pb-25 pt-6으로 분리해 상단 중복 제거 - workspace 페이지 로딩/메인 div의 pt-16 제거 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- BottomNavigation에서 메모 탭 제거 (캘린더/칸반 뷰 전환만 담당) - KanbanHeader, CalendarHeader에 메모 토글 버튼 추가 - KanbanBoard, CalendarView에 onToggleMemo/showMemoPanel prop 연결 - 뷰 전환 시 메모 패널 강제 닫힘 동작 제거 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- opacity-0 group-hover 방식 제거 → 터치 기기 접근 불가 문제 해결 - 우상단 ⋮ 버튼 추가, 클릭 시 수정/삭제 드롭다운 표시 - 외부 클릭 시 메뉴 닫힘 처리 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- onClose prop 추가 및 헤더 내 X 버튼 렌더링
- workspace에서 onClose={() => setShowMemoPanel(false)} 전달
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- KanbanBoard에 onPanelOpen prop 추가 - 태스크 클릭 시 MemoView, ProjectInfoPanel 닫힘 처리 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
관련 이슈
closes #101
문제
칸반 뷰에서 태스크를 클릭하면 열리는
TaskDetail SidePanel(fixed z-50)이 flex 레이아웃의MemoView,ProjectInfoPanel을 완전히 덮어버려 동시 사용이 불가능했습니다.변경 내용
TaskDetail이 열릴 때 다른 패널을 자동으로 닫는 방식으로 처리했습니다.
KanbanBoard에onPanelOpenprop 추가handleTaskClick) 시onPanelOpen호출onPanelOpen수신 시MemoView,ProjectInfoPanel닫힘변경 파일
src/components/features/kanban/KanbanBoard.tsxsrc/app/(main)/project/workspace/[id]/page.tsx테스트 체크리스트
🤖 Generated with Claude Code