2022-06-21 21:42:29 +00:00
|
|
|
import { None, Option, Some } from "@sniptt/monads";
|
2021-12-30 15:26:45 +00:00
|
|
|
import { Component, linkEvent } from "inferno";
|
|
|
|
import { T } from "inferno-i18next-dess";
|
|
|
|
import {
|
|
|
|
ApproveRegistrationApplication,
|
|
|
|
RegistrationApplicationView,
|
|
|
|
} from "lemmy-js-client";
|
|
|
|
import { i18n } from "../../i18next";
|
|
|
|
import { WebSocketService } from "../../services";
|
2022-06-21 21:42:29 +00:00
|
|
|
import { auth, mdToHtml, wsClient } from "../../utils";
|
2021-12-30 15:26:45 +00:00
|
|
|
import { PersonListing } from "../person/person-listing";
|
|
|
|
import { MarkdownTextArea } from "./markdown-textarea";
|
|
|
|
import { MomentTime } from "./moment-time";
|
|
|
|
|
|
|
|
interface RegistrationApplicationProps {
|
|
|
|
application: RegistrationApplicationView;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface RegistrationApplicationState {
|
2022-06-21 21:42:29 +00:00
|
|
|
denyReason: Option<string>;
|
2021-12-30 15:26:45 +00:00
|
|
|
denyExpanded: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
export class RegistrationApplication extends Component<
|
|
|
|
RegistrationApplicationProps,
|
|
|
|
RegistrationApplicationState
|
|
|
|
> {
|
|
|
|
private emptyState: RegistrationApplicationState = {
|
|
|
|
denyReason: this.props.application.registration_application.deny_reason,
|
|
|
|
denyExpanded: false,
|
|
|
|
};
|
|
|
|
|
|
|
|
constructor(props: any, context: any) {
|
|
|
|
super(props, context);
|
|
|
|
|
|
|
|
this.state = this.emptyState;
|
|
|
|
this.handleDenyReasonChange = this.handleDenyReasonChange.bind(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
let a = this.props.application;
|
|
|
|
let ra = this.props.application.registration_application;
|
|
|
|
let accepted = a.creator_local_user.accepted_application;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<div>
|
|
|
|
{i18n.t("applicant")}: <PersonListing person={a.creator} />
|
|
|
|
</div>
|
|
|
|
<div>
|
2022-06-21 21:42:29 +00:00
|
|
|
{i18n.t("created")}:{" "}
|
|
|
|
<MomentTime showAgo published={ra.published} updated={None} />
|
2021-12-30 15:26:45 +00:00
|
|
|
</div>
|
|
|
|
<div>{i18n.t("answer")}:</div>
|
|
|
|
<div className="md-div" dangerouslySetInnerHTML={mdToHtml(ra.answer)} />
|
|
|
|
|
2022-06-21 21:42:29 +00:00
|
|
|
{a.admin.match({
|
|
|
|
some: admin => (
|
|
|
|
<div>
|
|
|
|
{accepted ? (
|
|
|
|
<T i18nKey="approved_by">
|
2021-12-30 15:26:45 +00:00
|
|
|
#
|
2022-06-21 21:42:29 +00:00
|
|
|
<PersonListing person={admin} />
|
2021-12-30 15:26:45 +00:00
|
|
|
</T>
|
2022-06-21 21:42:29 +00:00
|
|
|
) : (
|
2021-12-30 15:26:45 +00:00
|
|
|
<div>
|
2022-06-21 21:42:29 +00:00
|
|
|
<T i18nKey="denied_by">
|
|
|
|
#
|
|
|
|
<PersonListing person={admin} />
|
|
|
|
</T>
|
|
|
|
{ra.deny_reason.match({
|
|
|
|
some: deny_reason => (
|
|
|
|
<div>
|
|
|
|
{i18n.t("deny_reason")}:{" "}
|
|
|
|
<div
|
|
|
|
className="md-div d-inline-flex"
|
|
|
|
dangerouslySetInnerHTML={mdToHtml(deny_reason)}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
),
|
|
|
|
none: <></>,
|
|
|
|
})}
|
2021-12-30 15:26:45 +00:00
|
|
|
</div>
|
2022-06-21 21:42:29 +00:00
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
),
|
|
|
|
none: <></>,
|
|
|
|
})}
|
2021-12-30 15:26:45 +00:00
|
|
|
|
|
|
|
{this.state.denyExpanded && (
|
|
|
|
<div class="form-group row">
|
|
|
|
<label class="col-sm-2 col-form-label">
|
|
|
|
{i18n.t("deny_reason")}
|
|
|
|
</label>
|
|
|
|
<div class="col-sm-10">
|
|
|
|
<MarkdownTextArea
|
|
|
|
initialContent={this.state.denyReason}
|
|
|
|
onContentChange={this.handleDenyReasonChange}
|
2022-06-21 21:42:29 +00:00
|
|
|
placeholder={None}
|
|
|
|
buttonTitle={None}
|
|
|
|
maxLength={None}
|
2021-12-30 15:26:45 +00:00
|
|
|
hideNavigationWarnings
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
{(!ra.admin_id || (ra.admin_id && !accepted)) && (
|
|
|
|
<button
|
|
|
|
className="btn btn-secondary mr-2 my-2"
|
|
|
|
onClick={linkEvent(this, this.handleApprove)}
|
|
|
|
aria-label={i18n.t("approve")}
|
|
|
|
>
|
|
|
|
{i18n.t("approve")}
|
|
|
|
</button>
|
|
|
|
)}
|
|
|
|
{(!ra.admin_id || (ra.admin_id && accepted)) && (
|
|
|
|
<button
|
|
|
|
className="btn btn-secondary mr-2"
|
|
|
|
onClick={linkEvent(this, this.handleDeny)}
|
|
|
|
aria-label={i18n.t("deny")}
|
|
|
|
>
|
|
|
|
{i18n.t("deny")}
|
|
|
|
</button>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleApprove(i: RegistrationApplication) {
|
|
|
|
i.setState({ denyExpanded: false });
|
2022-06-21 21:42:29 +00:00
|
|
|
let form = new ApproveRegistrationApplication({
|
2021-12-30 15:26:45 +00:00
|
|
|
id: i.props.application.registration_application.id,
|
2022-06-21 21:42:29 +00:00
|
|
|
deny_reason: None,
|
2021-12-30 15:26:45 +00:00
|
|
|
approve: true,
|
2022-06-21 21:42:29 +00:00
|
|
|
auth: auth().unwrap(),
|
|
|
|
});
|
2021-12-30 15:26:45 +00:00
|
|
|
WebSocketService.Instance.send(
|
|
|
|
wsClient.approveRegistrationApplication(form)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleDeny(i: RegistrationApplication) {
|
|
|
|
if (i.state.denyExpanded) {
|
|
|
|
i.setState({ denyExpanded: false });
|
2022-06-21 21:42:29 +00:00
|
|
|
let form = new ApproveRegistrationApplication({
|
2021-12-30 15:26:45 +00:00
|
|
|
id: i.props.application.registration_application.id,
|
|
|
|
approve: false,
|
|
|
|
deny_reason: i.state.denyReason,
|
2022-06-21 21:42:29 +00:00
|
|
|
auth: auth().unwrap(),
|
|
|
|
});
|
2021-12-30 15:26:45 +00:00
|
|
|
WebSocketService.Instance.send(
|
|
|
|
wsClient.approveRegistrationApplication(form)
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
i.setState({ denyExpanded: true });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
handleDenyReasonChange(val: string) {
|
2022-06-21 21:42:29 +00:00
|
|
|
this.state.denyReason = Some(val);
|
2021-12-30 15:26:45 +00:00
|
|
|
this.setState(this.state);
|
|
|
|
}
|
|
|
|
}
|