import "core-js/modules/es.array.concat"; import { hasOwnProperty, isObject } from './../../helpers/object'; import { arrayEach } from './../../helpers/array'; /** * Create separated id for borders for each cell. * * @param {Number} row Visual row index. * @param {Number} col Visual column index. * @returns {String} */ export function createId(row, col) { return "border_row".concat(row, "col").concat(col); } /** * Create default single border for each position (top/right/bottom/left). * * @returns {Object} `{{width: number, color: string}}` */ export function createDefaultCustomBorder() { return { width: 1, color: '#000' }; } /** * Create default object for empty border. * * @returns {Object} `{{hide: boolean}}` */ export function createSingleEmptyBorder() { return { hide: true }; } /** * Create default Handsontable border object. * * @returns {Object} `{{width: number, color: string, cornerVisible: boolean}}` */ export function createDefaultHtBorder() { return { width: 1, color: '#000', cornerVisible: false }; } /** * Prepare empty border for each cell with all custom borders hidden. * * @param {Number} row Visual row index. * @param {Number} col Visual column index. * @returns {Object} `{{id: *, border: *, row: *, col: *, top: {hide: boolean}, right: {hide: boolean}, bottom: {hide: boolean}, left: {hide: boolean}}}` */ export function createEmptyBorders(row, col) { return { id: createId(row, col), border: createDefaultHtBorder(), row: row, col: col, top: createSingleEmptyBorder(), right: createSingleEmptyBorder(), bottom: createSingleEmptyBorder(), left: createSingleEmptyBorder() }; } export function extendDefaultBorder(defaultBorder, customBorder) { if (hasOwnProperty(customBorder, 'border')) { defaultBorder.border = customBorder.border; } if (hasOwnProperty(customBorder, 'top')) { if (customBorder.top) { if (!isObject(customBorder.top)) { customBorder.top = createDefaultCustomBorder(); } defaultBorder.top = customBorder.top; } else { customBorder.top = createSingleEmptyBorder(); defaultBorder.top = customBorder.top; } } if (hasOwnProperty(customBorder, 'right')) { if (customBorder.right) { if (!isObject(customBorder.right)) { customBorder.right = createDefaultCustomBorder(); } defaultBorder.right = customBorder.right; } else { customBorder.right = createSingleEmptyBorder(); defaultBorder.right = customBorder.right; } } if (hasOwnProperty(customBorder, 'bottom')) { if (customBorder.bottom) { if (!isObject(customBorder.bottom)) { customBorder.bottom = createDefaultCustomBorder(); } defaultBorder.bottom = customBorder.bottom; } else { customBorder.bottom = createSingleEmptyBorder(); defaultBorder.bottom = customBorder.bottom; } } if (hasOwnProperty(customBorder, 'left')) { if (customBorder.left) { if (!isObject(customBorder.left)) { customBorder.left = createDefaultCustomBorder(); } defaultBorder.left = customBorder.left; } else { customBorder.left = createSingleEmptyBorder(); defaultBorder.left = customBorder.left; } } return defaultBorder; } /** * Check if selection has border. * * @param hot * @param direction */ export function checkSelectionBorders(hot, direction) { var atLeastOneHasBorder = false; arrayEach(hot.getSelectedRange(), function (range) { range.forAll(function (r, c) { var metaBorders = hot.getCellMeta(r, c).borders; if (metaBorders) { if (direction) { if (!hasOwnProperty(metaBorders[direction], 'hide') || metaBorders[direction].hide === false) { atLeastOneHasBorder = true; return false; // breaks forAll } } else { atLeastOneHasBorder = true; return false; // breaks forAll } } }); }); return atLeastOneHasBorder; } /** * Mark label in contextMenu as selected. * * @param label * @returns {string} */ export function markSelected(label) { return "".concat(String.fromCharCode(10003), "").concat(label); // workaround for https://github.com/handsontable/handsontable/issues/1946 }