features: add commit and push option to git commit window

- Add split button with dropdown in commit dialog supporting both
  "Commit" and "Commit and Push" actions
- Pass folderId through gitCommit/gitPush API calls so backend emits
  events that the folder window can receive for toast notifications
- Update Tauri git_commit and git_push commands to accept folder_id
  parameter with window label fallback for cross-window compatibility
- Wrap commit page with GitCredentialProvider for push authentication
- Keep commit window open when push fails so user can see the error
- Add i18n translations for all 10 locales

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
xintaofei
2026-04-02 16:22:41 +08:00
parent 1287dab37c
commit efd8e1104f
16 changed files with 184 additions and 82 deletions

View File

@@ -1009,6 +1009,7 @@
"commitDialog": {
"toasts": {
"commitCompleted": "提交程式碼完成",
"pushFailed": "推送失敗",
"committedFiles": "已提交 {count} 個檔案",
"addedToVcs": "已加入到 VCS",
"addToVcsFailed": "加入到 VCS 失敗",
@@ -1050,6 +1051,7 @@
"commitMessage": "提交訊息",
"commitMessagePlaceholder": "輸入提交訊息...",
"commitButton": "提交 ({count})",
"commitAndPushButton": "提交並推送 ({count})",
"head": "HEAD目前提交",
"workingTree": "工作目錄",
"clickFileToDiff": "點擊檔案名稱查看差異",