29 lines
684 B
JavaScript
Raw Normal View History

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