mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-01 01:59:56 +00:00
More moderation history (#2649)
* Updating translations. * Adding a link to view all a user's moderation history from an item. - Also making moderation history strings more detailed. * Fix. * Adding admin view moderation history to profile page. * Adding admin view moderation history to profile page.
This commit is contained in:
parent
bee4395706
commit
999b083545
5 changed files with 80 additions and 43 deletions
|
@ -1 +1 @@
|
|||
Subproject commit 088a27703ffa65e069dfbf341ee9bd44ec4c45c5
|
||||
Subproject commit 1f4e378f2e18d843aec1e421b99a69a76ce633b7
|
|
@ -159,6 +159,26 @@ export default class ContentActionDropdown extends Component<
|
|||
(amMod(community.id) || (amAdmin() && community.local)) &&
|
||||
!creator_banned_from_community;
|
||||
|
||||
const modHistoryUserTranslation = I18NextService.i18n.t(
|
||||
"user_moderation_history",
|
||||
{ user: creator.name },
|
||||
);
|
||||
|
||||
// The link and translation string for the item
|
||||
const { modHistoryItemLink, modHistoryItemTranslation } =
|
||||
type === "post"
|
||||
? {
|
||||
modHistoryItemLink: `/modlog?postId=${id}`,
|
||||
modHistoryItemTranslation: I18NextService.i18n.t(
|
||||
"post_moderation_history",
|
||||
),
|
||||
}
|
||||
: {
|
||||
modHistoryItemLink: `/modlog?commentId=${id}`,
|
||||
modHistoryItemTranslation: I18NextService.i18n.t(
|
||||
"comment_moderation_history",
|
||||
),
|
||||
};
|
||||
return (
|
||||
<>
|
||||
{type === "comment" && (
|
||||
|
@ -349,15 +369,23 @@ export default class ContentActionDropdown extends Component<
|
|||
<li>
|
||||
<Link
|
||||
className="btn btn-link btn-sm d-flex align-items-center rounded-0 dropdown-item"
|
||||
to={`/modlog?${type === "post" ? "postId" : "commentId"}=${id}`}
|
||||
title={I18NextService.i18n.t("moderation_history")}
|
||||
aria-label={I18NextService.i18n.t("moderation_history")}
|
||||
data-tippy-content={I18NextService.i18n.t(
|
||||
"moderation_history",
|
||||
)}
|
||||
to={`/modlog?userId=${creator.id}`}
|
||||
title={modHistoryUserTranslation}
|
||||
aria-label={modHistoryUserTranslation}
|
||||
data-tippy-content={modHistoryUserTranslation}
|
||||
>
|
||||
<Icon icon="history" inline classes="me-2" />
|
||||
{I18NextService.i18n.t("moderation_history")}
|
||||
{modHistoryUserTranslation}
|
||||
</Link>
|
||||
<Link
|
||||
className="btn btn-link btn-sm d-flex align-items-center rounded-0 dropdown-item"
|
||||
to={modHistoryItemLink}
|
||||
title={modHistoryItemTranslation}
|
||||
aria-label={modHistoryItemTranslation}
|
||||
data-tippy-content={modHistoryItemTranslation}
|
||||
>
|
||||
<Icon icon="history" inline classes="me-2" />
|
||||
{modHistoryItemTranslation}
|
||||
</Link>
|
||||
</li>
|
||||
{(this.canMod || this.canAdmin) && (
|
||||
|
|
|
@ -76,8 +76,6 @@ export class MarkdownTextArea extends Component<
|
|||
private id = `markdown-textarea-${randomStr()}`;
|
||||
private formId = `markdown-form-${randomStr()}`;
|
||||
|
||||
private tribute: any;
|
||||
|
||||
state: MarkdownTextAreaState = {
|
||||
content: this.props.initialContent,
|
||||
languageId: this.props.initialLanguageId,
|
||||
|
@ -91,17 +89,15 @@ export class MarkdownTextArea extends Component<
|
|||
|
||||
this.handleLanguageChange = this.handleLanguageChange.bind(this);
|
||||
this.handleEmoji = this.handleEmoji.bind(this);
|
||||
}
|
||||
|
||||
async componentDidMount() {
|
||||
if (isBrowser()) {
|
||||
this.tribute = setupTribute();
|
||||
}
|
||||
}
|
||||
|
||||
componentDidMount() {
|
||||
const tribute = await setupTribute();
|
||||
const textarea: any = document.getElementById(this.id);
|
||||
if (textarea) {
|
||||
autosize(textarea);
|
||||
this.tribute.attach(textarea);
|
||||
tribute.attach(textarea);
|
||||
textarea.addEventListener("tribute-replaced", () => {
|
||||
this.setState({ content: textarea.value });
|
||||
autosize.update(textarea);
|
||||
|
@ -114,6 +110,7 @@ export class MarkdownTextArea extends Component<
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
render() {
|
||||
const languageId = this.state.languageId;
|
||||
|
|
|
@ -20,7 +20,7 @@ import {
|
|||
resourcesSettled,
|
||||
bareRoutePush,
|
||||
} from "@utils/helpers";
|
||||
import { canMod } from "@utils/roles";
|
||||
import { amAdmin, canMod } from "@utils/roles";
|
||||
import type { QueryParams } from "@utils/types";
|
||||
import { RouteDataResponse } from "@utils/types";
|
||||
import classNames from "classnames";
|
||||
|
@ -671,15 +671,27 @@ export class Profile extends Component<ProfileRouteProps, ProfileState> {
|
|||
<div className="flex-grow-1 unselectable pointer mx-2"></div>
|
||||
{!this.amCurrentUser && UserService.Instance.myUserInfo && (
|
||||
<>
|
||||
{amAdmin() && (
|
||||
<Link
|
||||
className={
|
||||
"d-flex align-self-start btn btn-secondary me-2"
|
||||
}
|
||||
to={`/modlog?userId=${pv.person.id}`}
|
||||
>
|
||||
{I18NextService.i18n.t("user_moderation_history", {
|
||||
user: pv.person.name,
|
||||
})}
|
||||
</Link>
|
||||
)}
|
||||
{pv.person.matrix_user_id && (
|
||||
<a
|
||||
className={`d-flex align-self-start btn btn-secondary me-2 ${
|
||||
!pv.person.matrix_user_id && "invisible"
|
||||
}`}
|
||||
className={`d-flex align-self-start btn btn-secondary me-2`}
|
||||
rel={relTags}
|
||||
href={`https://matrix.to/#/${pv.person.matrix_user_id}`}
|
||||
>
|
||||
{I18NextService.i18n.t("send_secure_message")}
|
||||
</a>
|
||||
)}
|
||||
<Link
|
||||
className={
|
||||
"d-flex align-self-start btn btn-secondary me-2"
|
||||
|
|
|
@ -17,9 +17,8 @@ import markdown_it_highlightjs from "markdown-it-highlightjs/core";
|
|||
import { Renderer, Token } from "markdown-it";
|
||||
import { instanceLinkRegex, relTags } from "./config";
|
||||
import { lazyHighlightjs } from "./lazy-highlightjs";
|
||||
import { isBrowser } from "@utils/browser";
|
||||
|
||||
export let Tribute: any;
|
||||
let Tribute: any;
|
||||
|
||||
export let md: MarkdownIt = new MarkdownIt();
|
||||
|
||||
|
@ -40,10 +39,6 @@ export let customEmojisLookup: Map<string, CustomEmojiView> = new Map<
|
|||
CustomEmojiView
|
||||
>();
|
||||
|
||||
if (isBrowser()) {
|
||||
Tribute = await import("tributejs");
|
||||
}
|
||||
|
||||
export function mdToHtml(text: string, rerender: () => void) {
|
||||
return { __html: lazyHighlightjs.render(md, text, rerender) };
|
||||
}
|
||||
|
@ -340,7 +335,12 @@ export function getEmojiMart(
|
|||
return new Picker(pickerOptions);
|
||||
}
|
||||
|
||||
export function setupTribute() {
|
||||
export async function setupTribute() {
|
||||
if (Tribute === null) {
|
||||
console.debug("Tribute is null, importing...");
|
||||
Tribute = (await import("tributejs")).default;
|
||||
}
|
||||
|
||||
return new Tribute({
|
||||
noMatchTemplate: function () {
|
||||
return "";
|
||||
|
|
Loading…
Reference in a new issue