mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:08:44 +08:00
c34f8b65cb
As of #23867 this is now a real package, so updating the imports to use the real package name, rather than relying on the alias. The name change in the package name is because `I18n` is not a valid name as NPM packages must be all lowercase. This commit also introduces an eslint rule to prevent importing from the old I18n path. For themes/plugins, the old 'i18n' name remains functional.
41 lines
1.2 KiB
JavaScript
41 lines
1.2 KiB
JavaScript
import { ajax } from "discourse/lib/ajax";
|
|
import Badge from "discourse/models/badge";
|
|
import BadgeGrouping from "discourse/models/badge-grouping";
|
|
import DiscourseRoute from "discourse/routes/discourse";
|
|
import I18n from "discourse-i18n";
|
|
|
|
export default class AdminBadgesRoute extends DiscourseRoute {
|
|
_json = null;
|
|
|
|
async model() {
|
|
let json = await ajax("/admin/badges.json");
|
|
this._json = json;
|
|
return Badge.createFromJson(json);
|
|
}
|
|
|
|
setupController(controller, model) {
|
|
const json = this._json;
|
|
const badgeTriggers = [];
|
|
const badgeGroupings = [];
|
|
|
|
Object.keys(json.admin_badges.triggers).forEach((k) => {
|
|
const id = json.admin_badges.triggers[k];
|
|
badgeTriggers.push({
|
|
id,
|
|
name: I18n.t("admin.badges.trigger_type." + k),
|
|
});
|
|
});
|
|
|
|
json.badge_groupings.forEach(function (badgeGroupingJson) {
|
|
badgeGroupings.push(BadgeGrouping.create(badgeGroupingJson));
|
|
});
|
|
|
|
controller.badgeGroupings = badgeGroupings;
|
|
controller.badgeTypes = json.badge_types;
|
|
controller.protectedSystemFields =
|
|
json.admin_badges.protected_system_fields;
|
|
controller.badgeTriggers = badgeTriggers;
|
|
controller.model = model;
|
|
}
|
|
}
|