mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:42:07 +08:00
0496199090
<img width="510" alt="Screenshot 2023-08-25 at 8 19 38 AM" src="https://github.com/discourse/discourse/assets/50783505/9ebf467e-7b3b-49e2-91d9-43e37b838431">
54 lines
1.4 KiB
JavaScript
54 lines
1.4 KiB
JavaScript
import Component from "@glimmer/component";
|
|
import I18n from "I18n";
|
|
import { escapeExpression } from "discourse/lib/utilities";
|
|
|
|
export default class BadgePreview extends Component {
|
|
get processedSample() {
|
|
return this.args.model.badge.sample.map((grant) => {
|
|
let i18nKey = "admin.badges.preview.grant.with";
|
|
const i18nParams = { username: escapeExpression(grant.username) };
|
|
|
|
if (grant.post_id) {
|
|
i18nKey += "_post";
|
|
i18nParams.link = `<a href="/p/${grant.post_id}" data-auto-route="true">
|
|
${escapeExpression(grant.title)}
|
|
</a>`;
|
|
}
|
|
|
|
if (grant.granted_at) {
|
|
i18nKey += "_time";
|
|
i18nParams.time = escapeExpression(
|
|
moment(grant.granted_at).format(I18n.t("dates.long_with_year"))
|
|
);
|
|
}
|
|
|
|
return I18n.t(i18nKey, i18nParams);
|
|
});
|
|
}
|
|
|
|
get countWarning() {
|
|
if (this.args.model.badge.grant_count <= 10) {
|
|
return (
|
|
this.args.model.badge.sample.length !==
|
|
this.args.model.badge.grant_count
|
|
);
|
|
} else {
|
|
return this.args.model.badge.sample?.length !== 10;
|
|
}
|
|
}
|
|
|
|
get hasQueryPlan() {
|
|
return !!this.args.model.badge.query_plan;
|
|
}
|
|
|
|
get queryPlanHtml() {
|
|
let output = `<pre class="badge-query-plan">`;
|
|
this.args.model.badge.query_plan.forEach((linehash) => {
|
|
output += escapeExpression(linehash["QUERY PLAN"]);
|
|
output += "<br>";
|
|
});
|
|
output += "</pre>";
|
|
return output;
|
|
}
|
|
}
|