123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- export default {
- name: 'custom-routes',
- initialize() {
- if (window.location.pathname.indexOf('/w/') < 0) return;
- const Router = requirejs('wizard/router').default;
- const ApplicationRoute = requirejs('wizard/routes/application').default;
- const ajax = requirejs('wizard/lib/ajax').ajax;
- const StepModel = requirejs('wizard/models/step').default;
- const WizardStep = requirejs('wizard/components/wizard-step').default;
- const getUrl = requirejs('discourse-common/lib/get-url').default;
- const FieldModel = requirejs('wizard/models/wizard-field').default;
- Router.reopen({
- rootURL: getUrl('/w/')
- });
- Router.map(function() {
- this.route('custom', { path: '/:wizard_id' }, function() {
- this.route('steps');
- this.route('step', { path: '/steps/:step_id' });
- });
- });
- ApplicationRoute.reopen({
- redirect() {
- this.transitionTo('custom');
- },
- model() {}
- });
- WizardStep.reopen({
- showQuitButton: function() {
- const index = this.get('step.index');
- const required = this.get('wizard.required');
- return index === 0 && !required;
- }.property('step.index', 'wizard.required'),
- bannerImage: function() {
- const src = this.get('step.banner');
- if (!src) return;
- if (src.indexOf('/uploads/') > -1 || src.indexOf('/images/') > -1) {
- return getUrl(src);
- } else {
- return getUrl(`/images/wizard/${src}`);
- };
- }.property('step.banner'),
- handleMessage: function() {
- const message = this.get('step.message');
- this.sendAction('showMessage', message);
- }.observes('step.message'),
- advance() {
- this.set('saving', true);
- this.get('step').save()
- .then(response => {
- if (this.get('finalStep')) {
- this.get('wizard').finished(response);
- } else {
- this.sendAction('goNext', response);
- }
- })
- .catch(() => this.animateInvalidFields())
- .finally(() => this.set('saving', false));
- },
- actions: {
- quit() {
- if ($(event.target).hasClass('quit')) {
- this.get('wizard').skip();
- } else {
- this.set('finalStep', true);
- this.send('nextStep');
- };
- },
- showMessage(message) {
- this.sendAction('showMessage', message);
- }
- }
- });
- StepModel.reopen({
- save() {
- const wizardId = this.get('wizardId');
- const fields = {};
- this.get('fields').forEach(f => fields[f.id] = f.value);
- return ajax({
- url: `/w/${wizardId}/steps/${this.get('id')}`,
- type: 'PUT',
- data: { fields }
- }).catch(response => {
- if (response && response.responseJSON && response.responseJSON.errors) {
- let wizardErrors = [];
- response.responseJSON.errors.forEach(err => {
- if (err.field === wizardId) {
- wizardErrors.push(err.description);
- } else if (err.field) {
- this.fieldError(err.field, err.description);
- } else if (err) {
- wizardErrors.push(err);
- }
- });
- if (wizardErrors.length) {
- this.handleWizardError(wizardErrors.join('\n'));
- }
- throw response;
- }
- if (response && response.responseText) {
- const responseText = response.responseText;
- const start = responseText.indexOf('>') + 1;
- const end = responseText.indexOf('plugins');
- const message = responseText.substring(start, end);
- this.handleWizardError(message);
- throw message;
- }
- });
- },
- handleWizardError(message) {
- this.set('message', {
- state: 'error',
- text: message
- });
- Ember.run.later(() => this.set('message', null), 6000);
- }
- });
- FieldModel.reopen({
- check() {
- let valid = this.get('valid');
- if (!this.get('required')) {
- this.setValid(true);
- return true;
- }
- if (!this.get('customValidation')) {
- const val = this.get('value');
- valid = val && val.length > 0;
- this.setValid(valid);
- }
- return valid;
- }
- });
- }
- };
|