feat: Comment resolving (#7115)
This commit is contained in:
20
shared/editor/commands/addMark.ts
Normal file
20
shared/editor/commands/addMark.ts
Normal file
@@ -0,0 +1,20 @@
|
||||
import { Attrs, MarkType } from "prosemirror-model";
|
||||
import { Command } from "prosemirror-state";
|
||||
|
||||
/**
|
||||
* A prosemirror command to create a mark at the current selection.
|
||||
*
|
||||
* @returns A prosemirror command.
|
||||
*/
|
||||
export const addMark =
|
||||
(type: MarkType, attrs?: Attrs | null): Command =>
|
||||
(state, dispatch) => {
|
||||
dispatch?.(
|
||||
state.tr.addMark(
|
||||
state.selection.from,
|
||||
state.selection.to,
|
||||
type.create(attrs)
|
||||
)
|
||||
);
|
||||
return true;
|
||||
};
|
||||
@@ -1,6 +1,11 @@
|
||||
import { Command, TextSelection } from "prosemirror-state";
|
||||
|
||||
const collapseSelection = (): Command => (state, dispatch) => {
|
||||
/**
|
||||
* A prosemirror command to collapse the current selection to a cursor at the start of the selection.
|
||||
*
|
||||
* @returns A prosemirror command.
|
||||
*/
|
||||
export const collapseSelection = (): Command => (state, dispatch) => {
|
||||
dispatch?.(
|
||||
state.tr.setSelection(
|
||||
TextSelection.create(state.doc, state.tr.selection.from)
|
||||
@@ -8,5 +13,3 @@ const collapseSelection = (): Command => (state, dispatch) => {
|
||||
);
|
||||
return true;
|
||||
};
|
||||
|
||||
export default collapseSelection;
|
||||
|
||||
@@ -14,7 +14,7 @@ import {
|
||||
import { chainTransactions } from "../lib/chainTransactions";
|
||||
import { getCellsInColumn, isHeaderEnabled } from "../queries/table";
|
||||
import { TableLayout } from "../types";
|
||||
import collapseSelection from "./collapseSelection";
|
||||
import { collapseSelection } from "./collapseSelection";
|
||||
|
||||
export function createTable({
|
||||
rowsCount,
|
||||
|
||||
@@ -857,14 +857,16 @@ h6 {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.comment-marker {
|
||||
border-bottom: 2px solid ${props.theme.commentMarkBackground};
|
||||
transition: background 100ms ease-in-out;
|
||||
border-radius: 2px;
|
||||
.${EditorStyleHelper.comment} {
|
||||
&:not([data-resolved]) {
|
||||
border-bottom: 2px solid ${props.theme.commentMarkBackground};
|
||||
transition: background 100ms ease-in-out;
|
||||
border-radius: 2px;
|
||||
|
||||
&:hover {
|
||||
${props.readOnly ? "cursor: var(--pointer);" : ""}
|
||||
background: ${props.theme.commentMarkBackground};
|
||||
&:hover {
|
||||
${props.readOnly ? "cursor: var(--pointer);" : ""}
|
||||
background: ${props.theme.commentMarkBackground};
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1768,7 +1770,7 @@ del[data-operation-index] {
|
||||
page-break-inside: avoid;
|
||||
}
|
||||
|
||||
.comment-marker {
|
||||
.${EditorStyleHelper.comment} {
|
||||
border: 0;
|
||||
background: none;
|
||||
}
|
||||
|
||||
@@ -2,9 +2,11 @@ import { toggleMark } from "prosemirror-commands";
|
||||
import { MarkSpec, MarkType, Schema, Mark as PMMark } from "prosemirror-model";
|
||||
import { Command, Plugin } from "prosemirror-state";
|
||||
import { v4 as uuidv4 } from "uuid";
|
||||
import collapseSelection from "../commands/collapseSelection";
|
||||
import { addMark } from "../commands/addMark";
|
||||
import { collapseSelection } from "../commands/collapseSelection";
|
||||
import { chainTransactions } from "../lib/chainTransactions";
|
||||
import { isMarkActive } from "../queries/isMarkActive";
|
||||
import { EditorStyleHelper } from "../styles/EditorStyleHelper";
|
||||
import Mark from "./Mark";
|
||||
|
||||
export default class Comment extends Mark {
|
||||
@@ -17,11 +19,14 @@ export default class Comment extends Mark {
|
||||
attrs: {
|
||||
id: {},
|
||||
userId: {},
|
||||
resolved: {
|
||||
default: false,
|
||||
},
|
||||
},
|
||||
inclusive: false,
|
||||
parseDOM: [
|
||||
{
|
||||
tag: "span.comment-marker",
|
||||
tag: `.${EditorStyleHelper.comment}`,
|
||||
getAttrs: (dom: HTMLSpanElement) => {
|
||||
// Ignore comment markers from other documents
|
||||
const documentId = dom.getAttribute("data-document-id");
|
||||
@@ -32,6 +37,7 @@ export default class Comment extends Mark {
|
||||
return {
|
||||
id: dom.getAttribute("id")?.replace("comment-", ""),
|
||||
userId: dom.getAttribute("data-user-id"),
|
||||
resolved: !!dom.getAttribute("data-resolved"),
|
||||
};
|
||||
},
|
||||
},
|
||||
@@ -39,8 +45,9 @@ export default class Comment extends Mark {
|
||||
toDOM: (node) => [
|
||||
"span",
|
||||
{
|
||||
class: "comment-marker",
|
||||
class: EditorStyleHelper.comment,
|
||||
id: `comment-${node.attrs.id}`,
|
||||
"data-resolved": node.attrs.resolved ? "true" : undefined,
|
||||
"data-user-id": node.attrs.userId,
|
||||
"data-document-id": this.editor?.props.id,
|
||||
},
|
||||
@@ -56,7 +63,11 @@ export default class Comment extends Mark {
|
||||
return this.options.onCreateCommentMark
|
||||
? {
|
||||
"Mod-Alt-m": (state, dispatch) => {
|
||||
if (isMarkActive(state.schema.marks.comment)(state)) {
|
||||
if (
|
||||
isMarkActive(state.schema.marks.comment, { resolved: false })(
|
||||
state
|
||||
)
|
||||
) {
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -77,12 +88,14 @@ export default class Comment extends Mark {
|
||||
commands({ type }: { type: MarkType; schema: Schema }) {
|
||||
return this.options.onCreateCommentMark
|
||||
? (): Command => (state, dispatch) => {
|
||||
if (isMarkActive(state.schema.marks.comment)(state)) {
|
||||
if (
|
||||
isMarkActive(state.schema.marks.comment, { resolved: false })(state)
|
||||
) {
|
||||
return false;
|
||||
}
|
||||
|
||||
chainTransactions(
|
||||
toggleMark(type, {
|
||||
addMark(type, {
|
||||
id: uuidv4(),
|
||||
userId: this.options.userId,
|
||||
}),
|
||||
@@ -152,13 +165,16 @@ export default class Comment extends Mark {
|
||||
return false;
|
||||
}
|
||||
|
||||
const comment = event.target.closest(".comment-marker");
|
||||
const comment = event.target.closest(
|
||||
`.${EditorStyleHelper.comment}`
|
||||
);
|
||||
if (!comment) {
|
||||
return false;
|
||||
}
|
||||
|
||||
const commentId = comment.id.replace("comment-", "");
|
||||
if (commentId) {
|
||||
const resolved = comment.getAttribute("data-resolved");
|
||||
if (commentId && !resolved) {
|
||||
this.options?.onClickCommentMark?.(commentId);
|
||||
}
|
||||
|
||||
|
||||
@@ -2,6 +2,10 @@
|
||||
* Class names and values used by the editor.
|
||||
*/
|
||||
export class EditorStyleHelper {
|
||||
// Comments
|
||||
|
||||
static readonly comment = "comment-marker";
|
||||
|
||||
// Tables
|
||||
|
||||
/** Table wrapper */
|
||||
@@ -34,6 +38,8 @@ export class EditorStyleHelper {
|
||||
/** Shadow on the left side of the table */
|
||||
static readonly tableShadowLeft = "table-shadow-left";
|
||||
|
||||
// Global
|
||||
|
||||
/** Minimum padding around editor */
|
||||
static readonly padding = 32;
|
||||
|
||||
|
||||
@@ -14,6 +14,10 @@
|
||||
"Delete": "Delete",
|
||||
"Delete collection": "Delete collection",
|
||||
"New template": "New template",
|
||||
"Delete comment": "Delete comment",
|
||||
"Mark as resolved": "Mark as resolved",
|
||||
"Thread resolved": "Thread resolved",
|
||||
"Mark as unresolved": "Mark as unresolved",
|
||||
"Copy ID": "Copy ID",
|
||||
"Clear IndexedDB cache": "Clear IndexedDB cache",
|
||||
"IndexedDB cache cleared": "IndexedDB cache cleared",
|
||||
@@ -469,7 +473,6 @@
|
||||
"Sort in sidebar": "Sort in sidebar",
|
||||
"Alphabetical sort": "Alphabetical sort",
|
||||
"Manual sort": "Manual sort",
|
||||
"Delete comment": "Delete comment",
|
||||
"Comment options": "Comment options",
|
||||
"Document restored": "Document restored",
|
||||
"Document options": "Document options",
|
||||
@@ -551,6 +554,10 @@
|
||||
"Post": "Post",
|
||||
"Cancel": "Cancel",
|
||||
"Upload image": "Upload image",
|
||||
"Resolved comments": "Resolved comments",
|
||||
"View comments": "View comments",
|
||||
"View resolved comments": "View resolved comments",
|
||||
"No resolved comments": "No resolved comments",
|
||||
"No comments yet": "No comments yet",
|
||||
"Error updating comment": "Error updating comment",
|
||||
"Images are still uploading.\nAre you sure you want to discard them?": "Images are still uploading.\nAre you sure you want to discard them?",
|
||||
@@ -700,6 +707,7 @@
|
||||
"Publish document and exit": "Publish document and exit",
|
||||
"Save document": "Save document",
|
||||
"Cancel editing": "Cancel editing",
|
||||
"Collaboration": "Collaboration",
|
||||
"Formatting": "Formatting",
|
||||
"Paragraph": "Paragraph",
|
||||
"Large header": "Large header",
|
||||
|
||||
@@ -13,6 +13,11 @@ export enum StatusFilter {
|
||||
Draft = "draft",
|
||||
}
|
||||
|
||||
export enum CommentStatusFilter {
|
||||
Resolved = "resolved",
|
||||
Unresolved = "unresolved",
|
||||
}
|
||||
|
||||
export enum Client {
|
||||
Web = "web",
|
||||
Desktop = "desktop",
|
||||
|
||||
Reference in New Issue
Block a user