[PR #1191] [CLOSED] feat: add a video player plugin to AppFlowy Editor #4582

Closed
opened 2026-03-23 21:38:26 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/1191
Author: @MrHeer
Created: 9/28/2022
Status: Closed

Base: mainHead: feat/video_player_plugin


📝 Commits (1)

  • 3f7171e feat: add a video plugin to AppFlowy Editor

📊 Changes

17 files changed (+946 additions, -0 deletions)

View changed files

frontend/app_flowy/packages/appflowy_editor/assets/images/selection_menu/video.svg (+5 -0)
frontend/app_flowy/packages/appflowy_editor/assets/images/video_toolbar/align_center.svg (+5 -0)
frontend/app_flowy/packages/appflowy_editor/assets/images/video_toolbar/align_left.svg (+5 -0)
frontend/app_flowy/packages/appflowy_editor/assets/images/video_toolbar/align_right.svg (+5 -0)
frontend/app_flowy/packages/appflowy_editor/assets/images/video_toolbar/copy.svg (+4 -0)
frontend/app_flowy/packages/appflowy_editor/assets/images/video_toolbar/delete.svg (+6 -0)
frontend/app_flowy/packages/appflowy_editor/assets/images/video_toolbar/divider.svg (+3 -0)
frontend/app_flowy/packages/appflowy_editor/assets/images/video_toolbar/share.svg (+4 -0)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/l10n/l10n.dart (+10 -0)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/render/selection_menu/selection_menu_service.dart (+7 -0)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/render/style/editor_style.dart (+1 -0)
frontend/app_flowy/packages/appflowy_editor/lib/src/render/video/video_node_builder.dart (+73 -0)
frontend/app_flowy/packages/appflowy_editor/lib/src/render/video/video_node_widget.dart (+393 -0)
frontend/app_flowy/packages/appflowy_editor/lib/src/render/video/video_upload_widget.dart (+200 -0)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/service/editor_service.dart (+2 -0)
frontend/app_flowy/packages/appflowy_editor/test/render/video/video_node_builder_test.dart (+131 -0)
frontend/app_flowy/packages/appflowy_editor/test/render/video/video_node_widget_test.dart (+92 -0)

📄 Description

resolve #1067

Checklist


🔄 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/1191 **Author:** [@MrHeer](https://github.com/MrHeer) **Created:** 9/28/2022 **Status:** ❌ Closed **Base:** `main` ← **Head:** `feat/video_player_plugin` --- ### 📝 Commits (1) - [`3f7171e`](https://github.com/AppFlowy-IO/AppFlowy/commit/3f7171e308ecafadeef7bb0d314d347b8ee33d61) feat: add a video plugin to AppFlowy Editor ### 📊 Changes **17 files changed** (+946 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `frontend/app_flowy/packages/appflowy_editor/assets/images/selection_menu/video.svg` (+5 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/assets/images/video_toolbar/align_center.svg` (+5 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/assets/images/video_toolbar/align_left.svg` (+5 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/assets/images/video_toolbar/align_right.svg` (+5 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/assets/images/video_toolbar/copy.svg` (+4 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/assets/images/video_toolbar/delete.svg` (+6 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/assets/images/video_toolbar/divider.svg` (+3 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/assets/images/video_toolbar/share.svg` (+4 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/l10n/l10n.dart` (+10 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/render/selection_menu/selection_menu_service.dart` (+7 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/render/style/editor_style.dart` (+1 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/lib/src/render/video/video_node_builder.dart` (+73 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/lib/src/render/video/video_node_widget.dart` (+393 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/lib/src/render/video/video_upload_widget.dart` (+200 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/service/editor_service.dart` (+2 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/test/render/video/video_node_builder_test.dart` (+131 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/test/render/video/video_node_widget_test.dart` (+92 -0) </details> ### 📄 Description resolve #1067 **Checklist** - [ ] video plugin - [x] scaling - [x] aligning - [x] copying - [x] deleting - [ ] video player suspended by https://github.com/AppFlowy-IO/AppFlowy/issues/1067#issuecomment-1259095795 - [ ] update assets - [ ] selection_menu - [ ] video_toolbar - [ ] test - [ ] network_video_mock? --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 21:38:26 +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#4582
No description provided.