mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 00:04:11 +08:00
43 lines
965 B
Plaintext
43 lines
965 B
Plaintext
|
// FROM: https://github.com/Matt-Esch/virtual-dom
|
||
|
// License: MIT
|
||
|
|
||
|
function AttributeHook(namespace, value) {
|
||
|
if (!(this instanceof AttributeHook)) {
|
||
|
return new AttributeHook(namespace, value);
|
||
|
}
|
||
|
|
||
|
this.namespace = namespace;
|
||
|
this.value = value;
|
||
|
}
|
||
|
|
||
|
AttributeHook.prototype.hook = function(node, prop, prev) {
|
||
|
if (
|
||
|
prev &&
|
||
|
prev.type === "AttributeHook" &&
|
||
|
prev.value === this.value &&
|
||
|
prev.namespace === this.namespace
|
||
|
) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
node.setAttributeNS(this.namespace, prop, this.value);
|
||
|
};
|
||
|
|
||
|
AttributeHook.prototype.unhook = function(node, prop, next) {
|
||
|
if (
|
||
|
next &&
|
||
|
next.type === "AttributeHook" &&
|
||
|
next.namespace === this.namespace
|
||
|
) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
var colonPosition = prop.indexOf(":");
|
||
|
var localName = colonPosition > -1 ? prop.substr(colonPosition + 1) : prop;
|
||
|
node.removeAttributeNS(this.namespace, localName);
|
||
|
};
|
||
|
|
||
|
AttributeHook.prototype.type = "AttributeHook";
|
||
|
|
||
|
export default AttributeHook;
|