@atlaskit/editor-common
Version:
A package that contains common classes and components for editor and renderer
123 lines (121 loc) • 5.74 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 { findParentNodeOfTypeClosestToPos } from '@atlaskit/editor-prosemirror/utils';
import { akEditorBreakoutPadding } from '@atlaskit/editor-shared-styles';
import { calcPxFromColumns, wrappedLayouts } from '../ui/MediaSingle/grid';
export var shouldAddDefaultWrappedWidth = function shouldAddDefaultWrappedWidth(layout, width, lineLength) {
return wrappedLayouts.indexOf(layout) > -1 && lineLength && width && width > 0.5 * lineLength;
};
export var nonWrappedLayouts = ['center', 'wide', 'full-width'];
export var floatingLayouts = ['wrap-left', 'wrap-right'];
export var isRichMediaInsideOfBlockNode = function isRichMediaInsideOfBlockNode(view, pos) {
if (typeof pos !== 'number' || isNaN(pos) || !view) {
return false;
}
var $pos = view.state.doc.resolve(pos);
var _view$state$schema$no = view.state.schema.nodes,
expand = _view$state$schema$no.expand,
nestedExpand = _view$state$schema$no.nestedExpand,
layoutColumn = _view$state$schema$no.layoutColumn;
return !!findParentNodeOfTypeClosestToPos($pos, [expand, nestedExpand, layoutColumn]);
};
export var alignAttributes = function alignAttributes(layout, oldAttrs) {
var gridSize = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 12;
var originalWidth = arguments.length > 3 ? arguments[3] : undefined;
var lineLength
// Ignored via go/ees005
// eslint-disable-next-line @typescript-eslint/max-params
= arguments.length > 4 ? arguments[4] : undefined;
var width = oldAttrs.width;
var oldLayout = oldAttrs.layout;
var oldLayoutIsNonWrapped = nonWrappedLayouts.indexOf(oldLayout) > -1;
var newLayoutIsNonWrapped = nonWrappedLayouts.indexOf(layout) > -1;
var newLayoutIsWrapped = wrappedLayouts.indexOf(layout) > -1;
var oldLayoutIsWrapped = wrappedLayouts.indexOf(oldLayout) > -1;
if (oldLayoutIsNonWrapped && shouldAddDefaultWrappedWidth(layout, originalWidth, lineLength)) {
// 'full-width' or 'wide' or 'center' -> 'wrap-left' or 'wrap-right' or 'align-end' or 'align-start'
if (!width || width >= 100 || oldLayout !== 'center' // == 'full-width' or 'wide'
) {
width = 50;
}
} else if (layout !== oldLayout && ['full-width', 'wide'].indexOf(oldLayout) > -1) {
// 'full-width' -> 'center' or 'wide'
// 'wide' -> 'center' or 'full-width'
// unset width
width = undefined;
} else if (width) {
var cols = Math.round(width / 100 * gridSize);
var targetCols = cols;
if (oldLayoutIsWrapped && newLayoutIsNonWrapped) {
// wrap -> center needs to align to even grid
targetCols = Math.floor(targetCols / 2) * 2;
width = undefined;
} else if (oldLayoutIsNonWrapped && newLayoutIsWrapped) {
// Can be here only if
// 'full-width' or 'wide' or 'center' -> 'wrap-left' or 'wrap-right' or 'align-end' or 'align-start'
// AND
// !originalWidth || !lineLength || small image
// AND
// width defined!
// cannot resize to full column width, and cannot resize to 1 column
if (cols <= 1) {
targetCols = 2;
} else if (cols >= gridSize) {
targetCols = 10;
}
}
if (targetCols !== cols) {
width = targetCols / gridSize * 100;
}
}
return _objectSpread(_objectSpread({}, oldAttrs), {}, {
layout: layout,
width: width
});
};
export function calculateSnapPoints(_ref) {
var $pos = _ref.$pos,
akEditorWideLayoutWidth = _ref.akEditorWideLayoutWidth,
allowBreakoutSnapPoints = _ref.allowBreakoutSnapPoints,
containerWidth = _ref.containerWidth,
gridSize = _ref.gridSize,
gridWidth = _ref.gridWidth,
insideInlineLike = _ref.insideInlineLike,
insideLayout = _ref.insideLayout,
isVideoFile = _ref.isVideoFile,
lineLength = _ref.lineLength,
offsetLeft = _ref.offsetLeft,
wrappedLayout = _ref.wrappedLayout;
var snapTargets = [];
for (var i = 0; i < gridWidth; i++) {
var pxFromColumns = calcPxFromColumns(i, lineLength, gridWidth);
snapTargets.push(insideLayout ? pxFromColumns : pxFromColumns - offsetLeft);
}
// full width
snapTargets.push(lineLength - offsetLeft);
var columns = wrappedLayout || insideInlineLike ? 1 : 2;
var minimumWidth = calcPxFromColumns(columns, lineLength, gridSize);
var snapPoints = snapTargets.filter(function (width) {
return width >= minimumWidth;
});
if (!$pos) {
return snapPoints;
}
snapPoints = isVideoFile ? snapPoints.filter(function (width) {
return width > 320;
}) : snapPoints;
var isTopLevel = $pos.parent.type.name === 'doc';
if (isTopLevel && allowBreakoutSnapPoints) {
snapPoints.push(akEditorWideLayoutWidth);
var fullWidthPoint = containerWidth - akEditorBreakoutPadding;
if (fullWidthPoint > akEditorWideLayoutWidth) {
snapPoints.push(fullWidthPoint);
}
}
// EDM-1107: Ensure new snapPoints are sorted with existing points
snapPoints = snapPoints.sort(function (a, b) {
return a - b;
});
return snapPoints;
}