mirror of
https://github.com/flarum/framework.git
synced 2024-12-03 07:33:36 +08:00
46 lines
752 B
JavaScript
46 lines
752 B
JavaScript
/**
|
|
|
|
*/
|
|
export default class Component {
|
|
/**
|
|
|
|
*/
|
|
constructor(props) {
|
|
this.props = props || {};
|
|
|
|
this.element = m.prop();
|
|
}
|
|
|
|
/**
|
|
|
|
*/
|
|
$(selector) {
|
|
return selector ? $(this.element()).find(selector) : $(this.element());
|
|
}
|
|
|
|
/**
|
|
|
|
*/
|
|
static component(props) {
|
|
props = props || {};
|
|
if (this.props) {
|
|
props = this.props(props);
|
|
}
|
|
var view = function(component) {
|
|
component.props = props;
|
|
return component.view();
|
|
};
|
|
view.$original = this.prototype.view;
|
|
var output = {
|
|
props: props,
|
|
component: this,
|
|
controller: this.bind(undefined, props),
|
|
view: view
|
|
};
|
|
if (props.key) {
|
|
output.attrs = {key: props.key};
|
|
}
|
|
return output;
|
|
}
|
|
}
|