[PR #953] [MERGED] Feat/comments #1033

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

📋 Pull Request Information

Original PR: https://github.com/BoostIO/BoostNote-App/pull/953
Author: @ButteryCrumpet
Created: 5/18/2021
Status: Merged
Merged: 5/21/2021
Merged by: @ButteryCrumpet

Base: masterHead: feat/comments


📝 Commits (10+)

📊 Changes

34 files changed (+2409 additions, -64 deletions)

View changed files

📝 .gitignore (+1 -0)
📝 package-lock.json (+30 -13)
📝 package.json (+1 -1)
src/cloud/api/comments/comment.ts (+73 -0)
src/cloud/api/comments/thread.ts (+118 -0)
📝 src/cloud/components/Router.tsx (+5 -2)
📝 src/cloud/components/atoms/MarkdownView/index.tsx (+193 -7)
📝 src/cloud/components/atoms/MarkdownView/styles.ts (+11 -11)
src/cloud/components/atoms/SelectionTooltip.tsx (+66 -0)
src/cloud/components/molecules/CommentInput.tsx (+100 -0)
src/cloud/components/molecules/CommentList.tsx (+148 -0)
📝 src/cloud/components/molecules/Editor/index.tsx (+156 -25)
src/cloud/components/molecules/ThreadActionButton.tsx (+65 -0)
src/cloud/components/molecules/ThreadItem.tsx (+135 -0)
src/cloud/components/organisms/CommentManager.tsx (+304 -0)
📝 src/cloud/components/organisms/DocPage/View.tsx (+3 -1)
📝 src/cloud/components/organisms/EventSource.tsx (+11 -0)
📝 src/cloud/components/organisms/Topbar/Controls/ControlsContextMenu/DocContextMenu/DynamicExports.tsx (+1 -1)
📝 src/cloud/components/organisms/Topbar/Controls/ControlsContextMenu/DocContextMenu/index.tsx (+3 -1)
📝 src/cloud/interfaces/db/appEvents.ts (+6 -0)

...and 14 more files

📄 Description

image
image
image
image


🔄 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/953 **Author:** [@ButteryCrumpet](https://github.com/ButteryCrumpet) **Created:** 5/18/2021 **Status:** ✅ Merged **Merged:** 5/21/2021 **Merged by:** [@ButteryCrumpet](https://github.com/ButteryCrumpet) **Base:** `master` ← **Head:** `feat/comments` --- ### 📝 Commits (10+) - [`66f3f02`](https://github.com/BoostIO/BoostNote-App/commit/66f3f02d1b97769995a282933bf33a74b6c06abd) selection tooltip - [`fafd01d`](https://github.com/BoostIO/BoostNote-App/commit/fafd01dbef3421a59bed21700aa0b3178b72947e) selection tooltip: update position on resize - [`669ddc2`](https://github.com/BoostIO/BoostNote-App/commit/669ddc2505342adf73d4a803b1aa1a88b4d2aa77) only handle Range selections - [`acaabbe`](https://github.com/BoostIO/BoostNote-App/commit/acaabbe25065058ca45de7c7f300addc2e05a746) menu prop and selection context - [`a3cdbd7`](https://github.com/BoostIO/BoostNote-App/commit/a3cdbd776ef50d098b0c8d9210a1b86d70287a96) tab context menu - [`fc6ed77`](https://github.com/BoostIO/BoostNote-App/commit/fc6ed77aa751bb91884cc3be686c39b7a5552340) comments api - [`76280bf`](https://github.com/BoostIO/BoostNote-App/commit/76280bf492972502ce4be37b6379a7fae24613b5) comments hook - [`39f1bbd`](https://github.com/BoostIO/BoostNote-App/commit/39f1bbdf280bdf919edc75f18158004e82b49a08) styled comment list - [`e35727e`](https://github.com/BoostIO/BoostNote-App/commit/e35727ea60f7995d0f5999c2e06b68ba8d9494b1) comment components - [`f9ce95a`](https://github.com/BoostIO/BoostNote-App/commit/f9ce95a8ba106fad32fd116bf39caf48977fd6f6) store fixes ### 📊 Changes **34 files changed** (+2409 additions, -64 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+1 -0) 📝 `package-lock.json` (+30 -13) 📝 `package.json` (+1 -1) ➕ `src/cloud/api/comments/comment.ts` (+73 -0) ➕ `src/cloud/api/comments/thread.ts` (+118 -0) 📝 `src/cloud/components/Router.tsx` (+5 -2) 📝 `src/cloud/components/atoms/MarkdownView/index.tsx` (+193 -7) 📝 `src/cloud/components/atoms/MarkdownView/styles.ts` (+11 -11) ➕ `src/cloud/components/atoms/SelectionTooltip.tsx` (+66 -0) ➕ `src/cloud/components/molecules/CommentInput.tsx` (+100 -0) ➕ `src/cloud/components/molecules/CommentList.tsx` (+148 -0) 📝 `src/cloud/components/molecules/Editor/index.tsx` (+156 -25) ➕ `src/cloud/components/molecules/ThreadActionButton.tsx` (+65 -0) ➕ `src/cloud/components/molecules/ThreadItem.tsx` (+135 -0) ➕ `src/cloud/components/organisms/CommentManager.tsx` (+304 -0) 📝 `src/cloud/components/organisms/DocPage/View.tsx` (+3 -1) 📝 `src/cloud/components/organisms/EventSource.tsx` (+11 -0) 📝 `src/cloud/components/organisms/Topbar/Controls/ControlsContextMenu/DocContextMenu/DynamicExports.tsx` (+1 -1) 📝 `src/cloud/components/organisms/Topbar/Controls/ControlsContextMenu/DocContextMenu/index.tsx` (+3 -1) 📝 `src/cloud/interfaces/db/appEvents.ts` (+6 -0) _...and 14 more files_ </details> ### 📄 Description ![image](https://user-images.githubusercontent.com/19530989/118593209-426f1480-b7e2-11eb-9e0e-51a8862cc34a.png) ![image](https://user-images.githubusercontent.com/19530989/118593268-5d418900-b7e2-11eb-8e03-5965b92d0ff5.png) ![image](https://user-images.githubusercontent.com/19530989/118593444-a85b9c00-b7e2-11eb-91c1-2b64b15ac117.png) ![image](https://user-images.githubusercontent.com/19530989/118593656-07211580-b7e3-11eb-8c30-fb8e501d03d3.png) --- <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:20 +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#1033
No description provided.