mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-02 02:29:59 +00:00
eed07b66aa
* Fixing too many large spinners * Re-organized components folder. - Cleaned up spans. Fixes #173 - Fixes #320 * Fixing miscolored edit
83 lines
2.3 KiB
TypeScript
83 lines
2.3 KiB
TypeScript
import { Component } from "inferno";
|
|
import { CommunityView, SiteView } from "lemmy-js-client";
|
|
import { Subscription } from "rxjs";
|
|
import { i18n } from "../../i18next";
|
|
import { UserService } from "../../services";
|
|
import { isBrowser, setIsoData, toast, wsSubscribe } from "../../utils";
|
|
import { HtmlTags } from "../common/html-tags";
|
|
import { Spinner } from "../common/icon";
|
|
import { CommunityForm } from "./community-form";
|
|
|
|
interface CreateCommunityState {
|
|
site_view: SiteView;
|
|
loading: boolean;
|
|
}
|
|
|
|
export class CreateCommunity extends Component<any, CreateCommunityState> {
|
|
private isoData = setIsoData(this.context);
|
|
private subscription: Subscription;
|
|
private emptyState: CreateCommunityState = {
|
|
site_view: this.isoData.site_res.site_view,
|
|
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);
|
|
|
|
if (!UserService.Instance.localUserView && isBrowser()) {
|
|
toast(i18n.t("not_logged_in"), "danger");
|
|
this.context.router.history.push(`/login`);
|
|
}
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
if (isBrowser()) {
|
|
this.subscription.unsubscribe();
|
|
}
|
|
}
|
|
|
|
get documentTitle(): string {
|
|
return `${i18n.t("create_community")} - ${this.state.site_view.site.name}`;
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<div class="container">
|
|
<HtmlTags
|
|
title={this.documentTitle}
|
|
path={this.context.router.route.match.url}
|
|
/>
|
|
{this.state.loading ? (
|
|
<h5>
|
|
<Spinner large />
|
|
</h5>
|
|
) : (
|
|
<div class="row">
|
|
<div class="col-12 col-lg-6 offset-lg-3 mb-4">
|
|
<h5>{i18n.t("create_community")}</h5>
|
|
<CommunityForm
|
|
onCreate={this.handleCommunityCreate}
|
|
enableNsfw={this.state.site_view.site.enable_nsfw}
|
|
/>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
handleCommunityCreate(cv: CommunityView) {
|
|
this.props.history.push(`/c/${cv.community.name}`);
|
|
}
|
|
|
|
parseMessage(msg: any) {
|
|
if (msg.error) {
|
|
// Toast errors are already handled by community-form
|
|
return;
|
|
}
|
|
}
|
|
}
|