@manuscripts/track-changes-plugin 0.0.1
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 +201 -0
- package/README.md +168 -0
- package/dist/ChangeSet.d.ts +73 -0
- package/dist/actions.d.ts +53 -0
- package/dist/commands.d.ts +51 -0
- package/dist/index.d.ts +22 -0
- package/dist/index.es.js +1539 -0
- package/dist/index.js +1553 -0
- package/dist/plugin.d.ts +25 -0
- package/dist/track/applyChanges.d.ts +28 -0
- package/dist/track/deleteNode.d.ts +27 -0
- package/dist/track/findChanges.d.ts +27 -0
- package/dist/track/fixInconsistentChanges.d.ts +29 -0
- package/dist/track/mergeNode.d.ts +25 -0
- package/dist/track/node-utils.d.ts +34 -0
- package/dist/track/steps/deleteAndMergeSplitNodes.d.ts +53 -0
- package/dist/track/steps/mergeTrackedMarks.d.ts +29 -0
- package/dist/track/steps/setFragmentAsInserted.d.ts +18 -0
- package/dist/track/steps/track-utils.d.ts +19 -0
- package/dist/track/steps/trackReplaceAroundStep.d.ts +4 -0
- package/dist/track/steps/trackReplaceStep.d.ts +4 -0
- package/dist/track/trackTransaction.d.ts +17 -0
- package/dist/track/updateChangeAttrs.d.ts +21 -0
- package/dist/types/change.d.ts +65 -0
- package/dist/types/editor.d.ts +23 -0
- package/dist/types/pm.d.ts +27 -0
- package/dist/types/track.d.ts +41 -0
- package/dist/utils/logger.d.ts +27 -0
- package/dist/utils/uuidv4.d.ts +16 -0
- package/package.json +68 -0
- package/src/styles.css +18 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
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
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "{}"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright [2021] [Atypon Systems LLC]
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
package/README.md
ADDED
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
# @manuscripts/track-changes-plugin
|
|
2
|
+
|
|
3
|
+
This is a ProseMirror plugin that tracks inserts/deletes to nodes and text.
|
|
4
|
+
|
|
5
|
+
It uses node attributes inside `dataTracked` object to persist changes for both block and inline nodes and `tracked_insert` & `tracked_delete` marks for text. An example implementation can be found inside the `examples-packages/schema` package. In addition to `dataTracked`, `tracked_insert` and `tracked_delete` code_blocks marks were altered to include track marks: `marks: 'tracked_insert tracked_delete'`. If you have multiple versions of prosemirror packages, ensure that track-changes' dependencies `prosemirror-model` and `prosemirror-transform` are aliased/deduped to same instance. `prosemirror-state` and `prosemirror-view` are only used at type level.
|
|
6
|
+
|
|
7
|
+
This library replaces a previous implementation based on commits as in https://prosemirror.net/examples/track/ which proved unreliable due to non-idempotent nature of transactions when rebased as well as the inability to transition to Yjs syncing. `prosemirror-changeset` was also trialed but it had similar problems and was deemed hard to extend to include tracking formatting changes.
|
|
8
|
+
|
|
9
|
+
On a more detailed level, this plugin checks every transaction in an `appendTransaction` hook for any modifications to the document (`tr.docChanged`). If they exist, it prevents that transaction from happening by inverting it and reapplying it with deletions and insertions wrapped in track attributes/marks. It can be bybassed by using `TrackActions.skipTrack` action or by setting `skipTrsWithMetas?: (PluginKey | string)[]` option to skip all transactions based on their meta fields, such as `ySyncPluginKey`. This prevents race conditions where appendTransactions keep firing between 2 or more plugins. `prosemirror-history` transactions are skipped by default.
|
|
10
|
+
|
|
11
|
+
On every transaction prevented, ChangeSet is generated which contains all the changes found from the document. `tr.setMeta('origin', trackChangesPluginKey)` is applied to id the transaction. Whole document is currently being iterated which may be somewhat inefficient on larger docs. The changes are stored as a flat list yet due to the hierarchy of the changes, a `changeTree` property is generated which wraps all changes within a node change as its children. This is especially helpful when inserting/deleting nodes that require multiple children that are irrelevant to the user. Currently, they are still shown in the example UI but future enhancements will probably hide them. Granular controls are however at times needed when some of the changes can be considered separate or non-contiguous.
|
|
12
|
+
|
|
13
|
+
Yjs collaboration works without further integration with this attribute & mark based approach. However, due to missing feature-parity with Yjs documents and ProseMirror documents it currently does not behave consistently. Notably, Yjs snapshots do not show node attributes which makes using them for viewing snapshots insufficient. Yjs nodes can't also contain marks but this was circumvented by using node attributes for inline nodes too.
|
|
14
|
+
|
|
15
|
+
The plugin also includes logging using `debug` library that can be toggled with either passing `debug?: boolean` option or executing `enableDebug(enabled: boolean)`.
|
|
16
|
+
|
|
17
|
+
CKEditor and Fiduswriter served as its inspiration but everything was written from scratch. Also, this library is open-sourced under the Apache 2 license.
|
|
18
|
+
|
|
19
|
+
## API
|
|
20
|
+
|
|
21
|
+
As copied from the source.
|
|
22
|
+
|
|
23
|
+
```ts
|
|
24
|
+
export const trackChangesPluginKey = new PluginKey<TrackChangesState, any>('track-changes')
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* The ProseMirror plugin needed to enable track-changes.
|
|
28
|
+
*
|
|
29
|
+
* Accepts an empty options object as an argument but note that this uses 'anonymous:Anonymous' as the default userID.
|
|
30
|
+
* @param opts
|
|
31
|
+
*/
|
|
32
|
+
export const trackChangesPlugin = (opts?: TrackChangesOptions) => Plugin<TrackChangesState, any>
|
|
33
|
+
|
|
34
|
+
export interface TrackChangesOptions {
|
|
35
|
+
debug?: boolean
|
|
36
|
+
userID: string
|
|
37
|
+
skipTrsWithMetas?: (PluginKey | string)[]
|
|
38
|
+
}
|
|
39
|
+
export interface TrackChangesState {
|
|
40
|
+
status: TrackChangesStatus
|
|
41
|
+
userID: string
|
|
42
|
+
changeSet: ChangeSet
|
|
43
|
+
}
|
|
44
|
+
export enum TrackChangesStatus {
|
|
45
|
+
enabled = 'enabled',
|
|
46
|
+
viewSnapshots = 'view-snapshots',
|
|
47
|
+
disabled = 'disabled',
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
export const enableDebug = (enabled: boolean) => void
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
### Commands
|
|
54
|
+
|
|
55
|
+
```ts
|
|
56
|
+
/**
|
|
57
|
+
* Sets track-changes plugin's status to any of: 'enabled' 'disabled' 'viewSnapshots'. Passing undefined will
|
|
58
|
+
* set 'enabled' status to 'disabled' and 'disabled' | 'viewSnapshots' status to 'enabled'.
|
|
59
|
+
*
|
|
60
|
+
* In disabled view, the plugin is completely inactive and changes are not updated anymore.
|
|
61
|
+
* In viewSnasphots state, editor is set uneditable by editable prop that allows only selection changes
|
|
62
|
+
* to the document.
|
|
63
|
+
* @param status
|
|
64
|
+
*/
|
|
65
|
+
export const setTrackingStatus = (status?: TrackChangesStatus) => Command
|
|
66
|
+
|
|
67
|
+
/**
|
|
68
|
+
* Appends a transaction to set change attributes/marks' statuses to any of: 'pending' 'accepted' 'rejected'.
|
|
69
|
+
* @param status
|
|
70
|
+
* @param ids
|
|
71
|
+
*/
|
|
72
|
+
export const setChangeStatuses = (status: CHANGE_STATUS, ids: string[]) => Command
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
* Sets track-changes plugin's userID.
|
|
76
|
+
* @param userID
|
|
77
|
+
*/
|
|
78
|
+
export const setUserID = (userID: string) => Command
|
|
79
|
+
|
|
80
|
+
/**
|
|
81
|
+
* Appends a transaction that applies all 'accepted' and 'rejected' changes to the document.
|
|
82
|
+
*/
|
|
83
|
+
export const applyAndRemoveChanges = () => Command
|
|
84
|
+
|
|
85
|
+
/**
|
|
86
|
+
* Runs `findChanges` to iterate over the document to collect changes into a new ChangeSet.
|
|
87
|
+
*/
|
|
88
|
+
export const refreshChanges = () => Command
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
### Actions
|
|
92
|
+
|
|
93
|
+
Actions are used to access/set transaction meta fields. I don't think you ever would need to use other than `TrackChangesAction.skipTrack` but they are all exposed, nonetheless.
|
|
94
|
+
|
|
95
|
+
```ts
|
|
96
|
+
export type TrackChangesActionParams = {
|
|
97
|
+
[TrackChangesAction.skipTrack]: boolean
|
|
98
|
+
[TrackChangesAction.setUserID]: string
|
|
99
|
+
[TrackChangesAction.setPluginStatus]: TrackChangesStatus
|
|
100
|
+
[TrackChangesAction.setChangeStatuses]: {
|
|
101
|
+
status: CHANGE_STATUS
|
|
102
|
+
ids: string[]
|
|
103
|
+
}
|
|
104
|
+
[TrackChangesAction.updateChanges]: string[]
|
|
105
|
+
[TrackChangesAction.refreshChanges]: boolean
|
|
106
|
+
[TrackChangesAction.applyAndRemoveChanges]: boolean
|
|
107
|
+
}
|
|
108
|
+
/**
|
|
109
|
+
* Gets the value of a meta field, action payload, of a defined track-changes action.
|
|
110
|
+
* @param tr
|
|
111
|
+
* @param action
|
|
112
|
+
*/
|
|
113
|
+
export function getAction<K extends keyof TrackChangesActionParams>(tr: Transaction, action: K) {
|
|
114
|
+
return tr.getMeta(action) as TrackChangesActionParams[K] | undefined
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
/**
|
|
118
|
+
* Use this function to set meta keys to transactions that are consumed by the track-changes-plugin.
|
|
119
|
+
* For example, you can skip tracking of a transaction with setAction(tr, TrackChangesAction.skipTrack, true)
|
|
120
|
+
* @param tr
|
|
121
|
+
* @param action
|
|
122
|
+
* @param payload
|
|
123
|
+
*/
|
|
124
|
+
export function setAction<K extends keyof TrackChangesActionParams>(
|
|
125
|
+
tr: Transaction,
|
|
126
|
+
action: K,
|
|
127
|
+
payload: TrackChangesActionParams[K]
|
|
128
|
+
) {
|
|
129
|
+
return tr.setMeta(action, payload)
|
|
130
|
+
}
|
|
131
|
+
```
|
|
132
|
+
|
|
133
|
+
### Types
|
|
134
|
+
|
|
135
|
+
Can be found in `./src/types` and `./src/ChangeSet.ts`
|
|
136
|
+
|
|
137
|
+
## Feature summary
|
|
138
|
+
|
|
139
|
+
- tracks block, inline, atom node inserts & deletes as `dataTracked` attribute objects
|
|
140
|
+
- tracks text insert & delete as `tracked_insert` and `tracked_delete` marks
|
|
141
|
+
- joins track marks based on `userID`, `operation` and `status`, uses the oldest `createdAt` value as timestamp
|
|
142
|
+
- allows deletes of block nodes & text if operation is `inserted`
|
|
143
|
+
- does not diff operations next to each other eg `(ins aasdf)(del asdf)` is not reduced to `ins a`
|
|
144
|
+
- does not track block node attribute updates
|
|
145
|
+
- does not track mark inserts & deletes
|
|
146
|
+
- does not track ReplaceAroundSteps
|
|
147
|
+
- has probably bugs regarding the edge cases around copy-pasting complicated slices
|
|
148
|
+
|
|
149
|
+
## Roadmap
|
|
150
|
+
|
|
151
|
+
- track block node attribute updates, they currently go undetected
|
|
152
|
+
- test copy-pasting works (slices with varying open endedness)
|
|
153
|
+
- test for race conditions
|
|
154
|
+
- refactor unused code, add better comments
|
|
155
|
+
- more thorough tests
|
|
156
|
+
- track ReplaceAroundSteps
|
|
157
|
+
- track formatting changes, basically handle AddMarkStep and RemoveMarkSteps
|
|
158
|
+
|
|
159
|
+
## Related reading
|
|
160
|
+
|
|
161
|
+
- https://ckeditor.com/docs/ckeditor5/latest/features/collaboration/track-changes/track-changes.html
|
|
162
|
+
- https://ckeditor.com/blog/ckeditor-5-comparing-revision-history-with-track-changes/
|
|
163
|
+
- https://github.com/fiduswriter/fiduswriter
|
|
164
|
+
- https://www.ncbi.nlm.nih.gov/books/NBK159965/
|
|
165
|
+
- https://teemukoivisto.github.io/prosemirror-track-changes-example/
|
|
166
|
+
- https://demos.yjs.dev/prosemirror-versions/prosemirror-versions.html
|
|
167
|
+
- https://slab.com/blog/announcing-delta-for-elixir/
|
|
168
|
+
- https://www.inkandswitch.com/peritext/
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* © 2021 Atypon Systems LLC
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { NodeChange, IncompleteChange, TextChange, TrackedAttrs, TrackedChange } from './types/change';
|
|
17
|
+
/**
|
|
18
|
+
* ChangeSet is a data structure to contain the tracked changes with some utility methods and computed
|
|
19
|
+
* values to allow easier operability.
|
|
20
|
+
*/
|
|
21
|
+
export declare class ChangeSet {
|
|
22
|
+
#private;
|
|
23
|
+
constructor(changes?: (TrackedChange | IncompleteChange)[]);
|
|
24
|
+
/**
|
|
25
|
+
* List of all the valid TrackedChanges. This prevents for example changes with duplicate ids being shown
|
|
26
|
+
* in the UI, causing errors.
|
|
27
|
+
*/
|
|
28
|
+
get changes(): TrackedChange[];
|
|
29
|
+
get invalidChanges(): (TrackedChange | IncompleteChange)[];
|
|
30
|
+
/**
|
|
31
|
+
* List of 1-level nested changes where the top-most node change contains all the changes within its start
|
|
32
|
+
* and end position. This is useful for showing the changes as groups in the UI.
|
|
33
|
+
*/
|
|
34
|
+
get changeTree(): TrackedChange[];
|
|
35
|
+
get pending(): TrackedChange[];
|
|
36
|
+
get accepted(): TrackedChange[];
|
|
37
|
+
get rejected(): TrackedChange[];
|
|
38
|
+
get textChanges(): TrackedChange[];
|
|
39
|
+
get nodeChanges(): TrackedChange[];
|
|
40
|
+
get isEmpty(): boolean;
|
|
41
|
+
/**
|
|
42
|
+
* Used to determine whether `fixInconsistentChanges` has to be executed to replace eg duplicate ids or
|
|
43
|
+
* changes that are missing attributes.
|
|
44
|
+
*/
|
|
45
|
+
get hasInconsistentData(): boolean;
|
|
46
|
+
get hasDuplicateIds(): boolean;
|
|
47
|
+
get hasIncompleteAttrs(): boolean;
|
|
48
|
+
get(id: string): TrackedChange | IncompleteChange | undefined;
|
|
49
|
+
getIn(ids: string[]): (TrackedChange | IncompleteChange)[];
|
|
50
|
+
getNotIn(ids: string[]): (TrackedChange | IncompleteChange)[];
|
|
51
|
+
/**
|
|
52
|
+
* Flattens a changeTree into a list of IDs
|
|
53
|
+
* @param changes
|
|
54
|
+
*/
|
|
55
|
+
static flattenTreeToIds(changes: TrackedChange[]): string[];
|
|
56
|
+
/**
|
|
57
|
+
* Determines whether a change should not be deleted when applying it to the document.
|
|
58
|
+
* @param change
|
|
59
|
+
*/
|
|
60
|
+
static shouldNotDelete(change: TrackedChange): boolean;
|
|
61
|
+
/**
|
|
62
|
+
* Determines whether a change should be deleted when applying it to the document.
|
|
63
|
+
* @param change
|
|
64
|
+
*/
|
|
65
|
+
static shouldDeleteChange(change: TrackedChange): boolean;
|
|
66
|
+
/**
|
|
67
|
+
* Checks whether change attributes contain all TrackedAttrs keys with non-undefined values
|
|
68
|
+
* @param attrs
|
|
69
|
+
*/
|
|
70
|
+
static isValidTrackedAttrs(attrs?: Partial<TrackedAttrs>): boolean;
|
|
71
|
+
static isTextChange(change: TrackedChange): change is TextChange;
|
|
72
|
+
static isNodeChange(change: TrackedChange): change is NodeChange;
|
|
73
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* © 2021 Atypon Systems LLC
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { Transaction } from 'prosemirror-state';
|
|
17
|
+
import { CHANGE_STATUS } from './types/change';
|
|
18
|
+
import { TrackChangesStatus } from './types/track';
|
|
19
|
+
export declare enum TrackChangesAction {
|
|
20
|
+
skipTrack = "track-changes-skip-tracking",
|
|
21
|
+
setUserID = "track-changes-set-user-id",
|
|
22
|
+
setPluginStatus = "track-changes-set-track-status",
|
|
23
|
+
setChangeStatuses = "track-changes-set-change-statuses",
|
|
24
|
+
updateChanges = "track-changes-update-changes",
|
|
25
|
+
refreshChanges = "track-changes-refresh-changes",
|
|
26
|
+
applyAndRemoveChanges = "track-changes-apply-remove-changes"
|
|
27
|
+
}
|
|
28
|
+
export declare type TrackChangesActionParams = {
|
|
29
|
+
[TrackChangesAction.skipTrack]: boolean;
|
|
30
|
+
[TrackChangesAction.setUserID]: string;
|
|
31
|
+
[TrackChangesAction.setPluginStatus]: TrackChangesStatus;
|
|
32
|
+
[TrackChangesAction.setChangeStatuses]: {
|
|
33
|
+
status: CHANGE_STATUS;
|
|
34
|
+
ids: string[];
|
|
35
|
+
};
|
|
36
|
+
[TrackChangesAction.updateChanges]: string[];
|
|
37
|
+
[TrackChangesAction.refreshChanges]: boolean;
|
|
38
|
+
[TrackChangesAction.applyAndRemoveChanges]: boolean;
|
|
39
|
+
};
|
|
40
|
+
/**
|
|
41
|
+
* Gets the value of a meta field, action payload, of a defined track-changes action.
|
|
42
|
+
* @param tr
|
|
43
|
+
* @param action
|
|
44
|
+
*/
|
|
45
|
+
export declare function getAction<K extends keyof TrackChangesActionParams>(tr: Transaction, action: K): TrackChangesActionParams[K] | undefined;
|
|
46
|
+
/**
|
|
47
|
+
* Use this function to set meta keys to transactions that are consumed by the track-changes-plugin.
|
|
48
|
+
* For example, you can skip tracking of a transaction with setAction(tr, TrackChangesAction.skipTrack, true)
|
|
49
|
+
* @param tr
|
|
50
|
+
* @param action
|
|
51
|
+
* @param payload
|
|
52
|
+
*/
|
|
53
|
+
export declare function setAction<K extends keyof TrackChangesActionParams>(tr: Transaction, action: K, payload: TrackChangesActionParams[K]): Transaction<any>;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* © 2021 Atypon Systems LLC
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { CHANGE_STATUS } from './types/change';
|
|
17
|
+
import type { Command } from './types/editor';
|
|
18
|
+
import { TrackChangesStatus } from './types/track';
|
|
19
|
+
/**
|
|
20
|
+
* Sets track-changes plugin's status to any of: 'enabled' 'disabled' 'viewSnapshots'. Passing undefined will
|
|
21
|
+
* set 'enabled' status to 'disabled' and 'disabled' | 'viewSnapshots' status to 'enabled'.
|
|
22
|
+
*
|
|
23
|
+
* In disabled view, the plugin is completely inactive and changes are not updated anymore.
|
|
24
|
+
* In viewSnasphots state, editor is set uneditable by editable prop that allows only selection changes
|
|
25
|
+
* to the document.
|
|
26
|
+
* @param status
|
|
27
|
+
*/
|
|
28
|
+
export declare const setTrackingStatus: (status?: TrackChangesStatus | undefined) => Command;
|
|
29
|
+
/**
|
|
30
|
+
* Appends a transaction to set change attributes/marks' statuses to any of: 'pending' 'accepted' 'rejected'.
|
|
31
|
+
* @param status
|
|
32
|
+
* @param ids
|
|
33
|
+
*/
|
|
34
|
+
export declare const setChangeStatuses: (status: CHANGE_STATUS, ids: string[]) => Command;
|
|
35
|
+
/**
|
|
36
|
+
* Sets track-changes plugin's userID.
|
|
37
|
+
* @param userID
|
|
38
|
+
*/
|
|
39
|
+
export declare const setUserID: (userID: string) => Command;
|
|
40
|
+
/**
|
|
41
|
+
* Appends a transaction that applies all 'accepted' and 'rejected' changes to the document.
|
|
42
|
+
*/
|
|
43
|
+
export declare const applyAndRemoveChanges: () => Command;
|
|
44
|
+
/**
|
|
45
|
+
* Runs `findChanges` to iterate over the document to collect changes into a new ChangeSet.
|
|
46
|
+
*/
|
|
47
|
+
export declare const refreshChanges: () => Command;
|
|
48
|
+
/**
|
|
49
|
+
* Adds track attributes for a block node. For testing puroses
|
|
50
|
+
*/
|
|
51
|
+
export declare const setParagraphTestAttribute: (val?: string) => Command;
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* © 2021 Atypon Systems LLC
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
export { trackChangesPluginKey, trackChangesPlugin } from './plugin';
|
|
17
|
+
export * from './actions';
|
|
18
|
+
export * as trackCommands from './commands';
|
|
19
|
+
export { enableDebug } from './utils/logger';
|
|
20
|
+
export { ChangeSet } from './ChangeSet';
|
|
21
|
+
export * from './types/change';
|
|
22
|
+
export * from './types/track';
|