UX: show correct message when creating topics is disabled by a tag (#30328)

This commit is contained in:
Kris
2024-12-17 15:17:24 -05:00
committed by GitHub
parent 8f26ae7b7d
commit 284fe89165
3 changed files with 10 additions and 4 deletions

View File

@@ -12,10 +12,7 @@
</:button>
<:tooltip>
{{#if @disabled}}
<DTooltip
@icon="circle-info"
@content={{i18n "topic.create_disabled_category"}}
/>
<DTooltip @icon="circle-info" @content={{i18n this.disallowedReason}} />
{{/if}}
</:tooltip>
</DButtonTooltip>

View File

@@ -5,4 +5,12 @@ import { tagName } from "@ember-decorators/component";
export default class CreateTopicButton extends Component {
label = "topic.create";
btnClass = "btn-default";
get disallowedReason() {
if (this.canCreateTopicOnTag === false) {
return "topic.create_disabled_tag";
} else if (this.disabled) {
return "topic.create_disabled_category";
}
}
}