-
Notifications
You must be signed in to change notification settings - Fork 340
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9948783
commit 1683a6b
Showing
16 changed files
with
696 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
129 changes: 129 additions & 0 deletions
129
src/shared/components/common/registration-application.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,129 @@ | ||
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"; | ||
import { authField, mdToHtml, wsClient } from "../../utils"; | ||
import { PersonListing } from "../person/person-listing"; | ||
import { MarkdownTextArea } from "./markdown-textarea"; | ||
import { MomentTime } from "./moment-time"; | ||
|
||
interface RegistrationApplicationProps { | ||
application: RegistrationApplicationView; | ||
} | ||
|
||
interface RegistrationApplicationState { | ||
denyReason?: string; | ||
} | ||
|
||
export class RegistrationApplication extends Component< | ||
RegistrationApplicationProps, | ||
RegistrationApplicationState | ||
> { | ||
private emptyState: RegistrationApplicationState = { | ||
denyReason: this.props.application.registration_application.deny_reason, | ||
}; | ||
|
||
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> | ||
{i18n.t("created")}: <MomentTime showAgo data={ra} /> | ||
</div> | ||
<div>{i18n.t("answer")}:</div> | ||
<div className="md-div" dangerouslySetInnerHTML={mdToHtml(ra.answer)} /> | ||
|
||
{a.admin && ( | ||
<div> | ||
{accepted ? ( | ||
<T i18nKey="approved_by"> | ||
# | ||
<PersonListing person={a.admin} /> | ||
</T> | ||
) : ( | ||
<div> | ||
<T i18nKey="denied_by"> | ||
# | ||
<PersonListing person={a.admin} /> | ||
</T> | ||
</div> | ||
)} | ||
</div> | ||
)} | ||
|
||
<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} | ||
hideNavigationWarnings | ||
/> | ||
</div> | ||
</div> | ||
<button | ||
className="btn btn-secondary mr-2" | ||
onClick={linkEvent(this, this.handleApprove)} | ||
aria-label={i18n.t("approve")} | ||
> | ||
{i18n.t("approve")} | ||
</button> | ||
{!this.props.application.registration_application.deny_reason && ( | ||
<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) { | ||
let form: ApproveRegistrationApplication = { | ||
id: i.props.application.registration_application.id, | ||
deny_reason: "", | ||
approve: true, | ||
auth: authField(), | ||
}; | ||
WebSocketService.Instance.send( | ||
wsClient.approveRegistrationApplication(form) | ||
); | ||
} | ||
|
||
handleDeny(i: RegistrationApplication) { | ||
let form: ApproveRegistrationApplication = { | ||
id: i.props.application.registration_application.id, | ||
approve: false, | ||
deny_reason: i.state.denyReason, | ||
auth: authField(), | ||
}; | ||
WebSocketService.Instance.send( | ||
wsClient.approveRegistrationApplication(form) | ||
); | ||
} | ||
|
||
handleDenyReasonChange(val: string) { | ||
this.state.denyReason = val; | ||
this.setState(this.state); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Oops, something went wrong.