@manuscripts/article-editor 3.3.1 → 3.3.2

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.
Files changed (42) hide show
  1. package/dist/cjs/components/track-changes/suggestion-list/SnippetContent.js +72 -0
  2. package/dist/cjs/components/track-changes/suggestion-list/SnippetContent.js.map +1 -0
  3. package/dist/cjs/components/track-changes/suggestion-list/Suggestion.js +3 -3
  4. package/dist/cjs/components/track-changes/suggestion-list/Suggestion.js.map +1 -1
  5. package/dist/cjs/components/track-changes/suggestion-list/SuggestionSnippet.js +26 -118
  6. package/dist/cjs/components/track-changes/suggestion-list/SuggestionSnippet.js.map +1 -1
  7. package/dist/cjs/lib/change-handlers.js +123 -0
  8. package/dist/cjs/lib/change-handlers.js.map +1 -0
  9. package/dist/cjs/lib/fonts.js +3 -0
  10. package/dist/cjs/lib/fonts.js.map +1 -1
  11. package/dist/cjs/lib/node-content-retriever.js +130 -0
  12. package/dist/cjs/lib/node-content-retriever.js.map +1 -0
  13. package/dist/cjs/lib/tracking.js +3 -0
  14. package/dist/cjs/lib/tracking.js.map +1 -1
  15. package/dist/cjs/lib/utils.js +11 -28
  16. package/dist/cjs/lib/utils.js.map +1 -1
  17. package/dist/es/components/track-changes/suggestion-list/SnippetContent.js +44 -0
  18. package/dist/es/components/track-changes/suggestion-list/SnippetContent.js.map +1 -0
  19. package/dist/es/components/track-changes/suggestion-list/Suggestion.js +3 -3
  20. package/dist/es/components/track-changes/suggestion-list/Suggestion.js.map +1 -1
  21. package/dist/es/components/track-changes/suggestion-list/SuggestionSnippet.js +27 -119
  22. package/dist/es/components/track-changes/suggestion-list/SuggestionSnippet.js.map +1 -1
  23. package/dist/es/lib/change-handlers.js +117 -0
  24. package/dist/es/lib/change-handlers.js.map +1 -0
  25. package/dist/es/lib/fonts.js +3 -0
  26. package/dist/es/lib/fonts.js.map +1 -1
  27. package/dist/es/lib/node-content-retriever.js +123 -0
  28. package/dist/es/lib/node-content-retriever.js.map +1 -0
  29. package/dist/es/lib/tracking.js +3 -0
  30. package/dist/es/lib/tracking.js.map +1 -1
  31. package/dist/es/lib/utils.js +10 -25
  32. package/dist/es/lib/utils.js.map +1 -1
  33. package/dist/types/{lib/footnotes.d.ts → components/track-changes/suggestion-list/SnippetContent.d.ts} +8 -5
  34. package/dist/types/lib/change-handlers.d.ts +22 -0
  35. package/dist/types/lib/fonts.d.ts +3 -0
  36. package/dist/types/lib/node-content-retriever.d.ts +37 -0
  37. package/dist/types/lib/utils.d.ts +1 -8
  38. package/package.json +3 -3
  39. package/dist/cjs/lib/footnotes.js +0 -49
  40. package/dist/cjs/lib/footnotes.js.map +0 -1
  41. package/dist/es/lib/footnotes.js +0 -43
  42. package/dist/es/lib/footnotes.js.map +0 -1
@@ -0,0 +1,72 @@
1
+ "use strict";
2
+ /*!
3
+ * The contents of this file are subject to the Common Public Attribution License Version 1.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://mpapp-public.gitlab.io/manuscripts-frontend/LICENSE. The License is based on the Mozilla Public License Version 1.1 but Sections 14 and 15 have been added to cover use of software over a computer network and provide for limited attribution for the Original Developer. In addition, Exhibit A has been modified to be consistent with Exhibit B.
4
+ *
5
+ * Software distributed under the License is distributed on an “AS IS” basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.
6
+ *
7
+ * The Original Code is manuscripts-frontend.
8
+ *
9
+ * The Original Developer is the Initial Developer. The Initial Developer of the Original Code is Atypon Systems LLC.
10
+ *
11
+ * All portions of the code written by Atypon Systems LLC are Copyright (c) 2024 Atypon Systems LLC. All Rights Reserved.
12
+ */
13
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
14
+ if (k2 === undefined) k2 = k;
15
+ var desc = Object.getOwnPropertyDescriptor(m, k);
16
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
17
+ desc = { enumerable: true, get: function() { return m[k]; } };
18
+ }
19
+ Object.defineProperty(o, k2, desc);
20
+ }) : (function(o, m, k, k2) {
21
+ if (k2 === undefined) k2 = k;
22
+ o[k2] = m[k];
23
+ }));
24
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
25
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
26
+ }) : function(o, v) {
27
+ o["default"] = v;
28
+ });
29
+ var __importStar = (this && this.__importStar) || function (mod) {
30
+ if (mod && mod.__esModule) return mod;
31
+ var result = {};
32
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
33
+ __setModuleDefault(result, mod);
34
+ return result;
35
+ };
36
+ var __importDefault = (this && this.__importDefault) || function (mod) {
37
+ return (mod && mod.__esModule) ? mod : { "default": mod };
38
+ };
39
+ Object.defineProperty(exports, "__esModule", { value: true });
40
+ const body_editor_1 = require("@manuscripts/body-editor");
41
+ const dompurify_1 = __importDefault(require("dompurify"));
42
+ const react_1 = __importStar(require("react"));
43
+ const styled_components_1 = __importDefault(require("styled-components"));
44
+ const SnippetContent = ({ content, isEquation }) => {
45
+ const contentRef = (0, react_1.useRef)(null);
46
+ (0, react_1.useEffect)(() => {
47
+ if (contentRef.current && content) {
48
+ contentRef.current.innerHTML = dompurify_1.default.sanitize(': ' + content) || '';
49
+ if (isEquation) {
50
+ (0, body_editor_1.renderMath)(contentRef.current);
51
+ }
52
+ }
53
+ }, [content, isEquation]);
54
+ return react_1.default.createElement(StyledContent, { ref: contentRef, "data-mathjax": isEquation });
55
+ };
56
+ exports.default = SnippetContent;
57
+ const StyledContent = styled_components_1.default.span `
58
+ color: #353535;
59
+ font-family: Lato, sans-serif;
60
+ font-size: 12px;
61
+ font-weight: 400;
62
+ line-height: 16px;
63
+
64
+ &[data-mathjax='true'] {
65
+ text-overflow: unset;
66
+ }
67
+
68
+ .inspector-list-item::after {
69
+ content: '...';
70
+ }
71
+ `;
72
+ //# sourceMappingURL=SnippetContent.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SnippetContent.js","sourceRoot":"","sources":["../../../../../src/components/track-changes/suggestion-list/SnippetContent.tsx"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,0DAAqD;AACrD,0DAA8B;AAC9B,+CAAgD;AAChD,0EAAsC;AAOtC,MAAM,cAAc,GAA2B,CAAC,EAAE,OAAO,EAAE,UAAU,EAAE,EAAE,EAAE;IACzE,MAAM,UAAU,GAAG,IAAA,cAAM,EAAkB,IAAI,CAAC,CAAA;IAEhD,IAAA,iBAAS,EAAC,GAAG,EAAE;QACb,IAAI,UAAU,CAAC,OAAO,IAAI,OAAO,EAAE;YACjC,UAAU,CAAC,OAAO,CAAC,SAAS,GAAG,mBAAM,CAAC,QAAQ,CAAC,IAAI,GAAG,OAAO,CAAC,IAAI,EAAE,CAAA;YACpE,IAAI,UAAU,EAAE;gBACd,IAAA,wBAAU,EAAC,UAAU,CAAC,OAAO,CAAC,CAAA;aAC/B;SACF;IACH,CAAC,EAAE,CAAC,OAAO,EAAE,UAAU,CAAC,CAAC,CAAA;IAEzB,OAAO,8BAAC,aAAa,IAAC,GAAG,EAAE,UAAU,kBAAgB,UAAU,GAAI,CAAA;AACrE,CAAC,CAAA;AAED,kBAAe,cAAc,CAAA;AAE7B,MAAM,aAAa,GAAG,2BAAM,CAAC,IAAI,CAAA;;;;;;;;;;;;;;CAchC,CAAA"}
@@ -81,8 +81,7 @@ const Wrapper = styled_components_1.default.li `
81
81
  justify-content: space-between;
82
82
  align-items: center;
83
83
  gap: ${(props) => props.theme.grid.unit * 4}px;
84
- padding: ${(props) => props.theme.grid.unit * 1.5}px
85
- ${(props) => props.theme.grid.unit * 2}px !important;
84
+ padding: 6px 8px;
86
85
  min-height: 28px;
87
86
  margin-bottom: 6px;
88
87
  border: ${(props) => props.isFocused
@@ -93,7 +92,8 @@ const Wrapper = styled_components_1.default.li `
93
92
  : `none`};
94
93
  list-style-type: none;
95
94
  font-size: ${(props) => props.theme.font.size.small};
96
-
95
+ border-radius: 4px;
96
+ max-height: 40px;
97
97
  /* FocusHandle should cover entire card: */
98
98
  position: relative;
99
99
  color: ${(props) => props.theme.colors.text.primary};
@@ -1 +1 @@
1
- {"version":3,"file":"Suggestion.js","sourceRoot":"","sources":["../../../../../src/components/track-changes/suggestion-list/Suggestion.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"Suggestion.js","sourceRoot":"","sources":["../../../../../src/components/track-changes/suggestion-list/Suggestion.tsx"],"names":[],"mappings":"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"}
@@ -39,128 +39,40 @@ exports.SuggestionSnippet = void 0;
39
39
  * All portions of the code written by Atypon Systems LLC are Copyright (c) 2024 Atypon Systems LLC. All Rights Reserved.
40
40
  */
41
41
  const track_changes_plugin_1 = require("@manuscripts/track-changes-plugin");
42
- const transform_1 = require("@manuscripts/transform");
43
- const html_react_parser_1 = __importDefault(require("html-react-parser"));
44
42
  const react_1 = __importStar(require("react"));
45
43
  const styled_components_1 = __importDefault(require("styled-components"));
46
- const footnotes_1 = require("../../../lib/footnotes");
47
- const tracking_1 = require("../../../lib/tracking");
48
- const utils_1 = require("../../../lib/utils");
44
+ const change_handlers_1 = require("../../../lib/change-handlers");
49
45
  const store_1 = require("../../../store");
46
+ const SnippetContent_1 = __importDefault(require("./SnippetContent"));
50
47
  const SuggestionSnippet = ({ suggestion, }) => {
51
48
  const [{ doc, view }] = (0, store_1.useStore)((store) => ({
52
49
  view: store.view,
53
50
  doc: store.doc,
54
51
  }));
55
52
  const [snippet, setSnippet] = (0, react_1.useState)(null);
56
- const [message, setMessage] = (0, react_1.useState)('');
57
53
  const { dataTracked } = suggestion;
58
54
  (0, react_1.useEffect)(() => {
59
- const getSnippetData = () => {
60
- if (track_changes_plugin_1.ChangeSet.isTextChange(suggestion) && view) {
61
- const parentNode = (0, utils_1.getParentNode)(view.state, suggestion.from);
62
- if (parentNode?.type === transform_1.schema.nodes.footnote) {
63
- return {
64
- snippet: {
65
- operation: (0, tracking_1.changeOperationAlias)(dataTracked.operation),
66
- nodeName: parentNode.type.name || suggestion.nodeType.name,
67
- content: suggestion.text,
68
- },
69
- message: '',
70
- };
71
- }
72
- else {
73
- return { snippet: null, message: suggestion.text };
74
- }
75
- }
76
- if (track_changes_plugin_1.ChangeSet.isNodeChange(suggestion) && view) {
77
- if (suggestion.node.type === transform_1.schema.nodes.inline_footnote) {
78
- return {
79
- snippet: {
80
- operation: (0, tracking_1.changeOperationAlias)(dataTracked.operation),
81
- nodeName: suggestion.node.type.spec.name,
82
- content: (0, footnotes_1.getInlineFootnoteContent)(doc, suggestion.attrs),
83
- },
84
- message: '',
85
- };
86
- }
87
- else if (suggestion.node.type === transform_1.schema.nodes.footnote) {
88
- return {
89
- snippet: {
90
- operation: (0, tracking_1.changeOperationAlias)(dataTracked.operation),
91
- nodeName: suggestion.node.type.name,
92
- content: (0, footnotes_1.getFootnoteText)(view.state, suggestion.node),
93
- },
94
- message: '',
95
- };
96
- }
97
- else if (suggestion.dataTracked.operation === track_changes_plugin_1.CHANGE_OPERATION.node_split) {
98
- return {
99
- snippet: null,
100
- message: `Split ${suggestion.node.type.name}`,
101
- };
102
- }
103
- else if (suggestion.dataTracked.operation === track_changes_plugin_1.CHANGE_OPERATION.wrap_with_node) {
104
- return {
105
- snippet: null,
106
- message: `${suggestion.node.type.name
107
- .charAt(0)
108
- .toUpperCase()}${suggestion.node.type.name.slice(1)} insert`,
109
- };
110
- }
111
- else {
112
- return {
113
- snippet: null,
114
- message: `${suggestion.node.type.name
115
- .charAt(0)
116
- .toUpperCase()}${suggestion.node.type.name.slice(1)} ${dataTracked.operation}`,
117
- };
118
- }
119
- }
120
- if (track_changes_plugin_1.ChangeSet.isNodeAttrChange(suggestion) && view) {
121
- if (suggestion.node.type === transform_1.schema.nodes.inline_footnote) {
122
- return {
123
- snippet: {
124
- operation: (0, tracking_1.changeOperationAlias)(dataTracked.operation),
125
- nodeName: suggestion.node.type.spec.name,
126
- content: (0, footnotes_1.getInlineFootnoteContent)(doc, suggestion.newAttrs),
127
- },
128
- message: '',
129
- };
130
- }
131
- else if (suggestion.node.type === transform_1.schema.nodes.footnote) {
132
- return {
133
- snippet: {
134
- operation: (0, tracking_1.changeOperationAlias)(dataTracked.operation),
135
- nodeName: suggestion.node.type.name,
136
- content: (0, footnotes_1.getFootnoteText)(view.state, suggestion.node),
137
- },
138
- message: '',
139
- };
140
- }
141
- else {
142
- return {
143
- snippet: null,
144
- message: `${suggestion.node.type.name
145
- .charAt(0)
146
- .toUpperCase()}${suggestion.node.type.name.slice(1)} ${dataTracked.operation}`,
147
- };
148
- }
149
- }
150
- return { snippet: null, message: 'Unknown change!' };
151
- };
152
- const { snippet: newSnippet, message: newMessage } = getSnippetData();
55
+ let newSnippet = null;
56
+ if (track_changes_plugin_1.ChangeSet.isTextChange(suggestion)) {
57
+ newSnippet = (0, change_handlers_1.handleTextChange)(suggestion, view, dataTracked);
58
+ }
59
+ else if (track_changes_plugin_1.ChangeSet.isNodeChange(suggestion) ||
60
+ track_changes_plugin_1.ChangeSet.isNodeAttrChange(suggestion)) {
61
+ newSnippet = (0, change_handlers_1.handleNodeChange)(suggestion, view, doc, dataTracked);
62
+ }
63
+ else {
64
+ newSnippet = (0, change_handlers_1.handleUnknownChange)();
65
+ }
153
66
  setSnippet(newSnippet);
154
- setMessage(newMessage);
155
- }, [suggestion, doc, view, view?.state, dataTracked.operation]);
156
- return (react_1.default.createElement(SnippetText, null, snippet ? (react_1.default.createElement(react_1.default.Fragment, null,
157
- react_1.default.createElement(Operation, { color: dataTracked.operation },
158
- snippet.operation,
159
- ":"),
160
- react_1.default.createElement(NodeName, null,
161
- snippet.nodeName,
162
- ":"),
163
- react_1.default.createElement(Content, null, (0, html_react_parser_1.default)(snippet.content)))) : dataTracked.operation === track_changes_plugin_1.CHANGE_OPERATION.delete ? (react_1.default.createElement("del", null, message)) : (message)));
67
+ // eslint-disable-next-line react-hooks/exhaustive-deps
68
+ }, [suggestion, doc]);
69
+ return (react_1.default.createElement(SnippetText, { "data-mathjax": snippet?.isEquation },
70
+ react_1.default.createElement(react_1.default.Fragment, null,
71
+ react_1.default.createElement(Operation, { color: dataTracked.operation },
72
+ snippet?.operation,
73
+ ":"),
74
+ react_1.default.createElement(NodeName, null, snippet?.nodeName),
75
+ react_1.default.createElement(SnippetContent_1.default, { content: snippet?.content || '', isEquation: snippet?.isEquation }))));
164
76
  };
165
77
  exports.SuggestionSnippet = SuggestionSnippet;
166
78
  const SnippetText = styled_components_1.default.div `
@@ -172,6 +84,9 @@ const SnippetText = styled_components_1.default.div `
172
84
  color: ${(props) => props.theme.colors.text.primary};
173
85
  display: block;
174
86
  text-overflow: ellipsis;
87
+ &[data-mathjax='true'] {
88
+ text-overflow: unset;
89
+ }
175
90
  `;
176
91
  const Operation = styled_components_1.default.span `
177
92
  font-family: Lato, sans-serif;
@@ -183,6 +98,7 @@ const Operation = styled_components_1.default.span `
183
98
  color: ${(props) => {
184
99
  switch (props.color) {
185
100
  case 'insert':
101
+ case 'wrap_with_node':
186
102
  return '#01872E';
187
103
  case 'delete':
188
104
  return '#F35143';
@@ -200,13 +116,5 @@ const NodeName = styled_components_1.default.span `
200
116
  font-size: 12px;
201
117
  font-weight: bold;
202
118
  line-height: 16px;
203
- margin-right: 3.2px;
204
- `;
205
- const Content = styled_components_1.default.span `
206
- color: #353535;
207
- font-family: Lato, sans-serif;
208
- font-size: 12px;
209
- font-weight: 400;
210
- line-height: 16px;
211
119
  `;
212
120
  //# sourceMappingURL=SuggestionSnippet.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"SuggestionSnippet.js","sourceRoot":"","sources":["../../../../../src/components/track-changes/suggestion-list/SuggestionSnippet.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"SuggestionSnippet.js","sourceRoot":"","sources":["../../../../../src/components/track-changes/suggestion-list/SuggestionSnippet.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;;;;;;;;;GAUG;AACH,4EAA4E;AAC5E,+CAAkD;AAClD,0EAAsC;AAEtC,kEAIqC;AACrC,0CAAyC;AACzC,sEAA6C;AAStC,MAAM,iBAAiB,GAA4C,CAAC,EACzE,UAAU,GACX,EAAE,EAAE;IACH,MAAM,CAAC,EAAE,GAAG,EAAE,IAAI,EAAE,CAAC,GAAG,IAAA,gBAAQ,EAAC,CAAC,KAAK,EAAE,EAAE,CAAC,CAAC;QAC3C,IAAI,EAAE,KAAK,CAAC,IAAI;QAChB,GAAG,EAAE,KAAK,CAAC,GAAG;KACf,CAAC,CAAC,CAAA;IACH,MAAM,CAAC,OAAO,EAAE,UAAU,CAAC,GAAG,IAAA,gBAAQ,EAAqB,IAAI,CAAC,CAAA;IAChE,MAAM,EAAE,WAAW,EAAE,GAAG,UAAU,CAAA;IAElC,IAAA,iBAAS,EAAC,GAAG,EAAE;QACb,IAAI,UAAU,GAAuB,IAAI,CAAA;QAEzC,IAAI,gCAAS,CAAC,YAAY,CAAC,UAAU,CAAC,EAAE;YACtC,UAAU,GAAG,IAAA,kCAAgB,EAAC,UAAU,EAAE,IAAI,EAAE,WAAW,CAAC,CAAA;SAC7D;aAAM,IACL,gCAAS,CAAC,YAAY,CAAC,UAAU,CAAC;YAClC,gCAAS,CAAC,gBAAgB,CAAC,UAAU,CAAC,EACtC;YACA,UAAU,GAAG,IAAA,kCAAgB,EAAC,UAAU,EAAE,IAAI,EAAE,GAAG,EAAE,WAAW,CAAC,CAAA;SAClE;aAAM;YACL,UAAU,GAAG,IAAA,qCAAmB,GAAE,CAAA;SACnC;QAED,UAAU,CAAC,UAAU,CAAC,CAAA;QACtB,uDAAuD;IACzD,CAAC,EAAE,CAAC,UAAU,EAAE,GAAG,CAAC,CAAC,CAAA;IAErB,OAAO,CACL,8BAAC,WAAW,oBAAe,OAAO,EAAE,UAAU;QAC5C;YACE,8BAAC,SAAS,IAAC,KAAK,EAAE,WAAW,CAAC,SAAS;gBACpC,OAAO,EAAE,SAAS;oBACT;YACZ,8BAAC,QAAQ,QAAE,OAAO,EAAE,QAAQ,CAAY;YACxC,8BAAC,wBAAc,IACb,OAAO,EAAE,OAAO,EAAE,OAAO,IAAI,EAAE,EAC/B,UAAU,EAAE,OAAO,EAAE,UAAU,GAC/B,CACD,CACS,CACf,CAAA;AACH,CAAC,CAAA;AA1CY,QAAA,iBAAiB,qBA0C7B;AAED,MAAM,WAAW,GAAG,2BAAM,CAAC,GAAG,CAAA;eACf,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK;iBACpC,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,KAAK,CAAC,IAAI,CAAC,UAAU,CAAC,MAAM;;;;WAInD,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,KAAK,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO;;;;;;CAMpD,CAAA;AAED,MAAM,SAAS,GAAG,2BAAM,CAAC,IAAI,CAAmB;;;;;;;WAOrC,CAAC,KAAK,EAAE,EAAE;IACjB,QAAQ,KAAK,CAAC,KAAK,EAAE;QACnB,KAAK,QAAQ,CAAC;QACd,KAAK,gBAAgB;YACnB,OAAO,SAAS,CAAA;QAClB,KAAK,QAAQ;YACX,OAAO,SAAS,CAAA;QAClB,KAAK,WAAW;YACd,OAAO,SAAS,CAAA;QAClB;YACE,OAAO,SAAS,CAAA;KACnB;AACH,CAAC;CACF,CAAA;AAED,MAAM,QAAQ,GAAG,2BAAM,CAAC,IAAI,CAAA;;;;;;;CAO3B,CAAA"}
@@ -0,0 +1,123 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.handleUnknownChange = exports.handleNodeChange = exports.handleTextChange = void 0;
4
+ const transform_1 = require("@manuscripts/transform");
5
+ const node_content_retriever_1 = require("./node-content-retriever");
6
+ const tracking_1 = require("./tracking");
7
+ const utils_1 = require("./utils");
8
+ const handleTextChange = (suggestion, view, dataTracked) => {
9
+ const parentNodeType = (0, utils_1.getParentNode)(view.state, suggestion.from)?.type;
10
+ let nodeName;
11
+ if (parentNodeType) {
12
+ const parentNodeName = transform_1.nodeNames.get(parentNodeType) || parentNodeType?.name;
13
+ nodeName =
14
+ parentNodeType === transform_1.schema.nodes.paragraph
15
+ ? 'text'
16
+ : parentNodeName + ' text';
17
+ }
18
+ return {
19
+ operation: (0, tracking_1.changeOperationAlias)(dataTracked.operation),
20
+ nodeName: nodeName || suggestion.nodeType.name,
21
+ content: suggestion.text,
22
+ };
23
+ };
24
+ exports.handleTextChange = handleTextChange;
25
+ const handleNodeChange = (suggestion, view, doc, dataTracked) => {
26
+ const nodeContentRetriever = new node_content_retriever_1.NodeTextContentRetriever(view.state);
27
+ const { node } = suggestion;
28
+ const operation = (0, tracking_1.changeOperationAlias)(dataTracked.operation);
29
+ const nodeName = transform_1.nodeNames.get(node.type) || node.type.name;
30
+ switch (node.type) {
31
+ case transform_1.schema.nodes.inline_footnote: {
32
+ return {
33
+ operation,
34
+ nodeName,
35
+ content: nodeContentRetriever.getInlineFootnoteContent(doc, node.attrs),
36
+ };
37
+ }
38
+ case transform_1.schema.nodes.footnote: {
39
+ return {
40
+ operation,
41
+ nodeName,
42
+ content: nodeContentRetriever.getFootnoteContent(node),
43
+ };
44
+ }
45
+ case transform_1.schema.nodes.contributor: {
46
+ const contributorTextContent = `${node.attrs.bibliographicName.given} ${node.attrs.bibliographicName.family}`;
47
+ return {
48
+ operation,
49
+ nodeName,
50
+ content: contributorTextContent,
51
+ };
52
+ }
53
+ case transform_1.schema.nodes.affiliation: {
54
+ const affiliationTextContent = node.attrs.institution;
55
+ return {
56
+ operation,
57
+ nodeName,
58
+ content: affiliationTextContent,
59
+ };
60
+ }
61
+ case transform_1.schema.nodes.citation: {
62
+ return {
63
+ operation,
64
+ nodeName,
65
+ content: nodeContentRetriever.getContentFromBibliography(node.attrs.id, node),
66
+ };
67
+ }
68
+ case transform_1.schema.nodes.bibliography_item: {
69
+ return {
70
+ operation,
71
+ nodeName,
72
+ content: nodeContentRetriever.getContentFromBibliography(node.attrs.id, node),
73
+ };
74
+ }
75
+ case transform_1.schema.nodes.figure_element:
76
+ case transform_1.schema.nodes.table_element:
77
+ return {
78
+ operation,
79
+ nodeName,
80
+ content: nodeContentRetriever.getFigureLabel(node),
81
+ };
82
+ case transform_1.schema.nodes.inline_equation:
83
+ case transform_1.schema.nodes.equation_element:
84
+ return {
85
+ operation,
86
+ nodeName,
87
+ content: nodeContentRetriever.getEquationContent(node),
88
+ isEquation: true,
89
+ };
90
+ case transform_1.schema.nodes.section: {
91
+ const nodeName = node.attrs.category === 'MPSectionCategory:subsection'
92
+ ? 'Subsection'
93
+ : 'Section';
94
+ return {
95
+ operation,
96
+ nodeName,
97
+ content: nodeContentRetriever.getFirstChildContent(node),
98
+ };
99
+ }
100
+ case transform_1.schema.nodes.list:
101
+ return {
102
+ operation,
103
+ nodeName,
104
+ content: `<span class="inspector-list-item">${nodeContentRetriever.getFirstChildContent(node)}</span>`,
105
+ };
106
+ default:
107
+ return {
108
+ operation,
109
+ nodeName,
110
+ content: nodeContentRetriever.getNodeTextContent(node),
111
+ };
112
+ }
113
+ };
114
+ exports.handleNodeChange = handleNodeChange;
115
+ const handleUnknownChange = () => {
116
+ return {
117
+ operation: '',
118
+ nodeName: '',
119
+ content: 'Unknown change!',
120
+ };
121
+ };
122
+ exports.handleUnknownChange = handleUnknownChange;
123
+ //# sourceMappingURL=change-handlers.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"change-handlers.js","sourceRoot":"","sources":["../../../src/lib/change-handlers.ts"],"names":[],"mappings":"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"}
@@ -14,4 +14,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
14
14
  require("@fontsource/lato");
15
15
  require("@fontsource/pt-sans");
16
16
  require("@fontsource/pt-serif");
17
+ require("@fontsource/lato/300.css");
18
+ require("@fontsource/lato/400.css");
19
+ require("@fontsource/lato/700.css");
17
20
  //# sourceMappingURL=fonts.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"fonts.js","sourceRoot":"","sources":["../../../src/lib/fonts.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAEH,4BAAyB;AACzB,+BAA4B;AAC5B,gCAA6B"}
1
+ {"version":3,"file":"fonts.js","sourceRoot":"","sources":["../../../src/lib/fonts.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAEH,4BAAyB;AACzB,+BAA4B;AAC5B,gCAA6B;AAC7B,oCAAiC;AACjC,oCAAiC;AACjC,oCAAiC"}
@@ -0,0 +1,130 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.NodeTextContentRetriever = void 0;
7
+ /*!
8
+ * The contents of this file are subject to the Common Public Attribution License Version 1.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://mpapp-public.gitlab.io/manuscripts-frontend/LICENSE. The License is based on the Mozilla Public License Version 1.1 but Sections 14 and 15 have been added to cover use of software over a computer network and provide for limited attribution for the Original Developer. In addition, Exhibit A has been modified to be consistent with Exhibit B.
9
+ *
10
+ * Software distributed under the License is distributed on an “AS IS” basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.
11
+ *
12
+ * The Original Code is manuscripts-frontend.
13
+ *
14
+ * The Original Developer is the Initial Developer. The Initial Developer of the Original Code is Atypon Systems LLC.
15
+ *
16
+ * All portions of the code written by Atypon Systems LLC are Copyright (c) 2024 Atypon Systems LLC. All Rights Reserved.
17
+ */
18
+ const body_editor_1 = require("@manuscripts/body-editor");
19
+ const transform_1 = require("@manuscripts/transform");
20
+ const dompurify_1 = __importDefault(require("dompurify"));
21
+ class NodeTextContentRetriever {
22
+ constructor(state) {
23
+ this.state = state;
24
+ }
25
+ /**
26
+ * Recursively retrieves text content from a ManuscriptNode.
27
+ */
28
+ getNodeTextContent(node) {
29
+ let textContent = '';
30
+ if (!(0, transform_1.isElementNodeType)(node.type) && !(0, transform_1.isSectionNodeType)(node.type)) {
31
+ node.forEach((child) => {
32
+ if (child.isText) {
33
+ textContent += child.text;
34
+ }
35
+ else {
36
+ textContent += this.getNodeTextContent(child);
37
+ }
38
+ });
39
+ }
40
+ return textContent;
41
+ }
42
+ /**
43
+ * Retrieves the text content of the first child node.
44
+ */
45
+ getFirstChildContent(node) {
46
+ return node.firstChild ? node.firstChild.textContent : '';
47
+ }
48
+ /**
49
+ * Retrieves the text content from a bibliography node.
50
+ */
51
+ getContentFromBibliography(id, node) {
52
+ const bibPlugin = body_editor_1.bibliographyPluginKey.get(this.state);
53
+ const bib = bibPlugin?.getState(this.state);
54
+ if (!bib) {
55
+ return '';
56
+ }
57
+ if (node.type === transform_1.schema.nodes.citation) {
58
+ const text = bib?.renderedCitations.get(id);
59
+ const citation = dompurify_1.default.sanitize(text && text !== '[NO_PRINTED_FORM]' ? text : ' ', {
60
+ ALLOWED_TAGS: ['i', 'b', 'span', 'sup', 'sub', '#text'],
61
+ });
62
+ return citation ? citation.replace(/<[^>]*>/g, '') : '';
63
+ }
64
+ else {
65
+ const [meta, bibliography] = bib.provider.makeBibliography();
66
+ const selectedBib = meta.entry_ids.findIndex((entry) => entry[0] === id);
67
+ if (selectedBib === -1) {
68
+ return `<span> ${node.attrs.title || 'untitled'} </span> ${(0, body_editor_1.metadata)(node.attrs)}`;
69
+ }
70
+ const parser = new DOMParser();
71
+ const textContent = parser.parseFromString(bibliography[selectedBib], 'text/html').body.textContent;
72
+ return textContent || '';
73
+ }
74
+ }
75
+ /**
76
+ * Retrieves the content of an equation node.
77
+ */
78
+ getEquationContent(node) {
79
+ if (node.firstChild && node.type === transform_1.schema.nodes.equation_element) {
80
+ return node.firstChild.attrs.contents;
81
+ }
82
+ else if (node) {
83
+ return node.attrs.contents;
84
+ }
85
+ return '';
86
+ }
87
+ /**
88
+ * Retrieves the label of a figure node.
89
+ */
90
+ getFigureLabel(node) {
91
+ const objectsPlugin = body_editor_1.objectsPluginKey.get(this.state);
92
+ const pluginState = objectsPlugin?.getState(this.state);
93
+ const target = pluginState?.get(node.attrs.id);
94
+ return target?.label || '';
95
+ }
96
+ /**
97
+ * Finds a footnote node by its ID.
98
+ */
99
+ findFootnoteById(doc, id) {
100
+ let footnoteNode = null;
101
+ doc.descendants((node) => {
102
+ if (node.type === transform_1.schema.nodes.footnote && node.attrs.id === id) {
103
+ footnoteNode = node;
104
+ return false;
105
+ }
106
+ return !footnoteNode;
107
+ });
108
+ return footnoteNode;
109
+ }
110
+ /**
111
+ * Retrieves the inline footnote content.
112
+ */
113
+ getInlineFootnoteContent(doc, attrs) {
114
+ const footnote = attrs.rids && attrs.rids.length > 0
115
+ ? this.findFootnoteById(doc, attrs.rids[0])
116
+ : null;
117
+ return `<sup class="footnote-decoration">${attrs.contents || ''}</sup>${footnote ? footnote.textContent : ''}`;
118
+ }
119
+ /**
120
+ * Retrieves the text content of a footnote node with decoration.
121
+ */
122
+ getFootnoteContent(node) {
123
+ const footnotesPlugin = body_editor_1.footnotesPluginKey.get(this.state);
124
+ const pluginState = footnotesPlugin?.getState(this.state);
125
+ const decorationText = pluginState?.labels.get(node.attrs.id) || '';
126
+ return `<sup class="footnote-decoration">${decorationText}</sup>${node.textContent || this.getNodeTextContent(node)}`;
127
+ }
128
+ }
129
+ exports.NodeTextContentRetriever = NodeTextContentRetriever;
130
+ //# sourceMappingURL=node-content-retriever.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"node-content-retriever.js","sourceRoot":"","sources":["../../../src/lib/node-content-retriever.ts"],"names":[],"mappings":"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"}
@@ -35,6 +35,9 @@ const changeOperationAlias = (operation) => {
35
35
  case 'set_attrs': {
36
36
  return 'Updated';
37
37
  }
38
+ case 'wrap_with_node': {
39
+ return 'Inserted';
40
+ }
38
41
  default: {
39
42
  return 'null';
40
43
  }
@@ -1 +1 @@
1
- {"version":3,"file":"tracking.js","sourceRoot":"","sources":["../../../src/lib/tracking.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAqBI,MAAM,UAAU,GAAe,CAAC,EAAE,QAAQ,EAAE,MAAM,EAAE,KAAK,EAAE,KAAK,EAAE,EAAE,EAAE;IAC3E,IAAI,MAAM,CAAC,EAAE,EAAE;QACb,MAAM,CAAC,EAAE,CAAC,MAAM,EAAE;YAChB,OAAO,EAAE,OAAO;YAChB,aAAa,EAAE,QAAQ;YACvB,WAAW,EAAE,MAAM;YACnB,UAAU,EAAE,KAAK;YACjB,UAAU,EAAE,KAAK;SAClB,CAAC,CAAA;KACH;AACH,CAAC,CAAA;AAVY,QAAA,UAAU,cAUtB;AAEM,MAAM,oBAAoB,GAAG,CAAC,SAAiB,EAAU,EAAE;IAChE,QAAQ,SAAS,EAAE;QACjB,KAAK,QAAQ,CAAC,CAAC;YACb,OAAO,SAAS,CAAA;SACjB;QACD,KAAK,QAAQ,CAAC,CAAC;YACb,OAAO,UAAU,CAAA;SAClB;QACD,KAAK,WAAW,CAAC,CAAC;YAChB,OAAO,SAAS,CAAA;SACjB;QACD,OAAO,CAAC,CAAC;YACP,OAAO,MAAM,CAAA;SACd;KACF;AACH,CAAC,CAAA;AAfY,QAAA,oBAAoB,wBAehC"}
1
+ {"version":3,"file":"tracking.js","sourceRoot":"","sources":["../../../src/lib/tracking.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAqBI,MAAM,UAAU,GAAe,CAAC,EAAE,QAAQ,EAAE,MAAM,EAAE,KAAK,EAAE,KAAK,EAAE,EAAE,EAAE;IAC3E,IAAI,MAAM,CAAC,EAAE,EAAE;QACb,MAAM,CAAC,EAAE,CAAC,MAAM,EAAE;YAChB,OAAO,EAAE,OAAO;YAChB,aAAa,EAAE,QAAQ;YACvB,WAAW,EAAE,MAAM;YACnB,UAAU,EAAE,KAAK;YACjB,UAAU,EAAE,KAAK;SAClB,CAAC,CAAA;KACH;AACH,CAAC,CAAA;AAVY,QAAA,UAAU,cAUtB;AAEM,MAAM,oBAAoB,GAAG,CAAC,SAAiB,EAAU,EAAE;IAChE,QAAQ,SAAS,EAAE;QACjB,KAAK,QAAQ,CAAC,CAAC;YACb,OAAO,SAAS,CAAA;SACjB;QACD,KAAK,QAAQ,CAAC,CAAC;YACb,OAAO,UAAU,CAAA;SAClB;QACD,KAAK,WAAW,CAAC,CAAC;YAChB,OAAO,SAAS,CAAA;SACjB;QACD,KAAK,gBAAgB,CAAC,CAAC;YACrB,OAAO,UAAU,CAAA;SAClB;QACD,OAAO,CAAC,CAAC;YACP,OAAO,MAAM,CAAA;SACd;KACF;AACH,CAAC,CAAA;AAlBY,QAAA,oBAAoB,wBAkBhC"}