mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-01 10:10:01 +00:00
38 lines
1 KiB
TypeScript
Vendored
38 lines
1 KiB
TypeScript
Vendored
import { Component } from 'inferno';
|
|
import { CommunityForm } from './community-form';
|
|
import { Community } from '../interfaces';
|
|
import { WebSocketService } from '../services';
|
|
import { i18n } from '../i18next';
|
|
import { T } from 'inferno-i18next';
|
|
|
|
export class CreateCommunity extends Component<any, any> {
|
|
constructor(props: any, context: any) {
|
|
super(props, context);
|
|
this.handleCommunityCreate = this.handleCommunityCreate.bind(this);
|
|
}
|
|
|
|
componentDidMount() {
|
|
document.title = `${i18n.t('create_community')} - ${
|
|
WebSocketService.Instance.site.name
|
|
}`;
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-12 col-lg-6 offset-lg-3 mb-4">
|
|
<h5>
|
|
<T i18nKey="create_community">#</T>
|
|
</h5>
|
|
<CommunityForm onCreate={this.handleCommunityCreate} />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
handleCommunityCreate(community: Community) {
|
|
this.props.history.push(`/c/${community.name}`);
|
|
}
|
|
}
|