import Component from "@glimmer/component"; import { tracked } from "@glimmer/tracking"; import { fn } from "@ember/helper"; import { on } from "@ember/modifier"; import { action } from "@ember/object"; import { service } from "@ember/service"; import { htmlSafe } from "@ember/template"; import { not } from "truth-helpers"; import DButton from "discourse/components/d-button"; import DToggleSwitch from "discourse/components/d-toggle-switch"; import DropdownMenu from "discourse/components/dropdown-menu"; import concatClass from "discourse/helpers/concat-class"; import { ajax } from "discourse/lib/ajax"; import { popupAjaxError } from "discourse/lib/ajax-error"; import { SYSTEM_FLAG_IDS } from "discourse/lib/constants"; import i18n from "discourse-common/helpers/i18n"; import DMenu from "float-kit/components/d-menu"; export default class AdminFlagItem extends Component { @service dialog; @service router; @tracked enabled = this.args.flag.enabled; @tracked isSaving = false; get canMove() { return this.args.flag.id !== SYSTEM_FLAG_IDS.notify_user; } get canEdit() { return ( !Object.values(SYSTEM_FLAG_IDS).includes(this.args.flag.id) && !this.args.flag.is_used ); } get editTitle() { return this.canEdit ? "admin.config_areas.flags.form.edit_flag" : "admin.config_areas.flags.form.non_editable"; } get deleteTitle() { return this.canEdit ? "admin.config_areas.flags.form.edit_flag" : "admin.config_areas.flags.form.non_editable"; } @action toggleFlagEnabled(flag) { this.enabled = !this.enabled; this.isSaving = true; return ajax(`/admin/config/flags/${flag.id}/toggle`, { type: "PUT", }) .then(() => { this.args.flag.enabled = this.enabled; }) .catch((error) => { this.enabled = !this.enabled; return popupAjaxError(error); }) .finally(() => { this.isSaving = false; }); } @action onRegisterApi(api) { this.dMenu = api; } @action moveUp() { this.isSaving = true; this.args.moveFlagCallback(this.args.flag, "up").finally(() => { this.isSaving = false; this.dMenu.close(); }); } @action moveDown() { this.isSaving = true; this.args.moveFlagCallback(this.args.flag, "down").finally(() => { this.isSaving = false; this.dMenu.close(); }); } @action edit() { this.router.transitionTo("adminConfig.flags.edit", this.args.flag); } @action delete() { this.isSaving = true; this.dialog.yesNoConfirm({ message: i18n("admin.config_areas.flags.delete_confirm", { name: this.args.flag.name, }), didConfirm: () => { this.args.deleteFlagCallback(this.args.flag).finally(() => { this.isSaving = false; }); }, didCancel: () => { this.isSaving = false; }, }); this.dMenu.close(); } }