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

112 Zeilen
3,2 KiB
Text

import { default as discourseComputed } from "discourse-common/utils/decorators";
2021-09-03 10:46:32 +02:00
import wizardSchema from "discourse/plugins/discourse-custom-wizard/discourse/lib/wizard-schema";
2021-09-07 14:06:13 +02:00
import { empty, equal, or } from "@ember/object/computed";
2021-04-12 07:44:47 +02:00
import { notificationLevels, selectKitContent } from "../lib/wizard";
2020-04-20 11:41:13 +02:00
import { computed } from "@ember/object";
import UndoChanges from "../mixins/undo-changes";
2020-04-05 03:37:09 +02:00
import Component from "@ember/component";
2020-05-28 05:06:06 +02:00
import I18n from "I18n";
2017-10-13 15:02:34 +02:00
2020-04-20 11:41:13 +02:00
export default Component.extend(UndoChanges, {
componentType: "action",
classNameBindings: [":wizard-custom-action", "visible"],
visible: computed("currentActionId", function () {
return this.action.id === this.currentActionId;
}),
createTopic: equal("action.type", "create_topic"),
updateProfile: equal("action.type", "update_profile"),
watchCategories: equal("action.type", "watch_categories"),
sendMessage: equal("action.type", "send_message"),
openComposer: equal("action.type", "open_composer"),
sendToApi: equal("action.type", "send_to_api"),
addToGroup: equal("action.type", "add_to_group"),
routeTo: equal("action.type", "route_to"),
createCategory: equal("action.type", "create_category"),
createGroup: equal("action.type", "create_group"),
apiEmpty: empty("action.api"),
groupPropertyTypes: selectKitContent(["id", "name"]),
hasCustomFields: or(
"basicTopicFields",
"updateProfile",
"createGroup",
"createCategory"
),
basicTopicFields: or("createTopic", "sendMessage", "openComposer"),
publicTopicFields: or("createTopic", "openComposer"),
showPostAdvanced: or("createTopic", "sendMessage"),
2021-04-12 07:44:47 +02:00
availableNotificationLevels: notificationLevels.map((type) => {
return {
id: type,
name: I18n.t(
`admin.wizard.action.watch_categories.notification_level.${type}`
),
};
}),
messageUrl: "https://thepavilion.io/t/2810",
@discourseComputed("action.type")
2020-04-20 13:40:32 +02:00
messageKey(type) {
let key = "type";
2020-04-20 13:40:32 +02:00
if (type) {
key = "edit";
2020-04-20 13:40:32 +02:00
}
return key;
},
@discourseComputed("action.type")
customFieldsContext(type) {
return `action.${type}`;
},
@discourseComputed("wizard.steps")
2020-04-08 04:52:07 +02:00
runAfterContent(steps) {
let content = steps.map(function (step) {
2020-04-08 09:59:54 +02:00
return {
id: step.id,
name: step.title || step.id,
2020-04-08 09:59:54 +02:00
};
});
2020-04-08 04:52:07 +02:00
content.unshift({
id: "wizard_completion",
name: I18n.t("admin.wizard.action.run_after.wizard_completion"),
2020-04-08 04:52:07 +02:00
});
2020-04-08 04:52:07 +02:00
return content;
2019-06-03 09:09:24 +02:00
},
@discourseComputed("apis")
2019-06-03 09:09:24 +02:00
availableApis(apis) {
return apis.map((a) => {
2019-06-03 09:09:24 +02:00
return {
id: a.name,
name: a.title,
2019-06-03 09:09:24 +02:00
};
});
},
@discourseComputed("apis", "action.api")
2019-06-03 09:09:24 +02:00
availableEndpoints(apis, api) {
2021-04-12 08:12:20 +02:00
if (!api) {
return [];
}
return apis.find((a) => a.name === api).endpoints;
},
2021-09-03 10:46:32 +02:00
2021-09-24 11:58:42 +02:00
@discourseComputed("subscribed")
actionTypes(subscribed) {
2021-09-03 10:46:32 +02:00
return Object.keys(wizardSchema.action.types).reduce((result, type) => {
2021-09-24 11:58:42 +02:00
let subscription = wizardSchema.action.subscriptionTypes.includes(type);
if (subscribed || !subscription) {
2021-09-03 10:46:32 +02:00
result.push({
id: type,
name: I18n.t(`admin.wizard.action.${type}.label`),
2021-09-24 11:58:42 +02:00
subscription,
2021-09-03 10:46:32 +02:00
});
}
return result;
}, []);
2021-09-07 14:13:01 +02:00
},
2017-09-23 04:34:07 +02:00
});