2022-06-21 21:42:29 +00:00
|
|
|
import { None, Option, Some } from "@sniptt/monads";
|
2021-02-22 02:39:04 +00:00
|
|
|
import { Component, linkEvent } from "inferno";
|
|
|
|
import { Prompt } from "inferno-router";
|
2020-09-06 16:15:25 +00:00
|
|
|
import {
|
|
|
|
CommunityResponse,
|
2020-12-24 01:58:27 +00:00
|
|
|
CommunityView,
|
2021-07-17 20:42:55 +00:00
|
|
|
CreateCommunity,
|
|
|
|
EditCommunity,
|
2022-06-21 21:42:29 +00:00
|
|
|
toUndefined,
|
2021-07-17 20:42:55 +00:00
|
|
|
UserOperation,
|
2022-06-21 21:42:29 +00:00
|
|
|
wsJsonToRes,
|
|
|
|
wsUserOp,
|
2021-02-22 02:39:04 +00:00
|
|
|
} from "lemmy-js-client";
|
2021-07-17 20:42:55 +00:00
|
|
|
import { Subscription } from "rxjs";
|
|
|
|
import { i18n } from "../../i18next";
|
2021-08-20 02:56:18 +00:00
|
|
|
import { UserService, WebSocketService } from "../../services";
|
2020-09-09 03:13:26 +00:00
|
|
|
import {
|
2022-06-21 21:42:29 +00:00
|
|
|
auth,
|
2020-09-09 03:13:26 +00:00
|
|
|
capitalizeFirstLetter,
|
|
|
|
randomStr,
|
2021-07-17 20:42:55 +00:00
|
|
|
wsClient,
|
2020-09-09 03:13:26 +00:00
|
|
|
wsSubscribe,
|
2021-07-17 20:42:55 +00:00
|
|
|
} from "../../utils";
|
|
|
|
import { Icon, Spinner } from "../common/icon";
|
|
|
|
import { ImageUploadForm } from "../common/image-upload-form";
|
|
|
|
import { MarkdownTextArea } from "../common/markdown-textarea";
|
2020-09-06 16:15:25 +00:00
|
|
|
|
|
|
|
interface CommunityFormProps {
|
2022-06-21 21:42:29 +00:00
|
|
|
community_view: Option<CommunityView>; // If a community is given, that means this is an edit
|
2020-09-06 16:15:25 +00:00
|
|
|
onCancel?(): any;
|
2020-12-24 01:58:27 +00:00
|
|
|
onCreate?(community: CommunityView): any;
|
|
|
|
onEdit?(community: CommunityView): any;
|
2022-06-21 21:42:29 +00:00
|
|
|
enableNsfw?: boolean;
|
2020-09-06 16:15:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
interface CommunityFormState {
|
2020-12-24 01:58:27 +00:00
|
|
|
communityForm: CreateCommunity;
|
2020-09-06 16:15:25 +00:00
|
|
|
loading: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
export class CommunityForm extends Component<
|
|
|
|
CommunityFormProps,
|
|
|
|
CommunityFormState
|
|
|
|
> {
|
|
|
|
private id = `community-form-${randomStr()}`;
|
|
|
|
private subscription: Subscription;
|
|
|
|
|
|
|
|
private emptyState: CommunityFormState = {
|
2022-06-21 21:42:29 +00:00
|
|
|
communityForm: new CreateCommunity({
|
|
|
|
name: undefined,
|
|
|
|
title: undefined,
|
|
|
|
description: None,
|
|
|
|
nsfw: None,
|
|
|
|
icon: None,
|
|
|
|
banner: None,
|
|
|
|
posting_restricted_to_mods: None,
|
|
|
|
auth: undefined,
|
|
|
|
}),
|
2020-09-06 16:15:25 +00:00
|
|
|
loading: false,
|
|
|
|
};
|
|
|
|
|
|
|
|
constructor(props: any, context: any) {
|
|
|
|
super(props, context);
|
|
|
|
|
|
|
|
this.state = this.emptyState;
|
|
|
|
|
2021-07-17 20:42:55 +00:00
|
|
|
this.handleCommunityDescriptionChange =
|
|
|
|
this.handleCommunityDescriptionChange.bind(this);
|
2020-09-06 16:15:25 +00:00
|
|
|
|
|
|
|
this.handleIconUpload = this.handleIconUpload.bind(this);
|
|
|
|
this.handleIconRemove = this.handleIconRemove.bind(this);
|
|
|
|
|
|
|
|
this.handleBannerUpload = this.handleBannerUpload.bind(this);
|
|
|
|
this.handleBannerRemove = this.handleBannerRemove.bind(this);
|
|
|
|
|
2022-06-21 21:42:29 +00:00
|
|
|
this.props.community_view.match({
|
|
|
|
some: cv => {
|
|
|
|
this.state.communityForm = new CreateCommunity({
|
|
|
|
name: cv.community.name,
|
|
|
|
title: cv.community.title,
|
|
|
|
description: cv.community.description,
|
|
|
|
nsfw: Some(cv.community.nsfw),
|
|
|
|
icon: cv.community.icon,
|
|
|
|
banner: cv.community.banner,
|
|
|
|
posting_restricted_to_mods: Some(
|
|
|
|
cv.community.posting_restricted_to_mods
|
|
|
|
),
|
2022-06-27 20:50:47 +00:00
|
|
|
auth: undefined,
|
2022-06-21 21:42:29 +00:00
|
|
|
});
|
|
|
|
},
|
|
|
|
none: void 0,
|
|
|
|
});
|
2020-09-06 16:15:25 +00:00
|
|
|
|
2020-09-09 03:13:26 +00:00
|
|
|
this.parseMessage = this.parseMessage.bind(this);
|
|
|
|
this.subscription = wsSubscribe(this.parseMessage);
|
2020-09-06 16:15:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
componentDidUpdate() {
|
|
|
|
if (
|
|
|
|
!this.state.loading &&
|
|
|
|
(this.state.communityForm.name ||
|
|
|
|
this.state.communityForm.title ||
|
2022-06-21 21:42:29 +00:00
|
|
|
this.state.communityForm.description.isSome())
|
2020-09-06 16:15:25 +00:00
|
|
|
) {
|
|
|
|
window.onbeforeunload = () => true;
|
|
|
|
} else {
|
|
|
|
window.onbeforeunload = undefined;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount() {
|
|
|
|
this.subscription.unsubscribe();
|
|
|
|
window.onbeforeunload = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<Prompt
|
|
|
|
when={
|
|
|
|
!this.state.loading &&
|
|
|
|
(this.state.communityForm.name ||
|
|
|
|
this.state.communityForm.title ||
|
2022-06-21 21:42:29 +00:00
|
|
|
this.state.communityForm.description.isSome())
|
2020-09-06 16:15:25 +00:00
|
|
|
}
|
2021-02-22 02:39:04 +00:00
|
|
|
message={i18n.t("block_leaving")}
|
2020-09-06 16:15:25 +00:00
|
|
|
/>
|
|
|
|
<form onSubmit={linkEvent(this, this.handleCreateCommunitySubmit)}>
|
2022-06-21 21:42:29 +00:00
|
|
|
{this.props.community_view.isNone() && (
|
2020-09-06 16:15:25 +00:00
|
|
|
<div class="form-group row">
|
2021-09-18 20:40:59 +00:00
|
|
|
<label
|
|
|
|
class="col-12 col-sm-2 col-form-label"
|
|
|
|
htmlFor="community-name"
|
|
|
|
>
|
2021-02-22 02:39:04 +00:00
|
|
|
{i18n.t("name")}
|
2020-09-06 16:15:25 +00:00
|
|
|
<span
|
2021-09-18 20:40:59 +00:00
|
|
|
class="position-absolute pointer unselectable ml-2 text-muted"
|
2021-02-22 02:39:04 +00:00
|
|
|
data-tippy-content={i18n.t("name_explain")}
|
2020-09-06 16:15:25 +00:00
|
|
|
>
|
2021-02-11 20:35:27 +00:00
|
|
|
<Icon icon="help-circle" classes="icon-inline" />
|
2020-09-06 16:15:25 +00:00
|
|
|
</span>
|
|
|
|
</label>
|
2021-09-18 20:40:59 +00:00
|
|
|
<div class="col-12 col-sm-10">
|
2020-09-06 16:15:25 +00:00
|
|
|
<input
|
|
|
|
type="text"
|
|
|
|
id="community-name"
|
|
|
|
class="form-control"
|
|
|
|
value={this.state.communityForm.name}
|
|
|
|
onInput={linkEvent(this, this.handleCommunityNameChange)}
|
|
|
|
required
|
|
|
|
minLength={3}
|
|
|
|
pattern="[a-z0-9_]+"
|
2021-02-22 02:39:04 +00:00
|
|
|
title={i18n.t("community_reqs")}
|
2020-09-06 16:15:25 +00:00
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
<div class="form-group row">
|
2021-09-18 20:40:59 +00:00
|
|
|
<label
|
|
|
|
class="col-12 col-sm-2 col-form-label"
|
|
|
|
htmlFor="community-title"
|
|
|
|
>
|
2021-02-22 02:39:04 +00:00
|
|
|
{i18n.t("display_name")}
|
2020-09-06 16:15:25 +00:00
|
|
|
<span
|
2021-09-18 20:40:59 +00:00
|
|
|
class="position-absolute pointer unselectable ml-2 text-muted"
|
2021-02-22 02:39:04 +00:00
|
|
|
data-tippy-content={i18n.t("display_name_explain")}
|
2020-09-06 16:15:25 +00:00
|
|
|
>
|
2021-02-11 20:35:27 +00:00
|
|
|
<Icon icon="help-circle" classes="icon-inline" />
|
2020-09-06 16:15:25 +00:00
|
|
|
</span>
|
|
|
|
</label>
|
2021-09-18 20:40:59 +00:00
|
|
|
<div class="col-12 col-sm-10">
|
2020-09-06 16:15:25 +00:00
|
|
|
<input
|
|
|
|
type="text"
|
|
|
|
id="community-title"
|
|
|
|
value={this.state.communityForm.title}
|
|
|
|
onInput={linkEvent(this, this.handleCommunityTitleChange)}
|
|
|
|
class="form-control"
|
|
|
|
required
|
|
|
|
minLength={3}
|
|
|
|
maxLength={100}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-09-18 20:40:59 +00:00
|
|
|
<div class="form-group row">
|
|
|
|
<label class="col-12 col-sm-2">{i18n.t("icon")}</label>
|
|
|
|
<div class="col-12 col-sm-10">
|
|
|
|
<ImageUploadForm
|
|
|
|
uploadTitle={i18n.t("upload_icon")}
|
|
|
|
imageSrc={this.state.communityForm.icon}
|
|
|
|
onUpload={this.handleIconUpload}
|
|
|
|
onRemove={this.handleIconRemove}
|
|
|
|
rounded
|
|
|
|
/>
|
|
|
|
</div>
|
2020-09-06 16:15:25 +00:00
|
|
|
</div>
|
2021-09-18 20:40:59 +00:00
|
|
|
<div class="form-group row">
|
|
|
|
<label class="col-12 col-sm-2">{i18n.t("banner")}</label>
|
|
|
|
<div class="col-12 col-sm-10">
|
|
|
|
<ImageUploadForm
|
|
|
|
uploadTitle={i18n.t("upload_banner")}
|
|
|
|
imageSrc={this.state.communityForm.banner}
|
|
|
|
onUpload={this.handleBannerUpload}
|
|
|
|
onRemove={this.handleBannerRemove}
|
|
|
|
/>
|
|
|
|
</div>
|
2020-09-06 16:15:25 +00:00
|
|
|
</div>
|
|
|
|
<div class="form-group row">
|
2021-09-18 20:40:59 +00:00
|
|
|
<label class="col-12 col-sm-2 col-form-label" htmlFor={this.id}>
|
2021-02-22 02:39:04 +00:00
|
|
|
{i18n.t("sidebar")}
|
2020-09-06 16:15:25 +00:00
|
|
|
</label>
|
2021-09-18 20:40:59 +00:00
|
|
|
<div class="col-12 col-sm-10">
|
2020-09-06 16:15:25 +00:00
|
|
|
<MarkdownTextArea
|
|
|
|
initialContent={this.state.communityForm.description}
|
2022-06-21 21:42:29 +00:00
|
|
|
placeholder={Some("description")}
|
|
|
|
buttonTitle={None}
|
|
|
|
maxLength={None}
|
2020-09-06 16:15:25 +00:00
|
|
|
onContentChange={this.handleCommunityDescriptionChange}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{this.props.enableNsfw && (
|
|
|
|
<div class="form-group row">
|
2021-09-18 20:40:59 +00:00
|
|
|
<legend class="col-form-label col-sm-2 pt-0">
|
|
|
|
{i18n.t("nsfw")}
|
|
|
|
</legend>
|
|
|
|
<div class="col-10">
|
2020-09-06 16:15:25 +00:00
|
|
|
<div class="form-check">
|
|
|
|
<input
|
2021-09-18 20:40:59 +00:00
|
|
|
class="form-check-input position-static"
|
2020-09-06 16:15:25 +00:00
|
|
|
id="community-nsfw"
|
|
|
|
type="checkbox"
|
2022-06-21 21:42:29 +00:00
|
|
|
checked={toUndefined(this.state.communityForm.nsfw)}
|
2020-09-06 16:15:25 +00:00
|
|
|
onChange={linkEvent(this, this.handleCommunityNsfwChange)}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)}
|
2022-05-23 19:22:15 +00:00
|
|
|
<div class="form-group row">
|
|
|
|
<legend class="col-form-label col-6 pt-0">
|
|
|
|
{i18n.t("only_mods_can_post_in_community")}
|
|
|
|
</legend>
|
|
|
|
<div class="col-6">
|
|
|
|
<div class="form-check">
|
|
|
|
<input
|
|
|
|
class="form-check-input position-static"
|
|
|
|
id="community-only-mods-can-post"
|
|
|
|
type="checkbox"
|
2022-06-21 21:42:29 +00:00
|
|
|
checked={toUndefined(
|
|
|
|
this.state.communityForm.posting_restricted_to_mods
|
|
|
|
)}
|
2022-05-23 19:22:15 +00:00
|
|
|
onChange={linkEvent(
|
|
|
|
this,
|
|
|
|
this.handleCommunityPostingRestrictedToMods
|
|
|
|
)}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-09-06 16:15:25 +00:00
|
|
|
<div class="form-group row">
|
|
|
|
<div class="col-12">
|
|
|
|
<button
|
|
|
|
type="submit"
|
|
|
|
class="btn btn-secondary mr-2"
|
|
|
|
disabled={this.state.loading}
|
|
|
|
>
|
|
|
|
{this.state.loading ? (
|
2021-02-11 20:35:27 +00:00
|
|
|
<Spinner />
|
2022-06-21 21:42:29 +00:00
|
|
|
) : this.props.community_view.isSome() ? (
|
2021-02-22 02:39:04 +00:00
|
|
|
capitalizeFirstLetter(i18n.t("save"))
|
2020-09-06 16:15:25 +00:00
|
|
|
) : (
|
2021-02-22 02:39:04 +00:00
|
|
|
capitalizeFirstLetter(i18n.t("create"))
|
2020-09-06 16:15:25 +00:00
|
|
|
)}
|
|
|
|
</button>
|
2022-06-21 21:42:29 +00:00
|
|
|
{this.props.community_view.isSome() && (
|
2020-09-06 16:15:25 +00:00
|
|
|
<button
|
|
|
|
type="button"
|
|
|
|
class="btn btn-secondary"
|
|
|
|
onClick={linkEvent(this, this.handleCancel)}
|
|
|
|
>
|
2021-02-22 02:39:04 +00:00
|
|
|
{i18n.t("cancel")}
|
2020-09-06 16:15:25 +00:00
|
|
|
</button>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleCreateCommunitySubmit(i: CommunityForm, event: any) {
|
|
|
|
event.preventDefault();
|
|
|
|
i.state.loading = true;
|
2022-06-21 21:42:29 +00:00
|
|
|
let cForm = i.state.communityForm;
|
2022-06-27 20:50:47 +00:00
|
|
|
cForm.auth = auth().unwrap();
|
2022-06-21 21:42:29 +00:00
|
|
|
|
|
|
|
i.props.community_view.match({
|
|
|
|
some: cv => {
|
|
|
|
let form = new EditCommunity({
|
|
|
|
community_id: cv.community.id,
|
|
|
|
title: Some(cForm.title),
|
|
|
|
description: cForm.description,
|
|
|
|
icon: cForm.icon,
|
|
|
|
banner: cForm.banner,
|
|
|
|
nsfw: cForm.nsfw,
|
|
|
|
posting_restricted_to_mods: cForm.posting_restricted_to_mods,
|
2022-06-27 20:50:47 +00:00
|
|
|
auth: cForm.auth,
|
2022-06-21 21:42:29 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
WebSocketService.Instance.send(wsClient.editCommunity(form));
|
|
|
|
},
|
|
|
|
none: () => {
|
|
|
|
WebSocketService.Instance.send(
|
|
|
|
wsClient.createCommunity(i.state.communityForm)
|
|
|
|
);
|
|
|
|
},
|
|
|
|
});
|
2020-09-06 16:15:25 +00:00
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleCommunityNameChange(i: CommunityForm, event: any) {
|
|
|
|
i.state.communityForm.name = event.target.value;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleCommunityTitleChange(i: CommunityForm, event: any) {
|
|
|
|
i.state.communityForm.title = event.target.value;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleCommunityDescriptionChange(val: string) {
|
2022-06-21 21:42:29 +00:00
|
|
|
this.state.communityForm.description = Some(val);
|
2020-09-06 16:15:25 +00:00
|
|
|
this.setState(this.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleCommunityNsfwChange(i: CommunityForm, event: any) {
|
|
|
|
i.state.communityForm.nsfw = event.target.checked;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
2022-05-23 19:22:15 +00:00
|
|
|
handleCommunityPostingRestrictedToMods(i: CommunityForm, event: any) {
|
|
|
|
i.state.communityForm.posting_restricted_to_mods = event.target.checked;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
2020-09-06 16:15:25 +00:00
|
|
|
handleCancel(i: CommunityForm) {
|
|
|
|
i.props.onCancel();
|
|
|
|
}
|
|
|
|
|
|
|
|
handleIconUpload(url: string) {
|
2022-06-21 21:42:29 +00:00
|
|
|
this.state.communityForm.icon = Some(url);
|
2020-09-06 16:15:25 +00:00
|
|
|
this.setState(this.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleIconRemove() {
|
2022-06-21 21:42:29 +00:00
|
|
|
this.state.communityForm.icon = Some("");
|
2020-09-06 16:15:25 +00:00
|
|
|
this.setState(this.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleBannerUpload(url: string) {
|
2022-06-21 21:42:29 +00:00
|
|
|
this.state.communityForm.banner = Some(url);
|
2020-09-06 16:15:25 +00:00
|
|
|
this.setState(this.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleBannerRemove() {
|
2022-06-21 21:42:29 +00:00
|
|
|
this.state.communityForm.banner = Some("");
|
2020-09-06 16:15:25 +00:00
|
|
|
this.setState(this.state);
|
|
|
|
}
|
|
|
|
|
2020-12-24 01:58:27 +00:00
|
|
|
parseMessage(msg: any) {
|
|
|
|
let op = wsUserOp(msg);
|
2021-04-07 15:54:38 +00:00
|
|
|
console.log(msg);
|
2020-09-06 16:15:25 +00:00
|
|
|
if (msg.error) {
|
2022-05-23 19:22:15 +00:00
|
|
|
// Errors handled by top level pages
|
|
|
|
// toast(i18n.t(msg.error), "danger");
|
2020-09-06 16:15:25 +00:00
|
|
|
this.state.loading = false;
|
|
|
|
this.setState(this.state);
|
|
|
|
return;
|
2020-12-24 01:58:27 +00:00
|
|
|
} else if (op == UserOperation.CreateCommunity) {
|
2022-06-21 21:42:29 +00:00
|
|
|
let data = wsJsonToRes<CommunityResponse>(msg, CommunityResponse);
|
2020-09-06 16:15:25 +00:00
|
|
|
this.state.loading = false;
|
2020-12-24 01:58:27 +00:00
|
|
|
this.props.onCreate(data.community_view);
|
2021-08-20 02:56:18 +00:00
|
|
|
|
|
|
|
// Update myUserInfo
|
|
|
|
let community = data.community_view.community;
|
2022-06-21 21:42:29 +00:00
|
|
|
|
|
|
|
UserService.Instance.myUserInfo.match({
|
|
|
|
some: mui => {
|
|
|
|
let person = mui.local_user_view.person;
|
|
|
|
mui.follows.push({
|
|
|
|
community,
|
|
|
|
follower: person,
|
|
|
|
});
|
|
|
|
mui.moderates.push({
|
|
|
|
community,
|
|
|
|
moderator: person,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
none: void 0,
|
2021-08-20 02:56:18 +00:00
|
|
|
});
|
2020-12-24 01:58:27 +00:00
|
|
|
} else if (op == UserOperation.EditCommunity) {
|
2022-06-21 21:42:29 +00:00
|
|
|
let data = wsJsonToRes<CommunityResponse>(msg, CommunityResponse);
|
2020-09-06 16:15:25 +00:00
|
|
|
this.state.loading = false;
|
2020-12-24 01:58:27 +00:00
|
|
|
this.props.onEdit(data.community_view);
|
2021-08-20 02:56:18 +00:00
|
|
|
let community = data.community_view.community;
|
|
|
|
|
2022-06-21 21:42:29 +00:00
|
|
|
UserService.Instance.myUserInfo.match({
|
|
|
|
some: mui => {
|
|
|
|
let followFound = mui.follows.findIndex(
|
|
|
|
f => f.community.id == community.id
|
|
|
|
);
|
|
|
|
if (followFound) {
|
|
|
|
mui.follows[followFound].community = community;
|
|
|
|
}
|
|
|
|
|
|
|
|
let moderatesFound = mui.moderates.findIndex(
|
|
|
|
f => f.community.id == community.id
|
|
|
|
);
|
|
|
|
if (moderatesFound) {
|
|
|
|
mui.moderates[moderatesFound].community = community;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
none: void 0,
|
|
|
|
});
|
2020-09-06 16:15:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|