1
0
Fork 0
discourse-custom-wizard-unl.../assets/javascripts/discourse/components/wizard-message.js.es6

32 Zeilen
891 B
Text

2020-04-20 13:40:32 +02:00
import { default as discourseComputed } from 'discourse-common/utils/decorators';
import { not, notEmpty } from "@ember/object/computed";
2020-04-20 13:40:32 +02:00
import Component from "@ember/component";
2020-05-28 05:06:06 +02:00
import I18n from "I18n";
2020-04-20 13:40:32 +02:00
const icons = {
error: 'times-circle',
success: 'check-circle',
info: 'info-circle'
}
2020-04-20 13:40:32 +02:00
export default Component.extend({
classNameBindings: [':wizard-message', 'type', 'loading'],
showDocumentation: not('loading'),
showIcon: not('loading'),
hasItems: notEmpty('items'),
@discourseComputed('type')
icon(type) {
return icons[type] || 'info-circle';
},
2020-04-20 13:40:32 +02:00
@discourseComputed('key', 'component', 'opts')
message(key, component, opts) {
return I18n.t(`admin.wizard.message.${component}.${key}`, opts || {});
2020-04-20 13:40:32 +02:00
},
@discourseComputed('component')
documentation(component) {
return I18n.t(`admin.wizard.message.${component}.documentation`);
}
})