[PR #2103] [CLOSED] Add left toolbar #5094

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/2103
Author: @qinluhe
Created: 3/24/2023
Status: Closed

Base: mainHead: feat-block-tools


📝 Commits (3)

  • a38c213 fix: Optimize the re-render node when the selection changes
  • c6c97f7 feat: the feature of delete block
  • 7781b91 feat: add left tool when hover on block

📊 Changes

18 files changed (+352 additions, -70 deletions)

View changed files

📝 frontend/appflowy_tauri/src/appflowy_app/block_editor/blocks/text_block/index.ts (+54 -2)
📝 frontend/appflowy_tauri/src/appflowy_app/block_editor/core/block_chain.ts (+2 -1)
📝 frontend/appflowy_tauri/src/appflowy_app/block_editor/core/operation.ts (+14 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/block_editor/view/block_position.ts (+30 -16)
📝 frontend/appflowy_tauri/src/appflowy_app/block_editor/view/tree.ts (+39 -31)
📝 frontend/appflowy_tauri/src/appflowy_app/block_editor/view/tree_node.ts (+19 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/components/HoveringToolbar/index.tsx (+1 -1)
📝 frontend/appflowy_tauri/src/appflowy_app/components/block/BlockList/BlockList.hooks.tsx (+1 -2)
frontend/appflowy_tauri/src/appflowy_app/components/block/BlockList/Overlay.tsx (+14 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/components/block/BlockList/index.tsx (+2 -2)
📝 frontend/appflowy_tauri/src/appflowy_app/components/block/BlockPortal/index.tsx (+2 -2)
📝 frontend/appflowy_tauri/src/appflowy_app/components/block/BlockSelection/BlockSelection.hooks.tsx (+23 -7)
📝 frontend/appflowy_tauri/src/appflowy_app/components/block/BlockSelection/index.tsx (+12 -3)
frontend/appflowy_tauri/src/appflowy_app/components/block/BlockSideTools/BlockSideTools.hooks.tsx (+64 -0)
frontend/appflowy_tauri/src/appflowy_app/components/block/BlockSideTools/index.tsx (+37 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/components/block/TextBlock/index.hooks.ts (+22 -2)
📝 frontend/appflowy_tauri/src/appflowy_app/components/block/TextBlock/index.tsx (+1 -1)
📝 frontend/appflowy_tauri/src/appflowy_app/utils/tool.ts (+15 -0)

📄 Description

No description provided


🔄 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/2103 **Author:** [@qinluhe](https://github.com/qinluhe) **Created:** 3/24/2023 **Status:** ❌ Closed **Base:** `main` ← **Head:** `feat-block-tools` --- ### 📝 Commits (3) - [`a38c213`](https://github.com/AppFlowy-IO/AppFlowy/commit/a38c213744342b64f0a1c5d70ef05458f32519d4) fix: Optimize the re-render node when the selection changes - [`c6c97f7`](https://github.com/AppFlowy-IO/AppFlowy/commit/c6c97f7c839c7de022401e4cd4951d3db318305b) feat: the feature of delete block - [`7781b91`](https://github.com/AppFlowy-IO/AppFlowy/commit/7781b912f061cb7ef7b24622279528a1b8da153b) feat: add left tool when hover on block ### 📊 Changes **18 files changed** (+352 additions, -70 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_tauri/src/appflowy_app/block_editor/blocks/text_block/index.ts` (+54 -2) 📝 `frontend/appflowy_tauri/src/appflowy_app/block_editor/core/block_chain.ts` (+2 -1) 📝 `frontend/appflowy_tauri/src/appflowy_app/block_editor/core/operation.ts` (+14 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/block_editor/view/block_position.ts` (+30 -16) 📝 `frontend/appflowy_tauri/src/appflowy_app/block_editor/view/tree.ts` (+39 -31) 📝 `frontend/appflowy_tauri/src/appflowy_app/block_editor/view/tree_node.ts` (+19 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/HoveringToolbar/index.tsx` (+1 -1) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/block/BlockList/BlockList.hooks.tsx` (+1 -2) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/block/BlockList/Overlay.tsx` (+14 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/block/BlockList/index.tsx` (+2 -2) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/block/BlockPortal/index.tsx` (+2 -2) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/block/BlockSelection/BlockSelection.hooks.tsx` (+23 -7) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/block/BlockSelection/index.tsx` (+12 -3) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/block/BlockSideTools/BlockSideTools.hooks.tsx` (+64 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/block/BlockSideTools/index.tsx` (+37 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/block/TextBlock/index.hooks.ts` (+22 -2) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/block/TextBlock/index.tsx` (+1 -1) 📝 `frontend/appflowy_tauri/src/appflowy_app/utils/tool.ts` (+15 -0) </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 22:17:11 +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#5094
No description provided.