@atlaskit/editor-common
Version:
A package that contains common classes and components for editor and renderer
151 lines (139 loc) • 7.51 kB
JavaScript
import _defineProperty from "@babel/runtime/helpers/defineProperty";
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) { _defineProperty(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; }
import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
import { mapSlice } from '../utils/slice';
export var defaultWordWrapState = false;
// Remove the wrap WeakMap fallback when cleaning up platform_editor_code_block_q4_lovability
export var codeBlockWrappedStates = new WeakMap();
export var getDefaultCodeBlockAttrs = function getDefaultCodeBlockAttrs(attrs) {
if (!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
});
};
export var defaultWrapForMarkdownCodeBlocksInSlice = function defaultWrapForMarkdownCodeBlocksInSlice(slice, schema) {
if (!expValEquals('platform_editor_code_block_q4_lovability', 'isEnabled', true)) {
return slice;
}
return 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();
export var isCodeBlockWordWrapEnabled = function isCodeBlockWordWrapEnabled(codeBlockNode) {
if (expValEquals('platform_editor_code_block_q4_lovability', 'isEnabled', true)) {
return Boolean(codeBlockNode.attrs.wrap);
}
var currentNodeWordWrapState = codeBlockWrappedStates.get(codeBlockNode);
return currentNodeWordWrapState !== undefined ? currentNodeWordWrapState : defaultWordWrapState;
};
export var areCodeBlockLineNumbersHidden = function areCodeBlockLineNumbersHidden(codeBlockNode) {
if (!expValEquals('platform_editor_code_block_q4_lovability', 'isEnabled', true)) {
return false;
}
return Boolean(codeBlockNode.attrs.hideLineNumbers);
};
export var areCodeBlockLineNumbersVisible = function areCodeBlockLineNumbersVisible(codeBlockNode) {
return !areCodeBlockLineNumbersHidden(codeBlockNode);
};
export var getCodeBlockFoldState = function getCodeBlockFoldState(codeBlockNode) {
var currentNodeFoldState = codeBlockFoldStates.get(codeBlockNode);
return currentNodeFoldState || [];
};
export var setCodeBlockFoldState = function setCodeBlockFoldState(codeBlockNode, foldRanges) {
codeBlockFoldStates.set(codeBlockNode, foldRanges);
};
/**
* Swap the old node key with the new node key in the wrapped states WeakMap.
*/
export var transferCodeBlockWrappedValue = function transferCodeBlockWrappedValue(oldCodeBlockNode, newCodeBlockNode) {
if (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.
*/
export var updateCodeBlockWrappedStateNodeKeys = function updateCodeBlockWrappedStateNodeKeys(newCodeBlockNodes, oldState) {
newCodeBlockNodes.forEach(function (newCodeBlockNode) {
if (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);
};