I will migrate a project from Mootools to Prime, but now I have a problem with the "setOptions", the function does not work as in Mootools where the options
object will merge through supers up the proto chain and contain all the keys.
var A = prime({
options: {
name: 'image',
tag: 'span',
src: '/'
},
constructor: function(options){
this.setOptions(options);
},
getOptions: function(){
console.log(this.options);
}
});
var B = prime({
inherits: A,
options: {
name: 'B'
},
some: function(){
return;
}
});
mixin(A, Options);
mixin(B, Options);
var b = new B({
tag: 'div'
});
b.getOptions(); //the result should be: {name: "B", tag: "div", src: "/"} but is {name: "B", tag: "div"}
Thanks for any idea.
As answered on the mailing list - I even made you a repo - this works out of the box in primish.
https://bitbucket.org/DimitarChristoff/primish-example/src
slightly different syntax (sugar, it's been done to make mootools users happy) but it does also merge options like mootools did:
Notice distinct lack of the extra
mixin()
nonsense and the familiarextend
term rather thaninherits
In prime you'd have to do something like:
where Object.merge is some util - either a prime util or lodash or whatever. in primish that would be
prime.merge()