@eightyfourthousand/lib-editing 2026.3.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/.babelrc +12 -0
- package/.eslintrc.json +18 -0
- package/README.md +7 -0
- package/jest.config.ts +10 -0
- package/package.json +35 -0
- package/postcss.config.mjs +9 -0
- package/project.json +29 -0
- package/src/fixtures/basic/json.ts +396 -0
- package/src/fixtures/toh251/json.ts +4913 -0
- package/src/fixtures/toh251/passages.ts +2814 -0
- package/src/fixtures/types.ts +8 -0
- package/src/index.ts +4 -0
- package/src/lib/block.ts +226 -0
- package/src/lib/components/editor/BlockEditor.tsx +38 -0
- package/src/lib/components/editor/EditorBackMatterPage.tsx +95 -0
- package/src/lib/components/editor/EditorBodyPage.tsx +87 -0
- package/src/lib/components/editor/EditorHeader.tsx +22 -0
- package/src/lib/components/editor/EditorLayout.tsx +62 -0
- package/src/lib/components/editor/EditorLeftPanelPage.tsx +27 -0
- package/src/lib/components/editor/EditorProvider.tsx +399 -0
- package/src/lib/components/editor/PaginationProvider.tsx +472 -0
- package/src/lib/components/editor/TitlesBuilder.tsx +40 -0
- package/src/lib/components/editor/TranslationBuilder.tsx +171 -0
- package/src/lib/components/editor/TranslationEditor.tsx +32 -0
- package/src/lib/components/editor/extensions/Abbreviation/Abbreviation.ts +133 -0
- package/src/lib/components/editor/extensions/Audio/Audio.ts +69 -0
- package/src/lib/components/editor/extensions/Bold.ts +43 -0
- package/src/lib/components/editor/extensions/Document.ts +8 -0
- package/src/lib/components/editor/extensions/DragHandle/DragHandle.ts +429 -0
- package/src/lib/components/editor/extensions/EndNoteLink/EndNoteLink.tsx +39 -0
- package/src/lib/components/editor/extensions/EndNoteLink/EndNoteLinkHoverContent.tsx +139 -0
- package/src/lib/components/editor/extensions/EndNoteLink/EndNoteLinkMark.ts +236 -0
- package/src/lib/components/editor/extensions/EndNoteLink/endnote-utils.ts +412 -0
- package/src/lib/components/editor/extensions/GlobalConfig.ts +52 -0
- package/src/lib/components/editor/extensions/GlossaryInstance/GlossaryInput.tsx +54 -0
- package/src/lib/components/editor/extensions/GlossaryInstance/GlossaryInstance.tsx +129 -0
- package/src/lib/components/editor/extensions/GlossaryInstance/GlossaryInstanceNode.ts +148 -0
- package/src/lib/components/editor/extensions/Heading/Heading.ts +71 -0
- package/src/lib/components/editor/extensions/HoverInputField.tsx +54 -0
- package/src/lib/components/editor/extensions/Image.ts +18 -0
- package/src/lib/components/editor/extensions/Indent.ts +103 -0
- package/src/lib/components/editor/extensions/InternalLink/InternalLink.ts +173 -0
- package/src/lib/components/editor/extensions/InternalLink/InternalLinkHoverContent.tsx +137 -0
- package/src/lib/components/editor/extensions/InternalLink/InternalLinkInput.tsx +71 -0
- package/src/lib/components/editor/extensions/InternalLink/index.ts +1 -0
- package/src/lib/components/editor/extensions/Italic.ts +50 -0
- package/src/lib/components/editor/extensions/LeadingSpace.ts +106 -0
- package/src/lib/components/editor/extensions/Line/LineNode.ts +41 -0
- package/src/lib/components/editor/extensions/LineGroup/LineGroupNode.ts +124 -0
- package/src/lib/components/editor/extensions/Link/Link.ts +65 -0
- package/src/lib/components/editor/extensions/Link/LinkHoverContent.tsx +124 -0
- package/src/lib/components/editor/extensions/Link/index.ts +1 -0
- package/src/lib/components/editor/extensions/List.ts +74 -0
- package/src/lib/components/editor/extensions/Mantra/Mantra.ts +88 -0
- package/src/lib/components/editor/extensions/Mention/Mention.ts +184 -0
- package/src/lib/components/editor/extensions/Mention/MentionHoverContent.tsx +158 -0
- package/src/lib/components/editor/extensions/NodeWrapper.tsx +57 -0
- package/src/lib/components/editor/extensions/Paragraph/Paragraph.ts +25 -0
- package/src/lib/components/editor/extensions/ParagraphIndent.ts +87 -0
- package/src/lib/components/editor/extensions/Passage/EditLabel.tsx +57 -0
- package/src/lib/components/editor/extensions/Passage/EditorOptions.tsx +29 -0
- package/src/lib/components/editor/extensions/Passage/Passage.tsx +238 -0
- package/src/lib/components/editor/extensions/Passage/PassageNode.ts +223 -0
- package/src/lib/components/editor/extensions/Passage/ReaderOptions.tsx +55 -0
- package/src/lib/components/editor/extensions/Passage/ShowAnnotations.tsx +92 -0
- package/src/lib/components/editor/extensions/Passage/index.ts +1 -0
- package/src/lib/components/editor/extensions/Passage/label.spec.ts +118 -0
- package/src/lib/components/editor/extensions/Passage/label.ts +39 -0
- package/src/lib/components/editor/extensions/Placeholder.ts +9 -0
- package/src/lib/components/editor/extensions/SlashCommand/SlashCommand.ts +65 -0
- package/src/lib/components/editor/extensions/SlashCommand/SuggestionList.tsx +109 -0
- package/src/lib/components/editor/extensions/SlashCommand/Suggestions.ts +185 -0
- package/src/lib/components/editor/extensions/SmallCaps.ts +110 -0
- package/src/lib/components/editor/extensions/StarterKit.ts +36 -0
- package/src/lib/components/editor/extensions/Subscript.ts +43 -0
- package/src/lib/components/editor/extensions/Superscript.ts +43 -0
- package/src/lib/components/editor/extensions/Table.ts +32 -0
- package/src/lib/components/editor/extensions/TextAlign.ts +5 -0
- package/src/lib/components/editor/extensions/TitleMetadata.ts +40 -0
- package/src/lib/components/editor/extensions/TitleNode.ts +133 -0
- package/src/lib/components/editor/extensions/TitlesNode.ts +102 -0
- package/src/lib/components/editor/extensions/Trailer.ts +57 -0
- package/src/lib/components/editor/extensions/TranslationDocument.ts +7 -0
- package/src/lib/components/editor/extensions/TranslationMetadata.ts +58 -0
- package/src/lib/components/editor/extensions/Underline.ts +43 -0
- package/src/lib/components/editor/hooks/index.ts +4 -0
- package/src/lib/components/editor/hooks/useBlockEditor.ts +53 -0
- package/src/lib/components/editor/hooks/useDefaultExtensions.ts +39 -0
- package/src/lib/components/editor/hooks/useDirtyStore.ts +33 -0
- package/src/lib/components/editor/hooks/useTranslationExtensions.ts +148 -0
- package/src/lib/components/editor/index.ts +10 -0
- package/src/lib/components/editor/menus/EmptyBubbleMenu.tsx +42 -0
- package/src/lib/components/editor/menus/MainBubbleMenu.tsx +51 -0
- package/src/lib/components/editor/menus/TranslationBubbleMenu.tsx +57 -0
- package/src/lib/components/editor/menus/index.ts +3 -0
- package/src/lib/components/editor/menus/selectors/EndNoteSelector.tsx +388 -0
- package/src/lib/components/editor/menus/selectors/GlossarySelector.tsx +63 -0
- package/src/lib/components/editor/menus/selectors/LinkSelector.tsx +68 -0
- package/src/lib/components/editor/menus/selectors/MantraSelector.tsx +119 -0
- package/src/lib/components/editor/menus/selectors/NodeSelector.tsx +144 -0
- package/src/lib/components/editor/menus/selectors/ParagraphButtons.tsx +68 -0
- package/src/lib/components/editor/menus/selectors/SelectorInputField.tsx +68 -0
- package/src/lib/components/editor/menus/selectors/TextAlignSelector.tsx +89 -0
- package/src/lib/components/editor/menus/selectors/TextButtons.tsx +89 -0
- package/src/lib/components/editor/menus/selectors/TranslationNodeSelector.tsx +143 -0
- package/src/lib/components/editor/menus/selectors/TranslationTextButtons.tsx +125 -0
- package/src/lib/components/editor/menus/selectors/index.ts +5 -0
- package/src/lib/components/editor/save-filter.spec.ts +94 -0
- package/src/lib/components/editor/save-filter.ts +27 -0
- package/src/lib/components/editor/util.ts +304 -0
- package/src/lib/components/index.ts +3 -0
- package/src/lib/components/reader/ReaderBackMatterPage.tsx +62 -0
- package/src/lib/components/reader/ReaderBackMatterPanel.tsx +53 -0
- package/src/lib/components/reader/ReaderBodyPage.tsx +46 -0
- package/src/lib/components/reader/ReaderBodyPanel.tsx +68 -0
- package/src/lib/components/reader/ReaderLayout.tsx +39 -0
- package/src/lib/components/reader/ReaderLeftPanel.tsx +8 -0
- package/src/lib/components/reader/ReaderLeftPanelPage.tsx +31 -0
- package/src/lib/components/reader/TranslationReader.tsx +28 -0
- package/src/lib/components/reader/index.ts +2 -0
- package/src/lib/components/reader/ssr.ts +3 -0
- package/src/lib/components/shared/AiSummarizerPage.tsx +12 -0
- package/src/lib/components/shared/BackMatterPanel.tsx +143 -0
- package/src/lib/components/shared/BodyPanel.tsx +214 -0
- package/src/lib/components/shared/HoverCardProvider.tsx +407 -0
- package/src/lib/components/shared/Imprint.tsx +24 -0
- package/src/lib/components/shared/LabeledElement.tsx +133 -0
- package/src/lib/components/shared/LeftPanel.tsx +65 -0
- package/src/lib/components/shared/NavigationContext.ts +64 -0
- package/src/lib/components/shared/NavigationProvider.tsx +368 -0
- package/src/lib/components/shared/OpenGraphImage.tsx +75 -0
- package/src/lib/components/shared/PassageSkeleton.tsx +10 -0
- package/src/lib/components/shared/RestrictionWarning.tsx +177 -0
- package/src/lib/components/shared/SourceReader.tsx +83 -0
- package/src/lib/components/shared/SuggestRevisionForm.tsx +99 -0
- package/src/lib/components/shared/TableOfContents.tsx +280 -0
- package/src/lib/components/shared/ThreeColumnRenderer.tsx +54 -0
- package/src/lib/components/shared/TranslationHeader.tsx +86 -0
- package/src/lib/components/shared/TranslationHoverCard.tsx +84 -0
- package/src/lib/components/shared/TranslationSkeleton.tsx +16 -0
- package/src/lib/components/shared/TranslationTable.tsx +155 -0
- package/src/lib/components/shared/bibliography/BibliographyBody.tsx +28 -0
- package/src/lib/components/shared/bibliography/BibliographyList.tsx +63 -0
- package/src/lib/components/shared/bibliography/index.ts +1 -0
- package/src/lib/components/shared/generate-metadata.ts +44 -0
- package/src/lib/components/shared/glossary/GlossaryInstanceBody.tsx +144 -0
- package/src/lib/components/shared/glossary/GlossaryPaginationProvider.tsx +317 -0
- package/src/lib/components/shared/glossary/GlossarySkeleton.tsx +19 -0
- package/src/lib/components/shared/glossary/GlossaryTermList.tsx +58 -0
- package/src/lib/components/shared/glossary/index.ts +3 -0
- package/src/lib/components/shared/hooks/useGlossaryInstanceListener.tsx +42 -0
- package/src/lib/components/shared/hooks/useScrollInTab.tsx +43 -0
- package/src/lib/components/shared/hooks/useScrollPositionRestore.ts +274 -0
- package/src/lib/components/shared/hooks/useTohToggle.tsx +52 -0
- package/src/lib/components/shared/index.ts +11 -0
- package/src/lib/components/shared/ssr.ts +2 -0
- package/src/lib/components/shared/titles/FramedCard.tsx +132 -0
- package/src/lib/components/shared/titles/LongTitle.tsx +20 -0
- package/src/lib/components/shared/titles/LongTitles.tsx +28 -0
- package/src/lib/components/shared/titles/Title.tsx +54 -0
- package/src/lib/components/shared/titles/TitleDetails.tsx +47 -0
- package/src/lib/components/shared/titles/TitleForm.tsx +37 -0
- package/src/lib/components/shared/titles/Titles.tsx +114 -0
- package/src/lib/components/shared/titles/TitlesCard.tsx +113 -0
- package/src/lib/components/shared/titles/index.ts +8 -0
- package/src/lib/components/shared/types.ts +79 -0
- package/src/lib/components/ssr.ts +2 -0
- package/src/lib/exporters/abbreviation.spec.ts +31 -0
- package/src/lib/exporters/abbreviation.ts +22 -0
- package/src/lib/exporters/annotation.ts +193 -0
- package/src/lib/exporters/audio.spec.ts +77 -0
- package/src/lib/exporters/audio.ts +27 -0
- package/src/lib/exporters/blockquote.spec.ts +48 -0
- package/src/lib/exporters/blockquote.ts +24 -0
- package/src/lib/exporters/code.spec.ts +93 -0
- package/src/lib/exporters/code.ts +26 -0
- package/src/lib/exporters/end-note-link.spec.ts +104 -0
- package/src/lib/exporters/end-note-link.ts +35 -0
- package/src/lib/exporters/export.ts +12 -0
- package/src/lib/exporters/glossary-instance.spec.ts +85 -0
- package/src/lib/exporters/glossary-instance.ts +31 -0
- package/src/lib/exporters/has-abbreviation.spec.ts +31 -0
- package/src/lib/exporters/has-abbreviation.ts +21 -0
- package/src/lib/exporters/heading.spec.ts +80 -0
- package/src/lib/exporters/heading.ts +28 -0
- package/src/lib/exporters/image.spec.ts +48 -0
- package/src/lib/exporters/image.ts +25 -0
- package/src/lib/exporters/indent.spec.ts +58 -0
- package/src/lib/exporters/indent.ts +18 -0
- package/src/lib/exporters/index.ts +1 -0
- package/src/lib/exporters/internal-link.spec.ts +90 -0
- package/src/lib/exporters/internal-link.ts +35 -0
- package/src/lib/exporters/italic.spec.ts +84 -0
- package/src/lib/exporters/italic.ts +55 -0
- package/src/lib/exporters/leading-space.spec.ts +28 -0
- package/src/lib/exporters/leading-space.ts +16 -0
- package/src/lib/exporters/line-group.spec.ts +48 -0
- package/src/lib/exporters/line-group.ts +24 -0
- package/src/lib/exporters/line.spec.ts +48 -0
- package/src/lib/exporters/line.ts +24 -0
- package/src/lib/exporters/link.spec.ts +123 -0
- package/src/lib/exporters/link.ts +67 -0
- package/src/lib/exporters/list-item.spec.ts +48 -0
- package/src/lib/exporters/list-item.ts +24 -0
- package/src/lib/exporters/list.spec.ts +82 -0
- package/src/lib/exporters/list.ts +31 -0
- package/src/lib/exporters/mantra.spec.ts +51 -0
- package/src/lib/exporters/mantra.ts +25 -0
- package/src/lib/exporters/mention.ts +41 -0
- package/src/lib/exporters/paragraph.spec.ts +173 -0
- package/src/lib/exporters/paragraph.ts +32 -0
- package/src/lib/exporters/quote.spec.ts +56 -0
- package/src/lib/exporters/quote.ts +25 -0
- package/src/lib/exporters/span.spec.ts +118 -0
- package/src/lib/exporters/span.ts +44 -0
- package/src/lib/exporters/table-body-data.spec.ts +48 -0
- package/src/lib/exporters/table-body-data.ts +24 -0
- package/src/lib/exporters/table-body-header.spec.ts +48 -0
- package/src/lib/exporters/table-body-header.ts +24 -0
- package/src/lib/exporters/table-body-row.spec.ts +48 -0
- package/src/lib/exporters/table-body-row.ts +24 -0
- package/src/lib/exporters/table.spec.ts +48 -0
- package/src/lib/exporters/table.ts +24 -0
- package/src/lib/exporters/trailer.spec.ts +48 -0
- package/src/lib/exporters/trailer.ts +24 -0
- package/src/lib/exporters/util.ts +62 -0
- package/src/lib/passage.ts +182 -0
- package/src/lib/titles.ts +80 -0
- package/src/lib/transformers/abbreviation.spec.ts +87 -0
- package/src/lib/transformers/abbreviation.ts +30 -0
- package/src/lib/transformers/annotate.ts +146 -0
- package/src/lib/transformers/audio.spec.ts +55 -0
- package/src/lib/transformers/audio.ts +29 -0
- package/src/lib/transformers/blockquote.spec.ts +48 -0
- package/src/lib/transformers/blockquote.ts +41 -0
- package/src/lib/transformers/code.spec.ts +52 -0
- package/src/lib/transformers/code.ts +22 -0
- package/src/lib/transformers/deprecated.ts +7 -0
- package/src/lib/transformers/end-note-link.spec.ts +56 -0
- package/src/lib/transformers/end-note-link.ts +76 -0
- package/src/lib/transformers/glossary-instance.spec.ts +55 -0
- package/src/lib/transformers/glossary-instance.ts +40 -0
- package/src/lib/transformers/has-abbreviation.spec.ts +50 -0
- package/src/lib/transformers/has-abbreviation.ts +30 -0
- package/src/lib/transformers/heading.spec.ts +62 -0
- package/src/lib/transformers/heading.ts +30 -0
- package/src/lib/transformers/image.spec.ts +51 -0
- package/src/lib/transformers/image.ts +28 -0
- package/src/lib/transformers/indent.spec.ts +53 -0
- package/src/lib/transformers/indent.ts +17 -0
- package/src/lib/transformers/index.ts +33 -0
- package/src/lib/transformers/inline-title.spec.ts +59 -0
- package/src/lib/transformers/inline-title.ts +34 -0
- package/src/lib/transformers/internal-link.spec.ts +67 -0
- package/src/lib/transformers/internal-link.ts +65 -0
- package/src/lib/transformers/italic.ts +22 -0
- package/src/lib/transformers/leading-space.spec.ts +55 -0
- package/src/lib/transformers/leading-space.ts +17 -0
- package/src/lib/transformers/line-group.spec.ts +48 -0
- package/src/lib/transformers/line-group.ts +37 -0
- package/src/lib/transformers/line.spec.ts +54 -0
- package/src/lib/transformers/line.ts +27 -0
- package/src/lib/transformers/link.spec.ts +61 -0
- package/src/lib/transformers/link.ts +27 -0
- package/src/lib/transformers/list-item.spec.ts +48 -0
- package/src/lib/transformers/list-item.ts +37 -0
- package/src/lib/transformers/list.spec.ts +58 -0
- package/src/lib/transformers/list.ts +42 -0
- package/src/lib/transformers/mantra.spec.ts +58 -0
- package/src/lib/transformers/mantra.ts +28 -0
- package/src/lib/transformers/mention.ts +70 -0
- package/src/lib/transformers/paragraph.spec.ts +46 -0
- package/src/lib/transformers/paragraph.ts +26 -0
- package/src/lib/transformers/quote.spec.ts +42 -0
- package/src/lib/transformers/quote.ts +3 -0
- package/src/lib/transformers/quoted.ts +3 -0
- package/src/lib/transformers/recurse.ts +76 -0
- package/src/lib/transformers/reference.ts +3 -0
- package/src/lib/transformers/span.spec.ts +68 -0
- package/src/lib/transformers/span.ts +78 -0
- package/src/lib/transformers/split-at.ts +58 -0
- package/src/lib/transformers/split-block.ts +110 -0
- package/src/lib/transformers/split-content.ts +67 -0
- package/src/lib/transformers/split-insert.ts +76 -0
- package/src/lib/transformers/split-marks.ts +42 -0
- package/src/lib/transformers/split-node.ts +138 -0
- package/src/lib/transformers/table-body-data.spec.ts +44 -0
- package/src/lib/transformers/table-body-data.ts +29 -0
- package/src/lib/transformers/table-body-header.spec.ts +44 -0
- package/src/lib/transformers/table-body-header.ts +29 -0
- package/src/lib/transformers/table-body-row.spec.ts +44 -0
- package/src/lib/transformers/table-body-row.ts +29 -0
- package/src/lib/transformers/table.spec.ts +47 -0
- package/src/lib/transformers/table.ts +29 -0
- package/src/lib/transformers/trailer.spec.ts +43 -0
- package/src/lib/transformers/trailer.ts +26 -0
- package/src/lib/transformers/transformer.ts +25 -0
- package/src/lib/transformers/unknown.ts +8 -0
- package/src/lib/transformers/util.ts +20 -0
- package/src/lib/types.ts +10 -0
- package/src/ssr.ts +1 -0
- package/tsconfig.json +20 -0
- package/tsconfig.lib.json +29 -0
- package/tsconfig.spec.json +22 -0
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
import { AnnotationType } from '@eightyfourthousand/data-access';
|
|
2
|
+
import { isBlockAnnotation } from './annotate';
|
|
3
|
+
import { splitNode } from './split-node';
|
|
4
|
+
import { Transformer } from './transformer';
|
|
5
|
+
import { TranslationEditorContentItem } from '../components/editor';
|
|
6
|
+
import { filterAttrs } from './util';
|
|
7
|
+
|
|
8
|
+
export const splitBlock: Transformer = ({
|
|
9
|
+
root,
|
|
10
|
+
parent,
|
|
11
|
+
block,
|
|
12
|
+
annotation,
|
|
13
|
+
transform,
|
|
14
|
+
}) => {
|
|
15
|
+
if (!isBlockAnnotation((block.type || 'unknown') as AnnotationType)) {
|
|
16
|
+
console.warn(
|
|
17
|
+
`splitBlock transformer expects to find a block annotation, but found: ${block?.type}`,
|
|
18
|
+
);
|
|
19
|
+
return;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
if (!parent?.content?.length) {
|
|
23
|
+
console.warn(
|
|
24
|
+
'splitBlock transformer expects to find a parent block for the block.',
|
|
25
|
+
);
|
|
26
|
+
return;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
const blockIndex = parent.content.findIndex(
|
|
30
|
+
(item) => item.attrs?.uuid === block.attrs?.uuid,
|
|
31
|
+
);
|
|
32
|
+
|
|
33
|
+
if (blockIndex === -1) {
|
|
34
|
+
console.warn(
|
|
35
|
+
'splitBlock transformer expects to find the block in its parent.',
|
|
36
|
+
);
|
|
37
|
+
return;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
const annStart = annotation?.start ?? 0;
|
|
41
|
+
const annEnd = annotation?.end ?? 0;
|
|
42
|
+
|
|
43
|
+
if (annStart === annEnd) {
|
|
44
|
+
console.warn(
|
|
45
|
+
'splitBlock transformer expects to find an annotation with non-zero length.',
|
|
46
|
+
);
|
|
47
|
+
return;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
const currentContent = block.content || [];
|
|
51
|
+
const prefixContent: typeof currentContent = [];
|
|
52
|
+
const midContent: typeof currentContent = [];
|
|
53
|
+
const suffixContent: typeof currentContent = [];
|
|
54
|
+
|
|
55
|
+
for (const item of currentContent) {
|
|
56
|
+
const { prefix, middle, suffix } = splitNode(item, annStart, annEnd);
|
|
57
|
+
prefixContent.push(...prefix);
|
|
58
|
+
midContent.push(...middle);
|
|
59
|
+
suffixContent.push(...suffix);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
const attrs = filterAttrs(block.attrs);
|
|
63
|
+
const newBlocks: TranslationEditorContentItem[] = [];
|
|
64
|
+
if (prefixContent.length) {
|
|
65
|
+
newBlocks.push({
|
|
66
|
+
...block,
|
|
67
|
+
content: prefixContent,
|
|
68
|
+
attrs: {
|
|
69
|
+
...attrs,
|
|
70
|
+
start: prefixContent[0].attrs?.start ?? 0,
|
|
71
|
+
end: prefixContent[prefixContent.length - 1].attrs?.end ?? 0,
|
|
72
|
+
},
|
|
73
|
+
});
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
if (midContent.length) {
|
|
77
|
+
const newBlock: TranslationEditorContentItem = {
|
|
78
|
+
...block,
|
|
79
|
+
type: annotation.type,
|
|
80
|
+
content: midContent,
|
|
81
|
+
attrs: {
|
|
82
|
+
...attrs,
|
|
83
|
+
start: midContent[0].attrs?.start ?? annStart,
|
|
84
|
+
end: midContent[midContent.length - 1].attrs?.end ?? annEnd,
|
|
85
|
+
uuid: annotation.uuid,
|
|
86
|
+
},
|
|
87
|
+
};
|
|
88
|
+
transform?.({
|
|
89
|
+
root,
|
|
90
|
+
parent,
|
|
91
|
+
block: newBlock,
|
|
92
|
+
annotation,
|
|
93
|
+
});
|
|
94
|
+
newBlocks.push(newBlock);
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
if (suffixContent.length) {
|
|
98
|
+
newBlocks.push({
|
|
99
|
+
...block,
|
|
100
|
+
content: suffixContent,
|
|
101
|
+
attrs: {
|
|
102
|
+
...attrs,
|
|
103
|
+
start: suffixContent[0].attrs?.start ?? 0,
|
|
104
|
+
end: suffixContent[suffixContent.length - 1].attrs?.end ?? 0,
|
|
105
|
+
},
|
|
106
|
+
});
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
parent.content.splice(blockIndex, 1, ...newBlocks);
|
|
110
|
+
};
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import { AnnotationType } from '@eightyfourthousand/data-access';
|
|
2
|
+
import { isInlineAnnotation } from './annotate';
|
|
3
|
+
import { Transformer } from './transformer';
|
|
4
|
+
import { splitNode } from './split-node';
|
|
5
|
+
import type { TranslationEditorContentItem } from '../components/editor';
|
|
6
|
+
import { filterAttrs } from './util';
|
|
7
|
+
|
|
8
|
+
export const splitContent: Transformer = ({
|
|
9
|
+
root,
|
|
10
|
+
parent,
|
|
11
|
+
block,
|
|
12
|
+
annotation,
|
|
13
|
+
transform,
|
|
14
|
+
}) => {
|
|
15
|
+
if (!isInlineAnnotation(block.type as AnnotationType)) {
|
|
16
|
+
console.warn(
|
|
17
|
+
`splitContent: block type expects to find an inline annotation, but found: ${block.type}.`,
|
|
18
|
+
);
|
|
19
|
+
return;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
if (!parent || !parent.content) {
|
|
23
|
+
console.warn(
|
|
24
|
+
'splitContent: transformer expects to find a parent block with content.',
|
|
25
|
+
);
|
|
26
|
+
return;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
const annStartAbs = annotation.start;
|
|
30
|
+
const annEndAbs = annotation.end;
|
|
31
|
+
const currentContent = parent.content || [];
|
|
32
|
+
const newContent = [];
|
|
33
|
+
const attrs = filterAttrs(block.attrs);
|
|
34
|
+
|
|
35
|
+
for (const item of currentContent) {
|
|
36
|
+
const { prefix, middle, suffix } = splitNode(item, annStartAbs, annEndAbs);
|
|
37
|
+
|
|
38
|
+
newContent.push(...prefix);
|
|
39
|
+
// Only transform the middle segments
|
|
40
|
+
for (const midItem of middle) {
|
|
41
|
+
transform?.({
|
|
42
|
+
root,
|
|
43
|
+
parent,
|
|
44
|
+
block: midItem,
|
|
45
|
+
annotation,
|
|
46
|
+
});
|
|
47
|
+
newContent.push(midItem);
|
|
48
|
+
}
|
|
49
|
+
newContent.push(...suffix);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
if (annStartAbs === annEndAbs && annStartAbs === attrs?.end) {
|
|
53
|
+
const newBlock: TranslationEditorContentItem = {
|
|
54
|
+
type: annotation.type,
|
|
55
|
+
attrs: {
|
|
56
|
+
...attrs,
|
|
57
|
+
start: annStartAbs,
|
|
58
|
+
end: annEndAbs,
|
|
59
|
+
},
|
|
60
|
+
};
|
|
61
|
+
transform?.({ root, parent, block: newBlock, annotation });
|
|
62
|
+
newContent.push(newBlock);
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
newContent.sort((a, b) => (a.attrs?.start ?? 0) - (b.attrs?.start ?? 0));
|
|
66
|
+
parent.content = newContent;
|
|
67
|
+
};
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import { Transformer } from './transformer';
|
|
2
|
+
import { splitNode } from './split-node';
|
|
3
|
+
import type { TranslationEditorContentItem } from '../components/editor';
|
|
4
|
+
import { filterAttrs } from './util';
|
|
5
|
+
|
|
6
|
+
export const sort = (nodes: TranslationEditorContentItem[]) => {
|
|
7
|
+
return nodes.sort((a, b) => (a.attrs?.start ?? 0) - (b.attrs?.start ?? 0));
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
export const insert = (
|
|
11
|
+
node: TranslationEditorContentItem,
|
|
12
|
+
nodes: TranslationEditorContentItem[],
|
|
13
|
+
) => {
|
|
14
|
+
// unshift to prioritize new block when sorting
|
|
15
|
+
nodes.unshift(node);
|
|
16
|
+
return sort(nodes);
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
export const splitAndInsert: Transformer = (ctx) => {
|
|
20
|
+
const { root, parent, block, annotation, transform } = ctx;
|
|
21
|
+
const { start, end } = annotation;
|
|
22
|
+
|
|
23
|
+
if (start !== end) {
|
|
24
|
+
console.warn(
|
|
25
|
+
'splitAndInsert: transformer expects to find an annotation with zero-length (insertion point).',
|
|
26
|
+
);
|
|
27
|
+
return;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
if (!parent || !parent.content) {
|
|
31
|
+
console.warn(
|
|
32
|
+
'splitAndInsert: transformer expects to find a parent block with content.',
|
|
33
|
+
);
|
|
34
|
+
return;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
const newBlock: TranslationEditorContentItem = {
|
|
38
|
+
type: annotation.type,
|
|
39
|
+
attrs: {
|
|
40
|
+
...filterAttrs(block.attrs),
|
|
41
|
+
start,
|
|
42
|
+
end,
|
|
43
|
+
},
|
|
44
|
+
};
|
|
45
|
+
transform?.({ root, parent, block: newBlock, annotation });
|
|
46
|
+
|
|
47
|
+
if (start <= block.attrs?.start || start >= block.attrs?.end) {
|
|
48
|
+
parent.content = insert(newBlock, parent.content || []);
|
|
49
|
+
return;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
const currentContent = parent.content || [];
|
|
53
|
+
const newContent = [];
|
|
54
|
+
|
|
55
|
+
let wasInserted = false;
|
|
56
|
+
for (const item of currentContent) {
|
|
57
|
+
const { prefix, middle, suffix } = splitNode(item, start, end);
|
|
58
|
+
|
|
59
|
+
newContent.push(...prefix);
|
|
60
|
+
for (const midItem of middle) {
|
|
61
|
+
newContent.push(midItem);
|
|
62
|
+
if (!wasInserted && midItem.attrs?.end === start) {
|
|
63
|
+
newContent.push(newBlock);
|
|
64
|
+
wasInserted = true;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
if (!wasInserted) {
|
|
69
|
+
newContent.push(newBlock);
|
|
70
|
+
wasInserted = true;
|
|
71
|
+
}
|
|
72
|
+
newContent.push(...suffix);
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
parent.content = sort(newContent);
|
|
76
|
+
};
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
export type TranslationMark = {
|
|
2
|
+
type: string;
|
|
3
|
+
attrs?: {
|
|
4
|
+
start?: number;
|
|
5
|
+
end?: number;
|
|
6
|
+
[key: string]: unknown;
|
|
7
|
+
};
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
export const splitMarks = ({
|
|
11
|
+
marks,
|
|
12
|
+
start,
|
|
13
|
+
end,
|
|
14
|
+
}: {
|
|
15
|
+
marks?: TranslationMark[];
|
|
16
|
+
start: number;
|
|
17
|
+
end: number;
|
|
18
|
+
}) => {
|
|
19
|
+
if (!marks) {
|
|
20
|
+
return;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
const nextMarks = marks
|
|
24
|
+
.filter(
|
|
25
|
+
(mark) =>
|
|
26
|
+
(mark.attrs?.end ?? 0) <= end && (mark.attrs?.start ?? 0) <= end,
|
|
27
|
+
)
|
|
28
|
+
.map((mark) => {
|
|
29
|
+
const markStart = Math.max(mark.attrs?.start ?? 0, start);
|
|
30
|
+
const markEnd = Math.min(mark.attrs?.end ?? 0, end);
|
|
31
|
+
return {
|
|
32
|
+
...mark,
|
|
33
|
+
attrs: {
|
|
34
|
+
...mark.attrs,
|
|
35
|
+
start: markStart,
|
|
36
|
+
end: markEnd,
|
|
37
|
+
},
|
|
38
|
+
};
|
|
39
|
+
});
|
|
40
|
+
|
|
41
|
+
return nextMarks;
|
|
42
|
+
};
|
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
import type { TranslationEditorContentItem } from '../components/editor';
|
|
2
|
+
import { splitMarks } from './split-marks';
|
|
3
|
+
import { filterAttrs } from './util';
|
|
4
|
+
|
|
5
|
+
type SplitBlock = {
|
|
6
|
+
prefix: TranslationEditorContentItem[];
|
|
7
|
+
middle: TranslationEditorContentItem[];
|
|
8
|
+
suffix: TranslationEditorContentItem[];
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* Splits a node (text or block) by an absolute annotation range.
|
|
13
|
+
* Returns an object with arrays: prefix, middle, suffix.
|
|
14
|
+
* Each array contains 0 or more items.
|
|
15
|
+
* All returned nodes have correct absolute start/end.
|
|
16
|
+
*/
|
|
17
|
+
export function splitNode(
|
|
18
|
+
item: TranslationEditorContentItem,
|
|
19
|
+
rangeStart: number,
|
|
20
|
+
rangeEnd: number,
|
|
21
|
+
): SplitBlock {
|
|
22
|
+
const itemStart = item.attrs?.start ?? 0;
|
|
23
|
+
const text = item.text ?? '';
|
|
24
|
+
const itemEnd =
|
|
25
|
+
typeof item.text === 'string'
|
|
26
|
+
? itemStart + text.length
|
|
27
|
+
: (item.attrs?.end ?? itemStart);
|
|
28
|
+
|
|
29
|
+
if (itemEnd <= rangeStart) {
|
|
30
|
+
return { prefix: [item], middle: [], suffix: [] };
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
if (itemStart >= rangeEnd) {
|
|
34
|
+
return { prefix: [], middle: [], suffix: [item] };
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
const preLen = Math.max(rangeStart - itemStart, 0);
|
|
38
|
+
const midLen = Math.max(
|
|
39
|
+
Math.min(itemEnd, rangeEnd) - Math.max(itemStart, rangeStart),
|
|
40
|
+
0,
|
|
41
|
+
);
|
|
42
|
+
const postStartIdx = preLen + midLen;
|
|
43
|
+
|
|
44
|
+
const splits: SplitBlock = { prefix: [], middle: [], suffix: [] };
|
|
45
|
+
const attrs = filterAttrs(item.attrs);
|
|
46
|
+
const marks = item.marks ? [...item.marks] : undefined;
|
|
47
|
+
|
|
48
|
+
if (preLen > 0) {
|
|
49
|
+
const preText = text.slice(0, preLen);
|
|
50
|
+
if (preText) {
|
|
51
|
+
const prefixStart = itemStart;
|
|
52
|
+
const prefixEnd = prefixStart + preText.length;
|
|
53
|
+
|
|
54
|
+
const prefix = {
|
|
55
|
+
...item,
|
|
56
|
+
text: preText,
|
|
57
|
+
attrs: {
|
|
58
|
+
...attrs,
|
|
59
|
+
start: prefixStart,
|
|
60
|
+
end: prefixEnd,
|
|
61
|
+
},
|
|
62
|
+
};
|
|
63
|
+
|
|
64
|
+
const prefixMarks = splitMarks({
|
|
65
|
+
marks,
|
|
66
|
+
start: prefixStart,
|
|
67
|
+
end: prefixEnd,
|
|
68
|
+
});
|
|
69
|
+
|
|
70
|
+
if (prefixMarks?.length) {
|
|
71
|
+
prefix.marks = prefixMarks;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
splits.prefix.push(prefix);
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
if (midLen > 0) {
|
|
79
|
+
const midText = text.slice(preLen, preLen + midLen);
|
|
80
|
+
if (midText) {
|
|
81
|
+
const midStart = itemStart + preLen;
|
|
82
|
+
const midEnd = midStart + midText.length;
|
|
83
|
+
|
|
84
|
+
const mid = {
|
|
85
|
+
...item,
|
|
86
|
+
text: midText,
|
|
87
|
+
attrs: {
|
|
88
|
+
...attrs,
|
|
89
|
+
start: midStart,
|
|
90
|
+
end: midEnd,
|
|
91
|
+
},
|
|
92
|
+
};
|
|
93
|
+
|
|
94
|
+
const midMarks = splitMarks({
|
|
95
|
+
marks,
|
|
96
|
+
start: midStart,
|
|
97
|
+
end: midEnd,
|
|
98
|
+
});
|
|
99
|
+
|
|
100
|
+
if (midMarks?.length) {
|
|
101
|
+
mid.marks = midMarks;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
splits.middle.push(mid);
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
if (postStartIdx < text.length) {
|
|
109
|
+
const postText = text.slice(postStartIdx);
|
|
110
|
+
if (postText) {
|
|
111
|
+
const postStart = itemStart + postStartIdx;
|
|
112
|
+
const postEnd = postStart + postText.length;
|
|
113
|
+
const post = {
|
|
114
|
+
...item,
|
|
115
|
+
text: postText,
|
|
116
|
+
attrs: {
|
|
117
|
+
...attrs,
|
|
118
|
+
start: postStart,
|
|
119
|
+
end: postEnd,
|
|
120
|
+
},
|
|
121
|
+
};
|
|
122
|
+
|
|
123
|
+
const postMarks = splitMarks({
|
|
124
|
+
marks,
|
|
125
|
+
start: postStart,
|
|
126
|
+
end: postEnd,
|
|
127
|
+
});
|
|
128
|
+
|
|
129
|
+
if (postMarks?.length) {
|
|
130
|
+
post.marks = postMarks;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
splits.suffix.push(post);
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
return splits;
|
|
138
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { annotationsFromDTO, PassageDTO, passageFromDTO } from '@eightyfourthousand/data-access';
|
|
2
|
+
import { blockFromPassage } from '../block';
|
|
3
|
+
|
|
4
|
+
const dto: PassageDTO = {
|
|
5
|
+
sort: 1,
|
|
6
|
+
type: 'root',
|
|
7
|
+
uuid: 'passage-uuid-1234',
|
|
8
|
+
label: '',
|
|
9
|
+
xmlId: 'test-passage',
|
|
10
|
+
parent: 'test-parent',
|
|
11
|
+
content: 'Cell data',
|
|
12
|
+
work_uuid: 'work-uuid-5678',
|
|
13
|
+
annotations: [
|
|
14
|
+
{
|
|
15
|
+
end: 9,
|
|
16
|
+
type: 'table-body-data',
|
|
17
|
+
uuid: 'table-data-uuid-1',
|
|
18
|
+
start: 0,
|
|
19
|
+
content: [],
|
|
20
|
+
passage_uuid: 'passage-uuid-1234',
|
|
21
|
+
},
|
|
22
|
+
],
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
describe('tableBodyData transformer', () => {
|
|
26
|
+
const passage = passageFromDTO(
|
|
27
|
+
dto,
|
|
28
|
+
annotationsFromDTO(dto.annotations || [], dto.content.length),
|
|
29
|
+
);
|
|
30
|
+
const block = blockFromPassage(passage);
|
|
31
|
+
|
|
32
|
+
if (!block?.content) {
|
|
33
|
+
throw new Error('Block conversion failed');
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
it('should transform tableBodyData annotation correctly', () => {
|
|
37
|
+
// The tableCell should be in block.content[0]
|
|
38
|
+
const tableCellNode = block.content?.[0];
|
|
39
|
+
expect(tableCellNode).toBeDefined();
|
|
40
|
+
expect(tableCellNode?.type).toBe('tableCell');
|
|
41
|
+
expect(tableCellNode?.content).toBeDefined();
|
|
42
|
+
expect(tableCellNode?.content?.[0]?.type).toBe('paragraph');
|
|
43
|
+
});
|
|
44
|
+
});
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { recurse } from './recurse';
|
|
2
|
+
import { splitBlock } from './split-block';
|
|
3
|
+
import type { Transformer } from './transformer';
|
|
4
|
+
|
|
5
|
+
export const tableBodyData: Transformer = (ctx) => {
|
|
6
|
+
recurse({
|
|
7
|
+
...ctx,
|
|
8
|
+
until: ['paragraph'],
|
|
9
|
+
transform: (ctx) =>
|
|
10
|
+
splitBlock({
|
|
11
|
+
...ctx,
|
|
12
|
+
transform: ({ block }) => {
|
|
13
|
+
block.type = 'tableCell';
|
|
14
|
+
block.attrs = {
|
|
15
|
+
...block.attrs,
|
|
16
|
+
};
|
|
17
|
+
block.content = [
|
|
18
|
+
{
|
|
19
|
+
type: 'paragraph',
|
|
20
|
+
content: block.content || [],
|
|
21
|
+
attrs: {
|
|
22
|
+
...block.attrs,
|
|
23
|
+
},
|
|
24
|
+
},
|
|
25
|
+
];
|
|
26
|
+
},
|
|
27
|
+
}),
|
|
28
|
+
});
|
|
29
|
+
};
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { annotationsFromDTO, PassageDTO, passageFromDTO } from '@eightyfourthousand/data-access';
|
|
2
|
+
import { blockFromPassage } from '../block';
|
|
3
|
+
|
|
4
|
+
const dto: PassageDTO = {
|
|
5
|
+
sort: 1,
|
|
6
|
+
type: 'root',
|
|
7
|
+
uuid: 'passage-uuid-1234',
|
|
8
|
+
label: '',
|
|
9
|
+
xmlId: 'test-passage',
|
|
10
|
+
parent: 'test-parent',
|
|
11
|
+
content: 'Header cell',
|
|
12
|
+
work_uuid: 'work-uuid-5678',
|
|
13
|
+
annotations: [
|
|
14
|
+
{
|
|
15
|
+
end: 11,
|
|
16
|
+
type: 'table-body-header',
|
|
17
|
+
uuid: 'table-header-uuid-1',
|
|
18
|
+
start: 0,
|
|
19
|
+
content: [],
|
|
20
|
+
passage_uuid: 'passage-uuid-1234',
|
|
21
|
+
},
|
|
22
|
+
],
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
describe('tableBodyHeader transformer', () => {
|
|
26
|
+
const passage = passageFromDTO(
|
|
27
|
+
dto,
|
|
28
|
+
annotationsFromDTO(dto.annotations || [], dto.content.length),
|
|
29
|
+
);
|
|
30
|
+
const block = blockFromPassage(passage);
|
|
31
|
+
|
|
32
|
+
if (!block?.content) {
|
|
33
|
+
throw new Error('Block conversion failed');
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
it('should transform tableBodyHeader annotation correctly', () => {
|
|
37
|
+
// The tableHeader should be in block.content[0]
|
|
38
|
+
const tableHeaderNode = block.content?.[0];
|
|
39
|
+
expect(tableHeaderNode).toBeDefined();
|
|
40
|
+
expect(tableHeaderNode?.type).toBe('tableHeader');
|
|
41
|
+
expect(tableHeaderNode?.content).toBeDefined();
|
|
42
|
+
expect(tableHeaderNode?.content?.[0]?.type).toBe('paragraph');
|
|
43
|
+
});
|
|
44
|
+
});
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { recurse } from './recurse';
|
|
2
|
+
import { splitBlock } from './split-block';
|
|
3
|
+
import type { Transformer } from './transformer';
|
|
4
|
+
|
|
5
|
+
export const tableBodyHeader: Transformer = (ctx) => {
|
|
6
|
+
recurse({
|
|
7
|
+
...ctx,
|
|
8
|
+
until: ['paragraph'],
|
|
9
|
+
transform: (ctx) =>
|
|
10
|
+
splitBlock({
|
|
11
|
+
...ctx,
|
|
12
|
+
transform: ({ block }) => {
|
|
13
|
+
block.type = 'tableHeader';
|
|
14
|
+
block.attrs = {
|
|
15
|
+
...block.attrs,
|
|
16
|
+
};
|
|
17
|
+
block.content = [
|
|
18
|
+
{
|
|
19
|
+
type: 'paragraph',
|
|
20
|
+
content: block.content || [],
|
|
21
|
+
attrs: {
|
|
22
|
+
...block.attrs,
|
|
23
|
+
},
|
|
24
|
+
},
|
|
25
|
+
];
|
|
26
|
+
},
|
|
27
|
+
}),
|
|
28
|
+
});
|
|
29
|
+
};
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { annotationsFromDTO, PassageDTO, passageFromDTO } from '@eightyfourthousand/data-access';
|
|
2
|
+
import { blockFromPassage } from '../block';
|
|
3
|
+
|
|
4
|
+
const dto: PassageDTO = {
|
|
5
|
+
sort: 1,
|
|
6
|
+
type: 'root',
|
|
7
|
+
uuid: 'passage-uuid-1234',
|
|
8
|
+
label: '',
|
|
9
|
+
xmlId: 'test-passage',
|
|
10
|
+
parent: 'test-parent',
|
|
11
|
+
content: 'Row data',
|
|
12
|
+
work_uuid: 'work-uuid-5678',
|
|
13
|
+
annotations: [
|
|
14
|
+
{
|
|
15
|
+
end: 8,
|
|
16
|
+
type: 'table-body-row',
|
|
17
|
+
uuid: 'table-row-uuid-1',
|
|
18
|
+
start: 0,
|
|
19
|
+
content: [],
|
|
20
|
+
passage_uuid: 'passage-uuid-1234',
|
|
21
|
+
},
|
|
22
|
+
],
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
describe('tableBodyRow transformer', () => {
|
|
26
|
+
const passage = passageFromDTO(
|
|
27
|
+
dto,
|
|
28
|
+
annotationsFromDTO(dto.annotations || [], dto.content.length),
|
|
29
|
+
);
|
|
30
|
+
const block = blockFromPassage(passage);
|
|
31
|
+
|
|
32
|
+
if (!block?.content) {
|
|
33
|
+
throw new Error('Block conversion failed');
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
it('should transform tableBodyRow annotation correctly', () => {
|
|
37
|
+
// The tableRow should be in block.content[0]
|
|
38
|
+
const tableRowNode = block.content?.[0];
|
|
39
|
+
expect(tableRowNode).toBeDefined();
|
|
40
|
+
expect(tableRowNode?.type).toBe('tableRow');
|
|
41
|
+
expect(tableRowNode?.content).toBeDefined();
|
|
42
|
+
expect(tableRowNode?.content?.[0]?.type).toBe('paragraph');
|
|
43
|
+
});
|
|
44
|
+
});
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { recurse } from './recurse';
|
|
2
|
+
import { splitBlock } from './split-block';
|
|
3
|
+
import type { Transformer } from './transformer';
|
|
4
|
+
|
|
5
|
+
export const tableBodyRow: Transformer = (ctx) => {
|
|
6
|
+
recurse({
|
|
7
|
+
...ctx,
|
|
8
|
+
until: ['paragraph'],
|
|
9
|
+
transform: (ctx) =>
|
|
10
|
+
splitBlock({
|
|
11
|
+
...ctx,
|
|
12
|
+
transform: ({ block }) => {
|
|
13
|
+
block.type = 'tableRow';
|
|
14
|
+
block.attrs = {
|
|
15
|
+
...block.attrs,
|
|
16
|
+
};
|
|
17
|
+
block.content = [
|
|
18
|
+
{
|
|
19
|
+
type: 'paragraph',
|
|
20
|
+
content: block.content || [],
|
|
21
|
+
attrs: {
|
|
22
|
+
...block.attrs,
|
|
23
|
+
},
|
|
24
|
+
},
|
|
25
|
+
];
|
|
26
|
+
},
|
|
27
|
+
}),
|
|
28
|
+
});
|
|
29
|
+
};
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { annotationsFromDTO, PassageDTO, passageFromDTO } from '@eightyfourthousand/data-access';
|
|
2
|
+
import { blockFromPassage } from '../block';
|
|
3
|
+
import { recurseForType } from './recurse';
|
|
4
|
+
|
|
5
|
+
const dto: PassageDTO = {
|
|
6
|
+
sort: 1,
|
|
7
|
+
type: 'root',
|
|
8
|
+
uuid: 'passage-uuid-1234',
|
|
9
|
+
label: '',
|
|
10
|
+
xmlId: 'test-passage',
|
|
11
|
+
parent: 'test-parent',
|
|
12
|
+
content: 'Table content',
|
|
13
|
+
work_uuid: 'work-uuid-5678',
|
|
14
|
+
annotations: [
|
|
15
|
+
{
|
|
16
|
+
end: 13,
|
|
17
|
+
type: 'table',
|
|
18
|
+
uuid: 'table-uuid-1',
|
|
19
|
+
start: 0,
|
|
20
|
+
content: [],
|
|
21
|
+
passage_uuid: 'passage-uuid-1234',
|
|
22
|
+
},
|
|
23
|
+
],
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
describe('table transformer', () => {
|
|
27
|
+
const passage = passageFromDTO(
|
|
28
|
+
dto,
|
|
29
|
+
annotationsFromDTO(dto.annotations || [], dto.content.length),
|
|
30
|
+
);
|
|
31
|
+
const block = blockFromPassage(passage);
|
|
32
|
+
|
|
33
|
+
if (!block?.content) {
|
|
34
|
+
throw new Error('Block conversion failed');
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
it('should transform table annotation correctly', () => {
|
|
38
|
+
const tableNode = recurseForType({
|
|
39
|
+
until: 'table',
|
|
40
|
+
block,
|
|
41
|
+
});
|
|
42
|
+
expect(tableNode).toBeDefined();
|
|
43
|
+
expect(tableNode?.type).toBe('table');
|
|
44
|
+
expect(tableNode?.content).toBeDefined();
|
|
45
|
+
expect(tableNode?.content?.[0]?.type).toBe('paragraph');
|
|
46
|
+
});
|
|
47
|
+
});
|