Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 04:12:53 +01:00
cf50a7deb3
* Apply prettier * applied prettier for similar-topics-validator Co-authored-by: Faizaan Gagan <fzngagan@gmail.com>
39 Zeilen
1 KiB
JavaScript
39 Zeilen
1 KiB
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 { observes } from "discourse-common/utils/decorators";
|
|
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);
|
|
},
|
|
},
|
|
});
|