2017-10-17 15:17:53 +02:00
|
|
|
import { default as computed } from 'ember-addons/ember-computed-decorators';
|
2017-10-17 09:18:53 +02:00
|
|
|
|
2017-10-22 05:37:58 +02:00
|
|
|
const ACTION_TYPES = [
|
2017-10-30 07:24:51 +01:00
|
|
|
{ id: 'create_topic', name: 'Create Topic' },
|
|
|
|
{ id: 'update_profile', name: 'Update Profile' },
|
|
|
|
{ id: 'send_message', name: 'Send Message' }
|
2017-10-22 05:37:58 +02:00
|
|
|
];
|
|
|
|
|
2017-10-17 09:18:53 +02:00
|
|
|
const PROFILE_FIELDS = [
|
|
|
|
'name',
|
|
|
|
'email',
|
|
|
|
'username',
|
|
|
|
'title',
|
|
|
|
'date_of_birth',
|
|
|
|
'muted_usernames',
|
|
|
|
'theme_key',
|
|
|
|
'locale',
|
|
|
|
'bio_raw',
|
|
|
|
'location',
|
|
|
|
'website',
|
|
|
|
'profile_background',
|
|
|
|
'card_background'
|
|
|
|
];
|
2017-10-13 15:02:34 +02:00
|
|
|
|
2017-09-23 04:34:07 +02:00
|
|
|
export default Ember.Component.extend({
|
2017-10-06 04:59:02 +02:00
|
|
|
classNames: 'wizard-custom-action',
|
2017-10-22 05:37:58 +02:00
|
|
|
types: ACTION_TYPES,
|
2017-10-17 09:18:53 +02:00
|
|
|
profileFields: PROFILE_FIELDS,
|
2017-10-05 02:36:46 +02:00
|
|
|
createTopic: Ember.computed.equal('action.type', 'create_topic'),
|
|
|
|
updateProfile: Ember.computed.equal('action.type', 'update_profile'),
|
2017-10-13 15:02:34 +02:00
|
|
|
sendMessage: Ember.computed.equal('action.type', 'send_message'),
|
2017-10-17 15:17:53 +02:00
|
|
|
disableId: Ember.computed.not('action.isNew'),
|
2017-10-17 09:18:53 +02:00
|
|
|
|
2017-10-30 07:24:51 +01:00
|
|
|
@computed('currentStepId', 'wizard.save_submissions')
|
|
|
|
availableFields(currentStepId, saveSubmissions) {
|
|
|
|
const allSteps = this.get('wizard.steps');
|
|
|
|
let steps = allSteps;
|
2017-10-17 09:18:53 +02:00
|
|
|
let fields = [];
|
2017-10-30 07:24:51 +01:00
|
|
|
|
|
|
|
if (!saveSubmissions) {
|
|
|
|
steps = [allSteps.findBy('id', currentStepId)];
|
|
|
|
}
|
|
|
|
|
2017-10-17 09:18:53 +02:00
|
|
|
steps.forEach((s) => {
|
2017-10-30 07:24:51 +01:00
|
|
|
if (s.fields && s.fields.length > 0) {
|
|
|
|
let stepFields = s.fields.map((f) => {
|
|
|
|
return Ember.Object.create({
|
|
|
|
id: f.id,
|
|
|
|
label: `${f.id} (${s.id})`
|
|
|
|
});
|
2017-10-17 15:17:53 +02:00
|
|
|
});
|
2017-10-30 07:24:51 +01:00
|
|
|
fields.push(...stepFields);
|
|
|
|
}
|
2017-10-17 09:18:53 +02:00
|
|
|
});
|
2017-10-30 07:24:51 +01:00
|
|
|
|
2017-10-17 09:18:53 +02:00
|
|
|
return fields;
|
2017-10-13 15:02:34 +02:00
|
|
|
}
|
2017-09-23 04:34:07 +02:00
|
|
|
});
|