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/discourse/components/wizard-custom-action.js.es6

78 Zeilen
2,3 KiB
Text

import { default as computed, observes } 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' },
2019-06-03 09:09:24 +02:00
{ id: 'send_message', name: 'Send Message' },
2019-07-12 03:06:39 +02:00
{ id: 'send_to_api', name: 'Send to API' },
{ id: 'add_to_group', name: 'Add to Group' },
{ id: 'route_to', name: 'Route To' }
2017-10-22 05:37:58 +02:00
];
2017-10-17 09:18:53 +02:00
const PROFILE_FIELDS = [
'name',
'date_of_birth',
2017-11-24 05:32:15 +01:00
'title',
2017-10-17 09:18:53 +02:00
'locale',
'location',
'website',
2017-11-24 05:32:15 +01:00
'bio_raw',
2017-10-17 09:18:53 +02:00
'profile_background',
2017-11-24 05:32:15 +01:00
'card_background',
2018-07-16 06:28:24 +02:00
'theme_id'
2017-10-17 09:18:53 +02:00
];
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'),
2019-06-03 09:09:24 +02:00
sendToApi: Ember.computed.equal('action.type', 'send_to_api'),
apiEmpty: Ember.computed.empty('action.api'),
2019-07-01 04:31:50 +02:00
addToGroup: Ember.computed.equal('action.type', 'add_to_group'),
routeTo: Ember.computed.equal('action.type', 'route_to'),
2017-10-17 15:17:53 +02:00
disableId: Ember.computed.not('action.isNew'),
2017-10-17 09:18:53 +02:00
2017-11-24 05:32:15 +01:00
@computed('availableFields')
builderWizardFields(fields) {
return fields.map((f) => ` w{${f.id}}`);
},
@computed()
builderUserFields() {
2018-07-16 06:28:24 +02:00
const noTheme = PROFILE_FIELDS.filter((f) => f !== 'theme_id');
const fields = noTheme.concat(['email', 'username']);
2017-11-24 05:32:15 +01:00
return fields.map((f) => ` u{${f}}`);
},
@observes('action.custom_category_wizard_field')
toggleCustomCategoryUserField() {
const wizard = this.get('action.custom_category_wizard_field');
if (wizard) this.set('action.custom_category_user_field', false);
},
@observes('action.custom_category_user_field')
toggleCustomCategoryWizardField() {
const user = this.get('action.custom_category_user_field');
if (user) this.set('action.custom_category_wizard_field', false);
2019-06-03 09:09:24 +02:00
},
@computed('wizard.apis')
availableApis(apis) {
return apis.map(a => {
return {
id: a.name,
name: a.title
};
});
},
@computed('wizard.apis', 'action.api')
availableEndpoints(apis, api) {
if (!api) return [];
return apis.find(a => a.name === api).endpoints;
2017-10-13 15:02:34 +02:00
}
2017-09-23 04:34:07 +02:00
});