[PR #1048] [MERGED] Doc page - changes #1109

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

📋 Pull Request Information

Original PR: https://github.com/BoostIO/BoostNote-App/pull/1048
Author: @Davy-c
Created: 7/13/2021
Status: Merged
Merged: 7/13/2021
Merged by: @Davy-c

Base: masterHead: feat/doc-page-renewal


📝 Commits (10+)

📊 Changes

44 files changed (+2837 additions, -2680 deletions)

View changed files

📝 src/cloud/components/molecules/DocListItem.tsx (+77 -2)
📝 src/cloud/components/molecules/DocShare.tsx (+208 -377)
src/cloud/components/molecules/DocTagsList/DocTagsListItem.tsx (+0 -49)
src/cloud/components/molecules/DocTagsList/index.tsx (+0 -111)
src/cloud/components/molecules/DocTagsList/styled.ts (+0 -132)
📝 src/cloud/components/molecules/Editor/index.tsx (+109 -123)
src/cloud/components/molecules/Editor/useDocActionContextMenu.tsx (+0 -325)
📝 src/cloud/components/molecules/Timeline/TimelineListItem.tsx (+76 -2)
📝 src/cloud/components/organisms/CommentManager.tsx (+3 -2)
📝 src/cloud/components/organisms/DocPage/View.tsx (+13 -31)
src/cloud/components/organisms/EditorLayout/DocPageHeader.tsx (+278 -0)
src/cloud/components/organisms/EditorLayout/NewDocContextMenu.tsx (+195 -0)
src/cloud/components/organisms/EditorLayout/index.tsx (+100 -0)
src/cloud/components/organisms/EditorLayout/molecules/BackLinksList.tsx (+85 -0)
src/cloud/components/organisms/EditorLayout/molecules/ContextMenuClose.tsx (+71 -0)
src/cloud/components/organisms/EditorLayout/molecules/DocAssigneeSelect.tsx (+235 -0)
src/cloud/components/organisms/EditorLayout/molecules/DocContextMenuActions.tsx (+363 -0)
📝 src/cloud/components/organisms/EditorLayout/molecules/DocDueDateSelect.tsx (+10 -9)
src/cloud/components/organisms/EditorLayout/molecules/DocPropertyValueButton.tsx (+129 -0)
📝 src/cloud/components/organisms/EditorLayout/molecules/DocStatusSelect.tsx (+9 -7)

...and 24 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/1048 **Author:** [@Davy-c](https://github.com/Davy-c) **Created:** 7/13/2021 **Status:** ✅ Merged **Merged:** 7/13/2021 **Merged by:** [@Davy-c](https://github.com/Davy-c) **Base:** `master` ← **Head:** `feat/doc-page-renewal` --- ### 📝 Commits (10+) - [`b8cbfe2`](https://github.com/BoostIO/BoostNote-App/commit/b8cbfe279c47843bd3b1da3b4707ef0e4155660f) doc context menu (new) - [`afa50a6`](https://github.com/BoostIO/BoostNote-App/commit/afa50a6ae8f8707fb0e416976a45bff52f34c883) refactor move api in doc context - [`03004e0`](https://github.com/BoostIO/BoostNote-App/commit/03004e004914bf1f70521f55901f2a453725318e) doc share modal styling - [`f2baa23`](https://github.com/BoostIO/BoostNote-App/commit/f2baa2363cdee9f108059bc0937b76b8889cae20) context modal changes - [`a4bf6a9`](https://github.com/BoostIO/BoostNote-App/commit/a4bf6a957a0cd4228e472113c499740a54f9d13b) context modal scroll and style fix - [`a7ff6a4`](https://github.com/BoostIO/BoostNote-App/commit/a7ff6a43031ab4380f9c2304fb72a75fadad43df) focus context modal - [`9975da3`](https://github.com/BoostIO/BoostNote-App/commit/9975da350da3d63e110ccb1ad8b5361a53d10da9) height limit clipping - [`a23a867`](https://github.com/BoostIO/BoostNote-App/commit/a23a867ac08995e479a6e7fea9e0c9544e15837e) width limit clipping - [`cc673bc`](https://github.com/BoostIO/BoostNote-App/commit/cc673bc86200039dd48e435800e70ab95f678d3e) remove transition in doc share - [`35aef89`](https://github.com/BoostIO/BoostNote-App/commit/35aef8919a3a9be0c4104a43b3b593907d6d2ab8) remove comment from topbar ### 📊 Changes **44 files changed** (+2837 additions, -2680 deletions) <details> <summary>View changed files</summary> 📝 `src/cloud/components/molecules/DocListItem.tsx` (+77 -2) 📝 `src/cloud/components/molecules/DocShare.tsx` (+208 -377) ➖ `src/cloud/components/molecules/DocTagsList/DocTagsListItem.tsx` (+0 -49) ➖ `src/cloud/components/molecules/DocTagsList/index.tsx` (+0 -111) ➖ `src/cloud/components/molecules/DocTagsList/styled.ts` (+0 -132) 📝 `src/cloud/components/molecules/Editor/index.tsx` (+109 -123) ➖ `src/cloud/components/molecules/Editor/useDocActionContextMenu.tsx` (+0 -325) 📝 `src/cloud/components/molecules/Timeline/TimelineListItem.tsx` (+76 -2) 📝 `src/cloud/components/organisms/CommentManager.tsx` (+3 -2) 📝 `src/cloud/components/organisms/DocPage/View.tsx` (+13 -31) ➕ `src/cloud/components/organisms/EditorLayout/DocPageHeader.tsx` (+278 -0) ➕ `src/cloud/components/organisms/EditorLayout/NewDocContextMenu.tsx` (+195 -0) ➕ `src/cloud/components/organisms/EditorLayout/index.tsx` (+100 -0) ➕ `src/cloud/components/organisms/EditorLayout/molecules/BackLinksList.tsx` (+85 -0) ➕ `src/cloud/components/organisms/EditorLayout/molecules/ContextMenuClose.tsx` (+71 -0) ➕ `src/cloud/components/organisms/EditorLayout/molecules/DocAssigneeSelect.tsx` (+235 -0) ➕ `src/cloud/components/organisms/EditorLayout/molecules/DocContextMenuActions.tsx` (+363 -0) 📝 `src/cloud/components/organisms/EditorLayout/molecules/DocDueDateSelect.tsx` (+10 -9) ➕ `src/cloud/components/organisms/EditorLayout/molecules/DocPropertyValueButton.tsx` (+129 -0) 📝 `src/cloud/components/organisms/EditorLayout/molecules/DocStatusSelect.tsx` (+9 -7) _...and 24 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:40 +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#1109
No description provided.