discourse/app/assets/javascripts/admin/addon/helpers/disposition-icon.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
621 B
JavaScript
Raw Normal View History

import Helper from "@ember/component/helper";
2017-09-11 16:44:20 -04:00
import { iconHTML } from "discourse-common/lib/icon-library";
export default Helper.extend({
2017-09-11 16:44:20 -04:00
compute([disposition]) {
if (!disposition) {
return null;
}
let icon;
let title = "admin.flags.dispositions." + disposition;
switch (disposition) {
case "deferred": {
2019-01-22 14:42:00 -05:00
icon = "external-link-alt";
2017-09-11 16:44:20 -04:00
break;
}
case "agreed": {
icon = "thumbs-o-up";
break;
}
case "disagreed": {
icon = "thumbs-o-down";
break;
}
}
return iconHTML(icon, { title }).htmlSafe();
},
});