0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-20 15:51:11 +02:00
discourse-custom-wizard/assets/javascripts/discourse/components/wizard-mapper-pair.js.es6

17 Zeilen
592 B
Text

import { connectorContent } from "../lib/wizard-mapper";
2021-04-12 07:44:47 +02:00
import { alias, gt } from "@ember/object/computed";
import { computed } from "@ember/object";
2020-04-05 03:37:09 +02:00
import Component from "@ember/component";
2020-04-01 07:03:26 +02:00
2020-04-05 03:37:09 +02:00
export default Component.extend({
classNameBindings: [":mapper-pair", "hasConnector::no-connector"],
firstPair: gt("pair.index", 0),
showRemove: alias("firstPair"),
showJoin: computed("pair.pairCount", function () {
return this.pair.index < this.pair.pairCount - 1;
}),
connectors: computed(function () {
return connectorContent("pair", this.inputType, this.options);
}),
});