| 1 | "use strict";
|
|---|
| 2 |
|
|---|
| 3 | function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
|---|
| 4 |
|
|---|
| 5 | function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|---|
| 6 |
|
|---|
| 7 | function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|---|
| 8 |
|
|---|
| 9 | function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
|---|
| 10 |
|
|---|
| 11 | function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|---|
| 12 |
|
|---|
| 13 | function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|---|
| 14 |
|
|---|
| 15 | function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|---|
| 16 |
|
|---|
| 17 | function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
|
|---|
| 18 |
|
|---|
| 19 | function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|---|
| 20 |
|
|---|
| 21 | function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|---|
| 22 |
|
|---|
| 23 | function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|---|
| 24 |
|
|---|
| 25 | // Generated by CoffeeScript 2.5.1
|
|---|
| 26 | var Margin, MarginBottom, MarginLeft, MarginRight, MarginTop, _Declaration;
|
|---|
| 27 |
|
|---|
| 28 | _Declaration = require('./_Declaration');
|
|---|
| 29 | MarginTop = require('./MarginTop');
|
|---|
| 30 | MarginLeft = require('./MarginLeft');
|
|---|
| 31 | MarginRight = require('./MarginRight');
|
|---|
| 32 | MarginBottom = require('./MarginBottom');
|
|---|
| 33 |
|
|---|
| 34 | module.exports = Margin = function () {
|
|---|
| 35 | var self;
|
|---|
| 36 |
|
|---|
| 37 | var Margin = /*#__PURE__*/function (_Declaration2) {
|
|---|
| 38 | _inherits(Margin, _Declaration2);
|
|---|
| 39 |
|
|---|
| 40 | var _super = _createSuper(Margin);
|
|---|
| 41 |
|
|---|
| 42 | function Margin() {
|
|---|
| 43 | _classCallCheck(this, Margin);
|
|---|
| 44 |
|
|---|
| 45 | return _super.apply(this, arguments);
|
|---|
| 46 | }
|
|---|
| 47 |
|
|---|
| 48 | _createClass(Margin, null, [{
|
|---|
| 49 | key: "setOnto",
|
|---|
| 50 | value: function setOnto(declarations, prop, originalValue) {
|
|---|
| 51 | var append, val, vals;
|
|---|
| 52 | append = '';
|
|---|
| 53 | val = _Declaration.sanitizeValue(originalValue);
|
|---|
| 54 |
|
|---|
| 55 | if (_Declaration.importantClauseRx.test(String(val))) {
|
|---|
| 56 | append = ' !important';
|
|---|
| 57 | val = val.replace(_Declaration.importantClauseRx, '');
|
|---|
| 58 | }
|
|---|
| 59 |
|
|---|
| 60 | val = val.trim();
|
|---|
| 61 |
|
|---|
| 62 | if (val.length === 0) {
|
|---|
| 63 | return self._setAllDirections(declarations, append, append, append, append);
|
|---|
| 64 | }
|
|---|
| 65 |
|
|---|
| 66 | vals = val.split(" ").map(function (val) {
|
|---|
| 67 | return val + append;
|
|---|
| 68 | });
|
|---|
| 69 |
|
|---|
| 70 | if (vals.length === 1) {
|
|---|
| 71 | return self._setAllDirections(declarations, vals[0], vals[0], vals[0], vals[0]);
|
|---|
| 72 | } else if (vals.length === 2) {
|
|---|
| 73 | return self._setAllDirections(declarations, vals[0], vals[1], vals[0], vals[1]);
|
|---|
| 74 | } else if (vals.length === 3) {
|
|---|
| 75 | return self._setAllDirections(declarations, vals[0], vals[1], vals[2], vals[1]);
|
|---|
| 76 | } else if (vals.length === 4) {
|
|---|
| 77 | return self._setAllDirections(declarations, vals[0], vals[1], vals[2], vals[3]);
|
|---|
| 78 | } else {
|
|---|
| 79 | throw Error("Can't understand value for margin: `".concat(originalValue, "`"));
|
|---|
| 80 | }
|
|---|
| 81 | }
|
|---|
| 82 | }, {
|
|---|
| 83 | key: "_setAllDirections",
|
|---|
| 84 | value: function _setAllDirections(declarations, top, right, bottom, left) {
|
|---|
| 85 | MarginTop.setOnto(declarations, 'marginTop', top);
|
|---|
| 86 | MarginTop.setOnto(declarations, 'marginRight', right);
|
|---|
| 87 | MarginTop.setOnto(declarations, 'marginBottom', bottom);
|
|---|
| 88 | MarginTop.setOnto(declarations, 'marginLeft', left);
|
|---|
| 89 | }
|
|---|
| 90 | }]);
|
|---|
| 91 |
|
|---|
| 92 | return Margin;
|
|---|
| 93 | }(_Declaration);
|
|---|
| 94 |
|
|---|
| 95 | ;
|
|---|
| 96 | self = Margin;
|
|---|
| 97 | return Margin;
|
|---|
| 98 | }.call(void 0); |
|---|