mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-01 18:19:55 +00:00
69 lines
2.1 KiB
TypeScript
69 lines
2.1 KiB
TypeScript
import { enableNsfw, setIsoData } from "@utils/app";
|
|
import { Component } from "inferno";
|
|
import {
|
|
CreateCommunity as CreateCommunityI,
|
|
GetSiteResponse,
|
|
} from "lemmy-js-client";
|
|
import { HttpService, I18NextService } from "../../services";
|
|
import { HtmlTags } from "../common/html-tags";
|
|
import { CommunityForm } from "./community-form";
|
|
|
|
interface CreateCommunityState {
|
|
siteRes: GetSiteResponse;
|
|
loading: boolean;
|
|
}
|
|
|
|
export class CreateCommunity extends Component<any, CreateCommunityState> {
|
|
private isoData = setIsoData(this.context);
|
|
state: CreateCommunityState = {
|
|
siteRes: this.isoData.site_res,
|
|
loading: false,
|
|
};
|
|
constructor(props: any, context: any) {
|
|
super(props, context);
|
|
this.handleCommunityCreate = this.handleCommunityCreate.bind(this);
|
|
}
|
|
|
|
get documentTitle(): string {
|
|
return `${I18NextService.i18n.t("create_community")} - ${
|
|
this.state.siteRes.site_view.site.name
|
|
}`;
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<div className="create-community container-lg">
|
|
<HtmlTags
|
|
title={this.documentTitle}
|
|
path={this.context.router.route.match.url}
|
|
/>
|
|
<div className="row">
|
|
<div className="col-12 col-lg-6 offset-lg-3 mb-4">
|
|
<h5>{I18NextService.i18n.t("create_community")}</h5>
|
|
<CommunityForm
|
|
onUpsertCommunity={this.handleCommunityCreate}
|
|
enableNsfw={enableNsfw(this.state.siteRes)}
|
|
allLanguages={this.state.siteRes.all_languages}
|
|
siteLanguages={this.state.siteRes.discussion_languages}
|
|
communityLanguages={this.state.siteRes.discussion_languages}
|
|
loading={this.state.loading}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
async handleCommunityCreate(form: CreateCommunityI) {
|
|
this.setState({ loading: true });
|
|
|
|
const res = await HttpService.client.createCommunity(form);
|
|
|
|
if (res.state === "success") {
|
|
const name = res.data.community_view.community.name;
|
|
this.props.history.replace(`/c/${name}`);
|
|
} else {
|
|
this.setState({ loading: false });
|
|
}
|
|
}
|
|
}
|