0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-11-10 04:12:53 +01:00
discourse-custom-wizard/assets/javascripts/discourse/components/wizard-custom-action.js.es6

59 Zeilen
1,9 KiB
Text

2020-04-08 04:52:07 +02:00
import { default as discourseComputed, observes } from 'discourse-common/utils/decorators';
import { equal, empty, or } from "@ember/object/computed";
import { actionTypes, generateName, selectKitContent } from '../lib/wizard';
2020-04-05 03:37:09 +02:00
import Component from "@ember/component";
2017-10-13 15:02:34 +02:00
2020-04-05 03:37:09 +02:00
export default Component.extend({
2017-10-06 04:59:02 +02:00
classNames: 'wizard-custom-action',
2020-04-08 04:52:07 +02:00
actionTypes: actionTypes.map(t => ({ id: t, name: generateName(t) })),
2020-04-01 12:58:30 +02:00
createTopic: equal('action.type', 'create_topic'),
updateProfile: equal('action.type', 'update_profile'),
sendMessage: equal('action.type', 'send_message'),
2020-04-08 04:52:07 +02:00
openComposer: equal('action.type', 'open_composer'),
2020-04-01 12:58:30 +02:00
sendToApi: equal('action.type', 'send_to_api'),
addToGroup: equal('action.type', 'add_to_group'),
routeTo: equal('action.type', 'route_to'),
2020-04-08 04:52:07 +02:00
apiEmpty: empty('action.api'),
2020-04-02 10:21:03 +02:00
groupPropertyTypes: selectKitContent(['id', 'name']),
2020-04-07 15:33:11 +02:00
hasAdvanced: or('hasCustomFields', 'routeTo'),
hasCustomFields: or('basicTopicFields', 'updateProfile'),
2020-04-08 04:52:07 +02:00
basicTopicFields: or('createTopic', 'sendMessage', 'openComposer'),
publicTopicFields: or('createTopic', 'openComposer'),
showSkipRedirect: or('createTopic', 'sendMessage'),
2020-04-02 07:21:57 +02:00
@observes('action.type')
2020-04-08 04:52:07 +02:00
setupDefaults() {
2020-04-06 03:54:16 +02:00
if (this.action.type) {
this.set('action.label', generateName(this.action.type));
};
2020-04-02 07:21:57 +02:00
},
2020-04-08 04:52:07 +02:00
@discourseComputed('wizard.steps')
runAfterContent(steps) {
let content = steps.map(s => ({ id: s.id, name: s.label }));
content.unshift({
id: 'wizard_completion',
name: I18n.t('admin.wizard.action.run_after.wizard_completion')
});
return content;
2019-06-03 09:09:24 +02:00
},
2020-04-01 12:58:30 +02:00
@discourseComputed('wizard.apis')
2019-06-03 09:09:24 +02:00
availableApis(apis) {
return apis.map(a => {
return {
id: a.name,
name: a.title
};
});
},
2020-04-01 12:58:30 +02:00
@discourseComputed('wizard.apis', 'action.api')
2019-06-03 09:09:24 +02:00
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
});