2016-08-26 01:14:56 +08:00
|
|
|
import Step from 'wizard/models/step';
|
|
|
|
import WizardField from 'wizard/models/wizard-field';
|
|
|
|
import { ajax } from 'wizard/lib/ajax';
|
|
|
|
import computed from 'ember-addons/ember-computed-decorators';
|
|
|
|
|
|
|
|
const Wizard = Ember.Object.extend({
|
|
|
|
@computed('steps.length')
|
2016-09-17 04:12:56 +08:00
|
|
|
totalSteps: length => length,
|
|
|
|
|
2016-09-17 05:02:45 +08:00
|
|
|
getTitle() {
|
2016-10-27 03:44:36 +08:00
|
|
|
const titleStep = this.get('steps').findBy('id', 'forum-title');
|
2016-09-17 05:02:45 +08:00
|
|
|
if (!titleStep) { return; }
|
|
|
|
return titleStep.get('fieldsById.title.value');
|
|
|
|
},
|
|
|
|
|
2016-09-22 04:09:18 +08:00
|
|
|
getLogoUrl() {
|
2016-10-27 03:44:36 +08:00
|
|
|
const logoStep = this.get('steps').findBy('id', 'logos');
|
2016-09-22 04:09:18 +08:00
|
|
|
if (!logoStep) { return; }
|
|
|
|
return logoStep.get('fieldsById.logo_url.value');
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2016-09-17 04:12:56 +08:00
|
|
|
// A bit clunky, but get the current colors from the appropriate step
|
|
|
|
getCurrentColors() {
|
2016-10-27 03:44:36 +08:00
|
|
|
const colorStep = this.get('steps').findBy('id', 'colors');
|
2016-09-17 04:12:56 +08:00
|
|
|
if (!colorStep) { return; }
|
|
|
|
|
2017-04-12 22:52:52 +08:00
|
|
|
const themeChoice = colorStep.get('fieldsById.base_scheme_id');
|
2016-09-17 04:12:56 +08:00
|
|
|
if (!themeChoice) { return; }
|
|
|
|
|
|
|
|
const themeId = themeChoice.get('value');
|
|
|
|
if (!themeId) { return; }
|
|
|
|
|
|
|
|
const choices = themeChoice.get('choices');
|
|
|
|
if (!choices) { return; }
|
|
|
|
|
2016-10-27 03:44:36 +08:00
|
|
|
const option = choices.findBy('id', themeId);
|
2016-09-17 04:12:56 +08:00
|
|
|
if (!option) { return; }
|
|
|
|
|
|
|
|
return option.data.colors;
|
|
|
|
}
|
|
|
|
|
2016-08-26 01:14:56 +08: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);
|
|
|
|
});
|
|
|
|
}
|