lemmy-ui/src/shared/components/create-community.tsx

84 lines
2.3 KiB
TypeScript
Raw Normal View History

2021-02-22 02:39:04 +00:00
import { Component } from "inferno";
import { Subscription } from "rxjs";
import { CommunityForm } from "./community-form";
import { HtmlTags } from "./html-tags";
import { Spinner } from "./icon";
2021-03-04 03:42:11 +00:00
import { CommunityView, SiteView } from "lemmy-js-client";
import { setIsoData, toast, wsSubscribe, isBrowser } from "../utils";
2021-03-03 16:59:57 +00:00
import { UserService } from "../services";
2021-02-22 02:39:04 +00:00
import { i18n } from "../i18next";
interface CreateCommunityState {
2020-12-24 01:58:27 +00:00
site_view: SiteView;
loading: boolean;
}
export class CreateCommunity extends Component<any, CreateCommunityState> {
private isoData = setIsoData(this.context);
private subscription: Subscription;
private emptyState: CreateCommunityState = {
2020-12-24 01:58:27 +00:00
site_view: this.isoData.site_res.site_view,
2021-03-04 03:42:11 +00:00
loading: false,
};
constructor(props: any, context: any) {
super(props, context);
this.handleCommunityCreate = this.handleCommunityCreate.bind(this);
this.state = this.emptyState;
this.parseMessage = this.parseMessage.bind(this);
this.subscription = wsSubscribe(this.parseMessage);
2021-03-15 18:09:31 +00:00
if (!UserService.Instance.localUserView && isBrowser()) {
2021-02-22 02:39:04 +00:00
toast(i18n.t("not_logged_in"), "danger");
this.context.router.history.push(`/login`);
}
}
componentWillUnmount() {
if (isBrowser()) {
this.subscription.unsubscribe();
}
}
get documentTitle(): string {
2021-02-22 02:39:04 +00:00
return `${i18n.t("create_community")} - ${this.state.site_view.site.name}`;
}
render() {
return (
<div class="container">
2020-09-11 18:09:21 +00:00
<HtmlTags
title={this.documentTitle}
path={this.context.router.route.match.url}
/>
{this.state.loading ? (
<h5>
2021-02-11 20:35:27 +00:00
<Spinner />
</h5>
) : (
<div class="row">
<div class="col-12 col-lg-6 offset-lg-3 mb-4">
2021-02-22 02:39:04 +00:00
<h5>{i18n.t("create_community")}</h5>
<CommunityForm
onCreate={this.handleCommunityCreate}
2020-12-24 01:58:27 +00:00
enableNsfw={this.state.site_view.site.enable_nsfw}
/>
</div>
</div>
)}
</div>
);
}
2020-12-24 01:58:27 +00:00
handleCommunityCreate(cv: CommunityView) {
this.props.history.push(`/c/${cv.community.name}`);
}
2020-12-24 01:58:27 +00:00
parseMessage(msg: any) {
if (msg.error) {
// Toast errors are already handled by community-form
return;
}
}
}