57 lines
1.6 KiB
JavaScript
57 lines
1.6 KiB
JavaScript
import Component from "@ember/component";
|
|
import { defineProperty, computed } from "@ember/object";
|
|
import deprecated from "discourse-common/lib/deprecated";
|
|
import { buildArgsWithDeprecations } from "discourse/lib/plugin-connectors";
|
|
|
|
export default Component.extend({
|
|
init() {
|
|
this._super(...arguments);
|
|
|
|
const connector = this.connector;
|
|
this.set("layoutName", connector.templateName);
|
|
|
|
const args = this.args || {};
|
|
Object.keys(args).forEach(key => {
|
|
defineProperty(
|
|
this,
|
|
key,
|
|
computed("args", () => (this.args || {})[key])
|
|
);
|
|
});
|
|
|
|
const deprecatedArgs = this.deprecatedArgs || {};
|
|
Object.keys(deprecatedArgs).forEach(key => {
|
|
defineProperty(
|
|
this,
|
|
key,
|
|
computed("deprecatedArgs", () => {
|
|
deprecated(
|
|
`The ${key} property is deprecated, but is being used in ${this.layoutName}`
|
|
);
|
|
|
|
return (this.deprecatedArgs || {})[key];
|
|
})
|
|
);
|
|
});
|
|
|
|
const connectorClass = this.get("connector.connectorClass");
|
|
const merged = buildArgsWithDeprecations(args, deprecatedArgs);
|
|
connectorClass.setupComponent.call(this, merged, this);
|
|
|
|
this.set("actions", connectorClass.actions);
|
|
},
|
|
|
|
willDestroyElement() {
|
|
this._super(...arguments);
|
|
|
|
const connectorClass = this.get("connector.connectorClass");
|
|
connectorClass.teardownComponent.call(this, this);
|
|
},
|
|
|
|
send(name, ...args) {
|
|
const connectorClass = this.get("connector.connectorClass");
|
|
const action = connectorClass.actions[name];
|
|
return action ? action.call(this, ...args) : this._super(name, ...args);
|
|
}
|
|
});
|