mirror of
https://github.com/less/less.js.git
synced 2026-02-02 19:15:04 -05:00
87 lines
2.7 KiB
JavaScript
87 lines
2.7 KiB
JavaScript
(function (tree) {
|
|
|
|
tree.Selector = function (elements, extendList, condition, index, currentFileInfo, isReferenced) {
|
|
this.elements = elements;
|
|
this.extendList = extendList || [];
|
|
this.condition = condition;
|
|
this.currentFileInfo = currentFileInfo || {};
|
|
this.isReferenced = isReferenced;
|
|
if (!condition) {
|
|
this.evaldCondition = true;
|
|
}
|
|
};
|
|
tree.Selector.prototype = {
|
|
type: "Selector",
|
|
accept: function (visitor) {
|
|
this.elements = visitor.visit(this.elements);
|
|
this.extendList = visitor.visit(this.extendList);
|
|
this.condition = visitor.visit(this.condition);
|
|
},
|
|
createDerived: function(elements, extendList, evaldCondition) {
|
|
evaldCondition = evaldCondition != null ? evaldCondition : this.evaldCondition;
|
|
var newSelector = new(tree.Selector)(elements, extendList || this.extendList, this.condition, this.index, this.currentFileInfo, this.isReferenced);
|
|
newSelector.evaldCondition = evaldCondition;
|
|
return newSelector;
|
|
},
|
|
match: function (other) {
|
|
var elements = this.elements,
|
|
len = elements.length,
|
|
oelements, olen, max, i;
|
|
|
|
oelements = other.elements.slice(
|
|
(other.elements.length && other.elements[0].value === "&") ? 1 : 0);
|
|
olen = oelements.length;
|
|
max = Math.min(len, olen);
|
|
|
|
if (olen === 0 || len < olen) {
|
|
return false;
|
|
} else {
|
|
for (i = 0; i < max; i++) {
|
|
if (elements[i].value !== oelements[i].value) {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
return true;
|
|
},
|
|
eval: function (env) {
|
|
var evaldCondition = this.condition && this.condition.eval(env);
|
|
|
|
return this.createDerived(this.elements.map(function (e) {
|
|
return e.eval(env);
|
|
}), this.extendList.map(function(extend) {
|
|
return extend.eval(env);
|
|
}), evaldCondition);
|
|
},
|
|
toCSS: function (env) {
|
|
if (this._css) { return this._css }
|
|
|
|
if (this.elements[0].combinator.value === "") {
|
|
this._css = ' ';
|
|
} else {
|
|
this._css = '';
|
|
}
|
|
|
|
this._css += this.elements.map(function (e) {
|
|
if (typeof(e) === 'string') {
|
|
return ' ' + e.trim();
|
|
} else {
|
|
return e.toCSS(env);
|
|
}
|
|
}).join('');
|
|
|
|
return this._css;
|
|
},
|
|
markReferenced: function () {
|
|
this.isReferenced = true;
|
|
},
|
|
getIsReferenced: function() {
|
|
return !this.currentFileInfo.reference || this.isReferenced;
|
|
},
|
|
getIsOutput: function() {
|
|
return this.evaldCondition;
|
|
}
|
|
};
|
|
|
|
})(require('../tree'));
|