2021-03-28 11:06:49 +02:00
|
|
|
import { default as discourseComputed } from "discourse-common/utils/decorators";
|
|
|
|
import Component from "@ember/component";
|
2020-04-02 07:21:57 +02:00
|
|
|
|
|
|
|
export default Component.extend({
|
2021-03-28 11:06:49 +02:00
|
|
|
classNames: "wizard-advanced-toggle",
|
|
|
|
|
|
|
|
@discourseComputed("showAdvanced")
|
2020-04-02 07:21:57 +02:00
|
|
|
toggleClass(showAdvanced) {
|
2021-03-28 11:06:49 +02:00
|
|
|
let classes = "btn";
|
|
|
|
if (showAdvanced) classes += " btn-primary";
|
2020-04-02 07:21:57 +02:00
|
|
|
return classes;
|
|
|
|
},
|
2021-03-28 11:06:49 +02:00
|
|
|
|
2020-04-02 07:21:57 +02:00
|
|
|
actions: {
|
|
|
|
toggleAdvanced() {
|
2021-03-28 11:06:49 +02:00
|
|
|
this.toggleProperty("showAdvanced");
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|