Feat/todo#39
Merged
Turtle-Hwan merged 31 commits intomainfrom Oct 10, 2025
Merged
Conversation
…rd in markdown format
…o markdown checklist format
There was a problem hiding this comment.
Pull Request Overview
This PR adds a todo list export feature that allows users to copy their todo items to the clipboard in markdown format. The implementation includes clipboard functionality using the Web Clipboard API and toast notifications for user feedback.
- Adds markdown conversion utility for todo items
- Implements clipboard copy hook with toast notifications
- Integrates export button into todo list interface
Reviewed Changes
Copilot reviewed 7 out of 8 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| src/utils/todoMarkdown.ts | Utility function to convert todo items to markdown checklist format |
| src/hooks/useClipboardCopy.ts | Custom hook for clipboard operations with success/error feedback |
| src/components/ui/sonner.tsx | Toast notification component wrapper |
| src/components/Tabs/TodoList/TodoExportButton.tsx | Export button component with copy/check state icons |
| src/components/Tabs/TodoList/TodoList.tsx | Integration of export button into todo list UI |
| src/App.tsx | Addition of Toaster component to app root |
| package.json | Added sonner dependency for toast notifications |
Files not reviewed (1)
- pnpm-lock.yaml: Language not supported
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
Comment on lines
+26
to
+28
| const title = `${item.title}`; | ||
| const subject = `${item.subject}`; | ||
| const deadline = `${item.dueDate}`; |
There was a problem hiding this comment.
These template literals are unnecessary since the properties are already strings. You can directly use the properties: item.title, item.subject, and item.dueDate.
Suggested change
| const title = `${item.title}`; | |
| const subject = `${item.subject}`; | |
| const deadline = `${item.dueDate}`; | |
| const title = item.title; | |
| const subject = item.subject; | |
| const deadline = item.dueDate; |
Deploying linku with
|
| Latest commit: |
794aa02
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://94c5037a.linku-6s6.pages.dev |
| Branch Preview URL: | https://feat-todo.linku-6s6.pages.dev |
…loading in SettingsDialog
…tter organization
…t and MainLayout components
…rting functionality
…arkdown conversion utilities
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.
#35
추가로 설정 페이지에서 원하는 양식대로 복사할 수 있게 수정하는 기능#31
주요 변경사항
1. Custom Todo 기능 확장
추가
2. eCampus 로그인 자격증명 관리
3. GitHub Actions 워크플로우
추가
4. UI/UX 개선
5. 기타