2023-06-14 12:20:40 +00:00
|
|
|
import { Component, InfernoNode, linkEvent } from "inferno";
|
2021-12-30 15:26:45 +00:00
|
|
|
import { T } from "inferno-i18next-dess";
|
|
|
|
import {
|
|
|
|
ApproveRegistrationApplication,
|
|
|
|
RegistrationApplicationView,
|
|
|
|
} from "lemmy-js-client";
|
|
|
|
import { i18n } from "../../i18next";
|
2023-06-14 12:20:40 +00:00
|
|
|
import { mdToHtml, myAuthRequired } from "../../utils";
|
2021-12-30 15:26:45 +00:00
|
|
|
import { PersonListing } from "../person/person-listing";
|
2023-06-14 12:20:40 +00:00
|
|
|
import { Spinner } from "./icon";
|
2021-12-30 15:26:45 +00:00
|
|
|
import { MarkdownTextArea } from "./markdown-textarea";
|
|
|
|
import { MomentTime } from "./moment-time";
|
|
|
|
|
|
|
|
interface RegistrationApplicationProps {
|
|
|
|
application: RegistrationApplicationView;
|
2023-06-14 12:20:40 +00:00
|
|
|
onApproveApplication(form: ApproveRegistrationApplication): void;
|
2021-12-30 15:26:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
interface RegistrationApplicationState {
|
2023-01-04 16:56:24 +00:00
|
|
|
denyReason?: string;
|
2021-12-30 15:26:45 +00:00
|
|
|
denyExpanded: boolean;
|
2023-06-14 12:20:40 +00:00
|
|
|
approveLoading: boolean;
|
|
|
|
denyLoading: boolean;
|
2021-12-30 15:26:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export class RegistrationApplication extends Component<
|
|
|
|
RegistrationApplicationProps,
|
|
|
|
RegistrationApplicationState
|
|
|
|
> {
|
2023-01-04 16:56:24 +00:00
|
|
|
state: RegistrationApplicationState = {
|
2021-12-30 15:26:45 +00:00
|
|
|
denyReason: this.props.application.registration_application.deny_reason,
|
|
|
|
denyExpanded: false,
|
2023-06-14 12:20:40 +00:00
|
|
|
approveLoading: false,
|
|
|
|
denyLoading: false,
|
2021-12-30 15:26:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
constructor(props: any, context: any) {
|
|
|
|
super(props, context);
|
|
|
|
this.handleDenyReasonChange = this.handleDenyReasonChange.bind(this);
|
|
|
|
}
|
2023-06-14 12:20:40 +00:00
|
|
|
componentWillReceiveProps(
|
|
|
|
nextProps: Readonly<
|
|
|
|
{ children?: InfernoNode } & RegistrationApplicationProps
|
|
|
|
>
|
|
|
|
): void {
|
|
|
|
if (this.props != nextProps) {
|
|
|
|
this.setState({
|
|
|
|
denyExpanded: false,
|
|
|
|
approveLoading: false,
|
|
|
|
denyLoading: false,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2021-12-30 15:26:45 +00:00
|
|
|
|
|
|
|
render() {
|
2023-06-05 21:31:12 +00:00
|
|
|
const a = this.props.application;
|
|
|
|
const ra = this.props.application.registration_application;
|
|
|
|
const accepted = a.creator_local_user.accepted_application;
|
2021-12-30 15:26:45 +00:00
|
|
|
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<div>
|
|
|
|
{i18n.t("applicant")}: <PersonListing person={a.creator} />
|
|
|
|
</div>
|
|
|
|
<div>
|
2023-01-04 16:56:24 +00:00
|
|
|
{i18n.t("created")}: <MomentTime showAgo published={ra.published} />
|
2021-12-30 15:26:45 +00:00
|
|
|
</div>
|
|
|
|
<div>{i18n.t("answer")}:</div>
|
|
|
|
<div className="md-div" dangerouslySetInnerHTML={mdToHtml(ra.answer)} />
|
|
|
|
|
2023-01-04 16:56:24 +00:00
|
|
|
{a.admin && (
|
|
|
|
<div>
|
|
|
|
{accepted ? (
|
|
|
|
<T i18nKey="approved_by">
|
|
|
|
#
|
|
|
|
<PersonListing person={a.admin} />
|
|
|
|
</T>
|
|
|
|
) : (
|
|
|
|
<div>
|
|
|
|
<T i18nKey="denied_by">
|
2021-12-30 15:26:45 +00:00
|
|
|
#
|
2023-01-04 16:56:24 +00:00
|
|
|
<PersonListing person={a.admin} />
|
2021-12-30 15:26:45 +00:00
|
|
|
</T>
|
2023-01-04 16:56:24 +00:00
|
|
|
{ra.deny_reason && (
|
|
|
|
<div>
|
|
|
|
{i18n.t("deny_reason")}:{" "}
|
|
|
|
<div
|
|
|
|
className="md-div d-inline-flex"
|
|
|
|
dangerouslySetInnerHTML={mdToHtml(ra.deny_reason)}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
)}
|
2021-12-30 15:26:45 +00:00
|
|
|
|
|
|
|
{this.state.denyExpanded && (
|
2022-09-22 15:03:35 +00:00
|
|
|
<div className="form-group row">
|
|
|
|
<label className="col-sm-2 col-form-label">
|
2021-12-30 15:26:45 +00:00
|
|
|
{i18n.t("deny_reason")}
|
|
|
|
</label>
|
2022-09-22 15:03:35 +00:00
|
|
|
<div className="col-sm-10">
|
2021-12-30 15:26:45 +00:00
|
|
|
<MarkdownTextArea
|
|
|
|
initialContent={this.state.denyReason}
|
|
|
|
onContentChange={this.handleDenyReasonChange}
|
|
|
|
hideNavigationWarnings
|
2022-09-22 15:14:58 +00:00
|
|
|
allLanguages={[]}
|
2022-12-19 15:57:29 +00:00
|
|
|
siteLanguages={[]}
|
2021-12-30 15:26:45 +00:00
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)}
|
2023-01-04 16:56:24 +00:00
|
|
|
{(!ra.admin_id || (ra.admin_id && !accepted)) && (
|
2021-12-30 15:26:45 +00:00
|
|
|
<button
|
|
|
|
className="btn btn-secondary mr-2 my-2"
|
|
|
|
onClick={linkEvent(this, this.handleApprove)}
|
|
|
|
aria-label={i18n.t("approve")}
|
|
|
|
>
|
2023-06-14 12:20:40 +00:00
|
|
|
{this.state.approveLoading ? <Spinner /> : i18n.t("approve")}
|
2021-12-30 15:26:45 +00:00
|
|
|
</button>
|
|
|
|
)}
|
2023-01-04 16:56:24 +00:00
|
|
|
{(!ra.admin_id || (ra.admin_id && accepted)) && (
|
2021-12-30 15:26:45 +00:00
|
|
|
<button
|
|
|
|
className="btn btn-secondary mr-2"
|
|
|
|
onClick={linkEvent(this, this.handleDeny)}
|
|
|
|
aria-label={i18n.t("deny")}
|
|
|
|
>
|
2023-06-14 12:20:40 +00:00
|
|
|
{this.state.denyLoading ? <Spinner /> : i18n.t("deny")}
|
2021-12-30 15:26:45 +00:00
|
|
|
</button>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleApprove(i: RegistrationApplication) {
|
2023-06-14 12:20:40 +00:00
|
|
|
i.setState({ denyExpanded: false, approveLoading: true });
|
|
|
|
i.props.onApproveApplication({
|
|
|
|
id: i.props.application.registration_application.id,
|
|
|
|
approve: true,
|
|
|
|
auth: myAuthRequired(),
|
|
|
|
});
|
2023-01-04 16:56:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
handleDeny(i: RegistrationApplication) {
|
|
|
|
if (i.state.denyExpanded) {
|
2023-06-14 12:20:40 +00:00
|
|
|
i.setState({ denyExpanded: false, denyLoading: true });
|
|
|
|
i.props.onApproveApplication({
|
|
|
|
id: i.props.application.registration_application.id,
|
|
|
|
approve: false,
|
|
|
|
deny_reason: i.state.denyReason,
|
|
|
|
auth: myAuthRequired(),
|
|
|
|
});
|
2021-12-30 15:26:45 +00:00
|
|
|
} else {
|
|
|
|
i.setState({ denyExpanded: true });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
handleDenyReasonChange(val: string) {
|
2023-01-04 16:56:24 +00:00
|
|
|
this.setState({ denyReason: val });
|
2021-12-30 15:26:45 +00:00
|
|
|
}
|
|
|
|
}
|