[PR #5709] [MERGED] feat: publish databse to Web #6961

Closed
opened 2026-03-23 23:17:28 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/5709
Author: @LucasXu0
Created: 7/9/2024
Status: Merged
Merged: 7/22/2024
Merged by: @LucasXu0

Base: mainHead: publish_database


📝 Commits (10+)

  • 6deb443 chore: refactor the publish code
  • f587fd6 feat: integrate publish into database page
  • 034ad76 feat: add publish database structure
  • f8bffd2 feat: add database row collab
  • 333abae feat: publish the database row collabs
  • 67bf8b1 Merge branch 'main' into publish_database
  • 6ddb0e9 chore: update collab
  • 07f6cda Merge branch 'main' into publish_database
  • 4727195 Merge branch 'main' into publish_database
  • 5de0060 Merge branch 'main' into publish_database

📊 Changes

61 files changed (+1592 additions, -815 deletions)

View changed files

📝 frontend/appflowy_flutter/integration_test/desktop/uncategorized/share_markdown_test.dart (+3 -4)
📝 frontend/appflowy_flutter/integration_test/shared/common_operations.dart (+6 -7)
📝 frontend/appflowy_flutter/lib/plugins/ai_chat/chat.dart (+2 -2)
📝 frontend/appflowy_flutter/lib/plugins/blank/blank.dart (+1 -0)
📝 frontend/appflowy_flutter/lib/plugins/database/grid/presentation/grid_page.dart (+6 -5)
📝 frontend/appflowy_flutter/lib/plugins/database/grid/presentation/widgets/header/grid_header.dart (+4 -1)
📝 frontend/appflowy_flutter/lib/plugins/database/grid/presentation/widgets/row/row.dart (+5 -4)
📝 frontend/appflowy_flutter/lib/plugins/database/tab_bar/desktop/tab_bar_header.dart (+6 -3)
📝 frontend/appflowy_flutter/lib/plugins/database/tab_bar/tab_bar_view.dart (+29 -7)
📝 frontend/appflowy_flutter/lib/plugins/database/widgets/database_view_widget.dart (+5 -2)
📝 frontend/appflowy_flutter/lib/plugins/database_document/database_document_plugin.dart (+1 -0)
📝 frontend/appflowy_flutter/lib/plugins/document/application/prelude.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/document/document.dart (+3 -2)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/base/built_in_page_widget.dart (+1 -5)
frontend/appflowy_flutter/lib/plugins/document/presentation/share/publish_tab.dart (+0 -284)
frontend/appflowy_flutter/lib/plugins/document/presentation/share/share_button.dart (+0 -248)
frontend/appflowy_flutter/lib/plugins/shared/share/_shared.dart (+68 -0)
📝 frontend/appflowy_flutter/lib/plugins/shared/share/export_tab.dart (+50 -11)
📝 frontend/appflowy_flutter/lib/plugins/shared/share/publish_color_extension.dart (+0 -0)
📝 frontend/appflowy_flutter/lib/plugins/shared/share/publish_name_generator.dart (+0 -0)

...and 41 more files

📄 Description

Feature Preview

added support for publishing one or multiple databases.

Screenshot 2024-07-12 at 15 21 20

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/5709 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 7/9/2024 **Status:** ✅ Merged **Merged:** 7/22/2024 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `publish_database` --- ### 📝 Commits (10+) - [`6deb443`](https://github.com/AppFlowy-IO/AppFlowy/commit/6deb4436974865ca45c6e34c7934ac44f61f8b8e) chore: refactor the publish code - [`f587fd6`](https://github.com/AppFlowy-IO/AppFlowy/commit/f587fd6594021afead14f958d793ab12918a6d7f) feat: integrate publish into database page - [`034ad76`](https://github.com/AppFlowy-IO/AppFlowy/commit/034ad76d701b2a9445304619ce4d443f0a143039) feat: add publish database structure - [`f8bffd2`](https://github.com/AppFlowy-IO/AppFlowy/commit/f8bffd2c6c3e5d374a229b6a3362ac2576c9bea7) feat: add database row collab - [`333abae`](https://github.com/AppFlowy-IO/AppFlowy/commit/333abaece13be435c58b70840974b444dcc7d12d) feat: publish the database row collabs - [`67bf8b1`](https://github.com/AppFlowy-IO/AppFlowy/commit/67bf8b1726f4c3db6c4c17346c9789ec7f6ea5a8) Merge branch 'main' into publish_database - [`6ddb0e9`](https://github.com/AppFlowy-IO/AppFlowy/commit/6ddb0e97fbda7527291f7d0fceeefb1cb6de60c1) chore: update collab - [`07f6cda`](https://github.com/AppFlowy-IO/AppFlowy/commit/07f6cda99631161a5431dff49ec83b6e686f9143) Merge branch 'main' into publish_database - [`4727195`](https://github.com/AppFlowy-IO/AppFlowy/commit/4727195fa13281464ee0fcc1746896459eb0f155) Merge branch 'main' into publish_database - [`5de0060`](https://github.com/AppFlowy-IO/AppFlowy/commit/5de0060c66b90efbdd13e885be269fc44691f775) Merge branch 'main' into publish_database ### 📊 Changes **61 files changed** (+1592 additions, -815 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/integration_test/desktop/uncategorized/share_markdown_test.dart` (+3 -4) 📝 `frontend/appflowy_flutter/integration_test/shared/common_operations.dart` (+6 -7) 📝 `frontend/appflowy_flutter/lib/plugins/ai_chat/chat.dart` (+2 -2) 📝 `frontend/appflowy_flutter/lib/plugins/blank/blank.dart` (+1 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database/grid/presentation/grid_page.dart` (+6 -5) 📝 `frontend/appflowy_flutter/lib/plugins/database/grid/presentation/widgets/header/grid_header.dart` (+4 -1) 📝 `frontend/appflowy_flutter/lib/plugins/database/grid/presentation/widgets/row/row.dart` (+5 -4) 📝 `frontend/appflowy_flutter/lib/plugins/database/tab_bar/desktop/tab_bar_header.dart` (+6 -3) 📝 `frontend/appflowy_flutter/lib/plugins/database/tab_bar/tab_bar_view.dart` (+29 -7) 📝 `frontend/appflowy_flutter/lib/plugins/database/widgets/database_view_widget.dart` (+5 -2) 📝 `frontend/appflowy_flutter/lib/plugins/database_document/database_document_plugin.dart` (+1 -0) 📝 `frontend/appflowy_flutter/lib/plugins/document/application/prelude.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/document/document.dart` (+3 -2) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/base/built_in_page_widget.dart` (+1 -5) ➖ `frontend/appflowy_flutter/lib/plugins/document/presentation/share/publish_tab.dart` (+0 -284) ➖ `frontend/appflowy_flutter/lib/plugins/document/presentation/share/share_button.dart` (+0 -248) ➕ `frontend/appflowy_flutter/lib/plugins/shared/share/_shared.dart` (+68 -0) 📝 `frontend/appflowy_flutter/lib/plugins/shared/share/export_tab.dart` (+50 -11) 📝 `frontend/appflowy_flutter/lib/plugins/shared/share/publish_color_extension.dart` (+0 -0) 📝 `frontend/appflowy_flutter/lib/plugins/shared/share/publish_name_generator.dart` (+0 -0) _...and 41 more files_ </details> ### 📄 Description <!--- Thank you for submitting a pull request to AppFlowy. The team will dedicate their best efforts to reviewing and approving your pull request. If you have any questions about the project or feedback for us, please join our [Discord](https://discord.gg/wdjWUXXhtw). --> <!--- If your pull request adds a new feature, please drag and drop a video into this section to showcase what you've done! If not, you may delete this section. --> ### Feature Preview added support for publishing one or multiple databases. <img width="452" alt="Screenshot 2024-07-12 at 15 21 20" src="https://github.com/user-attachments/assets/2b85cf93-3ba1-43da-83fe-ed81cc342f67"> <!--- List at least one issue here that this PR addresses. If it fixes the issue, please use the [fixes](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/using-keywords-in-issues-and-pull-requests) keyword to close the issue. For example: fixes https://github.com/AppFlowy-IO/AppFlowy/pull/2106 --> --- <!--- Before you mark this PR ready for review, run through this checklist! --> #### 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. - [ ] I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes. - [ ] 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:17:28 +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#6961
No description provided.