@manuscripts/body-editor 3.12.67 → 3.13.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/dist/cjs/components/toolbar/type-selector/styles.js +2 -1
- package/dist/cjs/versions.js +1 -1
- package/dist/es/components/toolbar/type-selector/styles.js +2 -1
- package/dist/es/versions.js +1 -1
- package/dist/types/components/toolbar/type-selector/styles.d.ts +2 -2
- package/dist/types/lib/footnotes.d.ts +4 -2
- package/dist/types/lib/utils.d.ts +5 -4
- package/dist/types/versions.d.ts +1 -1
- package/package.json +37 -36
- package/{dist/es/lib/statistics.js → src/__mocks__/styleMock.ts} +2 -14
- package/src/assets.ts +20 -0
- package/src/classes/collabProvider.ts +38 -0
- package/src/clipboard.ts +54 -0
- package/src/commands.ts +2109 -0
- package/src/components/ChangeHandlingForm.tsx +54 -0
- package/src/components/LanguageDropdown/index.tsx +343 -0
- package/src/components/affiliations/AffiliationForm.tsx +238 -0
- package/src/components/affiliations/AffiliationItem.tsx +151 -0
- package/src/components/affiliations/AffiliationList.tsx +71 -0
- package/src/components/affiliations/AffiliationsModal.tsx +676 -0
- package/src/components/affiliations/AffiliationsPanel.tsx +76 -0
- package/src/components/affiliations/CreateAffiliationModal.tsx +135 -0
- package/src/components/authors/AuthorDetailsForm.tsx +438 -0
- package/src/components/authors/AuthorList.tsx +81 -0
- package/src/components/authors/AuthorsModal.tsx +642 -0
- package/src/components/authors/AuthorsPanel.tsx +69 -0
- package/src/components/authors/CreateAuthorModal.tsx +172 -0
- package/src/components/authors/CreditDrawer.tsx +71 -0
- package/src/components/authors/DraggableAuthor.tsx +228 -0
- package/src/components/authors/useManageAffiliations.tsx +77 -0
- package/src/components/authors/useManageCredit.tsx +63 -0
- package/src/components/authors-affiliations/AuthorsAndAffiliationsModals.tsx +170 -0
- package/src/components/authors-affiliations/GenericPanel.tsx +164 -0
- package/src/components/authors-affiliations/ModalTabs.tsx +100 -0
- package/src/components/awards/AwardForm.tsx +338 -0
- package/src/components/awards/AwardModal.tsx +120 -0
- package/src/components/awards/DeleteAwardDiaolog.tsx +52 -0
- package/src/components/dialog/ConfirmationDialog.tsx +131 -0
- package/src/components/form/CreateModalStyles.tsx +37 -0
- package/src/components/form/FormFooter.tsx +54 -0
- package/src/components/form/FormPlaceholder.tsx +71 -0
- package/src/components/form/ModalFormActions.tsx +88 -0
- package/src/components/form/UnsavedLabel.tsx +49 -0
- package/src/components/hooks/use-debounce.ts +56 -0
- package/src/components/hooks/useAffiliationShowsErrorIndicator.ts +51 -0
- package/src/components/hooks/useAuthorShowsErrorIndicator.ts +73 -0
- package/src/components/keyboard-shortcuts-modal/FormattedShortcut.tsx +56 -0
- package/src/components/keyboard-shortcuts-modal/KeyboardShortcutsModal.tsx +283 -0
- package/src/components/keyboard-shortcuts-modal/keyboard-shortcuts.ts +304 -0
- package/src/components/keywords/AddKeywordInline.tsx +284 -0
- package/src/components/keywords/DeleteKeywordDialog.tsx +52 -0
- package/src/components/modal-drawer/GenericDrawer.tsx +65 -0
- package/src/components/modal-drawer/GenericDrawerGroup.tsx +125 -0
- package/src/components/outline/DraggableTree.tsx +438 -0
- package/src/components/outline/ManuscriptOutline.tsx +127 -0
- package/src/components/outline/Outline.tsx +141 -0
- package/src/components/references/BibliographyItemSource.ts +80 -0
- package/src/components/references/CitationEditor.tsx +301 -0
- package/src/components/references/CitationViewer.tsx +62 -0
- package/src/components/references/ImportBibliographyForm.tsx +232 -0
- package/src/components/references/ImportBibliographyModal.tsx +159 -0
- package/src/components/references/ReferenceForm/PersonDropDown.tsx +93 -0
- package/src/components/references/ReferenceForm/ReferenceForm.tsx +701 -0
- package/src/components/references/ReferenceForm/config.ts +133 -0
- package/src/components/references/ReferenceForm/styled-components.ts +156 -0
- package/src/components/references/ReferenceLine.tsx +43 -0
- package/src/components/references/ReferenceSearch.tsx +163 -0
- package/src/components/references/ReferenceSearchResults.tsx +113 -0
- package/src/components/references/ReferenceSearchResultsPlaceholder.tsx +71 -0
- package/src/components/references/ReferenceSearchSection.tsx +124 -0
- package/src/components/references/ReferencesEditor.tsx +61 -0
- package/src/components/references/ReferencesModal.tsx +352 -0
- package/src/components/references/SearchInput.tsx +98 -0
- package/src/components/toolbar/InsertEmbedDialog.tsx +222 -0
- package/src/components/toolbar/InsertTableDialog.tsx +208 -0
- package/src/components/toolbar/ListMenuItem.tsx +203 -0
- package/src/components/toolbar/helpers.ts +547 -0
- package/src/components/toolbar/type-selector/OptionComponent.tsx +89 -0
- package/src/components/toolbar/type-selector/TypeSelector.tsx +157 -0
- package/src/components/toolbar/type-selector/styles.ts +79 -0
- package/src/components/views/CrossReferenceItems.tsx +199 -0
- package/src/components/views/DeleteEmbedDialog.tsx +83 -0
- package/src/components/views/DeleteFootnoteDialog.tsx +54 -0
- package/src/components/views/FigureDropdown.tsx +423 -0
- package/src/components/views/FootnotesSelector.tsx +255 -0
- package/src/components/views/InsertSpecialCharacter.tsx +245 -0
- package/src/components/views/LinkForm.tsx +220 -0
- package/src/components/views/TableCellContextMenu.tsx +241 -0
- package/src/configs/ManuscriptsEditor.ts +140 -0
- package/src/configs/editor-plugins.ts +119 -0
- package/src/configs/editor-views.ts +139 -0
- package/src/icons.ts +62 -0
- package/src/index.ts +65 -0
- package/src/keys/highlight.ts +65 -0
- package/src/keys/index.ts +33 -0
- package/src/keys/keyword.ts +69 -0
- package/src/keys/list.ts +156 -0
- package/src/keys/misc.ts +112 -0
- package/src/keys/title.ts +221 -0
- package/src/lib/__tests__/__fixtures__/doc.json +388 -0
- package/src/lib/__tests__/__snapshots__/paste.test.ts.snap +24 -0
- package/src/lib/__tests__/authors.test.ts +202 -0
- package/src/lib/__tests__/helpers.test.ts +46 -0
- package/src/lib/__tests__/paste.test.ts +57 -0
- package/src/lib/__tests__/plugins.test.ts +176 -0
- package/src/lib/__tests__/url.test.ts +31 -0
- package/src/lib/array-reducer.ts +68 -0
- package/src/lib/authors-and-affiliations.ts +81 -0
- package/src/lib/authors.ts +67 -0
- package/src/lib/capabilities.ts +55 -0
- package/src/lib/codemirror.ts +37 -0
- package/src/lib/comments.ts +123 -0
- package/src/lib/context-menu.ts +745 -0
- package/src/lib/copy.ts +30 -0
- package/src/lib/crossref.ts +90 -0
- package/src/lib/dnd.ts +29 -0
- package/src/lib/doc.ts +167 -0
- package/src/lib/dompurify.ts +28 -0
- package/src/lib/files.ts +180 -0
- package/src/lib/footnotes.ts +83 -0
- package/src/lib/get-media-type.ts +105 -0
- package/src/lib/helpers.ts +199 -0
- package/src/lib/hierarchy.ts +117 -0
- package/src/lib/languages.ts +37 -0
- package/src/lib/lists.ts +56 -0
- package/src/lib/math.ts +111 -0
- package/src/lib/media.ts +334 -0
- package/src/lib/navigation-utils.ts +235 -0
- package/src/lib/normalize.ts +70 -0
- package/src/lib/paste.ts +304 -0
- package/src/lib/placeholder.ts +32 -0
- package/src/lib/platform.ts +18 -0
- package/src/lib/plugins.ts +22 -0
- package/src/lib/popper.ts +180 -0
- package/src/lib/position-menu.ts +184 -0
- package/src/lib/references.ts +94 -0
- package/src/lib/template.ts +29 -0
- package/src/lib/track-changes-utils.ts +34 -0
- package/{dist/types/lib/statistics.d.ts → src/lib/url.ts} +11 -8
- package/src/lib/use-do-with-debounce.ts +39 -0
- package/src/lib/utils.ts +323 -0
- package/src/lib/view.ts +100 -0
- package/src/menus.tsx +684 -0
- package/src/node-type-icons.tsx +83 -0
- package/src/plugins/__tests__/__fixtures__/deleted-footnote.json +140 -0
- package/src/plugins/__tests__/__fixtures__/inserted-footnote.json +153 -0
- package/src/plugins/__tests__/footnotes.test.ts +67 -0
- package/src/plugins/accessibility_element.ts +219 -0
- package/src/plugins/add-subtitle.ts +102 -0
- package/src/plugins/affiliations.ts +136 -0
- package/src/plugins/alt-titles.ts +219 -0
- package/src/plugins/bibliography.ts +235 -0
- package/src/plugins/comments.ts +328 -0
- package/src/plugins/cross-references.ts +70 -0
- package/src/plugins/detect-inconsistency/detect-inconsistency-utils.ts +102 -0
- package/src/plugins/detect-inconsistency/index.ts +55 -0
- package/src/plugins/detect-inconsistency/validators.ts +283 -0
- package/src/plugins/doi.ts +66 -0
- package/src/plugins/editor-props.ts +39 -0
- package/src/plugins/elements.ts +60 -0
- package/src/plugins/footnotes.ts +298 -0
- package/src/plugins/link.ts +53 -0
- package/src/plugins/lock-body.ts +136 -0
- package/src/plugins/move-node.ts +55 -0
- package/src/plugins/objects.ts +125 -0
- package/src/plugins/paragraphs.ts +90 -0
- package/src/plugins/persist.ts +64 -0
- package/src/plugins/persistent-cursor.ts +66 -0
- package/src/plugins/placeholder.ts +219 -0
- package/src/plugins/prevent-empty.ts +50 -0
- package/src/plugins/search-replace/index.ts +157 -0
- package/src/plugins/search-replace/lib.ts +95 -0
- package/src/plugins/section_category.ts +212 -0
- package/src/plugins/section_title/autocompletion.ts +87 -0
- package/src/plugins/section_title/index.ts +105 -0
- package/src/plugins/selected-suggestion.ts +243 -0
- package/src/plugins/tables-cursor-fix.ts +143 -0
- package/src/plugins/translations.ts +263 -0
- package/src/rules.ts +60 -0
- package/src/selection.ts +112 -0
- package/src/testing/default-capabilities.ts +48 -0
- package/src/testing/default-editor-data.ts +73 -0
- package/src/testing/empty-editor-doc.json +62 -0
- package/src/testing/polyfill-dom.ts +43 -0
- package/src/testing/section-categories.json +161 -0
- package/src/testing/setup-editor.ts +55 -0
- package/src/tests.ts +42 -0
- package/src/toolbar.tsx +259 -0
- package/src/types/@citation-js/core.d.ts +16 -0
- package/src/types/@citation-js/index.d.ts +16 -0
- package/src/types/@citation-js/plugin-bibtex.d.ts +16 -0
- package/src/types/@citation-js/plugin-csl.d.ts +16 -0
- package/src/types/@citation-js/plugin-doi.d.ts +16 -0
- package/src/types/@citation-js/plugin-enw.d.ts +16 -0
- package/src/types/@citation-js/plugin-pubmed.d.ts +16 -0
- package/src/types/@citation-js/plugin-ris.d.ts +16 -0
- package/src/types/citeproc.d.ts +124 -0
- package/src/types/css.d.ts +16 -0
- package/src/types/json.d.ts +17 -0
- package/src/types/prosemirror-dev-tools.d.ts +16 -0
- package/src/types/prosemirror-dropcursor.d.ts +16 -0
- package/src/types/styled-components.d.ts +23 -0
- package/src/types.ts +49 -0
- package/src/useEditor.ts +244 -0
- package/src/versions.ts +3 -0
- package/src/views/ReactSubView.tsx +145 -0
- package/src/views/abstracts.ts +46 -0
- package/src/views/accessibility_element.ts +86 -0
- package/src/views/affiliations.ts +254 -0
- package/src/views/alt_title.ts +85 -0
- package/src/views/alt_titles_section.ts +97 -0
- package/src/views/attachment.ts +160 -0
- package/src/views/attachments.ts +72 -0
- package/src/views/author_notes.ts +96 -0
- package/src/views/award.ts +194 -0
- package/src/views/awards.ts +59 -0
- package/src/views/base_node_view.ts +85 -0
- package/src/views/bibliography_element.ts +313 -0
- package/src/views/block_view.ts +100 -0
- package/src/views/blockquote_element.ts +26 -0
- package/src/views/blockquote_element_editable.ts +24 -0
- package/src/views/box_element.ts +33 -0
- package/src/views/caption.ts +37 -0
- package/src/views/caption_title.ts +33 -0
- package/src/views/citation.ts +67 -0
- package/src/views/citation_editable.ts +312 -0
- package/src/views/contributors.ts +341 -0
- package/src/views/creators.ts +82 -0
- package/src/views/cross_reference.ts +74 -0
- package/src/views/cross_reference_editable.ts +113 -0
- package/src/views/editable_block.ts +141 -0
- package/src/views/embed.ts +345 -0
- package/src/views/empty.ts +26 -0
- package/src/views/equation.ts +47 -0
- package/src/views/equation_editable.ts +84 -0
- package/src/views/equation_element.ts +29 -0
- package/src/views/equation_element_editable.ts +21 -0
- package/src/views/figure.ts +84 -0
- package/src/views/figure_editable.ts +361 -0
- package/src/views/figure_element.ts +197 -0
- package/src/views/figure_element_editable.ts +21 -0
- package/src/views/footnote.ts +236 -0
- package/src/views/footnotes_element.ts +54 -0
- package/src/views/general_table_footnote.ts +140 -0
- package/src/views/hero_image.ts +76 -0
- package/src/views/hero_image_editable.ts +21 -0
- package/src/views/image_element.ts +373 -0
- package/src/views/image_element_editable.ts +21 -0
- package/src/views/inline_equation.ts +47 -0
- package/src/views/inline_equation_editable.ts +70 -0
- package/src/views/inline_footnote.ts +264 -0
- package/src/views/inline_footnote_editable.ts +20 -0
- package/src/views/keyword.ts +127 -0
- package/src/views/keyword_group.ts +109 -0
- package/src/views/link.ts +27 -0
- package/src/views/link_editable.ts +169 -0
- package/src/views/list.ts +46 -0
- package/src/views/list_item.ts +26 -0
- package/src/views/paragraph.ts +26 -0
- package/src/views/paragraph_editable.ts +21 -0
- package/src/views/placeholder.ts +35 -0
- package/src/views/placeholder_element.ts +38 -0
- package/src/views/placeholder_element_editable.ts +21 -0
- package/src/views/pullquote_element.ts +106 -0
- package/src/views/pullquote_element_editable.ts +24 -0
- package/src/views/quote_image_editable.ts +84 -0
- package/src/views/section.ts +64 -0
- package/src/views/section_label.ts +20 -0
- package/src/views/section_title.ts +87 -0
- package/src/views/section_title_editable.ts +21 -0
- package/src/views/subtitle.ts +42 -0
- package/src/views/subtitle_editable.ts +20 -0
- package/src/views/subtitles.ts +34 -0
- package/src/views/subtitles_editable.ts +21 -0
- package/src/views/supplement.ts +236 -0
- package/src/views/supplement_editable.ts +20 -0
- package/src/views/supplements.ts +65 -0
- package/src/views/supplements_editable.ts +21 -0
- package/src/views/table_cell.ts +150 -0
- package/src/views/table_element.ts +33 -0
- package/src/views/table_element_editable.ts +21 -0
- package/src/views/table_element_footer.ts +41 -0
- package/src/views/title.ts +46 -0
- package/src/views/title_editable.ts +20 -0
- package/src/views/trans_graphical_abstract.ts +55 -0
- package/src/views/trans_graphical_abstract_editable.ts +21 -0
- package/src/views/translated_abstract.ts +53 -0
- package/src/views/translated_abstract_editable.ts +21 -0
- package/dist/cjs/lib/statistics.js +0 -38
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* © 2025 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 { BibliographyItemType } from '@manuscripts/transform'
|
|
17
|
+
|
|
18
|
+
export const fieldConfigMap: Record<BibliographyItemType, Set<string>> = {
|
|
19
|
+
'article-journal': new Set([
|
|
20
|
+
'author',
|
|
21
|
+
'title',
|
|
22
|
+
'issued',
|
|
23
|
+
'container-title',
|
|
24
|
+
'volume',
|
|
25
|
+
'issue',
|
|
26
|
+
'supplement',
|
|
27
|
+
'page',
|
|
28
|
+
'locator',
|
|
29
|
+
'comment',
|
|
30
|
+
'DOI',
|
|
31
|
+
'URL',
|
|
32
|
+
]),
|
|
33
|
+
book: new Set([
|
|
34
|
+
'author',
|
|
35
|
+
'editor',
|
|
36
|
+
'title',
|
|
37
|
+
'issued',
|
|
38
|
+
'container-title',
|
|
39
|
+
'collection-title',
|
|
40
|
+
'volume',
|
|
41
|
+
'edition',
|
|
42
|
+
'publisher-place',
|
|
43
|
+
'publisher',
|
|
44
|
+
'page',
|
|
45
|
+
'number-of-pages',
|
|
46
|
+
'comment',
|
|
47
|
+
'DOI',
|
|
48
|
+
'URL',
|
|
49
|
+
]),
|
|
50
|
+
chapter: new Set([
|
|
51
|
+
'author',
|
|
52
|
+
'editor',
|
|
53
|
+
'title',
|
|
54
|
+
'issued',
|
|
55
|
+
'container-title',
|
|
56
|
+
'collection-title',
|
|
57
|
+
'volume',
|
|
58
|
+
'edition',
|
|
59
|
+
'publisher-place',
|
|
60
|
+
'publisher',
|
|
61
|
+
'page',
|
|
62
|
+
'number-of-pages',
|
|
63
|
+
'comment',
|
|
64
|
+
'DOI',
|
|
65
|
+
'URL',
|
|
66
|
+
]),
|
|
67
|
+
confproc: new Set([
|
|
68
|
+
'author',
|
|
69
|
+
'title',
|
|
70
|
+
'issued',
|
|
71
|
+
'publisher-place',
|
|
72
|
+
'publisher',
|
|
73
|
+
'event',
|
|
74
|
+
'event-date',
|
|
75
|
+
'event-place',
|
|
76
|
+
'page',
|
|
77
|
+
'DOI',
|
|
78
|
+
'URL',
|
|
79
|
+
]),
|
|
80
|
+
dataset: new Set([
|
|
81
|
+
'author',
|
|
82
|
+
'title',
|
|
83
|
+
'issued',
|
|
84
|
+
'container-title',
|
|
85
|
+
'publisher-place',
|
|
86
|
+
'publisher',
|
|
87
|
+
'accessed',
|
|
88
|
+
'comment',
|
|
89
|
+
'DOI',
|
|
90
|
+
'URL',
|
|
91
|
+
]),
|
|
92
|
+
preprint: new Set([
|
|
93
|
+
'author',
|
|
94
|
+
'title',
|
|
95
|
+
'issued',
|
|
96
|
+
'container-title',
|
|
97
|
+
'locator',
|
|
98
|
+
'DOI',
|
|
99
|
+
'URL',
|
|
100
|
+
]),
|
|
101
|
+
standard: new Set(['std', 'URL']),
|
|
102
|
+
thesis: new Set([
|
|
103
|
+
'author',
|
|
104
|
+
'title',
|
|
105
|
+
'issued',
|
|
106
|
+
'institution',
|
|
107
|
+
'number-of-pages',
|
|
108
|
+
'comment',
|
|
109
|
+
'DOI',
|
|
110
|
+
'URL',
|
|
111
|
+
]),
|
|
112
|
+
webpage: new Set([
|
|
113
|
+
'author',
|
|
114
|
+
'title',
|
|
115
|
+
'issued',
|
|
116
|
+
'publisher-place',
|
|
117
|
+
'publisher',
|
|
118
|
+
'accessed',
|
|
119
|
+
'comment',
|
|
120
|
+
'URL',
|
|
121
|
+
]),
|
|
122
|
+
other: new Set([
|
|
123
|
+
'author',
|
|
124
|
+
'title',
|
|
125
|
+
'issued',
|
|
126
|
+
'container-title',
|
|
127
|
+
'publisher-place',
|
|
128
|
+
'publisher',
|
|
129
|
+
'comment',
|
|
130
|
+
'URL',
|
|
131
|
+
]),
|
|
132
|
+
literal: new Set(['literal']),
|
|
133
|
+
}
|
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* © 2025 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 {
|
|
17
|
+
ArrowDownIcon,
|
|
18
|
+
IconButton,
|
|
19
|
+
outlineStyle,
|
|
20
|
+
SecondaryIconButton,
|
|
21
|
+
TextArea,
|
|
22
|
+
TextField,
|
|
23
|
+
} from '@manuscripts/style-guide'
|
|
24
|
+
import styled from 'styled-components'
|
|
25
|
+
|
|
26
|
+
export const Button = styled(IconButton).attrs({
|
|
27
|
+
defaultColor: true,
|
|
28
|
+
size: 24,
|
|
29
|
+
})`
|
|
30
|
+
circle,
|
|
31
|
+
use {
|
|
32
|
+
fill: ${(props) => props.theme.colors.brand.default};
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
path {
|
|
36
|
+
mask: none;
|
|
37
|
+
}
|
|
38
|
+
`
|
|
39
|
+
|
|
40
|
+
export const Actions = styled.div`
|
|
41
|
+
flex-shrink: 1;
|
|
42
|
+
display: flex;
|
|
43
|
+
justify-content: space-between;
|
|
44
|
+
align-items: center;
|
|
45
|
+
|
|
46
|
+
.tooltip {
|
|
47
|
+
max-width: ${(props) => props.theme.grid.unit * 39}px;
|
|
48
|
+
padding: ${(props) => props.theme.grid.unit * 2}px;
|
|
49
|
+
border-radius: 6px;
|
|
50
|
+
}
|
|
51
|
+
`
|
|
52
|
+
|
|
53
|
+
export const ReferenceTextField = styled(TextField)`
|
|
54
|
+
padding: ${(props) => props.theme.grid.unit * 2}px
|
|
55
|
+
${(props) => props.theme.grid.unit * 3}px;
|
|
56
|
+
`
|
|
57
|
+
|
|
58
|
+
export const ReferenceTextArea = styled(TextArea)`
|
|
59
|
+
padding: ${(props) => props.theme.grid.unit * 2}px
|
|
60
|
+
${(props) => props.theme.grid.unit * 3}px;
|
|
61
|
+
height: ${(props) => props.theme.grid.unit * 20}px;
|
|
62
|
+
resize: none;
|
|
63
|
+
`
|
|
64
|
+
|
|
65
|
+
export const FormFields = styled.div`
|
|
66
|
+
flex: 1;
|
|
67
|
+
`
|
|
68
|
+
|
|
69
|
+
export const DeleteButton = styled(IconButton)`
|
|
70
|
+
background-color: ${(props) =>
|
|
71
|
+
props.theme.colors.background.primary} !important;
|
|
72
|
+
border-color: ${(props) => props.theme.colors.background.primary} !important;
|
|
73
|
+
.icon_element {
|
|
74
|
+
fill: ${(props) => (props.disabled && '#c9c9c9') || '#F35143'} !important;
|
|
75
|
+
}
|
|
76
|
+
`
|
|
77
|
+
|
|
78
|
+
export const Section = styled.section`
|
|
79
|
+
border: 1px solid ${(props) => props.theme.colors.border.field.default};
|
|
80
|
+
border-radius: ${(props) => props.theme.grid.radius.default};
|
|
81
|
+
background: ${(props) => props.theme.colors.background.primary};
|
|
82
|
+
margin-bottom: ${(props) => props.theme.grid.unit * 3}px;
|
|
83
|
+
overflow: hidden;
|
|
84
|
+
`
|
|
85
|
+
|
|
86
|
+
export const PersonForm = styled.div`
|
|
87
|
+
padding: ${(props) => props.theme.grid.unit * 4}px
|
|
88
|
+
${(props) => props.theme.grid.unit * 4}px;
|
|
89
|
+
|
|
90
|
+
& > div:last-child {
|
|
91
|
+
margin-bottom: 0;
|
|
92
|
+
}
|
|
93
|
+
`
|
|
94
|
+
|
|
95
|
+
export const Title = styled.h4<{
|
|
96
|
+
isInvalid?: boolean
|
|
97
|
+
}>`
|
|
98
|
+
margin: 0;
|
|
99
|
+
display: flex;
|
|
100
|
+
align-items: center;
|
|
101
|
+
font-size: 0.875rem;
|
|
102
|
+
padding-right: 0.5rem;
|
|
103
|
+
background: ${(props) =>
|
|
104
|
+
props.isInvalid ? props.theme.colors.background.warning : 'transparent'};
|
|
105
|
+
color: ${(props) =>
|
|
106
|
+
props.isInvalid ? props.theme.colors.text.warning : 'inherit'};
|
|
107
|
+
`
|
|
108
|
+
|
|
109
|
+
export const DropdownIndicator = styled(ArrowDownIcon)`
|
|
110
|
+
border: 0;
|
|
111
|
+
border-radius: 50%;
|
|
112
|
+
margin-right: 0.6em;
|
|
113
|
+
min-width: 20px;
|
|
114
|
+
`
|
|
115
|
+
|
|
116
|
+
export const ToggleButton = styled.button<{
|
|
117
|
+
isOpen: boolean
|
|
118
|
+
}>`
|
|
119
|
+
flex-grow: 1;
|
|
120
|
+
display: flex;
|
|
121
|
+
align-items: center;
|
|
122
|
+
width: 100%;
|
|
123
|
+
background: transparent;
|
|
124
|
+
border: none;
|
|
125
|
+
text-align: left;
|
|
126
|
+
font-family: ${(props) => props.theme.font.family.sans};
|
|
127
|
+
font-size: 1rem;
|
|
128
|
+
margin: 0.6em;
|
|
129
|
+
|
|
130
|
+
outline: none;
|
|
131
|
+
|
|
132
|
+
&:focus {
|
|
133
|
+
color: ${(props) => props.theme.colors.button.primary.border.hover};
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
svg {
|
|
137
|
+
transform: ${(props) => (props.isOpen ? 'rotateX(180deg)' : 'initial')};
|
|
138
|
+
}
|
|
139
|
+
${outlineStyle}
|
|
140
|
+
`
|
|
141
|
+
|
|
142
|
+
export const RemoveButton = styled(SecondaryIconButton)`
|
|
143
|
+
border: none;
|
|
144
|
+
background: transparent;
|
|
145
|
+
padding: 0;
|
|
146
|
+
outline: none;
|
|
147
|
+
svg {
|
|
148
|
+
path[fill='white'] {
|
|
149
|
+
fill: white;
|
|
150
|
+
}
|
|
151
|
+
rect[fill],
|
|
152
|
+
path:not([fill='white']) {
|
|
153
|
+
fill: #f35143;
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
`
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* © 2023 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
|
+
|
|
17
|
+
import { BibliographyItemAttrs } from '@manuscripts/transform'
|
|
18
|
+
import React from 'react'
|
|
19
|
+
import styled from 'styled-components'
|
|
20
|
+
|
|
21
|
+
import { metadata } from '../../lib/references'
|
|
22
|
+
|
|
23
|
+
export const Metadata = styled.div`
|
|
24
|
+
color: ${(props) => props.theme.colors.text.secondary};
|
|
25
|
+
flex: 1;
|
|
26
|
+
font-weight: ${(props) => props.theme.font.weight.light};
|
|
27
|
+
margin-top: ${(props) => props.theme.grid.unit}px;
|
|
28
|
+
`
|
|
29
|
+
|
|
30
|
+
export const MetadataContainer = styled.div`
|
|
31
|
+
flex: 1;
|
|
32
|
+
`
|
|
33
|
+
|
|
34
|
+
export const ReferenceLine: React.FC<{
|
|
35
|
+
item: BibliographyItemAttrs
|
|
36
|
+
}> = ({ item }) => (
|
|
37
|
+
<MetadataContainer>
|
|
38
|
+
<div data-cy={'reference-title'}>
|
|
39
|
+
{item.title || item.literal || 'Untitled'}
|
|
40
|
+
</div>
|
|
41
|
+
<Metadata>{metadata(item)}</Metadata>
|
|
42
|
+
</MetadataContainer>
|
|
43
|
+
)
|
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* © 2023 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
|
+
|
|
17
|
+
import {
|
|
18
|
+
AddNewIcon,
|
|
19
|
+
ButtonGroup,
|
|
20
|
+
IconTextButton,
|
|
21
|
+
PrimaryButton,
|
|
22
|
+
SecondaryButton,
|
|
23
|
+
UploadIcon,
|
|
24
|
+
withFocusTrap,
|
|
25
|
+
} from '@manuscripts/style-guide'
|
|
26
|
+
import { BibliographyItemAttrs } from '@manuscripts/transform'
|
|
27
|
+
import { debounce } from 'lodash'
|
|
28
|
+
import React, { useState } from 'react'
|
|
29
|
+
import styled from 'styled-components'
|
|
30
|
+
|
|
31
|
+
import {
|
|
32
|
+
BibliographyItemSource,
|
|
33
|
+
DocumentReferenceSource,
|
|
34
|
+
} from './BibliographyItemSource'
|
|
35
|
+
import { ReferenceSearchSection } from './ReferenceSearchSection'
|
|
36
|
+
import { SearchInput } from './SearchInput'
|
|
37
|
+
|
|
38
|
+
const ReferenceSearchSectionContainer = styled.div`
|
|
39
|
+
max-height: 400px;
|
|
40
|
+
overflow-y: auto;
|
|
41
|
+
`
|
|
42
|
+
|
|
43
|
+
const Actions = styled(ButtonGroup)`
|
|
44
|
+
align-items: center;
|
|
45
|
+
box-shadow: 0 -2px 12px 0 rgba(216, 216, 216, 0.26);
|
|
46
|
+
display: flex;
|
|
47
|
+
justify-content: space-between;
|
|
48
|
+
padding: ${(props) => props.theme.grid.unit * 4}px;
|
|
49
|
+
`
|
|
50
|
+
|
|
51
|
+
const Container = withFocusTrap(styled.div`
|
|
52
|
+
flex: 1;
|
|
53
|
+
font-family: ${(props) => props.theme.font.family.sans};
|
|
54
|
+
`)
|
|
55
|
+
|
|
56
|
+
const AddReferenceActions = styled(ButtonGroup)`
|
|
57
|
+
button {
|
|
58
|
+
margin-right: ${(props) => props.theme.grid.unit * 8}px;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
button:hover,
|
|
62
|
+
button:active {
|
|
63
|
+
path {
|
|
64
|
+
stroke: ${(props) => props.theme.colors.brand.medium};
|
|
65
|
+
}
|
|
66
|
+
rect {
|
|
67
|
+
stroke: ${(props) => props.theme.colors.brand.medium};
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
`
|
|
71
|
+
|
|
72
|
+
export const ReferenceSearch: React.FC<{
|
|
73
|
+
query?: string
|
|
74
|
+
sources: BibliographyItemSource[]
|
|
75
|
+
items: BibliographyItemAttrs[]
|
|
76
|
+
onAdd: () => void
|
|
77
|
+
onImport: () => void
|
|
78
|
+
onCite: (items: BibliographyItemAttrs[]) => void
|
|
79
|
+
onCancel: () => void
|
|
80
|
+
}> = ({
|
|
81
|
+
query: initialQuery,
|
|
82
|
+
sources,
|
|
83
|
+
items,
|
|
84
|
+
onAdd,
|
|
85
|
+
onImport,
|
|
86
|
+
onCite,
|
|
87
|
+
onCancel,
|
|
88
|
+
}) => {
|
|
89
|
+
const [query, setQuery] = useState<string>(initialQuery || '')
|
|
90
|
+
const [selections, setSelections] = useState(
|
|
91
|
+
new Map<string, BibliographyItemAttrs>()
|
|
92
|
+
)
|
|
93
|
+
|
|
94
|
+
const toggleSelection = (item: BibliographyItemAttrs) => {
|
|
95
|
+
const id = item.id
|
|
96
|
+
if (selections.has(id)) {
|
|
97
|
+
selections.delete(id)
|
|
98
|
+
setSelections(new Map([...selections]))
|
|
99
|
+
} else {
|
|
100
|
+
selections.set(id, item)
|
|
101
|
+
setSelections(new Map([...selections]))
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
const isSelected = (item: BibliographyItemAttrs) => {
|
|
106
|
+
return selections.has(item.id)
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
const document = new DocumentReferenceSource(items)
|
|
110
|
+
|
|
111
|
+
const handleClick = () => {
|
|
112
|
+
const items = Array.from(selections.values())
|
|
113
|
+
return onCite(items)
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
const debouncedSetQuery = debounce((e) => {
|
|
117
|
+
setQuery(e.target.value.trim())
|
|
118
|
+
}, 800)
|
|
119
|
+
|
|
120
|
+
return (
|
|
121
|
+
<Container data-cy={'reference-finder'}>
|
|
122
|
+
<SearchInput onChange={debouncedSetQuery} defaultValue={initialQuery} />
|
|
123
|
+
<ReferenceSearchSectionContainer>
|
|
124
|
+
<ReferenceSearchSection
|
|
125
|
+
key={document.id}
|
|
126
|
+
query={query}
|
|
127
|
+
source={document}
|
|
128
|
+
isSelected={isSelected}
|
|
129
|
+
onSelect={toggleSelection}
|
|
130
|
+
/>
|
|
131
|
+
{query.length
|
|
132
|
+
? sources.map((source) => (
|
|
133
|
+
<ReferenceSearchSection
|
|
134
|
+
key={source.id}
|
|
135
|
+
query={query}
|
|
136
|
+
source={source}
|
|
137
|
+
isSelected={isSelected}
|
|
138
|
+
onSelect={toggleSelection}
|
|
139
|
+
/>
|
|
140
|
+
))
|
|
141
|
+
: ''}
|
|
142
|
+
</ReferenceSearchSectionContainer>
|
|
143
|
+
<Actions>
|
|
144
|
+
<AddReferenceActions>
|
|
145
|
+
<IconTextButton onClick={onAdd}>
|
|
146
|
+
<AddNewIcon />
|
|
147
|
+
Add new
|
|
148
|
+
</IconTextButton>
|
|
149
|
+
<IconTextButton onClick={onImport}>
|
|
150
|
+
<UploadIcon />
|
|
151
|
+
Import new
|
|
152
|
+
</IconTextButton>
|
|
153
|
+
</AddReferenceActions>
|
|
154
|
+
<ButtonGroup>
|
|
155
|
+
<SecondaryButton onClick={onCancel}>Close</SecondaryButton>
|
|
156
|
+
<PrimaryButton onClick={handleClick} disabled={selections.size === 0}>
|
|
157
|
+
Cite
|
|
158
|
+
</PrimaryButton>
|
|
159
|
+
</ButtonGroup>
|
|
160
|
+
</Actions>
|
|
161
|
+
</Container>
|
|
162
|
+
)
|
|
163
|
+
}
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* © 2023 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
|
+
|
|
17
|
+
import {
|
|
18
|
+
AddedIcon,
|
|
19
|
+
AddIcon,
|
|
20
|
+
SecondaryButton,
|
|
21
|
+
withListNavigation,
|
|
22
|
+
withNavigableListItem,
|
|
23
|
+
} from '@manuscripts/style-guide'
|
|
24
|
+
import { BibliographyItemAttrs } from '@manuscripts/transform'
|
|
25
|
+
import React, { useRef } from 'react'
|
|
26
|
+
import styled from 'styled-components'
|
|
27
|
+
|
|
28
|
+
import { ReferenceLine } from './ReferenceLine'
|
|
29
|
+
|
|
30
|
+
const StatusIcon = styled.div`
|
|
31
|
+
flex-shrink: 1;
|
|
32
|
+
margin-right: ${(props) => props.theme.grid.unit * 3}px;
|
|
33
|
+
margin-left: ${(props) => props.theme.grid.unit}px;
|
|
34
|
+
height: ${(props) => props.theme.grid.unit * 6}px;
|
|
35
|
+
width: ${(props) => props.theme.grid.unit * 6}px;
|
|
36
|
+
display: inline-flex;
|
|
37
|
+
justify-content: center;
|
|
38
|
+
align-items: center;
|
|
39
|
+
cursor: pointer;
|
|
40
|
+
`
|
|
41
|
+
|
|
42
|
+
const MoreButton = styled(SecondaryButton)`
|
|
43
|
+
font-size: inherit;
|
|
44
|
+
text-transform: none;
|
|
45
|
+
text-decoration: underline;
|
|
46
|
+
border: none;
|
|
47
|
+
margin-left: ${(props) => props.theme.grid.unit * 4}px;
|
|
48
|
+
color: ${(props) => props.theme.colors.button.default.color.default};
|
|
49
|
+
`
|
|
50
|
+
|
|
51
|
+
export const ReferenceSearchResultsContainer = withListNavigation(styled.div`
|
|
52
|
+
padding: ${(props) => props.theme.grid.unit * 2}px
|
|
53
|
+
${(props) => props.theme.grid.unit * 4}px;
|
|
54
|
+
flex: 1;
|
|
55
|
+
overflow-y: auto;
|
|
56
|
+
outline: none;
|
|
57
|
+
`)
|
|
58
|
+
|
|
59
|
+
export const ReferenceSearchResult = withNavigableListItem(styled.div`
|
|
60
|
+
cursor: pointer;
|
|
61
|
+
padding: ${(props) => props.theme.grid.unit * 2}px 0;
|
|
62
|
+
display: flex;
|
|
63
|
+
|
|
64
|
+
&:not(:last-of-type) {
|
|
65
|
+
border-bottom: 1px solid #f6f6f6;
|
|
66
|
+
}
|
|
67
|
+
`)
|
|
68
|
+
|
|
69
|
+
export const ReferenceSearchResults: React.FC<{
|
|
70
|
+
items: BibliographyItemAttrs[]
|
|
71
|
+
total: number
|
|
72
|
+
isSelected: (item: BibliographyItemAttrs) => boolean
|
|
73
|
+
onSelect: (item: BibliographyItemAttrs) => void
|
|
74
|
+
onShowMore: () => void
|
|
75
|
+
}> = ({ items, total, isSelected, onSelect, onShowMore }) => {
|
|
76
|
+
const list = useRef<HTMLElement>(null)
|
|
77
|
+
const onExpandReferenceList = () => {
|
|
78
|
+
const element = list.current
|
|
79
|
+
if (element) {
|
|
80
|
+
// this to not lose focus after we expand list
|
|
81
|
+
element.setAttribute('tabindex', '0')
|
|
82
|
+
element.focus()
|
|
83
|
+
element.setAttribute('tabindex', '-1')
|
|
84
|
+
}
|
|
85
|
+
onShowMore()
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
return (
|
|
89
|
+
<ReferenceSearchResultsContainer ref={list}>
|
|
90
|
+
{items.map((item) => (
|
|
91
|
+
<ReferenceSearchResult
|
|
92
|
+
onClick={() => onSelect(item)}
|
|
93
|
+
key={item.id}
|
|
94
|
+
data-cy={`${isSelected(item) ? 'selected-reference' : 'reference'}`}
|
|
95
|
+
>
|
|
96
|
+
<StatusIcon>
|
|
97
|
+
{isSelected(item) ? (
|
|
98
|
+
<AddedIcon width={24} height={24} />
|
|
99
|
+
) : (
|
|
100
|
+
<AddIcon width={24} height={24} />
|
|
101
|
+
)}
|
|
102
|
+
</StatusIcon>
|
|
103
|
+
<ReferenceLine item={item} />
|
|
104
|
+
</ReferenceSearchResult>
|
|
105
|
+
))}
|
|
106
|
+
{items.length < 25 && total > items.length ? (
|
|
107
|
+
<MoreButton onClick={onExpandReferenceList} data-cy={'more-button'}>
|
|
108
|
+
Show more
|
|
109
|
+
</MoreButton>
|
|
110
|
+
) : undefined}
|
|
111
|
+
</ReferenceSearchResultsContainer>
|
|
112
|
+
)
|
|
113
|
+
}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* © 2023 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 React from 'react'
|
|
17
|
+
import styled from 'styled-components'
|
|
18
|
+
|
|
19
|
+
import { Metadata, MetadataContainer } from './ReferenceLine'
|
|
20
|
+
import {
|
|
21
|
+
ReferenceSearchResult,
|
|
22
|
+
ReferenceSearchResultsContainer,
|
|
23
|
+
} from './ReferenceSearchResults'
|
|
24
|
+
|
|
25
|
+
const IconPlaceholderContainer = styled.div`
|
|
26
|
+
width: 36px;
|
|
27
|
+
`
|
|
28
|
+
|
|
29
|
+
const IconPlaceholder = styled.span`
|
|
30
|
+
margin-left: 8px;
|
|
31
|
+
`
|
|
32
|
+
|
|
33
|
+
const MetadataPlaceholder = styled(Metadata)`
|
|
34
|
+
background: ${(props) => props.theme.colors.text.muted};
|
|
35
|
+
height: 1.2em;
|
|
36
|
+
`
|
|
37
|
+
|
|
38
|
+
const TitlePlaceholder = styled.div`
|
|
39
|
+
background: ${(props) => props.theme.colors.border.primary};
|
|
40
|
+
height: 1.2em;
|
|
41
|
+
`
|
|
42
|
+
|
|
43
|
+
const SearchingLabel = styled.div`
|
|
44
|
+
color: ${(props) => props.theme.colors.text.secondary};
|
|
45
|
+
margin-left: ${(props) => props.theme.grid.unit * 9}px;
|
|
46
|
+
`
|
|
47
|
+
|
|
48
|
+
const ReferenceSearchResultPlaceholder = styled(ReferenceSearchResult)`
|
|
49
|
+
opacity: 0.2;
|
|
50
|
+
`
|
|
51
|
+
|
|
52
|
+
const Placeholder: React.FC = () => (
|
|
53
|
+
<ReferenceSearchResultPlaceholder>
|
|
54
|
+
<IconPlaceholderContainer>
|
|
55
|
+
<IconPlaceholder>...</IconPlaceholder>
|
|
56
|
+
</IconPlaceholderContainer>
|
|
57
|
+
<MetadataContainer>
|
|
58
|
+
<TitlePlaceholder />
|
|
59
|
+
<MetadataPlaceholder />
|
|
60
|
+
</MetadataContainer>
|
|
61
|
+
</ReferenceSearchResultPlaceholder>
|
|
62
|
+
)
|
|
63
|
+
|
|
64
|
+
export const ReferenceSearchResultsPlaceholder: React.FC = () => (
|
|
65
|
+
<ReferenceSearchResultsContainer>
|
|
66
|
+
<SearchingLabel>Searching</SearchingLabel>
|
|
67
|
+
<Placeholder />
|
|
68
|
+
<Placeholder />
|
|
69
|
+
<Placeholder />
|
|
70
|
+
</ReferenceSearchResultsContainer>
|
|
71
|
+
)
|