UNPKG

@guestbell/react-page-plugins

Version:

Plugins we use in GuestBell for working with amazing react-page package

77 lines 4.75 kB
function _toConsumableArray(r) { return _arrayWithoutHoles(r) || _iterableToArray(r) || _unsupportedIterableToArray(r) || _nonIterableSpread(); } function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } function _iterableToArray(r) { if ("undefined" != typeof Symbol && null != r[Symbol.iterator] || null != r["@@iterator"]) return Array.from(r); } function _arrayWithoutHoles(r) { if (Array.isArray(r)) return _arrayLikeToArray(r); } function _createForOfIteratorHelper(r, e) { var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (!t) { if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) { t && (r = t); var _n = 0, F = function F() {}; return { s: F, n: function n() { return _n >= r.length ? { done: !0 } : { done: !1, value: r[_n++] }; }, e: function e(r) { throw r; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var o, a = !0, u = !1; return { s: function s() { t = t.call(r); }, n: function n() { var r = t.next(); return a = r.done, r; }, e: function e(r) { u = !0, o = r; }, f: function f() { try { a || null == t["return"] || t["return"](); } finally { if (u) throw o; } } }; } function _slicedToArray(r, e) { return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest(); } function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } } function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; } function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t["return"] && (u = t["return"](), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } } function _arrayWithHoles(r) { if (Array.isArray(r)) return r; } import { Editor, Transforms, Text } from 'slate'; export var isColorActive = function isColorActive(editor) { var _Editor$nodes = Editor.nodes(editor, { match: function match(elem) { return Boolean(elem.color); }, mode: 'all' }), _Editor$nodes2 = _slicedToArray(_Editor$nodes, 1), mark = _Editor$nodes2[0]; return !!mark; }; export var getActiveColors = function getActiveColors(editor) { var nodes = Editor.nodes(editor, { at: editor.selection, mode: 'all' }); var colors = []; var _iterator = _createForOfIteratorHelper(nodes), _step; try { for (_iterator.s(); !(_step = _iterator.n()).done;) { var _step$value = _slicedToArray(_step.value, 1), node = _step$value[0]; colors.push(node.color); } } catch (err) { _iterator.e(err); } finally { _iterator.f(); } colors = colors.filter(function (i) { return i; }); var unique = new Set(colors); return _toConsumableArray(unique); }; var unwrapColor = function unwrapColor(editor) { Transforms.setNodes(editor, { color: null }, { match: Text.isText, split: true }); }; var wrapColor = function wrapColor(editor, color) { Transforms.setNodes(editor, { color: color }, { match: Text.isText, split: true }); // Editor.collapse(editor, { edge: 'end' }); }; export var withColors = function withColors(editor) { /*const { isInline } = editor; editor.isInline = element => { return element.type === ColorType ? true : isInline(element); };*/ editor.wrapColor = wrapColor.bind(null, editor); editor.unwrapColor = unwrapColor.bind(null, editor); editor.isColorActive = isColorActive.bind(null, editor); editor.getActiveColors = getActiveColors.bind(null, editor); return editor; }; //# sourceMappingURL=withColors.js.map