0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-20 15:51:11 +02:00
discourse-custom-wizard/assets/javascripts/wizard/models/custom.js.es6
Angus McLeod f6251ace06 various
2017-10-22 11:37:58 +08:00

29 Zeilen
801 B
JavaScript

import { default as computed } from 'ember-addons/ember-computed-decorators';
import WizardField from 'wizard/models/wizard-field';
import { ajax } from 'wizard/lib/ajax';
import Step from 'wizard/models/step';
const CustomWizard = Ember.Object.extend({
@computed('steps.length')
totalSteps: length => length
});
export function findCustomWizard(wizardId) {
return ajax({ url: `/w/${wizardId}` }).then(result => {
const wizard = result.wizard;
if (!wizard) return null;
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;
});
}
return CustomWizard.create(wizard);
});
};
export default CustomWizard;