[PR #6785] [MERGED] fix: tab menu and tabbar improvements #7576

Closed
opened 2026-03-23 23:20:16 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/6785
Author: @Xazin
Created: 11/14/2024
Status: Merged
Merged: 11/14/2024
Merged by: @Xazin

Base: mainHead: fix/tabs-improvements-0.7.4


📝 Commits (5)

  • 6031d59 fix: tab menu and tabbar improvements
  • a2dba8d chore: update appflowy_editor
  • 0728ae7 chore: merge branch 'upstream/main' into fix/tabs-improvements-0.7.4
  • 4e16d09 test: tab menu test
  • 71b5ac6 test: fix test after refactor

📊 Changes

15 files changed (+469 additions, -170 deletions)

View changed files

📝 .github/workflows/flutter_ci.yaml (+1 -1)
📝 frontend/appflowy_flutter/integration_test/desktop/uncategorized/tabs_test.dart (+81 -13)
📝 frontend/appflowy_flutter/integration_test/desktop/uncategorized/uncategorized_test_runner_1.dart (+0 -2)
frontend/appflowy_flutter/integration_test/desktop_runner_9.dart (+16 -0)
📝 frontend/appflowy_flutter/integration_test/runner.dart (+2 -0)
📝 frontend/appflowy_flutter/lib/plugins/database/tab_bar/tab_bar_view.dart (+1 -3)
frontend/appflowy_flutter/lib/workspace/application/tabs/tab_menu_bloc.dart (+79 -0)
📝 frontend/appflowy_flutter/lib/workspace/application/tabs/tabs_bloc.dart (+14 -1)
📝 frontend/appflowy_flutter/lib/workspace/application/tabs/tabs_event.dart (+1 -0)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/home_stack.dart (+71 -52)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/tabs/flowy_tab.dart (+159 -29)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/tabs/tabs_manager.dart (+34 -66)
📝 frontend/appflowy_flutter/pubspec.lock (+2 -2)
📝 frontend/appflowy_flutter/pubspec.yaml (+1 -1)
📝 frontend/resources/translations/en.json (+7 -0)

📄 Description

  • Right click context menu for tabs (Close, close others, favorite/unfavorite)
  • Drag window from tab bar
  • Update editor version (includes fix for tables in tabs acting out)

PR Checklist

  • My code adheres to AppFlowy's Conventions
  • I've listed at least one issue that this PR fixes in the description above.
  • I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes.
  • All existing tests are passing.

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/AppFlowy-IO/AppFlowy/pull/6785 **Author:** [@Xazin](https://github.com/Xazin) **Created:** 11/14/2024 **Status:** ✅ Merged **Merged:** 11/14/2024 **Merged by:** [@Xazin](https://github.com/Xazin) **Base:** `main` ← **Head:** `fix/tabs-improvements-0.7.4` --- ### 📝 Commits (5) - [`6031d59`](https://github.com/AppFlowy-IO/AppFlowy/commit/6031d59d3bb6280c1dba5ad05af1412655db26aa) fix: tab menu and tabbar improvements - [`a2dba8d`](https://github.com/AppFlowy-IO/AppFlowy/commit/a2dba8d70c20fa29642ed5c15d012825bb0b93be) chore: update appflowy_editor - [`0728ae7`](https://github.com/AppFlowy-IO/AppFlowy/commit/0728ae73d0682adcbce7a098766356633b6d69b8) chore: merge branch 'upstream/main' into fix/tabs-improvements-0.7.4 - [`4e16d09`](https://github.com/AppFlowy-IO/AppFlowy/commit/4e16d09cac339f213a59917c9062f1f83dab1aa2) test: tab menu test - [`71b5ac6`](https://github.com/AppFlowy-IO/AppFlowy/commit/71b5ac6fbbcb165d981cf53826548d42175715be) test: fix test after refactor ### 📊 Changes **15 files changed** (+469 additions, -170 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/flutter_ci.yaml` (+1 -1) 📝 `frontend/appflowy_flutter/integration_test/desktop/uncategorized/tabs_test.dart` (+81 -13) 📝 `frontend/appflowy_flutter/integration_test/desktop/uncategorized/uncategorized_test_runner_1.dart` (+0 -2) ➕ `frontend/appflowy_flutter/integration_test/desktop_runner_9.dart` (+16 -0) 📝 `frontend/appflowy_flutter/integration_test/runner.dart` (+2 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database/tab_bar/tab_bar_view.dart` (+1 -3) ➕ `frontend/appflowy_flutter/lib/workspace/application/tabs/tab_menu_bloc.dart` (+79 -0) 📝 `frontend/appflowy_flutter/lib/workspace/application/tabs/tabs_bloc.dart` (+14 -1) 📝 `frontend/appflowy_flutter/lib/workspace/application/tabs/tabs_event.dart` (+1 -0) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/home_stack.dart` (+71 -52) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/tabs/flowy_tab.dart` (+159 -29) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/tabs/tabs_manager.dart` (+34 -66) 📝 `frontend/appflowy_flutter/pubspec.lock` (+2 -2) 📝 `frontend/appflowy_flutter/pubspec.yaml` (+1 -1) 📝 `frontend/resources/translations/en.json` (+7 -0) </details> ### 📄 Description - [x] Right click context menu for tabs (Close, close others, favorite/unfavorite) - [x] Drag window from tab bar - [x] Update editor version (includes fix for tables in tabs acting out) #### PR Checklist - [x] My code adheres to [AppFlowy's Conventions](https://docs.appflowy.io/docs/documentation/software-contributions/conventions) - [ ] I've listed at least one issue that this PR fixes in the description above. - [x] I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes. - [x] All existing tests are passing. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 23:20:16 +00:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
AppFlowy-IO/AppFlowy#7576
No description provided.