@atlaskit/editor-core 180.0.0 → 180.1.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/CHANGELOG.md +74 -0
- package/codemods/180.1.0-update-to-editor-migration-component.ts +8 -0
- package/codemods/__tests__/rename-editor-to-editor-migration-component.ts +156 -0
- package/codemods/migrates/rename-editor-to-editor-migration-component.ts +34 -0
- package/dist/cjs/actions/index.js +1 -1
- package/dist/cjs/create-editor/ReactEditorView.js +12 -762
- package/dist/cjs/create-editor/ReactEditorViewInternal.js +783 -0
- package/dist/cjs/create-editor/ReactEditorViewNext.js +16 -0
- package/dist/cjs/create-editor/create-plugins-list.js +1 -0
- package/dist/cjs/create-editor/feature-flags-from-props.js +3 -2
- package/dist/cjs/editor-next/editor-internal.js +147 -0
- package/dist/cjs/editor-next/editor-migration-component.js +35 -0
- package/dist/cjs/editor-next/hooks/useEditorMeasuresConstructor.js +36 -0
- package/dist/cjs/editor-next/hooks/useMeasureEditorMountTime.js +42 -0
- package/dist/cjs/editor-next/hooks/useProviderFactory.js +72 -0
- package/dist/cjs/editor-next/index.js +139 -0
- package/dist/cjs/editor-next/utils/deprecationWarnings.js +45 -0
- package/dist/cjs/editor-next/utils/editorMeasureTTICallback.js +44 -0
- package/dist/cjs/editor-next/utils/editorPropTypes.js +36 -0
- package/dist/cjs/editor-next/utils/getBaseFontSize.js +17 -0
- package/dist/cjs/editor-next/utils/handleProviders.js +56 -0
- package/dist/cjs/editor-next/utils/onEditorCreated.js +28 -0
- package/dist/cjs/editor-next/utils/sendDurationAnalytics.js +68 -0
- package/dist/cjs/editor-next/utils/trackEditorActions.js +101 -0
- package/dist/cjs/editor.js +130 -443
- package/dist/cjs/index.js +7 -0
- package/dist/cjs/labs/next/internal/hooks/use-analytics/index.js +4 -4
- package/dist/cjs/labs/next/internal/hooks/use-editor/create-dispatch-transaction.js +6 -6
- package/dist/cjs/labs/next/presets/create-stub-internal-apis.js +117 -0
- package/dist/cjs/labs/next/presets/preset.js +0 -5
- package/dist/cjs/labs/next/presets/universal.js +11 -2
- package/dist/cjs/plugins/alignment/ui/ToolbarAlignment/index.js +48 -13
- package/dist/cjs/plugins/analytics/index.js +2 -3
- package/dist/cjs/plugins/analytics/plugin.js +5 -6
- package/dist/cjs/plugins/analytics/utils.js +0 -11
- package/dist/cjs/plugins/base/pm-plugins/filter-steps.js +1 -1
- package/dist/cjs/plugins/base/pm-plugins/frozen-editor.js +98 -56
- package/dist/cjs/plugins/base/utils/input-latency-tracking.js +24 -25
- package/dist/cjs/plugins/block-type/ui/ToolbarBlockType/blocktype-button.js +1 -0
- package/dist/cjs/plugins/block-type/ui/ToolbarBlockType/index.js +36 -9
- package/dist/cjs/plugins/card/nodeviews/blockCard.js +2 -1
- package/dist/cjs/plugins/card/nodeviews/genericCard.js +16 -2
- package/dist/cjs/plugins/card/pm-plugins/main.js +4 -2
- package/dist/cjs/plugins/clipboard/pm-plugins/main.js +4 -1
- package/dist/cjs/plugins/collab-edit/plugin.js +2 -3
- package/dist/cjs/plugins/extension/toolbar.js +7 -1
- package/dist/cjs/plugins/find-replace/ui/FindReplaceToolbarButton.js +5 -1
- package/dist/cjs/plugins/floating-toolbar/ui/Button.js +2 -0
- package/dist/cjs/plugins/floating-toolbar/ui/CheckboxModal.js +5 -3
- package/dist/cjs/plugins/floating-toolbar/ui/Dropdown.js +38 -9
- package/dist/cjs/plugins/floating-toolbar/ui/ExtensionsPlaceholder.js +23 -21
- package/dist/cjs/plugins/floating-toolbar/ui/ScrollButtons.js +12 -7
- package/dist/cjs/plugins/floating-toolbar/ui/Toolbar.js +11 -0
- package/dist/cjs/plugins/fragment/pm-plugins/fragment-consistency.js +1 -0
- package/dist/cjs/plugins/hyperlink/analytics.js +5 -5
- package/dist/cjs/plugins/hyperlink/index.js +1 -1
- package/dist/cjs/plugins/hyperlink/pm-plugins/main.js +9 -5
- package/dist/cjs/plugins/hyperlink/ui/EditorLinkPicker/index.js +10 -4
- package/dist/cjs/plugins/hyperlink/ui/HyperlinkAddToolbar/HyperlinkAddToolbar.js +1 -1
- package/dist/cjs/plugins/hyperlink/ui/HyperlinkAddToolbar/index.js +4 -3
- package/dist/cjs/plugins/insert-block/ui/ToolbarInsertBlock/block-insert-element-browser.js +1 -0
- package/dist/cjs/plugins/insert-block/ui/ToolbarInsertBlock/block-insert-menu-legacy.js +1 -0
- package/dist/cjs/plugins/insert-block/ui/ToolbarInsertBlock/block-insert-menu.js +3 -0
- package/dist/cjs/plugins/insert-block/ui/ToolbarInsertBlock/dropdown-button.js +1 -0
- package/dist/cjs/plugins/insert-block/ui/ToolbarInsertBlock/index.js +22 -0
- package/dist/cjs/plugins/media/commands/helpers.js +12 -40
- package/dist/cjs/plugins/media/commands/index.js +4 -4
- package/dist/cjs/plugins/media/nodeviews/mediaGroup.js +14 -12
- package/dist/cjs/plugins/media/nodeviews/mediaInline.js +1 -1
- package/dist/cjs/plugins/media/nodeviews/mediaNodeUpdater.js +310 -205
- package/dist/cjs/plugins/media/nodeviews/mediaSingle.js +1 -1
- package/dist/cjs/plugins/media/pm-plugins/alt-text/ui/AltTextEdit.js +1 -1
- package/dist/cjs/plugins/media/pm-plugins/main.js +2 -27
- package/dist/cjs/plugins/media/toolbar/filePreviewItem.js +1 -4
- package/dist/cjs/plugins/panel/utils.js +4 -1
- package/dist/cjs/plugins/paste/handlers.js +128 -13
- package/dist/cjs/plugins/paste/pm-plugins/analytics.js +15 -6
- package/dist/cjs/plugins/paste/pm-plugins/main.js +12 -3
- package/dist/cjs/plugins/placeholder-text/index.js +2 -2
- package/dist/cjs/plugins/status/index.js +9 -3
- package/dist/cjs/plugins/status/ui/statusPicker.js +8 -2
- package/dist/cjs/plugins/text-color/ui/ToolbarTextColor/index.js +42 -8
- package/dist/cjs/plugins/text-formatting/ui/Toolbar/dropdown-menu.js +22 -2
- package/dist/cjs/plugins/text-formatting/ui/Toolbar/index.js +3 -1
- package/dist/cjs/plugins/text-formatting/ui/Toolbar/more-button.js +3 -1
- package/dist/cjs/plugins/text-formatting/utils.js +1 -10
- package/dist/cjs/plugins/toolbar-lists-indentation/ui/ToolbarDropdown.js +19 -1
- package/dist/cjs/plugins/type-ahead/index.js +1 -1
- package/dist/cjs/plugins/type-ahead/ui/InputQuery.js +79 -106
- package/dist/cjs/types/get-editor-props.js +5 -0
- package/dist/cjs/ui/ChromeCollapsed/index.js +1 -0
- package/dist/cjs/ui/CollapsedEditor/index.js +7 -13
- package/dist/cjs/ui/ColorPickerButton/index.js +68 -6
- package/dist/cjs/ui/ConfigPanel/ConfigPanel.js +1 -1
- package/dist/cjs/ui/ContextPanel/context.js +13 -12
- package/dist/cjs/ui/Dropdown/index.js +7 -2
- package/dist/cjs/ui/DropdownMenu/index.js +7 -2
- package/dist/cjs/ui/ElementBrowser/components/CategoryList.js +1 -1
- package/dist/cjs/ui/ElementBrowser/components/ElementList/ElementList.js +1 -1
- package/dist/cjs/ui/ElementBrowser/components/StatelessElementBrowser.js +1 -1
- package/dist/cjs/ui/PanelTextInput/index.js +4 -4
- package/dist/cjs/ui/PortalProvider/index.js +5 -5
- package/dist/cjs/ui/WidthEmitter/index.js +29 -35
- package/dist/cjs/utils/document.js +15 -0
- package/dist/cjs/utils/extensions.js +6 -7
- package/dist/cjs/utils/get-editor-plugins.js +32 -0
- package/dist/cjs/utils/linking-utils.js +1 -1
- package/dist/cjs/utils/performance/components/RenderTracking.js +1 -1
- package/dist/cjs/utils/performance/safer-transactions.js +1 -1
- package/dist/cjs/utils/prepare-extension-provider.js +25 -0
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/actions/index.js +2 -2
- package/dist/es2019/create-editor/ReactEditorView.js +6 -708
- package/dist/es2019/create-editor/ReactEditorViewInternal.js +712 -0
- package/dist/es2019/create-editor/ReactEditorViewNext.js +7 -0
- package/dist/es2019/create-editor/create-plugins-list.js +1 -0
- package/dist/es2019/create-editor/feature-flags-from-props.js +3 -2
- package/dist/es2019/editor-next/editor-internal.js +142 -0
- package/dist/es2019/editor-next/editor-migration-component.js +10 -0
- package/dist/es2019/editor-next/hooks/useEditorMeasuresConstructor.js +30 -0
- package/dist/es2019/editor-next/hooks/useMeasureEditorMountTime.js +35 -0
- package/dist/es2019/editor-next/hooks/useProviderFactory.js +61 -0
- package/dist/es2019/editor-next/index.js +90 -0
- package/dist/es2019/editor-next/utils/deprecationWarnings.js +39 -0
- package/dist/es2019/editor-next/utils/editorMeasureTTICallback.js +40 -0
- package/dist/es2019/editor-next/utils/editorPropTypes.js +29 -0
- package/dist/es2019/editor-next/utils/getBaseFontSize.js +11 -0
- package/dist/es2019/editor-next/utils/handleProviders.js +52 -0
- package/dist/es2019/editor-next/utils/onEditorCreated.js +21 -0
- package/dist/es2019/editor-next/utils/sendDurationAnalytics.js +40 -0
- package/dist/es2019/editor-next/utils/trackEditorActions.js +78 -0
- package/dist/es2019/editor.js +111 -396
- package/dist/es2019/index.js +2 -1
- package/dist/es2019/labs/next/internal/hooks/use-analytics/index.js +2 -2
- package/dist/es2019/labs/next/internal/hooks/use-editor/create-dispatch-transaction.js +2 -3
- package/dist/es2019/labs/next/presets/create-stub-internal-apis.js +105 -0
- package/dist/es2019/labs/next/presets/preset.js +0 -3
- package/dist/es2019/labs/next/presets/universal.js +13 -2
- package/dist/es2019/plugins/alignment/ui/ToolbarAlignment/index.js +41 -12
- package/dist/es2019/plugins/analytics/index.js +3 -4
- package/dist/es2019/plugins/analytics/plugin.js +1 -2
- package/dist/es2019/plugins/analytics/utils.js +0 -4
- package/dist/es2019/plugins/base/pm-plugins/filter-steps.js +1 -1
- package/dist/es2019/plugins/base/pm-plugins/frozen-editor.js +96 -58
- package/dist/es2019/plugins/base/utils/input-latency-tracking.js +23 -23
- package/dist/es2019/plugins/block-type/ui/ToolbarBlockType/blocktype-button.js +1 -0
- package/dist/es2019/plugins/block-type/ui/ToolbarBlockType/index.js +31 -5
- package/dist/es2019/plugins/card/nodeviews/blockCard.js +4 -1
- package/dist/es2019/plugins/card/nodeviews/genericCard.js +16 -2
- package/dist/es2019/plugins/card/pm-plugins/main.js +3 -1
- package/dist/es2019/plugins/clipboard/pm-plugins/main.js +3 -1
- package/dist/es2019/plugins/collab-edit/plugin.js +1 -2
- package/dist/es2019/plugins/extension/toolbar.js +7 -1
- package/dist/es2019/plugins/find-replace/ui/FindReplaceToolbarButton.js +5 -1
- package/dist/es2019/plugins/floating-toolbar/ui/Button.js +2 -0
- package/dist/es2019/plugins/floating-toolbar/ui/CheckboxModal.js +5 -3
- package/dist/es2019/plugins/floating-toolbar/ui/Dropdown.js +35 -7
- package/dist/es2019/plugins/floating-toolbar/ui/ExtensionsPlaceholder.js +2 -2
- package/dist/es2019/plugins/floating-toolbar/ui/ScrollButtons.js +12 -7
- package/dist/es2019/plugins/floating-toolbar/ui/Toolbar.js +11 -0
- package/dist/es2019/plugins/fragment/pm-plugins/fragment-consistency.js +1 -0
- package/dist/es2019/plugins/hyperlink/analytics.js +1 -1
- package/dist/es2019/plugins/hyperlink/index.js +1 -1
- package/dist/es2019/plugins/hyperlink/pm-plugins/main.js +8 -4
- package/dist/es2019/plugins/hyperlink/ui/EditorLinkPicker/index.js +9 -3
- package/dist/es2019/plugins/hyperlink/ui/HyperlinkAddToolbar/HyperlinkAddToolbar.js +1 -1
- package/dist/es2019/plugins/hyperlink/ui/HyperlinkAddToolbar/index.js +3 -2
- package/dist/es2019/plugins/insert-block/ui/ToolbarInsertBlock/block-insert-element-browser.js +1 -0
- package/dist/es2019/plugins/insert-block/ui/ToolbarInsertBlock/block-insert-menu-legacy.js +1 -0
- package/dist/es2019/plugins/insert-block/ui/ToolbarInsertBlock/block-insert-menu.js +3 -0
- package/dist/es2019/plugins/insert-block/ui/ToolbarInsertBlock/dropdown-button.js +1 -0
- package/dist/es2019/plugins/insert-block/ui/ToolbarInsertBlock/index.js +24 -0
- package/dist/es2019/plugins/media/commands/helpers.js +9 -35
- package/dist/es2019/plugins/media/commands/index.js +1 -1
- package/dist/es2019/plugins/media/nodeviews/mediaGroup.js +3 -3
- package/dist/es2019/plugins/media/nodeviews/mediaInline.js +1 -1
- package/dist/es2019/plugins/media/nodeviews/mediaNodeUpdater.js +70 -37
- package/dist/es2019/plugins/media/nodeviews/mediaSingle.js +1 -1
- package/dist/es2019/plugins/media/pm-plugins/alt-text/ui/AltTextEdit.js +1 -1
- package/dist/es2019/plugins/media/pm-plugins/main.js +3 -30
- package/dist/es2019/plugins/media/toolbar/filePreviewItem.js +1 -4
- package/dist/es2019/plugins/panel/utils.js +4 -1
- package/dist/es2019/plugins/paste/handlers.js +127 -5
- package/dist/es2019/plugins/paste/pm-plugins/analytics.js +10 -4
- package/dist/es2019/plugins/paste/pm-plugins/main.js +13 -4
- package/dist/es2019/plugins/placeholder-text/index.js +1 -1
- package/dist/es2019/plugins/status/index.js +8 -2
- package/dist/es2019/plugins/status/ui/statusPicker.js +8 -2
- package/dist/es2019/plugins/text-color/ui/ToolbarTextColor/index.js +42 -8
- package/dist/es2019/plugins/text-formatting/ui/Toolbar/dropdown-menu.js +20 -3
- package/dist/es2019/plugins/text-formatting/ui/Toolbar/index.js +4 -2
- package/dist/es2019/plugins/text-formatting/ui/Toolbar/more-button.js +3 -1
- package/dist/es2019/plugins/text-formatting/utils.js +0 -8
- package/dist/es2019/plugins/toolbar-lists-indentation/ui/ToolbarDropdown.js +16 -1
- package/dist/es2019/plugins/type-ahead/index.js +1 -1
- package/dist/es2019/plugins/type-ahead/ui/InputQuery.js +73 -92
- package/dist/es2019/types/get-editor-props.js +1 -0
- package/dist/es2019/ui/ChromeCollapsed/index.js +1 -0
- package/dist/es2019/ui/CollapsedEditor/index.js +7 -11
- package/dist/es2019/ui/ColorPickerButton/index.js +61 -8
- package/dist/es2019/ui/ConfigPanel/ConfigPanel.js +1 -1
- package/dist/es2019/ui/ContextPanel/context.js +5 -4
- package/dist/es2019/ui/Dropdown/index.js +5 -2
- package/dist/es2019/ui/DropdownMenu/index.js +5 -2
- package/dist/es2019/ui/ElementBrowser/components/CategoryList.js +1 -1
- package/dist/es2019/ui/ElementBrowser/components/ElementList/ElementList.js +1 -1
- package/dist/es2019/ui/ElementBrowser/components/StatelessElementBrowser.js +1 -1
- package/dist/es2019/ui/PanelTextInput/index.js +3 -3
- package/dist/es2019/ui/PortalProvider/index.js +1 -1
- package/dist/es2019/ui/WidthEmitter/index.js +25 -29
- package/dist/es2019/utils/document.js +11 -1
- package/dist/es2019/utils/extensions.js +1 -3
- package/dist/es2019/utils/get-editor-plugins.js +25 -0
- package/dist/es2019/utils/linking-utils.js +1 -1
- package/dist/es2019/utils/performance/components/RenderTracking.js +1 -1
- package/dist/es2019/utils/performance/safer-transactions.js +1 -1
- package/dist/es2019/utils/prepare-extension-provider.js +13 -0
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/actions/index.js +2 -2
- package/dist/esm/create-editor/ReactEditorView.js +12 -763
- package/dist/esm/create-editor/ReactEditorViewInternal.js +776 -0
- package/dist/esm/create-editor/ReactEditorViewNext.js +7 -0
- package/dist/esm/create-editor/create-plugins-list.js +1 -0
- package/dist/esm/create-editor/feature-flags-from-props.js +3 -2
- package/dist/esm/editor-next/editor-internal.js +141 -0
- package/dist/esm/editor-next/editor-migration-component.js +28 -0
- package/dist/esm/editor-next/hooks/useEditorMeasuresConstructor.js +30 -0
- package/dist/esm/editor-next/hooks/useMeasureEditorMountTime.js +35 -0
- package/dist/esm/editor-next/hooks/useProviderFactory.js +65 -0
- package/dist/esm/editor-next/index.js +134 -0
- package/dist/esm/editor-next/utils/deprecationWarnings.js +39 -0
- package/dist/esm/editor-next/utils/editorMeasureTTICallback.js +38 -0
- package/dist/esm/editor-next/utils/editorPropTypes.js +28 -0
- package/dist/esm/editor-next/utils/getBaseFontSize.js +11 -0
- package/dist/esm/editor-next/utils/handleProviders.js +50 -0
- package/dist/esm/editor-next/utils/onEditorCreated.js +21 -0
- package/dist/esm/editor-next/utils/sendDurationAnalytics.js +61 -0
- package/dist/esm/editor-next/utils/trackEditorActions.js +94 -0
- package/dist/esm/editor.js +130 -440
- package/dist/esm/index.js +2 -1
- package/dist/esm/labs/next/internal/hooks/use-analytics/index.js +2 -2
- package/dist/esm/labs/next/internal/hooks/use-editor/create-dispatch-transaction.js +2 -3
- package/dist/esm/labs/next/presets/create-stub-internal-apis.js +110 -0
- package/dist/esm/labs/next/presets/preset.js +0 -5
- package/dist/esm/labs/next/presets/universal.js +11 -2
- package/dist/esm/plugins/alignment/ui/ToolbarAlignment/index.js +48 -13
- package/dist/esm/plugins/analytics/index.js +3 -4
- package/dist/esm/plugins/analytics/plugin.js +1 -2
- package/dist/esm/plugins/analytics/utils.js +0 -9
- package/dist/esm/plugins/base/pm-plugins/filter-steps.js +1 -1
- package/dist/esm/plugins/base/pm-plugins/frozen-editor.js +98 -56
- package/dist/esm/plugins/base/utils/input-latency-tracking.js +24 -25
- package/dist/esm/plugins/block-type/ui/ToolbarBlockType/blocktype-button.js +1 -0
- package/dist/esm/plugins/block-type/ui/ToolbarBlockType/index.js +36 -9
- package/dist/esm/plugins/card/nodeviews/blockCard.js +2 -1
- package/dist/esm/plugins/card/nodeviews/genericCard.js +16 -2
- package/dist/esm/plugins/card/pm-plugins/main.js +4 -2
- package/dist/esm/plugins/clipboard/pm-plugins/main.js +4 -1
- package/dist/esm/plugins/collab-edit/plugin.js +1 -2
- package/dist/esm/plugins/extension/toolbar.js +7 -1
- package/dist/esm/plugins/find-replace/ui/FindReplaceToolbarButton.js +5 -1
- package/dist/esm/plugins/floating-toolbar/ui/Button.js +2 -0
- package/dist/esm/plugins/floating-toolbar/ui/CheckboxModal.js +5 -3
- package/dist/esm/plugins/floating-toolbar/ui/Dropdown.js +38 -9
- package/dist/esm/plugins/floating-toolbar/ui/ExtensionsPlaceholder.js +23 -21
- package/dist/esm/plugins/floating-toolbar/ui/ScrollButtons.js +12 -7
- package/dist/esm/plugins/floating-toolbar/ui/Toolbar.js +11 -0
- package/dist/esm/plugins/fragment/pm-plugins/fragment-consistency.js +1 -0
- package/dist/esm/plugins/hyperlink/analytics.js +1 -1
- package/dist/esm/plugins/hyperlink/index.js +1 -1
- package/dist/esm/plugins/hyperlink/pm-plugins/main.js +9 -5
- package/dist/esm/plugins/hyperlink/ui/EditorLinkPicker/index.js +10 -4
- package/dist/esm/plugins/hyperlink/ui/HyperlinkAddToolbar/HyperlinkAddToolbar.js +1 -1
- package/dist/esm/plugins/hyperlink/ui/HyperlinkAddToolbar/index.js +3 -2
- package/dist/esm/plugins/insert-block/ui/ToolbarInsertBlock/block-insert-element-browser.js +1 -0
- package/dist/esm/plugins/insert-block/ui/ToolbarInsertBlock/block-insert-menu-legacy.js +1 -0
- package/dist/esm/plugins/insert-block/ui/ToolbarInsertBlock/block-insert-menu.js +3 -0
- package/dist/esm/plugins/insert-block/ui/ToolbarInsertBlock/dropdown-button.js +1 -0
- package/dist/esm/plugins/insert-block/ui/ToolbarInsertBlock/index.js +22 -0
- package/dist/esm/plugins/media/commands/helpers.js +9 -35
- package/dist/esm/plugins/media/commands/index.js +1 -1
- package/dist/esm/plugins/media/nodeviews/mediaGroup.js +14 -12
- package/dist/esm/plugins/media/nodeviews/mediaInline.js +1 -1
- package/dist/esm/plugins/media/nodeviews/mediaNodeUpdater.js +311 -206
- package/dist/esm/plugins/media/nodeviews/mediaSingle.js +1 -1
- package/dist/esm/plugins/media/pm-plugins/alt-text/ui/AltTextEdit.js +1 -1
- package/dist/esm/plugins/media/pm-plugins/main.js +3 -28
- package/dist/esm/plugins/media/toolbar/filePreviewItem.js +1 -4
- package/dist/esm/plugins/panel/utils.js +4 -1
- package/dist/esm/plugins/paste/handlers.js +127 -13
- package/dist/esm/plugins/paste/pm-plugins/analytics.js +13 -5
- package/dist/esm/plugins/paste/pm-plugins/main.js +13 -4
- package/dist/esm/plugins/placeholder-text/index.js +2 -2
- package/dist/esm/plugins/status/index.js +9 -3
- package/dist/esm/plugins/status/ui/statusPicker.js +8 -2
- package/dist/esm/plugins/text-color/ui/ToolbarTextColor/index.js +42 -8
- package/dist/esm/plugins/text-formatting/ui/Toolbar/dropdown-menu.js +23 -3
- package/dist/esm/plugins/text-formatting/ui/Toolbar/index.js +4 -2
- package/dist/esm/plugins/text-formatting/ui/Toolbar/more-button.js +3 -1
- package/dist/esm/plugins/text-formatting/utils.js +0 -8
- package/dist/esm/plugins/toolbar-lists-indentation/ui/ToolbarDropdown.js +19 -1
- package/dist/esm/plugins/type-ahead/index.js +1 -1
- package/dist/esm/plugins/type-ahead/ui/InputQuery.js +79 -106
- package/dist/esm/types/get-editor-props.js +1 -0
- package/dist/esm/ui/ChromeCollapsed/index.js +1 -0
- package/dist/esm/ui/CollapsedEditor/index.js +7 -13
- package/dist/esm/ui/ColorPickerButton/index.js +69 -7
- package/dist/esm/ui/ConfigPanel/ConfigPanel.js +1 -1
- package/dist/esm/ui/ContextPanel/context.js +8 -8
- package/dist/esm/ui/Dropdown/index.js +7 -2
- package/dist/esm/ui/DropdownMenu/index.js +7 -2
- package/dist/esm/ui/ElementBrowser/components/CategoryList.js +1 -1
- package/dist/esm/ui/ElementBrowser/components/ElementList/ElementList.js +1 -1
- package/dist/esm/ui/ElementBrowser/components/StatelessElementBrowser.js +1 -1
- package/dist/esm/ui/PanelTextInput/index.js +4 -4
- package/dist/esm/ui/PortalProvider/index.js +1 -1
- package/dist/esm/ui/WidthEmitter/index.js +28 -37
- package/dist/esm/utils/document.js +15 -1
- package/dist/esm/utils/extensions.js +1 -3
- package/dist/esm/utils/get-editor-plugins.js +25 -0
- package/dist/esm/utils/linking-utils.js +1 -1
- package/dist/esm/utils/performance/components/RenderTracking.js +1 -1
- package/dist/esm/utils/performance/safer-transactions.js +1 -1
- package/dist/esm/utils/prepare-extension-provider.js +17 -0
- package/dist/esm/version-wrapper.js +1 -1
- package/dist/esm/version.json +1 -1
- package/dist/types/actions/index.d.ts +2 -2
- package/dist/types/create-editor/ReactEditorView.d.ts +7 -109
- package/dist/types/create-editor/ReactEditorViewInternal.d.ts +112 -0
- package/dist/types/create-editor/ReactEditorViewNext.d.ts +9 -0
- package/dist/types/editor-next/editor-internal.d.ts +44 -0
- package/dist/types/editor-next/editor-migration-component.d.ts +5 -0
- package/dist/types/editor-next/hooks/useEditorMeasuresConstructor.d.ts +17 -0
- package/dist/types/editor-next/hooks/useMeasureEditorMountTime.d.ts +13 -0
- package/dist/types/editor-next/hooks/useProviderFactory.d.ts +21 -0
- package/dist/types/editor-next/index.d.ts +34 -0
- package/dist/types/editor-next/utils/deprecationWarnings.d.ts +2 -0
- package/dist/types/editor-next/utils/editorMeasureTTICallback.d.ts +5 -0
- package/dist/types/editor-next/utils/editorPropTypes.d.ts +19 -0
- package/dist/types/editor-next/utils/getBaseFontSize.d.ts +6 -0
- package/dist/types/editor-next/utils/handleProviders.d.ts +14 -0
- package/dist/types/editor-next/utils/onEditorCreated.d.ts +12 -0
- package/dist/types/editor-next/utils/sendDurationAnalytics.d.ts +15 -0
- package/dist/types/editor-next/utils/trackEditorActions.d.ts +29 -0
- package/dist/types/editor.d.ts +47 -25
- package/dist/types/index.d.ts +1 -0
- package/dist/types/labs/next/internal/hooks/use-analytics/index.d.ts +1 -1
- package/dist/types/labs/next/presets/create-stub-internal-apis.d.ts +16 -0
- package/dist/types/labs/next/presets/preset.d.ts +6 -6
- package/dist/types/labs/next/presets/universal.d.ts +1 -1
- package/dist/types/plugins/alignment/index.d.ts +1 -1
- package/dist/types/plugins/alignment/ui/ToolbarAlignment/index.d.ts +3 -1
- package/dist/types/plugins/analytics/index.d.ts +3 -6
- package/dist/types/plugins/analytics/plugin.d.ts +3 -1
- package/dist/types/plugins/analytics/utils.d.ts +2 -3
- package/dist/types/plugins/annotation/index.d.ts +3 -1
- package/dist/types/plugins/avatar-group/index.d.ts +3 -1
- package/dist/types/plugins/base/index.d.ts +3 -1
- package/dist/types/plugins/base/pm-plugins/filter-steps.d.ts +1 -1
- package/dist/types/plugins/base/utils/input-latency-tracking.d.ts +1 -3
- package/dist/types/plugins/before-primaryToolbar/index.d.ts +3 -1
- package/dist/types/plugins/block-type/index.d.ts +3 -1
- package/dist/types/plugins/block-type/ui/ToolbarBlockType/blocktype-button.d.ts +1 -0
- package/dist/types/plugins/block-type/ui/ToolbarBlockType/index.d.ts +1 -0
- package/dist/types/plugins/breakout/index.d.ts +3 -1
- package/dist/types/plugins/card/index.d.ts +3 -1
- package/dist/types/plugins/card/nodeviews/genericCard.d.ts +1 -1
- package/dist/types/plugins/card/pm-plugins/util/state.d.ts +1 -0
- package/dist/types/plugins/card/types.d.ts +3 -0
- package/dist/types/plugins/code-bidi-warning/index.d.ts +3 -1
- package/dist/types/plugins/code-block/index.d.ts +3 -1
- package/dist/types/plugins/collab-edit/index.d.ts +3 -1
- package/dist/types/plugins/context-panel/index.d.ts +1 -1
- package/dist/types/plugins/emoji/index.d.ts +3 -1
- package/dist/types/plugins/expand/index.d.ts +3 -1
- package/dist/types/plugins/extension/index.d.ts +3 -1
- package/dist/types/plugins/extension/toolbar.d.ts +5 -0
- package/dist/types/plugins/feature-flags-context/index.d.ts +3 -1
- package/dist/types/plugins/feedback-dialog/index.d.ts +3 -1
- package/dist/types/plugins/find-replace/index.d.ts +3 -1
- package/dist/types/plugins/floating-toolbar/ui/Button.d.ts +2 -1
- package/dist/types/plugins/floating-toolbar/ui/Dropdown.d.ts +5 -2
- package/dist/types/plugins/grid/index.d.ts +3 -1
- package/dist/types/plugins/help-dialog/index.d.ts +3 -1
- package/dist/types/plugins/hyperlink/analytics.d.ts +1 -1
- package/dist/types/plugins/hyperlink/index.d.ts +3 -1
- package/dist/types/plugins/hyperlink/pm-plugins/main.d.ts +4 -2
- package/dist/types/plugins/hyperlink/types.d.ts +3 -1
- package/dist/types/plugins/hyperlink/ui/EditorLinkPicker/index.d.ts +3 -1
- package/dist/types/plugins/insert-block/index.d.ts +3 -1
- package/dist/types/plugins/insert-block/ui/ToolbarInsertBlock/block-insert-element-browser.d.ts +1 -0
- package/dist/types/plugins/insert-block/ui/ToolbarInsertBlock/block-insert-menu-legacy.d.ts +1 -0
- package/dist/types/plugins/insert-block/ui/ToolbarInsertBlock/block-insert-menu.d.ts +1 -0
- package/dist/types/plugins/insert-block/ui/ToolbarInsertBlock/dropdown-button.d.ts +1 -0
- package/dist/types/plugins/insert-block/ui/ToolbarInsertBlock/index.d.ts +1 -0
- package/dist/types/plugins/insert-block/ui/ToolbarInsertBlock/types.d.ts +1 -0
- package/dist/types/plugins/layout/index.d.ts +3 -1
- package/dist/types/plugins/list/index.d.ts +3 -1
- package/dist/types/plugins/max-content-size/index.d.ts +3 -1
- package/dist/types/plugins/media/commands/helpers.d.ts +5 -12
- package/dist/types/plugins/media/commands/index.d.ts +1 -1
- package/dist/types/plugins/media/index.d.ts +3 -1
- package/dist/types/plugins/media/nodeviews/__mocks__/mediaNodeUpdater.d.ts +3 -1
- package/dist/types/plugins/media/nodeviews/mediaNodeUpdater.d.ts +4 -1
- package/dist/types/plugins/media/pm-plugins/main.d.ts +1 -4
- package/dist/types/plugins/media/pm-plugins/types.d.ts +1 -4
- package/dist/types/plugins/mentions/index.d.ts +3 -1
- package/dist/types/plugins/panel/index.d.ts +3 -1
- package/dist/types/plugins/paste/handlers.d.ts +2 -1
- package/dist/types/plugins/paste/index.d.ts +3 -1
- package/dist/types/plugins/paste/pm-plugins/analytics.d.ts +4 -1
- package/dist/types/plugins/placeholder/index.d.ts +3 -1
- package/dist/types/plugins/placeholder-text/index.d.ts +3 -1
- package/dist/types/plugins/quick-insert/index.d.ts +3 -1
- package/dist/types/plugins/save-on-enter/index.d.ts +3 -1
- package/dist/types/plugins/selection/index.d.ts +3 -1
- package/dist/types/plugins/status/index.d.ts +3 -1
- package/dist/types/plugins/status/ui/statusPicker.d.ts +3 -0
- package/dist/types/plugins/submit-editor/index.d.ts +3 -1
- package/dist/types/plugins/tasks-and-decisions/index.d.ts +3 -1
- package/dist/types/plugins/text-color/index.d.ts +3 -1
- package/dist/types/plugins/text-color/ui/ToolbarTextColor/index.d.ts +2 -0
- package/dist/types/plugins/text-formatting/index.d.ts +3 -1
- package/dist/types/plugins/text-formatting/ui/Toolbar/more-button.d.ts +2 -1
- package/dist/types/plugins/text-formatting/utils.d.ts +0 -1
- package/dist/types/plugins/toolbar-lists-indentation/index.d.ts +3 -1
- package/dist/types/plugins/type-ahead/index.d.ts +3 -1
- package/dist/types/types/get-editor-props.d.ts +12 -0
- package/dist/types/types/performance-tracking.d.ts +10 -0
- package/dist/types/ui/Appearance/FullPage/StyledComponents.d.ts +29 -29
- package/dist/types/ui/CollapsedEditor/index.d.ts +4 -3
- package/dist/types/ui/ColorPickerButton/index.d.ts +2 -1
- package/dist/types/ui/ConfigPanel/ConfigPanel.d.ts +1 -1
- package/dist/types/ui/ContentStyles/index.d.ts +2 -2
- package/dist/types/ui/ContextPanel/context.d.ts +2 -1
- package/dist/types/ui/PanelTextInput/index.d.ts +1 -1
- package/dist/types/ui/PortalProvider/index.d.ts +1 -1
- package/dist/types/utils/document.d.ts +4 -3
- package/dist/types/utils/get-editor-plugins.d.ts +10 -0
- package/dist/types/utils/linking-utils.d.ts +1 -1
- package/dist/types/utils/performance/components/RenderTracking.d.ts +1 -1
- package/dist/types/utils/performance/instrumented-plugin.d.ts +1 -1
- package/dist/types/utils/performance/safer-transactions.d.ts +1 -1
- package/dist/types/utils/prepare-extension-provider.d.ts +5 -0
- package/docs/0-intro.tsx +0 -1
- package/package.json +23 -22
- package/report.api.md +193 -139
- package/dist/cjs/plugins/analytics/analytics-queue.js +0 -79
- package/dist/cjs/plugins/analytics/fire-analytics-event.js +0 -35
- package/dist/es2019/plugins/analytics/analytics-queue.js +0 -53
- package/dist/es2019/plugins/analytics/fire-analytics-event.js +0 -26
- package/dist/esm/plugins/analytics/analytics-queue.js +0 -71
- package/dist/esm/plugins/analytics/fire-analytics-event.js +0 -28
- package/dist/types/plugins/analytics/analytics-queue.d.ts +0 -10
- package/dist/types/plugins/analytics/fire-analytics-event.d.ts +0 -9
|
@@ -0,0 +1,783 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
exports.ReactEditorView = void 0;
|
|
8
|
+
exports.shouldReconfigureState = shouldReconfigureState;
|
|
9
|
+
var _typeof2 = _interopRequireDefault(require("@babel/runtime/helpers/typeof"));
|
|
10
|
+
var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
|
|
11
|
+
var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
|
|
12
|
+
var _assertThisInitialized2 = _interopRequireDefault(require("@babel/runtime/helpers/assertThisInitialized"));
|
|
13
|
+
var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits"));
|
|
14
|
+
var _possibleConstructorReturn2 = _interopRequireDefault(require("@babel/runtime/helpers/possibleConstructorReturn"));
|
|
15
|
+
var _getPrototypeOf2 = _interopRequireDefault(require("@babel/runtime/helpers/getPrototypeOf"));
|
|
16
|
+
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
17
|
+
var _react = _interopRequireDefault(require("react"));
|
|
18
|
+
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
19
|
+
var _prosemirrorState = require("prosemirror-state");
|
|
20
|
+
var _prosemirrorView = require("prosemirror-view");
|
|
21
|
+
var _messages = require("./messages");
|
|
22
|
+
var _utils = require("@atlaskit/editor-common/utils");
|
|
23
|
+
var _ufo = require("@atlaskit/editor-common/ufo");
|
|
24
|
+
var _eventDispatcher = require("../event-dispatcher");
|
|
25
|
+
var _utils2 = require("../utils");
|
|
26
|
+
var _saferTransactions = require("../utils/performance/safer-transactions");
|
|
27
|
+
var _RenderTracking = require("../utils/performance/components/RenderTracking");
|
|
28
|
+
var _nodes = require("../utils/nodes");
|
|
29
|
+
var _analytics = require("@atlaskit/editor-common/analytics");
|
|
30
|
+
var _featureFlagsFromProps = require("./feature-flags-from-props");
|
|
31
|
+
var _getEnabledFeatureFlagKeys = require("../plugins/feature-flags-context/get-enabled-feature-flag-keys");
|
|
32
|
+
var _createEditor = require("./create-editor");
|
|
33
|
+
var _documentLogger = require("../utils/document-logger");
|
|
34
|
+
var _isFullPage = require("../utils/is-full-page");
|
|
35
|
+
var _measureEnum = _interopRequireDefault(require("../utils/performance/measure-enum"));
|
|
36
|
+
var _document = require("../utils/document");
|
|
37
|
+
var _createSchema = require("./create-schema");
|
|
38
|
+
var _pluginPerformanceObserver = require("../utils/performance/plugin-performance-observer");
|
|
39
|
+
var _getParticipantsCount = require("../plugins/collab-edit/get-participants-count");
|
|
40
|
+
var _countNodes2 = require("../utils/count-nodes");
|
|
41
|
+
var _trackTransactions = require("../utils/performance/track-transactions");
|
|
42
|
+
var _consts = require("./consts");
|
|
43
|
+
var _contextIdentifier = require("../plugins/base/pm-plugins/context-identifier");
|
|
44
|
+
var _ReactEditorViewContext = _interopRequireDefault(require("./ReactEditorViewContext"));
|
|
45
|
+
var _api = require("../insert-api/api");
|
|
46
|
+
var _api2 = require("../analytics-api/api");
|
|
47
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
48
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
49
|
+
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; }
|
|
50
|
+
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
51
|
+
function handleEditorFocus(view) {
|
|
52
|
+
if (view.hasFocus()) {
|
|
53
|
+
return;
|
|
54
|
+
}
|
|
55
|
+
return window.setTimeout(function () {
|
|
56
|
+
view.focus();
|
|
57
|
+
}, 0);
|
|
58
|
+
}
|
|
59
|
+
var EMPTY = [];
|
|
60
|
+
function shouldReconfigureState(props, nextProps) {
|
|
61
|
+
var _props$dangerouslyApp, _props$dangerouslyApp2, _nextProps$dangerousl, _nextProps$dangerousl2;
|
|
62
|
+
var prevPlugins = (_props$dangerouslyApp = (_props$dangerouslyApp2 = props.dangerouslyAppendPlugins) === null || _props$dangerouslyApp2 === void 0 ? void 0 : _props$dangerouslyApp2.__plugins) !== null && _props$dangerouslyApp !== void 0 ? _props$dangerouslyApp : EMPTY;
|
|
63
|
+
var nextPlugins = (_nextProps$dangerousl = (_nextProps$dangerousl2 = nextProps.dangerouslyAppendPlugins) === null || _nextProps$dangerousl2 === void 0 ? void 0 : _nextProps$dangerousl2.__plugins) !== null && _nextProps$dangerousl !== void 0 ? _nextProps$dangerousl : EMPTY;
|
|
64
|
+
if (nextPlugins.length !== prevPlugins.length || prevPlugins.some(function (p) {
|
|
65
|
+
return nextPlugins.some(function (n) {
|
|
66
|
+
return n.name === p.name && n !== p;
|
|
67
|
+
});
|
|
68
|
+
})) {
|
|
69
|
+
return true;
|
|
70
|
+
}
|
|
71
|
+
var mobileProperties = props.appearance === 'mobile' ? ['featureFlags', 'quickInsert'] : [];
|
|
72
|
+
var properties = ['appearance', 'persistScrollGutter', 'allowUndoRedoButtons', 'placeholder', 'sanitizePrivateContent'].concat(mobileProperties);
|
|
73
|
+
return properties.reduce(function (acc, curr) {
|
|
74
|
+
return acc || props[curr] !== nextProps[curr];
|
|
75
|
+
}, false);
|
|
76
|
+
}
|
|
77
|
+
var ReactEditorView = /*#__PURE__*/function (_React$Component) {
|
|
78
|
+
(0, _inherits2.default)(ReactEditorView, _React$Component);
|
|
79
|
+
var _super = _createSuper(ReactEditorView);
|
|
80
|
+
function ReactEditorView(_props, context) {
|
|
81
|
+
var _this;
|
|
82
|
+
(0, _classCallCheck2.default)(this, ReactEditorView);
|
|
83
|
+
_this = _super.call(this, _props, context);
|
|
84
|
+
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "editorRef", /*#__PURE__*/_react.default.createRef());
|
|
85
|
+
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "canDispatchTransactions", true);
|
|
86
|
+
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "onPluginObservation", function (report, editorState) {
|
|
87
|
+
_this.dispatchAnalyticsEvent({
|
|
88
|
+
action: _analytics.ACTION.TRANSACTION_DISPATCHED,
|
|
89
|
+
actionSubject: _analytics.ACTION_SUBJECT.EDITOR,
|
|
90
|
+
eventType: _analytics.EVENT_TYPE.OPERATIONAL,
|
|
91
|
+
attributes: {
|
|
92
|
+
report: report,
|
|
93
|
+
participants: (0, _getParticipantsCount.getParticipantsCount)(editorState)
|
|
94
|
+
}
|
|
95
|
+
});
|
|
96
|
+
});
|
|
97
|
+
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "formatFullWidthAppearance", function (appearance) {
|
|
98
|
+
if (appearance === 'full-width') {
|
|
99
|
+
return _analytics.FULL_WIDTH_MODE.FULL_WIDTH;
|
|
100
|
+
}
|
|
101
|
+
return _analytics.FULL_WIDTH_MODE.FIXED_WIDTH;
|
|
102
|
+
});
|
|
103
|
+
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "resetEditorState", function (_ref) {
|
|
104
|
+
var _this$props$editorPro, _this$props$editorPro2;
|
|
105
|
+
var doc = _ref.doc,
|
|
106
|
+
shouldScrollToBottom = _ref.shouldScrollToBottom;
|
|
107
|
+
if (!_this.view) {
|
|
108
|
+
return;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
// We cannot currently guarentee when all the portals will have re-rendered during a reconfigure
|
|
112
|
+
// so we blur here to stop ProseMirror from trying to apply selection to detached nodes or
|
|
113
|
+
// nodes that haven't been re-rendered to the document yet.
|
|
114
|
+
_this.blur();
|
|
115
|
+
_this.featureFlags = (0, _featureFlagsFromProps.createFeatureFlagsFromProps)(_this.props.editorProps);
|
|
116
|
+
_this.editorState = _this.createEditorState({
|
|
117
|
+
props: _this.props,
|
|
118
|
+
context: _this.context,
|
|
119
|
+
doc: doc,
|
|
120
|
+
resetting: true,
|
|
121
|
+
selectionAtStart: !shouldScrollToBottom
|
|
122
|
+
});
|
|
123
|
+
_this.view.updateState(_this.editorState);
|
|
124
|
+
(_this$props$editorPro = (_this$props$editorPro2 = _this.props.editorProps).onChange) === null || _this$props$editorPro === void 0 ? void 0 : _this$props$editorPro.call(_this$props$editorPro2, _this.view, {
|
|
125
|
+
source: 'local'
|
|
126
|
+
});
|
|
127
|
+
});
|
|
128
|
+
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "blur", function () {
|
|
129
|
+
if (!_this.view) {
|
|
130
|
+
return;
|
|
131
|
+
}
|
|
132
|
+
if (_this.view.dom instanceof HTMLElement && _this.view.hasFocus()) {
|
|
133
|
+
_this.view.dom.blur();
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
// The selectionToDOM method uses the document selection to determine currently selected node
|
|
137
|
+
// We need to mimic blurring this as it seems doing the above is not enough.
|
|
138
|
+
// @ts-expect-error
|
|
139
|
+
var sel = _this.view.root.getSelection();
|
|
140
|
+
if (sel) {
|
|
141
|
+
sel.removeAllRanges();
|
|
142
|
+
}
|
|
143
|
+
});
|
|
144
|
+
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "reconfigureState", function (props) {
|
|
145
|
+
if (!_this.view) {
|
|
146
|
+
return;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
// We cannot currently guarentee when all the portals will have re-rendered during a reconfigure
|
|
150
|
+
// so we blur here to stop ProseMirror from trying to apply selection to detached nodes or
|
|
151
|
+
// nodes that haven't been re-rendered to the document yet.
|
|
152
|
+
_this.blur();
|
|
153
|
+
var editorPlugins = _this.getPlugins(props.editorProps, _this.props.editorProps, _this.props.createAnalyticsEvent);
|
|
154
|
+
_this.config = (0, _createEditor.processPluginsList)(editorPlugins);
|
|
155
|
+
var state = _this.editorState;
|
|
156
|
+
var plugins = (0, _createEditor.createPMPlugins)({
|
|
157
|
+
schema: state.schema,
|
|
158
|
+
dispatch: _this.dispatch,
|
|
159
|
+
errorReporter: _this.errorReporter,
|
|
160
|
+
editorConfig: _this.config,
|
|
161
|
+
eventDispatcher: _this.eventDispatcher,
|
|
162
|
+
providerFactory: props.providerFactory,
|
|
163
|
+
portalProviderAPI: props.portalProviderAPI,
|
|
164
|
+
reactContext: function reactContext() {
|
|
165
|
+
return _this.context;
|
|
166
|
+
},
|
|
167
|
+
dispatchAnalyticsEvent: _this.dispatchAnalyticsEvent,
|
|
168
|
+
performanceTracking: props.editorProps.performanceTracking,
|
|
169
|
+
transactionTracker: _this.transactionTracker,
|
|
170
|
+
featureFlags: (0, _featureFlagsFromProps.createFeatureFlagsFromProps)(props.editorProps),
|
|
171
|
+
getIntl: function getIntl() {
|
|
172
|
+
return _this.props.intl;
|
|
173
|
+
}
|
|
174
|
+
});
|
|
175
|
+
var newState = state.reconfigure({
|
|
176
|
+
plugins: plugins
|
|
177
|
+
});
|
|
178
|
+
|
|
179
|
+
// need to update the state first so when the view builds the nodeviews it is
|
|
180
|
+
// using the latest plugins
|
|
181
|
+
_this.view.updateState(newState);
|
|
182
|
+
return _this.view.update(_objectSpread(_objectSpread({}, _this.view.props), {}, {
|
|
183
|
+
state: newState
|
|
184
|
+
}));
|
|
185
|
+
});
|
|
186
|
+
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "handleAnalyticsEvent", function (payload) {
|
|
187
|
+
if (!_this.props.allowAnalyticsGASV3) {
|
|
188
|
+
return;
|
|
189
|
+
}
|
|
190
|
+
(0, _analytics.fireAnalyticsEvent)(_this.props.createAnalyticsEvent)(payload);
|
|
191
|
+
});
|
|
192
|
+
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "editorPlugins", []);
|
|
193
|
+
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "createEditorState", function (options) {
|
|
194
|
+
var schema;
|
|
195
|
+
if (_this.view) {
|
|
196
|
+
if (options.resetting) {
|
|
197
|
+
/**
|
|
198
|
+
* ReactEditorView currently does NOT handle dynamic schema,
|
|
199
|
+
* We are reusing the existing schema, and rely on #reconfigureState
|
|
200
|
+
* to update `this.config`
|
|
201
|
+
*/
|
|
202
|
+
schema = _this.view.state.schema;
|
|
203
|
+
} else {
|
|
204
|
+
/**
|
|
205
|
+
* There's presently a number of issues with changing the schema of a
|
|
206
|
+
* editor inflight. A significant issue is that we lose the ability
|
|
207
|
+
* to keep track of a user's history as the internal plugin state
|
|
208
|
+
* keeps a list of Steps to undo/redo (which are tied to the schema).
|
|
209
|
+
* Without a good way to do work around this, we prevent this for now.
|
|
210
|
+
*/
|
|
211
|
+
// eslint-disable-next-line no-console
|
|
212
|
+
console.warn('The editor does not support changing the schema dynamically.');
|
|
213
|
+
return _this.editorState;
|
|
214
|
+
}
|
|
215
|
+
} else {
|
|
216
|
+
_this.config = (0, _createEditor.processPluginsList)(_this.getPlugins(options.props.editorProps, undefined, options.props.createAnalyticsEvent));
|
|
217
|
+
schema = (0, _createSchema.createSchema)(_this.config);
|
|
218
|
+
}
|
|
219
|
+
var contentTransformerProvider = options.props.editorProps.contentTransformerProvider;
|
|
220
|
+
var plugins = (0, _createEditor.createPMPlugins)({
|
|
221
|
+
schema: schema,
|
|
222
|
+
dispatch: _this.dispatch,
|
|
223
|
+
errorReporter: _this.errorReporter,
|
|
224
|
+
editorConfig: _this.config,
|
|
225
|
+
eventDispatcher: _this.eventDispatcher,
|
|
226
|
+
providerFactory: options.props.providerFactory,
|
|
227
|
+
portalProviderAPI: _this.props.portalProviderAPI,
|
|
228
|
+
reactContext: function reactContext() {
|
|
229
|
+
return options.context;
|
|
230
|
+
},
|
|
231
|
+
dispatchAnalyticsEvent: _this.dispatchAnalyticsEvent,
|
|
232
|
+
performanceTracking: _this.props.editorProps.performanceTracking,
|
|
233
|
+
transactionTracker: _this.transactionTracker,
|
|
234
|
+
featureFlags: _this.featureFlags,
|
|
235
|
+
getIntl: function getIntl() {
|
|
236
|
+
return _this.props.intl;
|
|
237
|
+
}
|
|
238
|
+
});
|
|
239
|
+
_this.contentTransformer = contentTransformerProvider ? contentTransformerProvider(schema) : undefined;
|
|
240
|
+
var doc;
|
|
241
|
+
if (options.doc) {
|
|
242
|
+
doc = (0, _utils2.processRawValue)(schema, options.doc, options.props.providerFactory, options.props.editorProps.sanitizePrivateContent, _this.contentTransformer, _this.dispatchAnalyticsEvent);
|
|
243
|
+
}
|
|
244
|
+
var selection;
|
|
245
|
+
if (doc) {
|
|
246
|
+
selection = options.selectionAtStart ? _prosemirrorState.Selection.atStart(doc) : _prosemirrorState.Selection.atEnd(doc);
|
|
247
|
+
}
|
|
248
|
+
// Workaround for ED-3507: When media node is the last element, scrollIntoView throws an error
|
|
249
|
+
var patchedSelection = selection ? _prosemirrorState.Selection.findFrom(selection.$head, -1, true) || undefined : undefined;
|
|
250
|
+
return _prosemirrorState.EditorState.create({
|
|
251
|
+
schema: schema,
|
|
252
|
+
plugins: plugins,
|
|
253
|
+
doc: doc,
|
|
254
|
+
selection: patchedSelection
|
|
255
|
+
});
|
|
256
|
+
});
|
|
257
|
+
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "onEditorViewStateUpdated", function (_ref2) {
|
|
258
|
+
var originalTransaction = _ref2.originalTransaction,
|
|
259
|
+
transactions = _ref2.transactions,
|
|
260
|
+
oldEditorState = _ref2.oldEditorState,
|
|
261
|
+
newEditorState = _ref2.newEditorState;
|
|
262
|
+
var trackinEnabled = _this.transactionTracking.enabled;
|
|
263
|
+
_this.config.onEditorViewStateUpdatedCallbacks.forEach(function (entry) {
|
|
264
|
+
trackinEnabled && (0, _utils.startMeasure)("\uD83E\uDD89 ".concat(entry.pluginName, "::onEditorViewStateUpdated"));
|
|
265
|
+
entry.callback({
|
|
266
|
+
originalTransaction: originalTransaction,
|
|
267
|
+
transactions: transactions,
|
|
268
|
+
oldEditorState: oldEditorState,
|
|
269
|
+
newEditorState: newEditorState
|
|
270
|
+
});
|
|
271
|
+
trackinEnabled && (0, _utils.stopMeasure)("\uD83E\uDD89 ".concat(entry.pluginName, "::onEditorViewStateUpdated"));
|
|
272
|
+
});
|
|
273
|
+
});
|
|
274
|
+
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "trackValidTransactions", function () {
|
|
275
|
+
var editorProps = _this.props.editorProps;
|
|
276
|
+
if (editorProps !== null && editorProps !== void 0 && editorProps.trackValidTransactions) {
|
|
277
|
+
_this.validTransactionCount++;
|
|
278
|
+
var samplingRate = (0, _typeof2.default)(editorProps.trackValidTransactions) === 'object' && editorProps.trackValidTransactions.samplingRate || _consts.DEFAULT_SAMPLING_RATE_VALID_TRANSACTIONS;
|
|
279
|
+
if (_this.validTransactionCount >= samplingRate) {
|
|
280
|
+
_this.dispatchAnalyticsEvent({
|
|
281
|
+
action: _analytics.ACTION.DISPATCHED_VALID_TRANSACTION,
|
|
282
|
+
actionSubject: _analytics.ACTION_SUBJECT.EDITOR,
|
|
283
|
+
eventType: _analytics.EVENT_TYPE.OPERATIONAL
|
|
284
|
+
});
|
|
285
|
+
_this.validTransactionCount = 0;
|
|
286
|
+
}
|
|
287
|
+
}
|
|
288
|
+
});
|
|
289
|
+
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "dispatchTransaction", function (unsafeTransaction) {
|
|
290
|
+
if (!_this.view) {
|
|
291
|
+
return;
|
|
292
|
+
}
|
|
293
|
+
_this.transactionTracker.bumpDispatchCounter(_this.transactionTracking);
|
|
294
|
+
var _this$transactionTrac = _this.transactionTracker.getMeasureHelpers(_this.transactionTracking),
|
|
295
|
+
startMeasure = _this$transactionTrac.startMeasure,
|
|
296
|
+
stopMeasure = _this$transactionTrac.stopMeasure;
|
|
297
|
+
startMeasure(_trackTransactions.EVENT_NAME_DISPATCH_TRANSACTION);
|
|
298
|
+
if (_this.transactionTracker.shouldTrackTransaction(_this.transactionTracking)) {
|
|
299
|
+
var _this$experienceStore;
|
|
300
|
+
(_this$experienceStore = _this.experienceStore) === null || _this$experienceStore === void 0 ? void 0 : _this$experienceStore.start(_ufo.EditorExperience.interaction);
|
|
301
|
+
}
|
|
302
|
+
var nodes = (0, _nodes.findChangedNodesFromTransaction)(unsafeTransaction);
|
|
303
|
+
var changedNodesValid = (0, _nodes.validateNodes)(nodes);
|
|
304
|
+
var transaction = _this.featureFlags.saferDispatchedTransactions || _this.featureFlags.saferDispatchedTransactionsAnalyticsOnly ? new Proxy(unsafeTransaction, (0, _saferTransactions.freezeUnsafeTransactionProperties)({
|
|
305
|
+
dispatchAnalyticsEvent: _this.dispatchAnalyticsEvent,
|
|
306
|
+
pluginKey: 'unknown-reacteditorview',
|
|
307
|
+
analyticsOnly: _this.featureFlags.saferDispatchedTransactionsAnalyticsOnly
|
|
308
|
+
})) : unsafeTransaction;
|
|
309
|
+
if (changedNodesValid) {
|
|
310
|
+
var oldEditorState = _this.view.state;
|
|
311
|
+
|
|
312
|
+
// go ahead and update the state now we know the transaction is good
|
|
313
|
+
startMeasure(_trackTransactions.EVENT_NAME_STATE_APPLY);
|
|
314
|
+
var _this$view$state$appl = _this.view.state.applyTransaction(transaction),
|
|
315
|
+
editorState = _this$view$state$appl.state,
|
|
316
|
+
transactions = _this$view$state$appl.transactions;
|
|
317
|
+
stopMeasure(_trackTransactions.EVENT_NAME_STATE_APPLY, function (duration, startTime) {
|
|
318
|
+
var _this$experienceStore2;
|
|
319
|
+
(_this$experienceStore2 = _this.experienceStore) === null || _this$experienceStore2 === void 0 ? void 0 : _this$experienceStore2.mark(_ufo.EditorExperience.interaction, 'stateApply', startTime + duration);
|
|
320
|
+
});
|
|
321
|
+
_this.trackValidTransactions();
|
|
322
|
+
if (editorState === oldEditorState) {
|
|
323
|
+
return;
|
|
324
|
+
}
|
|
325
|
+
startMeasure(_trackTransactions.EVENT_NAME_UPDATE_STATE);
|
|
326
|
+
_this.view.updateState(editorState);
|
|
327
|
+
stopMeasure(_trackTransactions.EVENT_NAME_UPDATE_STATE, function (duration, startTime) {
|
|
328
|
+
var _this$experienceStore3;
|
|
329
|
+
(_this$experienceStore3 = _this.experienceStore) === null || _this$experienceStore3 === void 0 ? void 0 : _this$experienceStore3.mark(_ufo.EditorExperience.interaction, 'viewUpdateState', startTime + duration);
|
|
330
|
+
});
|
|
331
|
+
startMeasure(_trackTransactions.EVENT_NAME_VIEW_STATE_UPDATED);
|
|
332
|
+
_this.onEditorViewStateUpdated({
|
|
333
|
+
originalTransaction: transaction,
|
|
334
|
+
transactions: transactions,
|
|
335
|
+
oldEditorState: oldEditorState,
|
|
336
|
+
newEditorState: editorState
|
|
337
|
+
});
|
|
338
|
+
stopMeasure(_trackTransactions.EVENT_NAME_VIEW_STATE_UPDATED, function (duration, startTime) {
|
|
339
|
+
var _this$experienceStore4;
|
|
340
|
+
(_this$experienceStore4 = _this.experienceStore) === null || _this$experienceStore4 === void 0 ? void 0 : _this$experienceStore4.mark(_ufo.EditorExperience.interaction, 'onEditorViewStateUpdated', startTime + duration);
|
|
341
|
+
});
|
|
342
|
+
if (_this.props.editorProps.onChange && transaction.docChanged) {
|
|
343
|
+
var source = transaction.getMeta('isRemote') ? 'remote' : 'local';
|
|
344
|
+
startMeasure(_trackTransactions.EVENT_NAME_ON_CHANGE);
|
|
345
|
+
_this.props.editorProps.onChange(_this.view, {
|
|
346
|
+
source: source
|
|
347
|
+
});
|
|
348
|
+
stopMeasure(_trackTransactions.EVENT_NAME_ON_CHANGE, function (duration, startTime) {
|
|
349
|
+
var _this$experienceStore5, _this$props$editorPro3, _this$props$editorPro4;
|
|
350
|
+
(_this$experienceStore5 = _this.experienceStore) === null || _this$experienceStore5 === void 0 ? void 0 : _this$experienceStore5.mark(_ufo.EditorExperience.interaction, 'onChange', startTime + duration);
|
|
351
|
+
if (((_this$props$editorPro3 = _this.props.editorProps.performanceTracking) === null || _this$props$editorPro3 === void 0 ? void 0 : (_this$props$editorPro4 = _this$props$editorPro3.onChangeCallbackTracking) === null || _this$props$editorPro4 === void 0 ? void 0 : _this$props$editorPro4.enabled) !== true) {
|
|
352
|
+
return;
|
|
353
|
+
}
|
|
354
|
+
_this.dispatchAnalyticsEvent({
|
|
355
|
+
action: _analytics.ACTION.ON_CHANGE_CALLBACK,
|
|
356
|
+
actionSubject: _analytics.ACTION_SUBJECT.EDITOR,
|
|
357
|
+
eventType: _analytics.EVENT_TYPE.OPERATIONAL,
|
|
358
|
+
attributes: {
|
|
359
|
+
duration: duration,
|
|
360
|
+
startTime: startTime
|
|
361
|
+
}
|
|
362
|
+
});
|
|
363
|
+
});
|
|
364
|
+
}
|
|
365
|
+
_this.editorState = editorState;
|
|
366
|
+
stopMeasure(_trackTransactions.EVENT_NAME_DISPATCH_TRANSACTION, function (duration, startTime) {
|
|
367
|
+
var _this$experienceStore6, _this$experienceStore7;
|
|
368
|
+
(_this$experienceStore6 = _this.experienceStore) === null || _this$experienceStore6 === void 0 ? void 0 : _this$experienceStore6.mark(_ufo.EditorExperience.interaction, 'dispatchTransaction', startTime + duration);
|
|
369
|
+
(_this$experienceStore7 = _this.experienceStore) === null || _this$experienceStore7 === void 0 ? void 0 : _this$experienceStore7.success(_ufo.EditorExperience.interaction);
|
|
370
|
+
});
|
|
371
|
+
} else {
|
|
372
|
+
var _this$experienceStore8;
|
|
373
|
+
var invalidNodes = nodes.filter(function (node) {
|
|
374
|
+
return !(0, _nodes.validNode)(node);
|
|
375
|
+
}).map(function (node) {
|
|
376
|
+
return (0, _documentLogger.getDocStructure)(node, {
|
|
377
|
+
compact: true
|
|
378
|
+
});
|
|
379
|
+
});
|
|
380
|
+
_this.dispatchAnalyticsEvent({
|
|
381
|
+
action: _analytics.ACTION.DISPATCHED_INVALID_TRANSACTION,
|
|
382
|
+
actionSubject: _analytics.ACTION_SUBJECT.EDITOR,
|
|
383
|
+
eventType: _analytics.EVENT_TYPE.OPERATIONAL,
|
|
384
|
+
attributes: {
|
|
385
|
+
analyticsEventPayloads: (0, _analytics.getAnalyticsEventsFromTransaction)(transaction),
|
|
386
|
+
invalidNodes: invalidNodes
|
|
387
|
+
}
|
|
388
|
+
});
|
|
389
|
+
(_this$experienceStore8 = _this.experienceStore) === null || _this$experienceStore8 === void 0 ? void 0 : _this$experienceStore8.fail(_ufo.EditorExperience.interaction, {
|
|
390
|
+
reason: 'invalid transaction',
|
|
391
|
+
invalidNodes: invalidNodes.toString()
|
|
392
|
+
});
|
|
393
|
+
}
|
|
394
|
+
});
|
|
395
|
+
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "getDirectEditorProps", function (state) {
|
|
396
|
+
return {
|
|
397
|
+
state: state || _this.editorState,
|
|
398
|
+
dispatchTransaction: function dispatchTransaction(tr) {
|
|
399
|
+
// Block stale transactions:
|
|
400
|
+
// Prevent runtime exeptions from async transactions that would attempt to
|
|
401
|
+
// update the DOM after React has unmounted the Editor.
|
|
402
|
+
if (_this.canDispatchTransactions) {
|
|
403
|
+
_this.dispatchTransaction(tr);
|
|
404
|
+
}
|
|
405
|
+
},
|
|
406
|
+
// Disables the contentEditable attribute of the editor if the editor is disabled
|
|
407
|
+
editable: function editable(_state) {
|
|
408
|
+
return !_this.props.editorProps.disabled;
|
|
409
|
+
},
|
|
410
|
+
attributes: {
|
|
411
|
+
'data-gramm': 'false'
|
|
412
|
+
}
|
|
413
|
+
};
|
|
414
|
+
});
|
|
415
|
+
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "createEditorView", function (node) {
|
|
416
|
+
(0, _utils.measureRender)(_measureEnum.default.PROSEMIRROR_RENDERED, function (_ref3) {
|
|
417
|
+
var _this$props$editorPro5, _this$props$editorPro6, _proseMirrorRenderedT, _proseMirrorRenderedT2;
|
|
418
|
+
var duration = _ref3.duration,
|
|
419
|
+
startTime = _ref3.startTime,
|
|
420
|
+
distortedDuration = _ref3.distortedDuration;
|
|
421
|
+
var proseMirrorRenderedTracking = (_this$props$editorPro5 = _this.props.editorProps) === null || _this$props$editorPro5 === void 0 ? void 0 : (_this$props$editorPro6 = _this$props$editorPro5.performanceTracking) === null || _this$props$editorPro6 === void 0 ? void 0 : _this$props$editorPro6.proseMirrorRenderedTracking;
|
|
422
|
+
var forceSeverityTracking = typeof proseMirrorRenderedTracking === 'undefined' && (0, _utils.shouldForceTracking)();
|
|
423
|
+
_this.proseMirrorRenderedSeverity = !!forceSeverityTracking || proseMirrorRenderedTracking !== null && proseMirrorRenderedTracking !== void 0 && proseMirrorRenderedTracking.trackSeverity ? (0, _utils.getAnalyticsEventSeverity)(duration, (_proseMirrorRenderedT = proseMirrorRenderedTracking === null || proseMirrorRenderedTracking === void 0 ? void 0 : proseMirrorRenderedTracking.severityNormalThreshold) !== null && _proseMirrorRenderedT !== void 0 ? _proseMirrorRenderedT : _consts.PROSEMIRROR_RENDERED_NORMAL_SEVERITY_THRESHOLD, (_proseMirrorRenderedT2 = proseMirrorRenderedTracking === null || proseMirrorRenderedTracking === void 0 ? void 0 : proseMirrorRenderedTracking.severityDegradedThreshold) !== null && _proseMirrorRenderedT2 !== void 0 ? _proseMirrorRenderedT2 : _consts.PROSEMIRROR_RENDERED_DEGRADED_SEVERITY_THRESHOLD) : undefined;
|
|
424
|
+
if (_this.view) {
|
|
425
|
+
var _getContextIdentifier, _this$experienceStore10;
|
|
426
|
+
var nodes = (0, _document.getNodesCount)(_this.view.state.doc);
|
|
427
|
+
var ttfb = (0, _utils.getResponseEndTime)();
|
|
428
|
+
_this.dispatchAnalyticsEvent({
|
|
429
|
+
action: _analytics.ACTION.PROSEMIRROR_RENDERED,
|
|
430
|
+
actionSubject: _analytics.ACTION_SUBJECT.EDITOR,
|
|
431
|
+
attributes: {
|
|
432
|
+
duration: duration,
|
|
433
|
+
startTime: startTime,
|
|
434
|
+
nodes: nodes,
|
|
435
|
+
ttfb: ttfb,
|
|
436
|
+
severity: _this.proseMirrorRenderedSeverity,
|
|
437
|
+
objectId: (_getContextIdentifier = (0, _contextIdentifier.getContextIdentifier)(_this.editorState)) === null || _getContextIdentifier === void 0 ? void 0 : _getContextIdentifier.objectId,
|
|
438
|
+
distortedDuration: distortedDuration
|
|
439
|
+
},
|
|
440
|
+
eventType: _analytics.EVENT_TYPE.OPERATIONAL
|
|
441
|
+
});
|
|
442
|
+
if (!distortedDuration) {
|
|
443
|
+
var _this$experienceStore9;
|
|
444
|
+
(_this$experienceStore9 = _this.experienceStore) === null || _this$experienceStore9 === void 0 ? void 0 : _this$experienceStore9.mark(_ufo.EditorExperience.loadEditor, _analytics.ACTION.PROSEMIRROR_RENDERED, startTime + duration);
|
|
445
|
+
}
|
|
446
|
+
(_this$experienceStore10 = _this.experienceStore) === null || _this$experienceStore10 === void 0 ? void 0 : _this$experienceStore10.addMetadata(_ufo.EditorExperience.loadEditor, {
|
|
447
|
+
nodes: nodes,
|
|
448
|
+
ttfb: ttfb
|
|
449
|
+
});
|
|
450
|
+
}
|
|
451
|
+
});
|
|
452
|
+
|
|
453
|
+
// Creates the editor-view from this.editorState. If an editor has been mounted
|
|
454
|
+
// previously, this will contain the previous state of the editor.
|
|
455
|
+
_this.view = new _prosemirrorView.EditorView({
|
|
456
|
+
mount: node
|
|
457
|
+
}, _this.getDirectEditorProps());
|
|
458
|
+
});
|
|
459
|
+
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "handleEditorViewRef", function (node) {
|
|
460
|
+
if (!_this.view && node) {
|
|
461
|
+
_this.createEditorView(node);
|
|
462
|
+
var view = _this.view;
|
|
463
|
+
_this.props.onEditorCreated({
|
|
464
|
+
view: view,
|
|
465
|
+
config: _this.config,
|
|
466
|
+
eventDispatcher: _this.eventDispatcher,
|
|
467
|
+
transformer: _this.contentTransformer
|
|
468
|
+
});
|
|
469
|
+
if (_this.props.editorProps.shouldFocus && view.props.editable && view.props.editable(view.state)) {
|
|
470
|
+
_this.focusTimeoutId = handleEditorFocus(view);
|
|
471
|
+
}
|
|
472
|
+
if (_this.featureFlags.ufo) {
|
|
473
|
+
_this.experienceStore = _ufo.ExperienceStore.getInstance(view);
|
|
474
|
+
_this.experienceStore.start(_ufo.EditorExperience.editSession);
|
|
475
|
+
_this.experienceStore.addMetadata(_ufo.EditorExperience.editSession, {
|
|
476
|
+
reliabilityInterval: _ufo.RELIABILITY_INTERVAL
|
|
477
|
+
});
|
|
478
|
+
_this.reliabilityInterval = window.setInterval(function () {
|
|
479
|
+
var _this$experienceStore11, _this$experienceStore12;
|
|
480
|
+
(_this$experienceStore11 = _this.experienceStore) === null || _this$experienceStore11 === void 0 ? void 0 : (_this$experienceStore12 = _this$experienceStore11.success(_ufo.EditorExperience.editSession)) === null || _this$experienceStore12 === void 0 ? void 0 : _this$experienceStore12.finally(function () {
|
|
481
|
+
var _this$experienceStore13, _this$experienceStore14;
|
|
482
|
+
(_this$experienceStore13 = _this.experienceStore) === null || _this$experienceStore13 === void 0 ? void 0 : _this$experienceStore13.start(_ufo.EditorExperience.editSession);
|
|
483
|
+
(_this$experienceStore14 = _this.experienceStore) === null || _this$experienceStore14 === void 0 ? void 0 : _this$experienceStore14.addMetadata(_ufo.EditorExperience.editSession, {
|
|
484
|
+
reliabilityInterval: _ufo.RELIABILITY_INTERVAL
|
|
485
|
+
});
|
|
486
|
+
});
|
|
487
|
+
var reliabilityEvent = {
|
|
488
|
+
action: _analytics.ACTION.UFO_SESSION_COMPLETE,
|
|
489
|
+
actionSubject: _analytics.ACTION_SUBJECT.EDITOR,
|
|
490
|
+
attributes: {
|
|
491
|
+
interval: _ufo.RELIABILITY_INTERVAL
|
|
492
|
+
},
|
|
493
|
+
eventType: _analytics.EVENT_TYPE.OPERATIONAL
|
|
494
|
+
};
|
|
495
|
+
_this.dispatchAnalyticsEvent(reliabilityEvent);
|
|
496
|
+
}, _ufo.RELIABILITY_INTERVAL);
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
// Force React to re-render so consumers get a reference to the editor view
|
|
500
|
+
_this.forceUpdate();
|
|
501
|
+
} else if (_this.view && !node) {
|
|
502
|
+
// When the appearance is changed, React will call handleEditorViewRef with node === null
|
|
503
|
+
// to destroy the old EditorView, before calling this method again with node === div to
|
|
504
|
+
// create the new EditorView
|
|
505
|
+
_this.props.onEditorDestroyed({
|
|
506
|
+
view: _this.view,
|
|
507
|
+
config: _this.config,
|
|
508
|
+
eventDispatcher: _this.eventDispatcher,
|
|
509
|
+
transformer: _this.contentTransformer
|
|
510
|
+
});
|
|
511
|
+
|
|
512
|
+
// Allows us to dispatch analytics within the plugin view.destory methods
|
|
513
|
+
var analyticsConnected = _this.eventDispatcher.has(_utils.analyticsEventKey, _this.handleAnalyticsEvent);
|
|
514
|
+
if (!analyticsConnected) {
|
|
515
|
+
_this.eventDispatcher.on(_utils.analyticsEventKey, _this.handleAnalyticsEvent);
|
|
516
|
+
}
|
|
517
|
+
_this.view.destroy(); // Destroys the dom node & all node views
|
|
518
|
+
|
|
519
|
+
if (!analyticsConnected) {
|
|
520
|
+
_this.eventDispatcher.off(_utils.analyticsEventKey, _this.handleAnalyticsEvent);
|
|
521
|
+
}
|
|
522
|
+
_this.view = undefined;
|
|
523
|
+
}
|
|
524
|
+
});
|
|
525
|
+
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "dispatchAnalyticsEvent", function (payload) {
|
|
526
|
+
if (_this.props.allowAnalyticsGASV3 && _this.eventDispatcher) {
|
|
527
|
+
var dispatch = (0, _eventDispatcher.createDispatch)(_this.eventDispatcher);
|
|
528
|
+
dispatch(_utils.analyticsEventKey, {
|
|
529
|
+
payload: payload
|
|
530
|
+
});
|
|
531
|
+
}
|
|
532
|
+
});
|
|
533
|
+
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "editor", /*#__PURE__*/_react.default.createElement("div", {
|
|
534
|
+
className: getUAPrefix(),
|
|
535
|
+
key: "ProseMirror",
|
|
536
|
+
ref: _this.handleEditorViewRef,
|
|
537
|
+
"aria-label": _this.props.intl.formatMessage(_messages.editorMessages.editorAssistiveLabel),
|
|
538
|
+
role: "textbox"
|
|
539
|
+
}));
|
|
540
|
+
_this.eventDispatcher = new _eventDispatcher.EventDispatcher();
|
|
541
|
+
_this.dispatch = (0, _eventDispatcher.createDispatch)(_this.eventDispatcher);
|
|
542
|
+
_this.errorReporter = (0, _createEditor.createErrorReporter)(_props.editorProps.errorReporterHandler);
|
|
543
|
+
_this.transactionTracker = new _trackTransactions.TransactionTracker();
|
|
544
|
+
_this.pluginPerformanceObserver = new _pluginPerformanceObserver.PluginPerformanceObserver(function (report) {
|
|
545
|
+
return _this.onPluginObservation(report, _this.editorState);
|
|
546
|
+
}).withPlugins(function () {
|
|
547
|
+
return _this.getPluginNames();
|
|
548
|
+
}).withNodeCounts(function () {
|
|
549
|
+
return _this.countNodes();
|
|
550
|
+
}).withOptions(function () {
|
|
551
|
+
return _this.transactionTracking;
|
|
552
|
+
}).withTransactionTracker(function () {
|
|
553
|
+
return _this.transactionTracker;
|
|
554
|
+
});
|
|
555
|
+
_this.validTransactionCount = 0;
|
|
556
|
+
_this.featureFlags = (0, _featureFlagsFromProps.createFeatureFlagsFromProps)(_this.props.editorProps);
|
|
557
|
+
var featureFlagsEnabled = _this.featureFlags ? (0, _getEnabledFeatureFlagKeys.getEnabledFeatureFlagKeys)(_this.featureFlags) : [];
|
|
558
|
+
|
|
559
|
+
// START TEMPORARY CODE ED-10584
|
|
560
|
+
if (_this.props.createAnalyticsEvent) {
|
|
561
|
+
_this.props.createAnalyticsEvent.__queueAnalytics = _this.featureFlags.queueAnalytics;
|
|
562
|
+
}
|
|
563
|
+
// END TEMPORARY CODE ED-10584
|
|
564
|
+
|
|
565
|
+
// This needs to be before initialising editorState because
|
|
566
|
+
// we dispatch analytics events in plugin initialisation
|
|
567
|
+
_this.eventDispatcher.on(_utils.analyticsEventKey, _this.handleAnalyticsEvent);
|
|
568
|
+
_this.eventDispatcher.on('resetEditorState', _this.resetEditorState);
|
|
569
|
+
_this.editorState = _this.createEditorState({
|
|
570
|
+
props: _props,
|
|
571
|
+
context: context,
|
|
572
|
+
doc: _props.editorProps.defaultValue,
|
|
573
|
+
// ED-4759: Don't set selection at end for full-page editor - should be at start.
|
|
574
|
+
selectionAtStart: (0, _isFullPage.isFullPage)(_props.editorProps.appearance)
|
|
575
|
+
});
|
|
576
|
+
_this.dispatchAnalyticsEvent({
|
|
577
|
+
action: _analytics.ACTION.STARTED,
|
|
578
|
+
actionSubject: _analytics.ACTION_SUBJECT.EDITOR,
|
|
579
|
+
attributes: {
|
|
580
|
+
platform: _analytics.PLATFORMS.WEB,
|
|
581
|
+
featureFlags: featureFlagsEnabled
|
|
582
|
+
},
|
|
583
|
+
eventType: _analytics.EVENT_TYPE.UI
|
|
584
|
+
});
|
|
585
|
+
return _this;
|
|
586
|
+
}
|
|
587
|
+
(0, _createClass2.default)(ReactEditorView, [{
|
|
588
|
+
key: "transactionTracking",
|
|
589
|
+
get:
|
|
590
|
+
// ProseMirror is instantiated prior to the initial React render cycle,
|
|
591
|
+
// so we allow transactions by default, to avoid discarding the initial one.
|
|
592
|
+
|
|
593
|
+
function get() {
|
|
594
|
+
var _this$props$editorPro7, _this$props$editorPro8;
|
|
595
|
+
return (_this$props$editorPro7 = (_this$props$editorPro8 = this.props.editorProps.performanceTracking) === null || _this$props$editorPro8 === void 0 ? void 0 : _this$props$editorPro8.transactionTracking) !== null && _this$props$editorPro7 !== void 0 ? _this$props$editorPro7 : {
|
|
596
|
+
enabled: false
|
|
597
|
+
};
|
|
598
|
+
}
|
|
599
|
+
}, {
|
|
600
|
+
key: "getPluginNames",
|
|
601
|
+
value: function getPluginNames() {
|
|
602
|
+
return this.editorState.plugins.map(function (p) {
|
|
603
|
+
return p.key;
|
|
604
|
+
});
|
|
605
|
+
}
|
|
606
|
+
}, {
|
|
607
|
+
key: "countNodes",
|
|
608
|
+
value: function countNodes() {
|
|
609
|
+
return (0, _countNodes2.countNodes)(this.editorState);
|
|
610
|
+
}
|
|
611
|
+
}, {
|
|
612
|
+
key: "UNSAFE_componentWillReceiveProps",
|
|
613
|
+
value: function UNSAFE_componentWillReceiveProps(nextProps) {
|
|
614
|
+
// START TEMPORARY CODE ED-10584
|
|
615
|
+
if (nextProps.createAnalyticsEvent && nextProps.createAnalyticsEvent !== this.props.createAnalyticsEvent) {
|
|
616
|
+
var featureFlags = (0, _featureFlagsFromProps.createFeatureFlagsFromProps)(nextProps.editorProps);
|
|
617
|
+
nextProps.createAnalyticsEvent.__queueAnalytics = featureFlags.queueAnalytics;
|
|
618
|
+
}
|
|
619
|
+
// END TEMPORARY CODE ED-10584
|
|
620
|
+
|
|
621
|
+
if (this.view && this.props.editorProps.disabled !== nextProps.editorProps.disabled) {
|
|
622
|
+
// Disables the contentEditable attribute of the editor if the editor is disabled
|
|
623
|
+
this.view.setProps({
|
|
624
|
+
editable: function editable(_state) {
|
|
625
|
+
return !nextProps.editorProps.disabled;
|
|
626
|
+
}
|
|
627
|
+
});
|
|
628
|
+
if (!nextProps.editorProps.disabled && nextProps.editorProps.shouldFocus) {
|
|
629
|
+
this.focusTimeoutId = handleEditorFocus(this.view);
|
|
630
|
+
}
|
|
631
|
+
}
|
|
632
|
+
var appearance = this.props.editorProps.appearance;
|
|
633
|
+
var nextAppearance = nextProps.editorProps.appearance;
|
|
634
|
+
if (shouldReconfigureState(this.props.editorProps, nextProps.editorProps)) {
|
|
635
|
+
this.reconfigureState(nextProps);
|
|
636
|
+
}
|
|
637
|
+
if (nextAppearance !== appearance) {
|
|
638
|
+
if (nextAppearance === 'full-width' || appearance === 'full-width') {
|
|
639
|
+
this.dispatchAnalyticsEvent({
|
|
640
|
+
action: _analytics.ACTION.CHANGED_FULL_WIDTH_MODE,
|
|
641
|
+
actionSubject: _analytics.ACTION_SUBJECT.EDITOR,
|
|
642
|
+
eventType: _analytics.EVENT_TYPE.TRACK,
|
|
643
|
+
attributes: {
|
|
644
|
+
previousMode: this.formatFullWidthAppearance(appearance),
|
|
645
|
+
newMode: this.formatFullWidthAppearance(nextAppearance)
|
|
646
|
+
}
|
|
647
|
+
});
|
|
648
|
+
}
|
|
649
|
+
}
|
|
650
|
+
if (!this.transactionTracking.enabled) {
|
|
651
|
+
this.pluginPerformanceObserver.disconnect();
|
|
652
|
+
}
|
|
653
|
+
}
|
|
654
|
+
}, {
|
|
655
|
+
key: "componentDidMount",
|
|
656
|
+
value: function componentDidMount() {
|
|
657
|
+
// Transaction dispatching is already enabled by default prior to
|
|
658
|
+
// mounting, but we reset it here, just in case the editor view
|
|
659
|
+
// instance is ever recycled (mounted again after unmounting) with
|
|
660
|
+
// the same key.
|
|
661
|
+
// Although storing mounted state is an anti-pattern in React,
|
|
662
|
+
// we do so here so that we can intercept and abort asynchronous
|
|
663
|
+
// ProseMirror transactions when a dismount is imminent.
|
|
664
|
+
this.canDispatchTransactions = true;
|
|
665
|
+
if (this.transactionTracking.enabled) {
|
|
666
|
+
this.pluginPerformanceObserver.observe();
|
|
667
|
+
}
|
|
668
|
+
}
|
|
669
|
+
|
|
670
|
+
/**
|
|
671
|
+
* Clean up any non-PM resources when the editor is unmounted
|
|
672
|
+
*/
|
|
673
|
+
}, {
|
|
674
|
+
key: "componentWillUnmount",
|
|
675
|
+
value: function componentWillUnmount() {
|
|
676
|
+
// We can ignore any transactions from this point onwards.
|
|
677
|
+
// This serves to avoid potential runtime exceptions which could arise
|
|
678
|
+
// from an async dispatched transaction after it's unmounted.
|
|
679
|
+
this.canDispatchTransactions = false;
|
|
680
|
+
clearTimeout(this.focusTimeoutId);
|
|
681
|
+
if (this.reliabilityInterval) {
|
|
682
|
+
clearInterval(this.reliabilityInterval);
|
|
683
|
+
}
|
|
684
|
+
this.pluginPerformanceObserver.disconnect();
|
|
685
|
+
if (this.view) {
|
|
686
|
+
// Destroy the state if the Editor is being unmounted
|
|
687
|
+
var editorState = this.view.state;
|
|
688
|
+
editorState.plugins.forEach(function (plugin) {
|
|
689
|
+
var state = plugin.getState(editorState);
|
|
690
|
+
if (state && state.destroy) {
|
|
691
|
+
state.destroy();
|
|
692
|
+
}
|
|
693
|
+
});
|
|
694
|
+
}
|
|
695
|
+
this.eventDispatcher.destroy();
|
|
696
|
+
// this.view will be destroyed when React unmounts in handleEditorViewRef
|
|
697
|
+
}
|
|
698
|
+
}, {
|
|
699
|
+
key: "getPlugins",
|
|
700
|
+
value:
|
|
701
|
+
// Helper to allow tests to inject plugins directly
|
|
702
|
+
function getPlugins(editorProps, prevEditorProps, createAnalyticsEvent) {
|
|
703
|
+
var _this2 = this,
|
|
704
|
+
_this$props$getEditor,
|
|
705
|
+
_this$props$getEditor2,
|
|
706
|
+
_this$props;
|
|
707
|
+
var insertNodeAPI = (0, _api.createInsertNodeAPI)({
|
|
708
|
+
getEditorView: function getEditorView() {
|
|
709
|
+
return _this2.view;
|
|
710
|
+
},
|
|
711
|
+
getEditorPlugins: function getEditorPlugins() {
|
|
712
|
+
return _this2.editorPlugins;
|
|
713
|
+
}
|
|
714
|
+
});
|
|
715
|
+
var editorAnalyticsAPI = (0, _api2.createEditorAnalyticsAPI)({
|
|
716
|
+
getEditorView: function getEditorView() {
|
|
717
|
+
return _this2.view;
|
|
718
|
+
},
|
|
719
|
+
getCreateUIAnalyticsEvent: function getCreateUIAnalyticsEvent() {
|
|
720
|
+
return createAnalyticsEvent;
|
|
721
|
+
}
|
|
722
|
+
});
|
|
723
|
+
var getPluginsProps = {
|
|
724
|
+
props: editorProps,
|
|
725
|
+
prevAppearance: prevEditorProps === null || prevEditorProps === void 0 ? void 0 : prevEditorProps.appearance,
|
|
726
|
+
createAnalyticsEvent: createAnalyticsEvent,
|
|
727
|
+
insertNodeAPI: insertNodeAPI,
|
|
728
|
+
editorAnalyticsAPI: editorAnalyticsAPI
|
|
729
|
+
};
|
|
730
|
+
if (this.props.getEditorPlugins === undefined) {
|
|
731
|
+
// eslint-disable-next-line no-console
|
|
732
|
+
console.error('getEditorPlugins is undefined in ReactEditorViewInternal - no editor plugins will be added.');
|
|
733
|
+
}
|
|
734
|
+
this.editorPlugins = (_this$props$getEditor = (_this$props$getEditor2 = (_this$props = this.props).getEditorPlugins) === null || _this$props$getEditor2 === void 0 ? void 0 : _this$props$getEditor2.call(_this$props, getPluginsProps)) !== null && _this$props$getEditor !== void 0 ? _this$props$getEditor : [];
|
|
735
|
+
return this.editorPlugins;
|
|
736
|
+
}
|
|
737
|
+
}, {
|
|
738
|
+
key: "render",
|
|
739
|
+
value: function render() {
|
|
740
|
+
var _this$props$editorPro9, _this$props$editorPro10;
|
|
741
|
+
var renderTracking = (_this$props$editorPro9 = this.props.editorProps.performanceTracking) === null || _this$props$editorPro9 === void 0 ? void 0 : (_this$props$editorPro10 = _this$props$editorPro9.renderTracking) === null || _this$props$editorPro10 === void 0 ? void 0 : _this$props$editorPro10.reactEditorView;
|
|
742
|
+
var renderTrackingEnabled = renderTracking === null || renderTracking === void 0 ? void 0 : renderTracking.enabled;
|
|
743
|
+
var useShallow = renderTracking === null || renderTracking === void 0 ? void 0 : renderTracking.useShallow;
|
|
744
|
+
return /*#__PURE__*/_react.default.createElement(_ReactEditorViewContext.default.Provider, {
|
|
745
|
+
value: {
|
|
746
|
+
editorRef: this.editorRef,
|
|
747
|
+
editorView: this.view
|
|
748
|
+
}
|
|
749
|
+
}, renderTrackingEnabled && /*#__PURE__*/_react.default.createElement(_RenderTracking.RenderTracking, {
|
|
750
|
+
componentProps: this.props,
|
|
751
|
+
action: _analytics.ACTION.RE_RENDERED,
|
|
752
|
+
actionSubject: _analytics.ACTION_SUBJECT.REACT_EDITOR_VIEW,
|
|
753
|
+
handleAnalyticsEvent: this.handleAnalyticsEvent,
|
|
754
|
+
useShallow: useShallow
|
|
755
|
+
}), this.props.render ? this.props.render({
|
|
756
|
+
editor: this.editor,
|
|
757
|
+
view: this.view,
|
|
758
|
+
config: this.config,
|
|
759
|
+
eventDispatcher: this.eventDispatcher,
|
|
760
|
+
transformer: this.contentTransformer,
|
|
761
|
+
dispatchAnalyticsEvent: this.dispatchAnalyticsEvent,
|
|
762
|
+
editorRef: this.editorRef
|
|
763
|
+
}) : this.editor);
|
|
764
|
+
}
|
|
765
|
+
}]);
|
|
766
|
+
return ReactEditorView;
|
|
767
|
+
}(_react.default.Component);
|
|
768
|
+
exports.ReactEditorView = ReactEditorView;
|
|
769
|
+
(0, _defineProperty2.default)(ReactEditorView, "contextTypes", {
|
|
770
|
+
getAtlaskitAnalyticsEventHandlers: _propTypes.default.func
|
|
771
|
+
});
|
|
772
|
+
function getUAPrefix() {
|
|
773
|
+
if (_utils.browser.chrome) {
|
|
774
|
+
return 'ua-chrome';
|
|
775
|
+
} else if (_utils.browser.ie) {
|
|
776
|
+
return 'ua-ie';
|
|
777
|
+
} else if (_utils.browser.gecko) {
|
|
778
|
+
return 'ua-firefox';
|
|
779
|
+
} else if (_utils.browser.safari) {
|
|
780
|
+
return 'ua-safari';
|
|
781
|
+
}
|
|
782
|
+
return '';
|
|
783
|
+
}
|