UNPKG

@atlaskit/editor-plugin-expand

Version:

Expand plugin for @atlaskit/editor-core

232 lines (226 loc) 8.3 kB
import { SetAttrsStep } from '@atlaskit/adf-schema/steps'; import { ACTION, ACTION_SUBJECT, ACTION_SUBJECT_ID, EVENT_TYPE, INPUT_METHOD, MODE, PLATFORMS } from '@atlaskit/editor-common/analytics'; import { GapCursorSelection, Side } from '@atlaskit/editor-common/selection'; import { expandClassNames } from '@atlaskit/editor-common/styles'; import { findExpand } from '@atlaskit/editor-common/transforms'; import { createWrapSelectionTransaction } from '@atlaskit/editor-common/utils'; import { Selection, TextSelection } from '@atlaskit/editor-prosemirror/state'; import { safeInsert } from '@atlaskit/editor-prosemirror/utils'; import { findTable } from '@atlaskit/editor-tables/utils'; import { fg } from '@atlaskit/platform-feature-flags'; import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals'; import { isNestedInExpand } from '../utils'; import { createCommand } from './pm-plugins/plugin-factory'; export const setExpandRef = ref => createCommand({ type: 'SET_EXPAND_REF', data: { ref } }, tr => tr.setMeta('addToHistory', false)); export const deleteExpandAtPos = editorAnalyticsAPI => (expandNodePos, expandNode) => (state, dispatch) => { if (!expandNode || isNaN(expandNodePos)) { return false; } const payload = { action: ACTION.DELETED, actionSubject: expandNode.type === state.schema.nodes.expand ? ACTION_SUBJECT.EXPAND : ACTION_SUBJECT.NESTED_EXPAND, attributes: { inputMethod: INPUT_METHOD.FLOATING_TB }, eventType: EVENT_TYPE.TRACK }; if (expandNode && dispatch) { const { tr } = state; tr.delete(expandNodePos, expandNodePos + expandNode.nodeSize); editorAnalyticsAPI === null || editorAnalyticsAPI === void 0 ? void 0 : editorAnalyticsAPI.attachAnalyticsEvent(payload)(tr); if (expandNode.type === state.schema.nodes.nestedExpand) { const resolvedPos = tr.doc.resolve(expandNodePos + 1); if (resolvedPos) { tr.setSelection(Selection.near(resolvedPos, -1)); } } dispatch(tr); } return true; }; export const deleteExpand = editorAnalyticsAPI => (state, dispatch) => { const expandNode = findExpand(state); if (!expandNode) { return false; } return deleteExpandAtPos(editorAnalyticsAPI)(expandNode.pos, expandNode.node)(state, dispatch); }; export const updateExpandTitle = ({ title, nodeType, pos, __livePage }) => (state, dispatch) => { const node = state.doc.nodeAt(pos); if (node && node.type === nodeType && dispatch) { const { tr } = state; if (__livePage) { tr.step(new SetAttrsStep(pos, { ...node.attrs, title })); } else { tr.setNodeMarkup(pos, node.type, { ...node.attrs, title }, node.marks); } dispatch(tr); } return true; }; export const toggleExpandExpanded = ({ editorAnalyticsAPI, pos, nodeType, __livePage }) => (state, dispatch) => { const node = state.doc.nodeAt(pos); if (node && node.type === nodeType && dispatch) { const { tr } = state; const isExpandedNext = !node.attrs.__expanded; if (__livePage) { tr.step(new SetAttrsStep(pos, { ...node.attrs, __expanded: isExpandedNext })); } else { tr.setNodeMarkup(pos, node.type, { ...node.attrs, __expanded: isExpandedNext }, node.marks); } // If we're going to collapse the expand and our cursor is currently inside // Move to a right gap cursor, if the toolbar is interacted (or an API), // it will insert below rather than inside (which will be invisible). if (__livePage ? isExpandedNext === true : isExpandedNext === false && findExpand(state)) { tr.setSelection(new GapCursorSelection(tr.doc.resolve(pos + node.nodeSize), Side.RIGHT)); } // log when people open/close expands // TODO: ED-8523 - make platform/mode global attributes? const payload = { action: ACTION.TOGGLE_EXPAND, actionSubject: nodeType === state.schema.nodes.expand ? ACTION_SUBJECT.EXPAND : ACTION_SUBJECT.NESTED_EXPAND, attributes: { platform: PLATFORMS.WEB, mode: MODE.EDITOR, expanded: __livePage ? !isExpandedNext : isExpandedNext }, eventType: EVENT_TYPE.TRACK }; // `isRemote` meta prevents this step from being // sync'd between sessions in synchrony collab edit tr.setMeta('isRemote', true); editorAnalyticsAPI === null || editorAnalyticsAPI === void 0 ? void 0 : editorAnalyticsAPI.attachAnalyticsEvent(payload)(tr); dispatch(tr); } return true; }; // Creates either an expand or a nestedExpand node based on the current selection export const createExpandNode = state => { const { expand, nestedExpand } = state.schema.nodes; const isSelectionInTable = !!findTable(state.selection); const isSelectionInExpand = isNestedInExpand(state); const expandType = isSelectionInTable || isSelectionInExpand ? nestedExpand : expand; return expandType.createAndFill({}); }; export const insertExpandWithInputMethod = editorAnalyticsAPI => inputMethod => (state, dispatch) => { const expandNode = createExpandNode(state); if (!expandNode) { return false; } const tr = state.selection.empty ? safeInsert(expandNode)(state.tr).scrollIntoView() : createWrapSelectionTransaction({ state, type: expandNode.type }); const resolvedInputMethod = fg('platform_editor_element_browser_analytic') ? inputMethod : INPUT_METHOD.QUICK_INSERT; const payload = { action: ACTION.INSERTED, actionSubject: ACTION_SUBJECT.DOCUMENT, actionSubjectId: (expandNode === null || expandNode === void 0 ? void 0 : expandNode.type) === state.schema.nodes.expand ? ACTION_SUBJECT_ID.EXPAND : ACTION_SUBJECT_ID.NESTED_EXPAND, attributes: { inputMethod: resolvedInputMethod }, eventType: EVENT_TYPE.TRACK }; if (dispatch && expandNode) { editorAnalyticsAPI === null || editorAnalyticsAPI === void 0 ? void 0 : editorAnalyticsAPI.attachAnalyticsEvent(payload)(tr); dispatch(tr); } return true; }; export const insertExpand = editorAnalyticsAPI => (state, dispatch) => { return insertExpandWithInputMethod(editorAnalyticsAPI)(INPUT_METHOD.INSERT_MENU)(state, dispatch); }; export const focusTitle = pos => (state, dispatch, editorView) => { if (editorView) { const dom = editorView.domAtPos(pos); const expandWrapper = dom.node.parentElement; if (expandWrapper) { setSelectionInsideExpand(pos)(state, dispatch, editorView); const input = expandWrapper.querySelector('input'); if (input) { input.focus(); return true; } } } return false; }; export const focusIcon = expand => (state, dispatch, editorView) => { if (!(expand instanceof HTMLElement)) { return false; } // TODO: ED-29205 - During platform_editor_vc90_transition_expand_icon cleanup, rename `iconContainer` to `iconButton`. const iconContainer = expValEquals('platform_editor_vc90_transition_expand_icon', 'isEnabled', true) ? expand.querySelector(`.${expandClassNames.iconButton}`) : expand.querySelector(`.${expandClassNames.iconContainer}`); if (iconContainer && iconContainer.focus) { const { tr } = state; const pos = state.selection.from; tr.setSelection(new TextSelection(tr.doc.resolve(pos))); if (dispatch) { dispatch(tr); } editorView === null || editorView === void 0 ? void 0 : editorView.dom.blur(); iconContainer.focus(); return true; } return false; }; // Used to clear any node or cell selection when expand title is focused export const setSelectionInsideExpand = expandPos => (_state, dispatch, editorView) => { if (editorView) { if (!editorView.hasFocus()) { editorView.focus(); } const sel = Selection.findFrom(editorView.state.doc.resolve(expandPos), 1, true); if (sel && dispatch) { dispatch(editorView.state.tr.setSelection(sel)); } return true; } return false; }; export const toggleExpandWithMatch = _selection => ({ tr: _tr }) => { // this action exists so that we can keep the plugin types consistent across the // the legacy expand plugin and the single player expand plugin until // we will remove the legacy expand plugin return null; };