@atlaskit/editor-common
Version:
A package that contains common classes and components for editor and renderer
158 lines (145 loc) • 8.6 kB
JavaScript
;
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.updateCodeBlockWrappedStateNodeKeys = exports.transferCodeBlockWrappedValue = exports.setCodeBlockFoldState = exports.isCodeBlockWordWrapEnabled = exports.getDefaultCodeBlockAttrs = exports.getCodeBlockFoldState = exports.defaultWrapForMarkdownCodeBlocksInSlice = exports.defaultWordWrapState = exports.codeBlockWrappedStates = exports.areCodeBlockLineNumbersVisible = exports.areCodeBlockLineNumbersHidden = void 0;
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
var _expValEquals = require("@atlaskit/tmp-editor-statsig/exp-val-equals");
var _slice = require("../utils/slice");
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 defaultWordWrapState = exports.defaultWordWrapState = false;
// Remove the wrap WeakMap fallback when cleaning up platform_editor_code_block_q4_lovability
var codeBlockWrappedStates = exports.codeBlockWrappedStates = new WeakMap();
var getDefaultCodeBlockAttrs = exports.getDefaultCodeBlockAttrs = function getDefaultCodeBlockAttrs(attrs) {
if (!(0, _expValEquals.expValEquals)('platform_editor_code_block_q4_lovability', 'isEnabled', true)) {
return attrs;
}
// Only boolean wrap values represent caller intent. null/undefined means unset.
if ((attrs === null || attrs === void 0 ? void 0 : attrs.wrap) === true || (attrs === null || attrs === void 0 ? void 0 : attrs.wrap) === false) {
return attrs;
}
return _objectSpread(_objectSpread({}, attrs), {}, {
wrap: true
});
};
var defaultWrapForMarkdownCodeBlocksInSlice = exports.defaultWrapForMarkdownCodeBlocksInSlice = function defaultWrapForMarkdownCodeBlocksInSlice(slice, schema) {
if (!(0, _expValEquals.expValEquals)('platform_editor_code_block_q4_lovability', 'isEnabled', true)) {
return slice;
}
return (0, _slice.mapSlice)(slice, function (node) {
if (node.type !== schema.nodes.codeBlock || node.attrs.wrap === true) {
return node;
}
// Markdown conversion uses MarkdownParser token mappings and creates code block nodes
// with the schema-default wrap:false. Since Markdown has no wrap syntax, treat that
// default as missing user intent and change it to wrap:true.
return node.type.create(_objectSpread(_objectSpread({}, node.attrs), {}, {
wrap: true
}), node.content, node.marks);
});
};
// Code folding state management - similar to word wrapping
var codeBlockFoldStates = new WeakMap();
var isCodeBlockWordWrapEnabled = exports.isCodeBlockWordWrapEnabled = function isCodeBlockWordWrapEnabled(codeBlockNode) {
if ((0, _expValEquals.expValEquals)('platform_editor_code_block_q4_lovability', 'isEnabled', true)) {
return Boolean(codeBlockNode.attrs.wrap);
}
var currentNodeWordWrapState = codeBlockWrappedStates.get(codeBlockNode);
return currentNodeWordWrapState !== undefined ? currentNodeWordWrapState : defaultWordWrapState;
};
var areCodeBlockLineNumbersHidden = exports.areCodeBlockLineNumbersHidden = function areCodeBlockLineNumbersHidden(codeBlockNode) {
if (!(0, _expValEquals.expValEquals)('platform_editor_code_block_q4_lovability', 'isEnabled', true)) {
return false;
}
return Boolean(codeBlockNode.attrs.hideLineNumbers);
};
var areCodeBlockLineNumbersVisible = exports.areCodeBlockLineNumbersVisible = function areCodeBlockLineNumbersVisible(codeBlockNode) {
return !areCodeBlockLineNumbersHidden(codeBlockNode);
};
var getCodeBlockFoldState = exports.getCodeBlockFoldState = function getCodeBlockFoldState(codeBlockNode) {
var currentNodeFoldState = codeBlockFoldStates.get(codeBlockNode);
return currentNodeFoldState || [];
};
var setCodeBlockFoldState = exports.setCodeBlockFoldState = function setCodeBlockFoldState(codeBlockNode, foldRanges) {
codeBlockFoldStates.set(codeBlockNode, foldRanges);
};
/**
* Swap the old node key with the new node key in the wrapped states WeakMap.
*/
var transferCodeBlockWrappedValue = exports.transferCodeBlockWrappedValue = function transferCodeBlockWrappedValue(oldCodeBlockNode, newCodeBlockNode) {
if ((0, _expValEquals.expValEquals)('platform_editor_code_block_fold_gutter', 'isEnabled', true)) {
transferCodeBlockFoldValue(oldCodeBlockNode, newCodeBlockNode);
}
// Don't overwrite the value for the new node if it already exists.
// This can happen when a drag&drop is swapping nodes.
if (codeBlockWrappedStates.has(newCodeBlockNode)) {
return;
}
var previousValue = isCodeBlockWordWrapEnabled(oldCodeBlockNode);
codeBlockWrappedStates.set(newCodeBlockNode, previousValue);
codeBlockWrappedStates.delete(oldCodeBlockNode);
};
/**
* Swap the old node key with the new node key in the fold states WeakMap.
*/
var transferCodeBlockFoldValue = function transferCodeBlockFoldValue(oldCodeBlockNode, newCodeBlockNode) {
// Don't overwrite the value for the new node if it already exists.
// This can happen when a drag&drop is swapping nodes.
if (codeBlockFoldStates.has(newCodeBlockNode)) {
return;
}
var previousValue = getCodeBlockFoldState(oldCodeBlockNode);
codeBlockFoldStates.set(newCodeBlockNode, previousValue);
codeBlockFoldStates.delete(oldCodeBlockNode);
};
/**
* As the code block node is used as the wrapped state key, there is instances where the node will be destroyed & recreated and is no longer a valid key.
* In these instances, we must get the value from that old node and set it to the value of the new node.
* This function takes all the given nodes, finds their old nodes from the old state and updates these old node keys.
*/
var updateCodeBlockWrappedStateNodeKeys = exports.updateCodeBlockWrappedStateNodeKeys = function updateCodeBlockWrappedStateNodeKeys(newCodeBlockNodes, oldState) {
newCodeBlockNodes.forEach(function (newCodeBlockNode) {
if ((0, _expValEquals.expValEquals)('platform_editor_code_block_fold_gutter', 'isEnabled', true)) {
updateCodeBlockFoldStateNodeKeys(newCodeBlockNode, oldState);
}
// Don't overwrite the value for the new node if it already exists.
// This can happen when a drag&drop is swapping nodes.
if (codeBlockWrappedStates.has(newCodeBlockNode.node)) {
return;
}
// Do not go out of range on the oldState doc. Happens on initial load.
if (oldState.doc.content.size <= newCodeBlockNode.pos) {
return;
}
var oldCodeBlockNode = oldState.doc.nodeAt(newCodeBlockNode.pos);
if (!oldCodeBlockNode || oldCodeBlockNode.type !== oldState.schema.nodes.codeBlock) {
return;
}
var previousValue = isCodeBlockWordWrapEnabled(oldCodeBlockNode);
codeBlockWrappedStates.set(newCodeBlockNode.node, previousValue);
});
};
/**
* As the code block node is used as the fold state key, there is instances where the node will be destroyed & recreated and is no longer a valid key.
* In these instances, we must get the value from that old node and set it to the value of the new node.
* This function takes all the given nodes, finds their old nodes from the old state and updates these old node keys.
*/
var updateCodeBlockFoldStateNodeKeys = function updateCodeBlockFoldStateNodeKeys(newCodeBlockNode, oldState) {
// Don't overwrite the value for the new node if it already exists.
// This can happen when a drag&drop is swapping nodes.
if (codeBlockFoldStates.has(newCodeBlockNode.node)) {
return;
}
// Do not go out of range on the oldState doc. Happens on initial load.
if (oldState.doc.content.size <= newCodeBlockNode.pos) {
return;
}
var oldCodeBlockNode = oldState.doc.nodeAt(newCodeBlockNode.pos);
if (!oldCodeBlockNode || oldCodeBlockNode.type !== oldState.schema.nodes.codeBlock) {
return;
}
var previousValue = getCodeBlockFoldState(oldCodeBlockNode);
codeBlockFoldStates.set(newCodeBlockNode.node, previousValue);
};