@manuscripts/transform 2.1.7 → 2.1.8-LEAN-3423-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.
|
@@ -202,34 +202,20 @@ exports.jatsBodyTransformations = {
|
|
|
202
202
|
}
|
|
203
203
|
},
|
|
204
204
|
moveFootnotes(doc, group, createElement) {
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
];
|
|
208
|
-
const
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
for (const footnote of footnotes) {
|
|
212
|
-
const type = footnote.getAttribute('fn-type');
|
|
213
|
-
if (!type) {
|
|
205
|
+
var _a;
|
|
206
|
+
const footnotes = Array.from(doc.querySelectorAll('fn:not(table-wrap-foot fn, author-notes fn)'));
|
|
207
|
+
let footnotesSection = doc.querySelector('sec[sec-type="endnotes"]');
|
|
208
|
+
const containingGroup = (footnotesSection === null || footnotesSection === void 0 ? void 0 : footnotesSection.querySelector('fn-group')) || createElement('fn-group');
|
|
209
|
+
footnotes.forEach((footnote) => {
|
|
210
|
+
if (!footnote.getAttribute('fn-type')) {
|
|
214
211
|
containingGroup.appendChild(footnote);
|
|
215
212
|
}
|
|
216
|
-
}
|
|
213
|
+
});
|
|
217
214
|
if (!footnotesSection && containingGroup.innerHTML) {
|
|
218
|
-
|
|
219
|
-
group.append(section);
|
|
215
|
+
footnotesSection = this.createFootnotesSection([containingGroup], createElement);
|
|
220
216
|
}
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
];
|
|
224
|
-
regularFootnoteGroups = regularFootnoteGroups.filter((group) => {
|
|
225
|
-
return group.childElementCount === 0
|
|
226
|
-
? false
|
|
227
|
-
: !group.querySelector('fn[fn-type]');
|
|
228
|
-
});
|
|
229
|
-
if (regularFootnoteGroups.length > 0) {
|
|
230
|
-
regularFootnoteGroups.map((g) => removeNodeFromParent(g));
|
|
231
|
-
const footnotes = this.createFootnotesSection(regularFootnoteGroups, createElement);
|
|
232
|
-
group.appendChild(footnotes);
|
|
217
|
+
if (footnotesSection) {
|
|
218
|
+
group.insertBefore(footnotesSection, ((_a = group.firstChild) === null || _a === void 0 ? void 0 : _a.nextSibling) || group.firstChild);
|
|
233
219
|
}
|
|
234
220
|
},
|
|
235
221
|
moveCaptionsToEnd(body) {
|
|
@@ -199,34 +199,20 @@ export const jatsBodyTransformations = {
|
|
|
199
199
|
}
|
|
200
200
|
},
|
|
201
201
|
moveFootnotes(doc, group, createElement) {
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
];
|
|
205
|
-
const
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
for (const footnote of footnotes) {
|
|
209
|
-
const type = footnote.getAttribute('fn-type');
|
|
210
|
-
if (!type) {
|
|
202
|
+
var _a;
|
|
203
|
+
const footnotes = Array.from(doc.querySelectorAll('fn:not(table-wrap-foot fn, author-notes fn)'));
|
|
204
|
+
let footnotesSection = doc.querySelector('sec[sec-type="endnotes"]');
|
|
205
|
+
const containingGroup = (footnotesSection === null || footnotesSection === void 0 ? void 0 : footnotesSection.querySelector('fn-group')) || createElement('fn-group');
|
|
206
|
+
footnotes.forEach((footnote) => {
|
|
207
|
+
if (!footnote.getAttribute('fn-type')) {
|
|
211
208
|
containingGroup.appendChild(footnote);
|
|
212
209
|
}
|
|
213
|
-
}
|
|
210
|
+
});
|
|
214
211
|
if (!footnotesSection && containingGroup.innerHTML) {
|
|
215
|
-
|
|
216
|
-
group.append(section);
|
|
212
|
+
footnotesSection = this.createFootnotesSection([containingGroup], createElement);
|
|
217
213
|
}
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
];
|
|
221
|
-
regularFootnoteGroups = regularFootnoteGroups.filter((group) => {
|
|
222
|
-
return group.childElementCount === 0
|
|
223
|
-
? false
|
|
224
|
-
: !group.querySelector('fn[fn-type]');
|
|
225
|
-
});
|
|
226
|
-
if (regularFootnoteGroups.length > 0) {
|
|
227
|
-
regularFootnoteGroups.map((g) => removeNodeFromParent(g));
|
|
228
|
-
const footnotes = this.createFootnotesSection(regularFootnoteGroups, createElement);
|
|
229
|
-
group.appendChild(footnotes);
|
|
214
|
+
if (footnotesSection) {
|
|
215
|
+
group.insertBefore(footnotesSection, ((_a = group.firstChild) === null || _a === void 0 ? void 0 : _a.nextSibling) || group.firstChild);
|
|
230
216
|
}
|
|
231
217
|
},
|
|
232
218
|
moveCaptionsToEnd(body) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@manuscripts/transform",
|
|
3
3
|
"description": "ProseMirror transformer for Manuscripts applications",
|
|
4
|
-
"version": "2.1.
|
|
4
|
+
"version": "2.1.8-LEAN-3423-0",
|
|
5
5
|
"repository": "github:Atypon-OpenSource/manuscripts-transform",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"main": "dist/cjs",
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"version": "yarn build"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@manuscripts/json-schema": "
|
|
33
|
-
"@manuscripts/library": "
|
|
32
|
+
"@manuscripts/json-schema": "2.2.6-LEAN-3423-0",
|
|
33
|
+
"@manuscripts/library": "1.3.5-LEAN-3423-0",
|
|
34
34
|
"debug": "^4.3.4",
|
|
35
35
|
"jszip": "^3.10.1",
|
|
36
36
|
"mime": "^3.0.0",
|
|
@@ -78,4 +78,4 @@
|
|
|
78
78
|
"rimraf": "^3.0.2",
|
|
79
79
|
"typescript": "^4.0.5"
|
|
80
80
|
}
|
|
81
|
-
}
|
|
81
|
+
}
|