0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-11-09 20:02:54 +01:00

custom field input: further make generic, fix serializers dropdown

Dieser Commit ist enthalten in:
merefield 2021-11-02 08:58:15 +00:00
Ursprung a3d59caee8
Commit bd5edaffe9
2 geänderte Dateien mit 37 neuen und 41 gelöschten Zeilen

Datei anzeigen

@ -8,6 +8,22 @@ import wizardSchema, {
subscriptionLevel,
} from "discourse/plugins/discourse-custom-wizard/discourse/lib/wizard-schema";
const generateContent = function (kategory, subscription) {
let unsubscribedCustomFields = requiringAdditionalSubscription(
subscription, "custom_fields", kategory
);
return wizardSchema.custom_field[kategory].reduce((result, item) => {
let disabled = unsubscribedCustomFields.includes(item);
result.push({
id: item,
name: I18n.t(`admin.wizard.custom_field.${kategory}.${item}`),
subscription: subscriptionLevel(item, "custom_fields", kategory),
disabled,
});
return result;
}, []);
};
export default Component.extend({
tagName: "tr",
topicSerializers: ["topic_view", "topic_list_item"],
@ -25,49 +41,29 @@ export default Component.extend({
this.set("originalField", JSON.parse(JSON.stringify(this.field)));
},
// @discourseComputed("field.klass")
// serializerContent(klass) {
// const serializers = this.get(`${klass}Serializers`);
@discourseComputed("field.klass")
serializerContent(klass) {
const serializers = this.get(`${klass}Serializers`);
// if (serializers) {
// return generateContent(serializers, "serializers", this.subscribed);
// } else {
// return [];
// }
// },
if (serializers) {
return serializers.reduce((result, key) => {
result.push({
id: key,
name: I18n.t(`admin.wizard.custom_field.serializers.${key}`),
});
return result;
}, []);
}
},
@discourseComputed("subscription")
customFieldTypes(subscription) {
let unsubscribedCustomFields = requiringAdditionalSubscription(
subscription, "custom_fields", "types"
);
return wizardSchema.custom_field.types.reduce((result, type) => {
let disabled = unsubscribedCustomFields.includes(type);
result.push({
id: type,
name: I18n.t(`admin.wizard.custom_field.type.${type}`),
subscription: subscriptionLevel(type, "custom_fields", "types"),
disabled,
});
return result;
}, []);
return generateContent("type", this.subscription);
},
@discourseComputed("subscription")
customFieldKlasses(subscription) {
let unsubscribedCustomFields = requiringAdditionalSubscription(
subscription, "custom_fields", "klasses"
);
return wizardSchema.custom_field.klasses.reduce((result, klass) => {
let disabled = unsubscribedCustomFields.includes(klass);
result.push({
id: klass,
name: I18n.t(`admin.wizard.custom_field.klass.${klass}`),
subscription: subscriptionLevel(klass, "custom_fields", "klasses"),
disabled,
});
return result;
}, []);
return generateContent("klass", this.subscription);
},
@observes("field.klass")

Datei anzeigen

@ -198,24 +198,24 @@ const action = {
};
const custom_field = {
klasses: ["topic", "post", "group", "category"],
types: ["string", "boolean", "integer", "json"],
klass: ["topic", "post", "group", "category"],
type: ["string", "boolean", "integer", "json"],
};
const subscription_levels = {
standard: {
actions: ["send_message", "add_to_group", "watch_categories"],
custom_fields: {
klasses: [],
types: ["json"]
klass: [],
type: ["json"]
}
},
business: {
actions: ["create_category", "create_group", "send_to_api"],
custom_fields: {
klasses: ["group", "category"],
types: []
klass: ["group", "category"],
type: []
}
}
};