2024-09-10 13:16:16 +08:00
|
|
|
import Component from "@glimmer/component";
|
2024-08-20 07:59:43 +08:00
|
|
|
import { hash } from "@ember/helper";
|
2024-08-21 08:42:00 +08:00
|
|
|
import { htmlSafe } from "@ember/template";
|
2024-08-20 07:59:43 +08:00
|
|
|
import i18n from "discourse-common/helpers/i18n";
|
|
|
|
import {
|
|
|
|
DangerButton,
|
|
|
|
DefaultButton,
|
|
|
|
PrimaryButton,
|
|
|
|
} from "admin/components/admin-page-action-button";
|
|
|
|
|
2024-09-10 13:16:16 +08:00
|
|
|
export default class AdminPageSubheader extends Component {
|
|
|
|
get title() {
|
|
|
|
if (this.args.titleLabelTranslated) {
|
|
|
|
return this.args.titleLabelTranslated;
|
|
|
|
} else if (this.args.titleLabel) {
|
|
|
|
return i18n(this.args.titleLabel);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
get description() {
|
|
|
|
if (this.args.descriptionLabelTranslated) {
|
|
|
|
return this.args.descriptionLabelTranslated;
|
|
|
|
} else if (this.args.descriptionLabel) {
|
|
|
|
return i18n(this.args.descriptionLabel);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div class="admin-page-subheader">
|
|
|
|
<div class="admin-page-subheader__title-row">
|
|
|
|
<h3 class="admin-page-subheader__title">{{this.title}}</h3>
|
|
|
|
<div class="admin-page-subheader__actions">
|
|
|
|
{{yield
|
|
|
|
(hash
|
|
|
|
Primary=PrimaryButton Default=DefaultButton Danger=DangerButton
|
|
|
|
)
|
|
|
|
to="actions"
|
|
|
|
}}
|
|
|
|
</div>
|
2024-08-20 07:59:43 +08:00
|
|
|
</div>
|
2024-08-21 08:42:00 +08:00
|
|
|
|
2024-09-10 13:16:16 +08:00
|
|
|
{{#if this.description}}
|
|
|
|
<p class="admin-page-subheader__description">
|
|
|
|
{{htmlSafe this.description}}
|
2024-08-21 08:42:00 +08:00
|
|
|
{{#if @learnMoreUrl}}
|
2024-09-11 11:27:58 +08:00
|
|
|
<span class="admin-page-subheader__learn-more">
|
|
|
|
{{htmlSafe
|
|
|
|
(i18n "learn_more_with_link" url=@learnMoreUrl)
|
|
|
|
}}</span>
|
2024-08-21 08:42:00 +08:00
|
|
|
{{/if}}
|
|
|
|
</p>
|
|
|
|
{{/if}}
|
2024-08-20 07:59:43 +08:00
|
|
|
</div>
|
2024-09-10 13:16:16 +08:00
|
|
|
</template>
|
|
|
|
}
|