[PR #1142] [MERGED] Blocks UI/UX #1172

Closed
opened 2026-03-03 00:24:57 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/BoostIO/BoostNote-App/pull/1142
Author: @Davy-c
Created: 9/5/2021
Status: Merged
Merged: 9/6/2021
Merged by: @Davy-c

Base: feat/blocks-v3Head: feat/blocks-ui-improvements


📝 Commits (10+)

📊 Changes

76 files changed (+2941 additions, -1417 deletions)

View changed files

📝 src/cloud/api/blocks/index.ts (+10 -7)
📝 src/cloud/api/integrations/index.ts (+1 -0)
📝 src/cloud/components/Blocks/BlockContent.tsx (+238 -131)
src/cloud/components/Blocks/BlockCreate.tsx (+0 -135)
src/cloud/components/Blocks/BlockCreationModal.tsx (+108 -0)
📝 src/cloud/components/Blocks/BlockEditor.tsx (+46 -1)
src/cloud/components/Blocks/BlockLayout.tsx (+120 -0)
src/cloud/components/Blocks/BlockToolbar.tsx (+30 -0)
📝 src/cloud/components/Blocks/BlockTree.tsx (+72 -102)
📝 src/cloud/components/Blocks/data/GithubAssigneesData.tsx (+32 -25)
📝 src/cloud/components/Blocks/data/GithubLabelsData.tsx (+39 -31)
📝 src/cloud/components/Blocks/data/GithubStatusData.tsx (+2 -1)
src/cloud/components/Blocks/forms/ContainerForm.tsx (+0 -60)
📝 src/cloud/components/Blocks/forms/EmbedForm.tsx (+63 -52)
📝 src/cloud/components/Blocks/forms/GithubIssueForm.tsx (+113 -63)
src/cloud/components/Blocks/forms/MarkdownForm.tsx (+0 -60)
src/cloud/components/Blocks/forms/TableForm.tsx (+0 -60)
📝 src/cloud/components/Blocks/props/BoostUserProp.tsx (+81 -36)
📝 src/cloud/components/Blocks/props/CheckboxProp.tsx (+3 -3)
📝 src/cloud/components/Blocks/props/DataTypeMenu.tsx (+6 -0)

...and 56 more files

📄 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/BoostIO/BoostNote-App/pull/1142 **Author:** [@Davy-c](https://github.com/Davy-c) **Created:** 9/5/2021 **Status:** ✅ Merged **Merged:** 9/6/2021 **Merged by:** [@Davy-c](https://github.com/Davy-c) **Base:** `feat/blocks-v3` ← **Head:** `feat/blocks-ui-improvements` --- ### 📝 Commits (10+) - [`1deb22a`](https://github.com/BoostIO/BoostNote-App/commit/1deb22a08fe519ef0d31d98e1de0bbd108b7db02) initial - [`5f113e4`](https://github.com/BoostIO/BoostNote-App/commit/5f113e49e49d66aa675fe476f9be7e662d32e2ca) fix sidenav - [`a06904b`](https://github.com/BoostIO/BoostNote-App/commit/a06904b31204c2bb27d555caa36f699a2cba5a2f) fix switches in col settings - [`b8e2410`](https://github.com/BoostIO/BoostNote-App/commit/b8e24105c401f0d3be6780c05e7eb881bb132504) context menu scrolls top by default - [`14fe06f`](https://github.com/BoostIO/BoostNote-App/commit/14fe06fa0c959061f7ce84ffb3ded1454ed4a714) fix block tree - [`e2c9ce8`](https://github.com/BoostIO/BoostNote-App/commit/e2c9ce8916081be4187be26b45cddf753e09385a) small feedbacks - [`7455efb`](https://github.com/BoostIO/BoostNote-App/commit/7455efb9f7159c5098d53cd0648e6532138a5ccb) doc share removal - [`73c5e69`](https://github.com/BoostIO/BoostNote-App/commit/73c5e69a3b0db7ed20741a8250052056ec7604e1) markdown block edit on creation - [`f37c36f`](https://github.com/BoostIO/BoostNote-App/commit/f37c36fc65907de5ffefbe0290b5cb077d397c95) add prop location - [`4815f44`](https://github.com/BoostIO/BoostNote-App/commit/4815f44bcbaac29eb19f973350c69c5a59482634) kazz/simon feedback ### 📊 Changes **76 files changed** (+2941 additions, -1417 deletions) <details> <summary>View changed files</summary> 📝 `src/cloud/api/blocks/index.ts` (+10 -7) 📝 `src/cloud/api/integrations/index.ts` (+1 -0) 📝 `src/cloud/components/Blocks/BlockContent.tsx` (+238 -131) ➖ `src/cloud/components/Blocks/BlockCreate.tsx` (+0 -135) ➕ `src/cloud/components/Blocks/BlockCreationModal.tsx` (+108 -0) 📝 `src/cloud/components/Blocks/BlockEditor.tsx` (+46 -1) ➕ `src/cloud/components/Blocks/BlockLayout.tsx` (+120 -0) ➕ `src/cloud/components/Blocks/BlockToolbar.tsx` (+30 -0) 📝 `src/cloud/components/Blocks/BlockTree.tsx` (+72 -102) 📝 `src/cloud/components/Blocks/data/GithubAssigneesData.tsx` (+32 -25) 📝 `src/cloud/components/Blocks/data/GithubLabelsData.tsx` (+39 -31) 📝 `src/cloud/components/Blocks/data/GithubStatusData.tsx` (+2 -1) ➖ `src/cloud/components/Blocks/forms/ContainerForm.tsx` (+0 -60) 📝 `src/cloud/components/Blocks/forms/EmbedForm.tsx` (+63 -52) 📝 `src/cloud/components/Blocks/forms/GithubIssueForm.tsx` (+113 -63) ➖ `src/cloud/components/Blocks/forms/MarkdownForm.tsx` (+0 -60) ➖ `src/cloud/components/Blocks/forms/TableForm.tsx` (+0 -60) 📝 `src/cloud/components/Blocks/props/BoostUserProp.tsx` (+81 -36) 📝 `src/cloud/components/Blocks/props/CheckboxProp.tsx` (+3 -3) 📝 `src/cloud/components/Blocks/props/DataTypeMenu.tsx` (+6 -0) _...and 56 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 00:24:57 +03: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
starred/BoostNote-App#1172
No description provided.