@atlaskit/editor-plugin-show-diff
Version:
ShowDiff plugin for @atlaskit/editor-core
230 lines (226 loc) • 15.2 kB
JavaScript
"use strict";
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.showDiffPluginKey = exports.createPlugin = void 0;
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
var _expand = require("@atlaskit/editor-common/expand");
var _processRawValue = require("@atlaskit/editor-common/process-raw-value");
var _safePlugin = require("@atlaskit/editor-common/safe-plugin");
var _state2 = require("@atlaskit/editor-prosemirror/state");
var _transformOverride = require("@atlaskit/editor-prosemirror/transform-override");
var _view = require("@atlaskit/editor-prosemirror/view");
var _calculateDiffDecorations = require("./calculateDiff/calculateDiffDecorations");
var _enforceCustomStepRegisters = require("./enforceCustomStepRegisters");
var _getScrollableDecorations = require("./getScrollableDecorations");
var _isExtendedEnabled = require("./isExtendedEnabled");
var _NodeViewSerializer = require("./NodeViewSerializer");
var _scrollToDiff = require("./scrollToDiff");
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { (0, _defineProperty2.default)(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
var showDiffPluginKey = exports.showDiffPluginKey = new _state2.PluginKey('showDiffPlugin');
var createPlugin = exports.createPlugin = function createPlugin(config, getIntl, api, onEditorView) {
(0, _enforceCustomStepRegisters.enforceCustomStepRegisters)();
var nodeViewSerializer = new _NodeViewSerializer.NodeViewSerializer({});
var setNodeViewSerializer = function setNodeViewSerializer(editorView) {
nodeViewSerializer.init({
editorView: editorView
});
};
return new _safePlugin.SafePlugin({
key: showDiffPluginKey,
state: {
init: function init(_, _state) {
// We do initial setup after we setup the editor view
var defaultDiffType = (0, _isExtendedEnabled.getDefaultDiffType)();
return _objectSpread({
steps: [],
originalDoc: undefined,
decorations: _view.DecorationSet.empty,
isDisplayingChanges: false
}, (0, _isExtendedEnabled.isExtendedEnabled)(defaultDiffType) ? {
isInverted: false,
diffType: defaultDiffType,
hideDeletedDiffs: false,
hideAddedDiffsUnderline: false,
showIndicators: false,
diffDescriptors: []
} : {});
},
apply: function apply(tr, currentPluginState, oldState, newState) {
var meta = tr.getMeta(showDiffPluginKey);
var newPluginState = currentPluginState;
if (meta) {
if ((meta === null || meta === void 0 ? void 0 : meta.action) === 'SHOW_DIFF') {
var _newPluginState, _newPluginState2, _newPluginState3, _newPluginState4, _newPluginState5, _newPluginState6, _newPluginState7, _newPluginState8, _newPluginState9, _newPluginState0;
// Update the plugin state with the new metadata
newPluginState = _objectSpread(_objectSpread(_objectSpread({}, currentPluginState), meta), {}, {
isDisplayingChanges: true,
activeIndex: undefined
});
// Calculate and store decorations in state
var _calculateDiffDecorat = (0, _calculateDiffDecorations.calculateDiffDecorations)(_objectSpread({
state: newState,
pluginState: newPluginState,
nodeViewSerializer: nodeViewSerializer,
colorScheme: config === null || config === void 0 ? void 0 : config.colorScheme,
intl: getIntl(),
activeIndexPos: newPluginState.activeIndexPos,
api: api
}, (0, _isExtendedEnabled.isExtendedEnabled)((_newPluginState = newPluginState) === null || _newPluginState === void 0 ? void 0 : _newPluginState.diffType) ? {
isInverted: (_newPluginState2 = newPluginState) === null || _newPluginState2 === void 0 ? void 0 : _newPluginState2.isInverted,
diffType: (_newPluginState3 = newPluginState) === null || _newPluginState3 === void 0 ? void 0 : _newPluginState3.diffType,
hideDeletedDiffs: (_newPluginState4 = newPluginState) === null || _newPluginState4 === void 0 ? void 0 : _newPluginState4.hideDeletedDiffs,
hideAddedDiffsUnderline: (_newPluginState5 = newPluginState) === null || _newPluginState5 === void 0 ? void 0 : _newPluginState5.hideAddedDiffsUnderline,
showIndicators: (_newPluginState6 = newPluginState) === null || _newPluginState6 === void 0 ? void 0 : _newPluginState6.showIndicators,
smartThresholds: (_newPluginState7 = newPluginState) === null || _newPluginState7 === void 0 ? void 0 : _newPluginState7.smartThresholds,
deletedDiffPlacement: (_newPluginState8 = newPluginState) === null || _newPluginState8 === void 0 ? void 0 : _newPluginState8.deletedDiffPlacement,
inlineDeletedDiffPlacement: (_newPluginState9 = newPluginState) === null || _newPluginState9 === void 0 ? void 0 : _newPluginState9.inlineDeletedDiffPlacement
} : {})),
decorations = _calculateDiffDecorat.decorations,
diffDescriptors = _calculateDiffDecorat.diffDescriptors;
// Update the decorations and their ids
newPluginState.decorations = decorations;
if ((0, _isExtendedEnabled.isExtendedEnabled)((_newPluginState0 = newPluginState) === null || _newPluginState0 === void 0 ? void 0 : _newPluginState0.diffType)) {
newPluginState.diffDescriptors = diffDescriptors;
}
} else if ((meta === null || meta === void 0 ? void 0 : meta.action) === 'HIDE_DIFF') {
newPluginState = _objectSpread(_objectSpread(_objectSpread({}, currentPluginState), meta), {}, {
decorations: _view.DecorationSet.empty,
isDisplayingChanges: false,
activeIndex: undefined
}, (0, _isExtendedEnabled.isExtendedEnabled)(currentPluginState.diffType) ? {
isInverted: false,
diffType: (0, _isExtendedEnabled.getDefaultDiffType)(),
hideDeletedDiffs: false,
hideAddedDiffsUnderline: false,
diffDescriptors: []
} : {});
} else if ((meta === null || meta === void 0 ? void 0 : meta.action) === 'SCROLL_TO_NEXT' || (meta === null || meta === void 0 ? void 0 : meta.action) === 'SCROLL_TO_PREVIOUS') {
var _newPluginState1;
// Update the active index in plugin state and recalculate decorations
var _decorations = (0, _getScrollableDecorations.getScrollableDecorations)(currentPluginState.decorations, newState.doc, (_newPluginState1 = newPluginState) === null || _newPluginState1 === void 0 ? void 0 : _newPluginState1.diffType);
if (_decorations.length > 0) {
var _currentPluginState$a;
// Initialize to -1 if undefined so that the first "next" scroll takes us to index 0 (first change).
// This allows the UI to start with no selection and only highlight on first user interaction.
var nextIndex = (_currentPluginState$a = currentPluginState.activeIndex) !== null && _currentPluginState$a !== void 0 ? _currentPluginState$a : -1;
if (meta.action === 'SCROLL_TO_NEXT') {
nextIndex = (nextIndex + 1) % _decorations.length;
} else {
// Handle scrolling backwards from the uninitialized state.
// If at -1 (no selection), wrap to the last decoration.
if (nextIndex === -1) {
nextIndex = _decorations.length - 1;
} else {
nextIndex = (nextIndex - 1 + _decorations.length) % _decorations.length;
}
}
var activeDecoration = _decorations[nextIndex];
newPluginState = _objectSpread(_objectSpread({}, currentPluginState), {}, {
activeIndex: nextIndex,
activeIndexPos: activeDecoration ? {
from: activeDecoration.from,
to: activeDecoration.to
} : undefined
});
// Recalculate decorations with the new active index
var _calculateDiffDecorat2 = (0, _calculateDiffDecorations.calculateDiffDecorations)(_objectSpread({
state: newState,
pluginState: newPluginState,
nodeViewSerializer: nodeViewSerializer,
colorScheme: config === null || config === void 0 ? void 0 : config.colorScheme,
intl: getIntl(),
activeIndexPos: newPluginState.activeIndexPos,
api: api
}, (0, _isExtendedEnabled.isExtendedEnabled)(newPluginState.diffType) ? {
isInverted: newPluginState.isInverted,
diffType: newPluginState.diffType,
hideDeletedDiffs: newPluginState.hideDeletedDiffs,
hideAddedDiffsUnderline: newPluginState.hideAddedDiffsUnderline,
showIndicators: newPluginState.showIndicators,
smartThresholds: newPluginState.smartThresholds,
deletedDiffPlacement: newPluginState.deletedDiffPlacement,
inlineDeletedDiffPlacement: newPluginState.inlineDeletedDiffPlacement
} : {})),
updatedDecorations = _calculateDiffDecorat2.decorations,
updatedDiffDescriptors = _calculateDiffDecorat2.diffDescriptors;
newPluginState.decorations = updatedDecorations;
if ((0, _isExtendedEnabled.isExtendedEnabled)(newPluginState.diffType)) {
newPluginState.diffDescriptors = updatedDiffDescriptors;
}
}
} else {
newPluginState = _objectSpread(_objectSpread({}, currentPluginState), meta);
}
}
return _objectSpread(_objectSpread({}, newPluginState), {}, {
decorations: newPluginState.decorations.map(tr.mapping, tr.doc)
});
}
},
view: function view(editorView) {
setNodeViewSerializer(editorView);
onEditorView === null || onEditorView === void 0 || onEditorView(editorView);
var isFirst = true;
var previousActiveIndex;
var cancelPendingScrollToDecoration = null;
return {
update: function update(view) {
// If we're using configuration to show diffs we initialise here once we setup the editor view
if (config !== null && config !== void 0 && config.originalDoc && config !== null && config !== void 0 && config.steps && config.steps.length > 0 && isFirst) {
isFirst = false;
view.dispatch(view.state.tr.setMeta(showDiffPluginKey, {
action: 'SHOW_DIFF',
steps: config.steps.map(function (step) {
return _transformOverride.Step.fromJSON(view.state.schema, step);
}),
originalDoc: (0, _processRawValue.processRawValue)(view.state.schema, config.originalDoc)
}));
}
var pluginState = showDiffPluginKey.getState(view.state);
// Scroll to the first decoration when scrollIntoView was requested.
// Use the same filtered/position-sorted list as the active-index path
// so "first" reliably means the topmost scrollable diff in the document.
if (pluginState !== null && pluginState !== void 0 && pluginState.scrollIntoView && (0, _isExtendedEnabled.isExtendedEnabled)(pluginState === null || pluginState === void 0 ? void 0 : pluginState.diffType)) {
var _cancelPendingScrollT;
(_cancelPendingScrollT = cancelPendingScrollToDecoration) === null || _cancelPendingScrollT === void 0 || _cancelPendingScrollT();
cancelPendingScrollToDecoration = (0, _scrollToDiff.scrollToDecoration)(view, (0, _getScrollableDecorations.getScrollableDecorations)(pluginState.decorations, view.state.doc, pluginState === null || pluginState === void 0 ? void 0 : pluginState.diffType));
// Reset the flag so we don't scroll again on subsequent updates
view.dispatch(view.state.tr.setMeta(showDiffPluginKey, {
scrollIntoView: false
}));
}
// Check for any potential scroll side-effects
var activeIndexChanged = (pluginState === null || pluginState === void 0 ? void 0 : pluginState.activeIndex) !== undefined && pluginState.activeIndex !== previousActiveIndex;
previousActiveIndex = pluginState === null || pluginState === void 0 ? void 0 : pluginState.activeIndex;
if ((pluginState === null || pluginState === void 0 ? void 0 : pluginState.activeIndex) !== undefined && activeIndexChanged) {
var _cancelPendingScrollT2;
(_cancelPendingScrollT2 = cancelPendingScrollToDecoration) === null || _cancelPendingScrollT2 === void 0 || _cancelPendingScrollT2();
var scrollableDecorations = (0, _getScrollableDecorations.getScrollableDecorations)(pluginState.decorations, view.state.doc, pluginState === null || pluginState === void 0 ? void 0 : pluginState.diffType);
var activeDecoration = scrollableDecorations[pluginState.activeIndex];
if (activeDecoration) {
// EDITOR-7926: use editor-common's command instead of the expand plugin API to
// avoid a circular dependency; expand picks up the meta if loaded (no-op if not).
api === null || api === void 0 || api.core.actions.execute((0, _expand.toggleExpandRange)(activeDecoration.from, activeDecoration.to, true));
}
cancelPendingScrollToDecoration = (0, _scrollToDiff.scrollToDecoration)(view, scrollableDecorations, pluginState.activeIndex);
}
},
destroy: function destroy() {
var _cancelPendingScrollT3;
(_cancelPendingScrollT3 = cancelPendingScrollToDecoration) === null || _cancelPendingScrollT3 === void 0 || _cancelPendingScrollT3();
cancelPendingScrollToDecoration = null;
onEditorView === null || onEditorView === void 0 || onEditorView(undefined);
}
};
},
props: {
decorations: function decorations(state) {
var pluginState = showDiffPluginKey.getState(state);
return pluginState === null || pluginState === void 0 ? void 0 : pluginState.decorations;
}
}
});
};