@univerjs/sheets-thread-comment 1.0.0-insiders.20260809-70eefdd → 1.0.0-rc.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +176 -0
- package/README.md +0 -1
- package/lib/cjs/facade.js +104 -39
- package/lib/cjs/index.js +38 -18
- package/lib/es/facade.js +80 -42
- package/lib/es/index.js +34 -21
- package/lib/facade.js +80 -42
- package/lib/index.js +34 -21
- package/lib/types/controllers/sheets-thread-comment-resource.controller.d.ts +7 -5
- package/lib/types/facade/f-range.d.ts +24 -5
- package/lib/types/index.d.ts +2 -0
- package/lib/types/types/const.d.ts +1 -0
- package/lib/umd/facade.js +1 -1
- package/lib/umd/index.js +1 -1
- package/package.json +7 -7
package/LICENSE
ADDED
|
@@ -0,0 +1,176 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
package/README.md
CHANGED
package/lib/cjs/facade.js
CHANGED
|
@@ -1,8 +1,37 @@
|
|
|
1
1
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
2
|
+
//#region \0rolldown/runtime.js
|
|
3
|
+
var __create = Object.create;
|
|
4
|
+
var __defProp = Object.defineProperty;
|
|
5
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
6
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
7
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
8
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
+
for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
|
|
12
|
+
key = keys[i];
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except) {
|
|
14
|
+
__defProp(to, key, {
|
|
15
|
+
get: ((k) => from[k]).bind(null, key),
|
|
16
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
17
|
+
});
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
return to;
|
|
22
|
+
};
|
|
23
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
|
|
24
|
+
value: mod,
|
|
25
|
+
enumerable: true
|
|
26
|
+
}) : target, mod));
|
|
27
|
+
|
|
28
|
+
//#endregion
|
|
2
29
|
let _univerjs_core = require("@univerjs/core");
|
|
30
|
+
_univerjs_core = __toESM(_univerjs_core);
|
|
3
31
|
let _univerjs_sheets_thread_comment = require("@univerjs/sheets-thread-comment");
|
|
4
32
|
let _univerjs_sheets_facade = require("@univerjs/sheets/facade");
|
|
5
33
|
let _univerjs_thread_comment = require("@univerjs/thread-comment");
|
|
34
|
+
_univerjs_thread_comment = __toESM(_univerjs_thread_comment);
|
|
6
35
|
let _univerjs_engine_formula = require("@univerjs/engine-formula");
|
|
7
36
|
let _univerjs_core_facade = require("@univerjs/core/facade");
|
|
8
37
|
|
|
@@ -606,69 +635,98 @@ FThreadComment = _FThreadComment = __decorate([
|
|
|
606
635
|
//#endregion
|
|
607
636
|
//#region src/facade/f-range.ts
|
|
608
637
|
/**
|
|
638
|
+
* Copyright 2023-present DreamNum Co., Ltd.
|
|
639
|
+
*
|
|
640
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
641
|
+
* you may not use this file except in compliance with the License.
|
|
642
|
+
* You may obtain a copy of the License at
|
|
643
|
+
*
|
|
644
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
645
|
+
*
|
|
646
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
647
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
648
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
649
|
+
* See the License for the specific language governing permissions and
|
|
650
|
+
* limitations under the License.
|
|
651
|
+
*/
|
|
652
|
+
function firstNonEmpty(...values) {
|
|
653
|
+
for (const value of values) if (value) return value;
|
|
654
|
+
return _univerjs_core.generateRandomId();
|
|
655
|
+
}
|
|
656
|
+
/**
|
|
609
657
|
* @ignore
|
|
610
658
|
*/
|
|
611
659
|
var FRangeSheetsThreadCommentMixin = class extends _univerjs_sheets_facade.FRange {
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
if (comment) return this._injector.createInstance(FThreadComment, comment);
|
|
620
|
-
return null;
|
|
660
|
+
_initialize(injector) {
|
|
661
|
+
let dependencies;
|
|
662
|
+
Object.defineProperty(this, "_dependencies", { get: () => dependencies ??= {
|
|
663
|
+
commandService: injector.get(_univerjs_core.ICommandService),
|
|
664
|
+
model: injector.get(_univerjs_sheets_thread_comment.SheetsThreadCommentModel),
|
|
665
|
+
userManagerService: injector.get(_univerjs_core.UserManagerService)
|
|
666
|
+
} });
|
|
621
667
|
}
|
|
622
|
-
|
|
623
|
-
const
|
|
668
|
+
_getCommentDataInRange() {
|
|
669
|
+
const model = this._dependencies.model;
|
|
624
670
|
const unitId = this._workbook.getUnitId();
|
|
625
671
|
const sheetId = this._worksheet.getSheetId();
|
|
626
672
|
const comments = [];
|
|
627
673
|
_univerjs_core.Range.foreach(this._range, (row, col) => {
|
|
628
|
-
const commentId =
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
if (comment) comments.push(this._injector.createInstance(FThreadComment, comment));
|
|
632
|
-
}
|
|
674
|
+
const commentId = model.getByLocation(unitId, sheetId, row, col);
|
|
675
|
+
const comment = commentId ? model.getComment(unitId, sheetId, commentId) : null;
|
|
676
|
+
if (comment) comments.push(comment);
|
|
633
677
|
});
|
|
634
678
|
return comments;
|
|
635
679
|
}
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
const
|
|
639
|
-
const
|
|
640
|
-
const
|
|
641
|
-
|
|
680
|
+
_getStartCellCommentData() {
|
|
681
|
+
const model = this._dependencies.model;
|
|
682
|
+
const unitId = this._workbook.getUnitId();
|
|
683
|
+
const sheetId = this._worksheet.getSheetId();
|
|
684
|
+
const commentId = model.getByLocation(unitId, sheetId, this._range.startRow, this._range.startColumn);
|
|
685
|
+
return commentId ? model.getComment(unitId, sheetId, commentId) ?? null : null;
|
|
686
|
+
}
|
|
687
|
+
getComment() {
|
|
688
|
+
const comment = this._getStartCellCommentData();
|
|
689
|
+
return comment ? this._injector.createInstance(FThreadComment, comment) : null;
|
|
690
|
+
}
|
|
691
|
+
getComments() {
|
|
692
|
+
return this._getCommentDataInRange().map((comment) => this._injector.createInstance(FThreadComment, comment));
|
|
693
|
+
}
|
|
694
|
+
addCommentAsync(content, options = {}) {
|
|
695
|
+
const { commandService, userManagerService } = this._dependencies;
|
|
696
|
+
const currentComment = this._getStartCellCommentData();
|
|
642
697
|
const unitId = this._workbook.getUnitId();
|
|
643
698
|
const sheetId = this._worksheet.getSheetId();
|
|
644
699
|
const refStr = `${_univerjs_core.Tools.chatAtABC(this._range.startColumn)}${this._range.startRow + 1}`;
|
|
645
|
-
const currentUser =
|
|
646
|
-
|
|
647
|
-
|
|
700
|
+
const currentUser = userManagerService.getCurrentUser();
|
|
701
|
+
let commentData = null;
|
|
702
|
+
let text;
|
|
703
|
+
if (content instanceof FTheadCommentBuilder) {
|
|
704
|
+
commentData = content.build();
|
|
705
|
+
text = commentData.text;
|
|
706
|
+
} else text = _univerjs_thread_comment.normalizeThreadCommentContent(content);
|
|
707
|
+
return commandService.executeCommand(_univerjs_thread_comment.AddCommentCommand.id, {
|
|
648
708
|
unitId,
|
|
649
709
|
subUnitId: sheetId,
|
|
650
710
|
comment: {
|
|
651
|
-
text
|
|
652
|
-
dT: commentData.dT ||
|
|
653
|
-
attachments: [],
|
|
654
|
-
id:
|
|
711
|
+
text,
|
|
712
|
+
dT: options.dateTime ? _univerjs_thread_comment.getDT(options.dateTime) : (commentData === null || commentData === void 0 ? void 0 : commentData.dT) || _univerjs_thread_comment.getDT(),
|
|
713
|
+
attachments: options.attachments ?? (commentData === null || commentData === void 0 ? void 0 : commentData.attachments) ?? [],
|
|
714
|
+
id: firstNonEmpty(options.id, commentData === null || commentData === void 0 ? void 0 : commentData.id),
|
|
655
715
|
ref: refStr,
|
|
656
|
-
personId:
|
|
716
|
+
personId: firstNonEmpty(options.personId, commentData === null || commentData === void 0 ? void 0 : commentData.personId, currentUser.userID),
|
|
657
717
|
parentId: currentComment === null || currentComment === void 0 ? void 0 : currentComment.id,
|
|
658
718
|
unitId,
|
|
659
719
|
subUnitId: sheetId,
|
|
660
|
-
threadId: (currentComment === null || currentComment === void 0 ? void 0 : currentComment.threadId
|
|
720
|
+
threadId: firstNonEmpty(currentComment === null || currentComment === void 0 ? void 0 : currentComment.threadId, options.threadId, commentData === null || commentData === void 0 ? void 0 : commentData.threadId)
|
|
661
721
|
}
|
|
662
722
|
});
|
|
663
723
|
}
|
|
664
724
|
clearCommentAsync() {
|
|
665
|
-
|
|
666
|
-
const
|
|
667
|
-
const currentComment = (_this$getComment2 = this.getComment()) === null || _this$getComment2 === void 0 ? void 0 : _this$getComment2.getCommentData();
|
|
668
|
-
const commentService = injector.get(_univerjs_core.ICommandService);
|
|
725
|
+
const { commandService } = this._dependencies;
|
|
726
|
+
const currentComment = this._getStartCellCommentData();
|
|
669
727
|
const unitId = this._workbook.getUnitId();
|
|
670
728
|
const sheetId = this._worksheet.getSheetId();
|
|
671
|
-
if (currentComment) return
|
|
729
|
+
if (currentComment) return commandService.executeCommand(_univerjs_thread_comment.DeleteCommentTreeCommand.id, {
|
|
672
730
|
unitId,
|
|
673
731
|
subUnitId: sheetId,
|
|
674
732
|
threadId: currentComment.threadId,
|
|
@@ -676,9 +734,16 @@ var FRangeSheetsThreadCommentMixin = class extends _univerjs_sheets_facade.FRang
|
|
|
676
734
|
});
|
|
677
735
|
return Promise.resolve(true);
|
|
678
736
|
}
|
|
679
|
-
clearCommentsAsync() {
|
|
680
|
-
const
|
|
681
|
-
|
|
737
|
+
async clearCommentsAsync() {
|
|
738
|
+
const { commandService } = this._dependencies;
|
|
739
|
+
const unitId = this._workbook.getUnitId();
|
|
740
|
+
const subUnitId = this._worksheet.getSheetId();
|
|
741
|
+
return (await Promise.all(this._getCommentDataInRange().map((comment) => commandService.executeCommand(_univerjs_thread_comment.DeleteCommentTreeCommand.id, {
|
|
742
|
+
unitId,
|
|
743
|
+
subUnitId,
|
|
744
|
+
threadId: comment.threadId,
|
|
745
|
+
commentId: comment.id
|
|
746
|
+
})))).every(Boolean);
|
|
682
747
|
}
|
|
683
748
|
};
|
|
684
749
|
_univerjs_sheets_facade.FRange.extend(FRangeSheetsThreadCommentMixin);
|
package/lib/cjs/index.js
CHANGED
|
@@ -137,6 +137,7 @@ let SheetsThreadCommentModel = class SheetsThreadCommentModel extends _univerjs_
|
|
|
137
137
|
}
|
|
138
138
|
}
|
|
139
139
|
_addComment(unitId, subUnitId, comment) {
|
|
140
|
+
if ((0, _univerjs_thread_comment.deserializeThreadCommentAnchor)(comment.ref)) return;
|
|
140
141
|
const location = (0, _univerjs_engine_formula.singleReferenceToGrid)(comment.ref);
|
|
141
142
|
const parentId = comment.parentId;
|
|
142
143
|
const { row, column } = location;
|
|
@@ -171,6 +172,7 @@ let SheetsThreadCommentModel = class SheetsThreadCommentModel extends _univerjs_
|
|
|
171
172
|
break;
|
|
172
173
|
case "delete": {
|
|
173
174
|
const { isRoot, comment } = update.payload;
|
|
175
|
+
if ((0, _univerjs_thread_comment.deserializeThreadCommentAnchor)(comment.ref)) return;
|
|
174
176
|
if (isRoot) {
|
|
175
177
|
const location = (0, _univerjs_engine_formula.singleReferenceToGrid)(comment.ref);
|
|
176
178
|
const { row, column } = location;
|
|
@@ -186,6 +188,7 @@ let SheetsThreadCommentModel = class SheetsThreadCommentModel extends _univerjs_
|
|
|
186
188
|
const { commentId } = update.payload;
|
|
187
189
|
const comment = this._threadCommentModel.getComment(unitId, subUnitId, commentId);
|
|
188
190
|
if (!comment) return;
|
|
191
|
+
if ((0, _univerjs_thread_comment.deserializeThreadCommentAnchor)(comment.ref)) return;
|
|
189
192
|
const location = (0, _univerjs_engine_formula.singleReferenceToGrid)(comment.ref);
|
|
190
193
|
this._commentUpdate$.next({
|
|
191
194
|
...update,
|
|
@@ -194,6 +197,7 @@ let SheetsThreadCommentModel = class SheetsThreadCommentModel extends _univerjs_
|
|
|
194
197
|
break;
|
|
195
198
|
}
|
|
196
199
|
case "updateRef": {
|
|
200
|
+
if ((0, _univerjs_thread_comment.deserializeThreadCommentAnchor)(update.payload.ref)) return;
|
|
197
201
|
const location = (0, _univerjs_engine_formula.singleReferenceToGrid)(update.payload.ref);
|
|
198
202
|
const { commentId } = update.payload;
|
|
199
203
|
const currentLoc = locationMap.get(commentId);
|
|
@@ -229,8 +233,9 @@ let SheetsThreadCommentModel = class SheetsThreadCommentModel extends _univerjs_
|
|
|
229
233
|
}));
|
|
230
234
|
}
|
|
231
235
|
getByLocation(unitId, subUnitId, row, column) {
|
|
232
|
-
var _activeComments
|
|
233
|
-
|
|
236
|
+
var _activeComments;
|
|
237
|
+
const activeComments = this.getAllByLocation(unitId, subUnitId, row, column).filter((comment) => !comment.resolved);
|
|
238
|
+
return (_activeComments = activeComments[activeComments.length - 1]) === null || _activeComments === void 0 ? void 0 : _activeComments.id;
|
|
234
239
|
}
|
|
235
240
|
getAllByLocation(unitId, subUnitId, row, column) {
|
|
236
241
|
const current = this._ensureCommentMatrix(unitId, subUnitId).getValue(row, column);
|
|
@@ -384,6 +389,7 @@ let SheetsThreadCommentRefRangeController = class SheetsThreadCommentRefRangeCon
|
|
|
384
389
|
const datas = this._threadCommentModel.getAll();
|
|
385
390
|
for (const data of datas) for (const thread of data.threads) {
|
|
386
391
|
const { unitId, subUnitId, root } = thread;
|
|
392
|
+
if ((0, _univerjs_thread_comment.deserializeThreadCommentAnchor)(root.ref)) continue;
|
|
387
393
|
const pos = (0, _univerjs_engine_formula.singleReferenceToGrid)(root.ref);
|
|
388
394
|
const sheetComment = {
|
|
389
395
|
...root,
|
|
@@ -447,12 +453,7 @@ SheetsThreadCommentRefRangeController = __decorate([
|
|
|
447
453
|
], SheetsThreadCommentRefRangeController);
|
|
448
454
|
|
|
449
455
|
//#endregion
|
|
450
|
-
//#region
|
|
451
|
-
var name = "@univerjs/sheets-thread-comment";
|
|
452
|
-
var version = "1.0.0-insiders.20260809-70eefdd";
|
|
453
|
-
|
|
454
|
-
//#endregion
|
|
455
|
-
//#region src/config/config.ts
|
|
456
|
+
//#region src/types/const.ts
|
|
456
457
|
/**
|
|
457
458
|
* Copyright 2023-present DreamNum Co., Ltd.
|
|
458
459
|
*
|
|
@@ -468,21 +469,25 @@ var version = "1.0.0-insiders.20260809-70eefdd";
|
|
|
468
469
|
* See the License for the specific language governing permissions and
|
|
469
470
|
* limitations under the License.
|
|
470
471
|
*/
|
|
471
|
-
const
|
|
472
|
-
const
|
|
473
|
-
const defaultPluginConfig = {};
|
|
472
|
+
const SHEET_THREAD_COMMENT_BASE = "SHEET_THREAD_COMMENT_BASE_PLUGIN";
|
|
473
|
+
const SHEET_UNIVER_THREAD_COMMENT_PLUGIN = `SHEET_${_univerjs_thread_comment.TC_PLUGIN_NAME}`;
|
|
474
474
|
|
|
475
475
|
//#endregion
|
|
476
476
|
//#region src/controllers/sheets-thread-comment-resource.controller.ts
|
|
477
477
|
let SheetsThreadCommentResourceController = class SheetsThreadCommentResourceController extends _univerjs_core.Disposable {
|
|
478
|
-
constructor(_univerInstanceService, _sheetInterceptorService, _threadCommentModel, _threadCommentDataSourceService) {
|
|
478
|
+
constructor(_resourceManagerService, _univerInstanceService, _sheetInterceptorService, _threadCommentModel, _threadCommentDataSourceService) {
|
|
479
479
|
super();
|
|
480
|
+
this._resourceManagerService = _resourceManagerService;
|
|
480
481
|
this._univerInstanceService = _univerInstanceService;
|
|
481
482
|
this._sheetInterceptorService = _sheetInterceptorService;
|
|
482
483
|
this._threadCommentModel = _threadCommentModel;
|
|
483
484
|
this._threadCommentDataSourceService = _threadCommentDataSourceService;
|
|
485
|
+
this._initSnapshot();
|
|
484
486
|
this._initSheetChange();
|
|
485
487
|
}
|
|
488
|
+
_initSnapshot() {
|
|
489
|
+
this.disposeWithMe(this._resourceManagerService.registerPluginResource((0, _univerjs_thread_comment.createThreadCommentResourceHook)(this._threadCommentModel, this._threadCommentDataSourceService, SHEET_UNIVER_THREAD_COMMENT_PLUGIN, [_univerjs_core.UniverInstanceType.UNIVER_SHEET])));
|
|
490
|
+
}
|
|
486
491
|
_initSheetChange() {
|
|
487
492
|
this.disposeWithMe(this._sheetInterceptorService.interceptCommand({ getMutations: (commandInfo) => {
|
|
488
493
|
if (commandInfo.id === _univerjs_sheets.RemoveSheetCommand.id) {
|
|
@@ -578,14 +583,20 @@ let SheetsThreadCommentResourceController = class SheetsThreadCommentResourceCon
|
|
|
578
583
|
}
|
|
579
584
|
};
|
|
580
585
|
SheetsThreadCommentResourceController = __decorate([
|
|
581
|
-
__decorateParam(0, _univerjs_core.
|
|
582
|
-
__decorateParam(1,
|
|
583
|
-
__decorateParam(2, (0, _univerjs_core.Inject)(
|
|
584
|
-
__decorateParam(3, _univerjs_thread_comment.
|
|
586
|
+
__decorateParam(0, _univerjs_core.IResourceManagerService),
|
|
587
|
+
__decorateParam(1, _univerjs_core.IUniverInstanceService),
|
|
588
|
+
__decorateParam(2, (0, _univerjs_core.Inject)(_univerjs_sheets.SheetInterceptorService)),
|
|
589
|
+
__decorateParam(3, (0, _univerjs_core.Inject)(_univerjs_thread_comment.ThreadCommentModel)),
|
|
590
|
+
__decorateParam(4, _univerjs_thread_comment.IThreadCommentDataSourceService)
|
|
585
591
|
], SheetsThreadCommentResourceController);
|
|
586
592
|
|
|
587
593
|
//#endregion
|
|
588
|
-
//#region
|
|
594
|
+
//#region package.json
|
|
595
|
+
var name = "@univerjs/sheets-thread-comment";
|
|
596
|
+
var version = "1.0.0-rc.0";
|
|
597
|
+
|
|
598
|
+
//#endregion
|
|
599
|
+
//#region src/config/config.ts
|
|
589
600
|
/**
|
|
590
601
|
* Copyright 2023-present DreamNum Co., Ltd.
|
|
591
602
|
*
|
|
@@ -601,7 +612,9 @@ SheetsThreadCommentResourceController = __decorate([
|
|
|
601
612
|
* See the License for the specific language governing permissions and
|
|
602
613
|
* limitations under the License.
|
|
603
614
|
*/
|
|
604
|
-
const
|
|
615
|
+
const SHEETS_THREAD_COMMENT_PLUGIN_CONFIG_KEY = "sheets-thread-comment.config";
|
|
616
|
+
const configSymbol = Symbol(SHEETS_THREAD_COMMENT_PLUGIN_CONFIG_KEY);
|
|
617
|
+
const defaultPluginConfig = {};
|
|
605
618
|
|
|
606
619
|
//#endregion
|
|
607
620
|
//#region src/plugin.ts
|
|
@@ -638,6 +651,7 @@ UniverSheetsThreadCommentPlugin = __decorate([
|
|
|
638
651
|
], UniverSheetsThreadCommentPlugin);
|
|
639
652
|
|
|
640
653
|
//#endregion
|
|
654
|
+
exports.SHEET_UNIVER_THREAD_COMMENT_PLUGIN = SHEET_UNIVER_THREAD_COMMENT_PLUGIN;
|
|
641
655
|
Object.defineProperty(exports, 'SheetsThreadCommentModel', {
|
|
642
656
|
enumerable: true,
|
|
643
657
|
get: function () {
|
|
@@ -650,6 +664,12 @@ Object.defineProperty(exports, 'SheetsThreadCommentRefRangeController', {
|
|
|
650
664
|
return SheetsThreadCommentRefRangeController;
|
|
651
665
|
}
|
|
652
666
|
});
|
|
667
|
+
Object.defineProperty(exports, 'SheetsThreadCommentResourceController', {
|
|
668
|
+
enumerable: true,
|
|
669
|
+
get: function () {
|
|
670
|
+
return SheetsThreadCommentResourceController;
|
|
671
|
+
}
|
|
672
|
+
});
|
|
653
673
|
Object.defineProperty(exports, 'UniverSheetsThreadCommentPlugin', {
|
|
654
674
|
enumerable: true,
|
|
655
675
|
get: function () {
|