2020-04-20 13:40:32 +02:00
|
|
|
import { default as discourseComputed } from 'discourse-common/utils/decorators';
|
2020-11-09 04:32:36 +01:00
|
|
|
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
|
|
|
|
2020-11-09 04:32:36 +01:00
|
|
|
const icons = {
|
|
|
|
error: 'times-circle',
|
|
|
|
success: 'check-circle',
|
|
|
|
info: 'info-circle'
|
|
|
|
}
|
|
|
|
|
2020-04-20 13:40:32 +02:00
|
|
|
export default Component.extend({
|
2020-11-09 04:32:36 +01:00
|
|
|
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
|
|
|
|
2020-11-09 04:32:36 +01: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`);
|
|
|
|
}
|
|
|
|
})
|