xnew.extend
It extend the component function using another one.
xnew.extend(component, ...args);
example
// base component function
function Base(self) {
return {
update() {
console.log('base update');
},
hoge() {
console.log('base hoge');
},
}
}
const unit = xnew((self) => {
xnew.extend(Base);
return {
update() {
console.log('derived update');
},
hoge() {
console.log('derived hoge');
},
}
});
unit.hoge();
// derived hoge
// base update
// derived update
// ... update loop
tip
If system properties (promise
, start
, update
, stop
, finalize
) defined in both component functions,
the properties are automatically merged.
tip
If original properties defined in both component functions, the properties are overridden.
By using the return value of xnew.extend
, you can change the calling rules of the original properties.
const unit = xnew((self) => {
const props = xnew.extend(Base);
return {
hoge() {
props.hoge(); // execute Base component hoge
console.log('derived hoge');
},
}
});
unit.hoge();
// base hoge
// derived hoge