discourse/app/assets/javascripts/wizard/models/wizard.js.es6

50 lines
1.4 KiB
Plaintext
Raw Normal View History

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';
import computed from 'ember-addons/ember-computed-decorators';
const Wizard = Ember.Object.extend({
@computed('steps.length')
2016-09-16 16:12:56 -04:00
totalSteps: length => length,
2016-09-16 17:02:45 -04:00
getTitle() {
const titleStep = this.get('steps').findProperty('id', 'forum-title');
if (!titleStep) { return; }
return titleStep.get('fieldsById.title.value');
},
2016-09-16 16:12:56 -04:00
// A bit clunky, but get the current colors from the appropriate step
getCurrentColors() {
const colorStep = this.get('steps').findProperty('id', 'colors');
if (!colorStep) { return; }
const themeChoice = colorStep.get('fieldsById.theme_id');
if (!themeChoice) { return; }
const themeId = themeChoice.get('value');
if (!themeId) { return; }
const choices = themeChoice.get('choices');
if (!choices) { return; }
const option = choices.findProperty('id', themeId);
if (!option) { return; }
return option.data.colors;
}
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);
});
}