[PR #1139] [MERGED] Feat/blocks v3 #1171

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/1139
Author: @ButteryCrumpet
Created: 9/3/2021
Status: Merged
Merged: 9/9/2021
Merged by: @Davy-c

Base: feat/blocksHead: feat/blocks-v3


📝 Commits (10+)

  • 5efc0a7 Move cell components to 'props'
  • 8348c21 empty string handling for prop components
  • f96fb54 separate data updater components
  • 01079f9 block prop module
  • b05171b block prop api hook
  • 221e3e3 table api update
  • 5d79dd6 block table api hook
  • 61b57e2 Update table component to use new Table Block hook
  • a6828c4 Issue block to use props
  • 5db084b show children in table

📊 Changes

92 files changed (+4418 additions, -2009 deletions)

View changed files

📝 src/cloud/api/blocks/index.ts (+15 -8)
📝 src/cloud/api/integrations/index.ts (+1 -0)
📝 src/cloud/components/Blocks/BlockContent.tsx (+224 -207)
src/cloud/components/Blocks/BlockCreationModal.tsx (+108 -0)
📝 src/cloud/components/Blocks/BlockEditor.tsx (+47 -1)
src/cloud/components/Blocks/BlockIcon.tsx (+36 -0)
src/cloud/components/Blocks/BlockLayout.tsx (+121 -0)
src/cloud/components/Blocks/BlockToolbar.tsx (+30 -0)
📝 src/cloud/components/Blocks/BlockTree.tsx (+96 -131)
📝 src/cloud/components/Blocks/data/GithubAssigneesData.tsx (+46 -35)
📝 src/cloud/components/Blocks/data/GithubLabelsData.tsx (+52 -40)
📝 src/cloud/components/Blocks/data/GithubStatusData.tsx (+16 -11)
src/cloud/components/Blocks/data/types.ts (+6 -0)
src/cloud/components/Blocks/forms/ContainerForm.tsx (+0 -60)
📝 src/cloud/components/Blocks/forms/EmbedForm.tsx (+70 -52)
📝 src/cloud/components/Blocks/forms/GithubIssueForm.tsx (+119 -67)
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 (+131 -0)
src/cloud/components/Blocks/props/CheckboxProp.tsx (+17 -0)

...and 72 more files

📄 Description

V3 blocks


🔄 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/1139 **Author:** [@ButteryCrumpet](https://github.com/ButteryCrumpet) **Created:** 9/3/2021 **Status:** ✅ Merged **Merged:** 9/9/2021 **Merged by:** [@Davy-c](https://github.com/Davy-c) **Base:** `feat/blocks` ← **Head:** `feat/blocks-v3` --- ### 📝 Commits (10+) - [`5efc0a7`](https://github.com/BoostIO/BoostNote-App/commit/5efc0a765d2fe75971812820dee674e7e9cd94ad) Move cell components to 'props' - [`8348c21`](https://github.com/BoostIO/BoostNote-App/commit/8348c21912397a769851b4e2826b1cf1391aa056) empty string handling for prop components - [`f96fb54`](https://github.com/BoostIO/BoostNote-App/commit/f96fb54e3e90fdc709db81789b1915471482df56) separate data updater components - [`01079f9`](https://github.com/BoostIO/BoostNote-App/commit/01079f95245307363e39a9a6a07ea6e67ca855a6) block prop module - [`b05171b`](https://github.com/BoostIO/BoostNote-App/commit/b05171b07b65305f16a6b7ce2aeb40b100c0f8bd) block prop api hook - [`221e3e3`](https://github.com/BoostIO/BoostNote-App/commit/221e3e39a4a27f7b17a3945aca607bc24923e90a) table api update - [`5d79dd6`](https://github.com/BoostIO/BoostNote-App/commit/5d79dd6972283086cb288188331e92498aa1fdc7) block table api hook - [`61b57e2`](https://github.com/BoostIO/BoostNote-App/commit/61b57e297826a3ebdc0607fb326d504f2226e7c2) Update table component to use new Table Block hook - [`a6828c4`](https://github.com/BoostIO/BoostNote-App/commit/a6828c4069094ae0fd3ed1e41e94e2f5e20332ea) Issue block to use props - [`5db084b`](https://github.com/BoostIO/BoostNote-App/commit/5db084bde561e47e8fe8c3b0db0ea789bfaab2c7) show children in table ### 📊 Changes **92 files changed** (+4418 additions, -2009 deletions) <details> <summary>View changed files</summary> 📝 `src/cloud/api/blocks/index.ts` (+15 -8) 📝 `src/cloud/api/integrations/index.ts` (+1 -0) 📝 `src/cloud/components/Blocks/BlockContent.tsx` (+224 -207) ➕ `src/cloud/components/Blocks/BlockCreationModal.tsx` (+108 -0) 📝 `src/cloud/components/Blocks/BlockEditor.tsx` (+47 -1) ➕ `src/cloud/components/Blocks/BlockIcon.tsx` (+36 -0) ➕ `src/cloud/components/Blocks/BlockLayout.tsx` (+121 -0) ➕ `src/cloud/components/Blocks/BlockToolbar.tsx` (+30 -0) 📝 `src/cloud/components/Blocks/BlockTree.tsx` (+96 -131) 📝 `src/cloud/components/Blocks/data/GithubAssigneesData.tsx` (+46 -35) 📝 `src/cloud/components/Blocks/data/GithubLabelsData.tsx` (+52 -40) 📝 `src/cloud/components/Blocks/data/GithubStatusData.tsx` (+16 -11) ➕ `src/cloud/components/Blocks/data/types.ts` (+6 -0) ➖ `src/cloud/components/Blocks/forms/ContainerForm.tsx` (+0 -60) 📝 `src/cloud/components/Blocks/forms/EmbedForm.tsx` (+70 -52) 📝 `src/cloud/components/Blocks/forms/GithubIssueForm.tsx` (+119 -67) ➖ `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` (+131 -0) ➕ `src/cloud/components/Blocks/props/CheckboxProp.tsx` (+17 -0) _...and 72 more files_ </details> ### 📄 Description V3 blocks --- <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#1171
No description provided.