1 | "use strict";
|
---|
2 |
|
---|
3 | function _defaults(obj, defaults) { var keys = Object.getOwnPropertyNames(defaults); for (var i = 0; i < keys.length; i++) { var key = keys[i]; var value = Object.getOwnPropertyDescriptor(defaults, key); if (value && value.configurable && obj[key] === undefined) { Object.defineProperty(obj, key, value); } } return obj; }
|
---|
4 |
|
---|
5 | function _createForOfIteratorHelperLoose(o, allowArrayLike) { var it; if (typeof Symbol === "undefined" || o[Symbol.iterator] == null) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; return function () { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } it = o[Symbol.iterator](); return it.next.bind(it); }
|
---|
6 |
|
---|
7 | function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
---|
8 |
|
---|
9 | function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
|
---|
10 |
|
---|
11 | function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _defaults(subClass, superClass); }
|
---|
12 |
|
---|
13 | function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
---|
14 |
|
---|
15 | var Declaration = require('../declaration');
|
---|
16 |
|
---|
17 | var TransformDecl = /*#__PURE__*/function (_Declaration) {
|
---|
18 | _inheritsLoose(TransformDecl, _Declaration);
|
---|
19 |
|
---|
20 | function TransformDecl() {
|
---|
21 | return _Declaration.apply(this, arguments) || this;
|
---|
22 | }
|
---|
23 |
|
---|
24 | var _proto = TransformDecl.prototype;
|
---|
25 |
|
---|
26 | /**
|
---|
27 | * Recursively check all parents for @keyframes
|
---|
28 | */
|
---|
29 | _proto.keyframeParents = function keyframeParents(decl) {
|
---|
30 | var parent = decl.parent;
|
---|
31 |
|
---|
32 | while (parent) {
|
---|
33 | if (parent.type === 'atrule' && parent.name === 'keyframes') {
|
---|
34 | return true;
|
---|
35 | }
|
---|
36 |
|
---|
37 | var _parent = parent;
|
---|
38 | parent = _parent.parent;
|
---|
39 | }
|
---|
40 |
|
---|
41 | return false;
|
---|
42 | }
|
---|
43 | /**
|
---|
44 | * Is transform contain 3D commands
|
---|
45 | */
|
---|
46 | ;
|
---|
47 |
|
---|
48 | _proto.contain3d = function contain3d(decl) {
|
---|
49 | if (decl.prop === 'transform-origin') {
|
---|
50 | return false;
|
---|
51 | }
|
---|
52 |
|
---|
53 | for (var _iterator = _createForOfIteratorHelperLoose(TransformDecl.functions3d), _step; !(_step = _iterator()).done;) {
|
---|
54 | var func = _step.value;
|
---|
55 |
|
---|
56 | if (decl.value.includes(func + "(")) {
|
---|
57 | return true;
|
---|
58 | }
|
---|
59 | }
|
---|
60 |
|
---|
61 | return false;
|
---|
62 | }
|
---|
63 | /**
|
---|
64 | * Replace rotateZ to rotate for IE 9
|
---|
65 | */
|
---|
66 | ;
|
---|
67 |
|
---|
68 | _proto.set = function set(decl, prefix) {
|
---|
69 | decl = _Declaration.prototype.set.call(this, decl, prefix);
|
---|
70 |
|
---|
71 | if (prefix === '-ms-') {
|
---|
72 | decl.value = decl.value.replace(/rotatez/gi, 'rotate');
|
---|
73 | }
|
---|
74 |
|
---|
75 | return decl;
|
---|
76 | }
|
---|
77 | /**
|
---|
78 | * Don't add prefix for IE in keyframes
|
---|
79 | */
|
---|
80 | ;
|
---|
81 |
|
---|
82 | _proto.insert = function insert(decl, prefix, prefixes) {
|
---|
83 | if (prefix === '-ms-') {
|
---|
84 | if (!this.contain3d(decl) && !this.keyframeParents(decl)) {
|
---|
85 | return _Declaration.prototype.insert.call(this, decl, prefix, prefixes);
|
---|
86 | }
|
---|
87 | } else if (prefix === '-o-') {
|
---|
88 | if (!this.contain3d(decl)) {
|
---|
89 | return _Declaration.prototype.insert.call(this, decl, prefix, prefixes);
|
---|
90 | }
|
---|
91 | } else {
|
---|
92 | return _Declaration.prototype.insert.call(this, decl, prefix, prefixes);
|
---|
93 | }
|
---|
94 |
|
---|
95 | return undefined;
|
---|
96 | };
|
---|
97 |
|
---|
98 | return TransformDecl;
|
---|
99 | }(Declaration);
|
---|
100 |
|
---|
101 | _defineProperty(TransformDecl, "names", ['transform', 'transform-origin']);
|
---|
102 |
|
---|
103 | _defineProperty(TransformDecl, "functions3d", ['matrix3d', 'translate3d', 'translateZ', 'scale3d', 'scaleZ', 'rotate3d', 'rotateX', 'rotateY', 'perspective']);
|
---|
104 |
|
---|
105 | module.exports = TransformDecl; |
---|