-
Notifications
You must be signed in to change notification settings - Fork 0
[#440] 맥으로 Todo를 작성 혹은 수정 시 시트 대신 새 창이 뜨도록 수정한다 #505
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
Merged
Merged
Changes from 5 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
84366f2
feat: 맥에서 앱을 실행했을 때 구분할 수 있는 방법 구현
opficdev c080ca1
feat: Mac Todo 편집 윈도우 추가
opficdev 31167bc
refactor: Todo 편집 윈도우 이벤트 전달 정리
opficdev 82dd39c
ui: 새창 / 풀스크린 버전 ui 분리
opficdev b71be42
fix: 버튼을 정확하게 탭하지 않았을 때 탭 인식이 안되는 현상 수정
opficdev 886d825
fix: Todo 편집 윈도우 source 매칭 오류 수정
opficdev 958b19e
refactor: HomeCoordinator 경량화
opficdev a01d071
refactor: Todo 추가 / 수정 책임을 에디터로 이동
opficdev eb19e38
fix: TodoEditor에서 Todo를 생성, 수정하면서 윈도우가 닫히지 않는 현상 해결
opficdev 2a64384
refactor: Todo 편집 윈도우 이벤트 전달 구조 개선
opficdev d8a8ac5
refactor: 컨테이너 변수 이름 수정
opficdev File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
24 changes: 24 additions & 0 deletions
24
Application/DevLogPresentation/Sources/Home/TodoEditorWindowEvent.swift
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| // | ||
| // TodoEditorWindowEvent.swift | ||
| // DevLogPresentation | ||
| // | ||
| // Created by opfic on 5/31/26. | ||
| // | ||
|
|
||
| import Foundation | ||
| import DevLogDomain | ||
|
|
||
| @MainActor | ||
| @Observable | ||
| public final class TodoEditorWindowEvent { | ||
| var submitted: TodoEditorWindowSubmit? | ||
|
|
||
| public init() { } | ||
|
|
||
| func submit( | ||
| value: TodoEditorWindowValue, | ||
| todo: Todo | ||
| ) { | ||
| submitted = TodoEditorWindowSubmit(value: value, todo: todo) | ||
| } | ||
| } | ||
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.