0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-20 07:41:11 +02:00
discourse-custom-wizard/assets/javascripts/wizard/models/custom.js.es6

28 Zeilen
770 B
Text

import { default as computed } from 'ember-addons/ember-computed-decorators';
2017-09-25 16:47:40 +02:00
import WizardField from 'wizard/models/wizard-field';
import { ajax } from 'wizard/lib/ajax';
import Step from 'wizard/models/step';
2017-09-25 16:47:40 +02:00
const CustomWizard = Ember.Object.extend({
@computed('steps.length')
totalSteps: length => length
});
export function findCustomWizard(wizardId) {
2017-10-13 15:02:34 +02:00
return ajax({ url: `/w/${wizardId}` }).then(result => {
const wizard = result.wizard;
2017-10-13 15:02:34 +02:00
if (!wizard.completed) {
wizard.steps = wizard.steps.map(step => {
const stepObj = Step.create(step);
stepObj.fields = stepObj.fields.map(f => WizardField.create(f));
return stepObj;
});
}
2017-09-25 16:47:40 +02:00
return CustomWizard.create(wizard);
});
};
export default CustomWizard;