2019-10-29 15:23:50 -04:00
|
|
|
import EmberObject from "@ember/object";
|
2022-06-04 12:04:00 -04:00
|
|
|
import Evented from "@ember/object/evented";
|
2016-08-25 13:14:56 -04:00
|
|
|
import Step from "wizard/models/step";
|
|
|
|
import WizardField from "wizard/models/wizard-field";
|
|
|
|
import { ajax } from "wizard/lib/ajax";
|
2019-11-07 16:38:28 -05:00
|
|
|
import discourseComputed from "discourse-common/utils/decorators";
|
2016-08-25 13:14:56 -04:00
|
|
|
|
2022-06-04 12:04:00 -04:00
|
|
|
const Wizard = EmberObject.extend(Evented, {
|
2019-11-07 16:38:28 -05:00
|
|
|
@discourseComputed("steps.length")
|
2018-07-30 11:56:48 -04:00
|
|
|
totalSteps: (length) => length,
|
2016-09-16 16:12:56 -04:00
|
|
|
|
2016-09-16 17:02:45 -04:00
|
|
|
getTitle() {
|
2019-05-27 04:15:39 -04:00
|
|
|
const titleStep = this.steps.findBy("id", "forum-title");
|
2016-09-16 17:02:45 -04:00
|
|
|
if (!titleStep) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
return titleStep.get("fieldsById.title.value");
|
|
|
|
},
|
|
|
|
|
2016-09-21 16:09:18 -04:00
|
|
|
getLogoUrl() {
|
2019-05-27 04:15:39 -04:00
|
|
|
const logoStep = this.steps.findBy("id", "logos");
|
2016-09-21 16:09:18 -04:00
|
|
|
if (!logoStep) {
|
|
|
|
return;
|
|
|
|
}
|
2020-10-05 13:40:41 -04:00
|
|
|
return logoStep.get("fieldsById.logo.value");
|
2016-09-21 16:09:18 -04:00
|
|
|
},
|
|
|
|
|
2022-06-06 15:01:47 -04:00
|
|
|
get currentColors() {
|
2021-08-25 17:10:12 -04:00
|
|
|
const colorStep = this.steps.findBy("id", "styling");
|
2016-09-16 16:12:56 -04:00
|
|
|
if (!colorStep) {
|
2020-05-26 13:56:36 -04:00
|
|
|
return this.current_color_scheme;
|
2016-09-16 16:12:56 -04:00
|
|
|
}
|
|
|
|
|
2022-06-06 15:01:47 -04:00
|
|
|
const themeChoice = colorStep.fieldsById.color_scheme;
|
2016-09-16 16:12:56 -04:00
|
|
|
if (!themeChoice) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-06-06 15:01:47 -04:00
|
|
|
return themeChoice.choices?.findBy("id", themeChoice.value)?.data.colors;
|
2020-08-31 06:14:09 -04:00
|
|
|
},
|
|
|
|
|
2022-06-06 15:01:47 -04:00
|
|
|
get font() {
|
|
|
|
const fontChoice = this.steps.findBy("id", "styling")?.fieldsById
|
|
|
|
?.body_font;
|
|
|
|
return fontChoice.choices?.findBy("id", fontChoice.value)?.label;
|
|
|
|
},
|
2020-08-31 06:14:09 -04:00
|
|
|
|
2022-06-06 15:01:47 -04:00
|
|
|
get headingFont() {
|
|
|
|
const fontChoice = this.steps.findBy("id", "styling")?.fieldsById
|
|
|
|
?.heading_font;
|
|
|
|
return fontChoice.choices?.findBy("id", fontChoice.value)?.label;
|
2016-09-16 16:12:56 -04:00
|
|
|
},
|
2016-08-25 13:14:56 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
export function findWizard() {
|
|
|
|
return ajax({ url: "/wizard.json" }).then((response) => {
|
|
|
|
const wizard = response.wizard;
|
|
|
|
wizard.steps = wizard.steps.map((step) => {
|
|
|
|
const stepObj = Step.create(step);
|
|
|
|
stepObj.fields = stepObj.fields.map((f) => WizardField.create(f));
|
|
|
|
return stepObj;
|
|
|
|
});
|
|
|
|
|
|
|
|
return Wizard.create(wizard);
|
|
|
|
});
|
|
|
|
}
|