UNPKG

@atlaskit/primitives

Version:

Primitives are token-backed low-level building blocks.

68 lines (67 loc) 3.31 kB
"use strict"; var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); Object.defineProperty(exports, "__esModule", { value: true }); exports.parseXcss = void 0; var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray")); var _uniqueSymbol = require("./unique-symbol"); 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 _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; } // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766 /** * Picks out runtime XCSS objects and build-time XCSS strings. This is needed * to supported both Emotion and Compiled styles until we've fully migrated * to Compiled. * * @private * @deprecated */ // eslint-disable-next-line @atlaskit/volt-strict-mode/no-multiple-exports var _parseXcss = exports.parseXcss = function parseXcss(args) { if (Array.isArray(args)) { var emotion = []; var staticArr = []; var _iterator = _createForOfIteratorHelper(args), _step; try { for (_iterator.s(); !(_step = _iterator.n()).done;) { var arg = _step.value; var result = _parseXcss(arg); if (result.emotion) { emotion.push.apply(emotion, (0, _toConsumableArray2.default)(result.emotion)); } if (result.static) { staticArr.push(result.static); } } } catch (err) { _iterator.e(err); } finally { _iterator.f(); } return { emotion: emotion, static: staticArr.join(' ') }; } var objArgs = args; var _ref = objArgs || {}, styles = _ref[_uniqueSymbol.uniqueSymbol]; if (styles) { return { emotion: [styles] }; } if (args) { // We use string interpolation here instead of .toString() just // in case the resulting object doesn't have the method available. var stringifiedArgs = "".concat(args); if (stringifiedArgs) { return { static: stringifiedArgs }; } } return {}; };