Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 12:22:54 +01:00
38 Zeilen
994 B
JavaScript
38 Zeilen
994 B
JavaScript
import Component from "@ember/component";
|
|
import { gt } from "@ember/object/computed";
|
|
import { computed } from "@ember/object";
|
|
import { defaultConnector } from "../lib/wizard-mapper";
|
|
import { later } from "@ember/runloop";
|
|
import I18n from "I18n";
|
|
|
|
export default Component.extend({
|
|
classNameBindings: [
|
|
":mapper-connector",
|
|
":mapper-block",
|
|
"hasMultiple::single",
|
|
],
|
|
hasMultiple: gt("connectors.length", 1),
|
|
connectorLabel: computed(function () {
|
|
let key = this.connector;
|
|
let path = this.inputTypes ? `input.${key}.name` : `connector.${key}`;
|
|
return I18n.t(`admin.wizard.${path}`);
|
|
}),
|
|
|
|
didReceiveAttrs() {
|
|
if (!this.connector) {
|
|
later(() => {
|
|
this.set(
|
|
"connector",
|
|
defaultConnector(this.connectorType, this.inputType, this.options)
|
|
);
|
|
});
|
|
}
|
|
},
|
|
|
|
actions: {
|
|
changeConnector(value) {
|
|
this.set("connector", value);
|
|
this.onUpdate("connector", this.connectorType);
|
|
},
|
|
},
|
|
});
|