]> Untitled Git - lemmy.git/blob - ui/src/components/create-community.tsx
Merge pull request #498 from iav/docs4arm
[lemmy.git] / ui / src / components / create-community.tsx
1 import { Component } from 'inferno';
2 import { CommunityForm } from './community-form';
3 import { Community } from '../interfaces';
4 import { WebSocketService } from '../services';
5 import { i18n } from '../i18next';
6
7 export class CreateCommunity extends Component<any, any> {
8   constructor(props: any, context: any) {
9     super(props, context);
10     this.handleCommunityCreate = this.handleCommunityCreate.bind(this);
11   }
12
13   componentDidMount() {
14     document.title = `${i18n.t('create_community')} - ${
15       WebSocketService.Instance.site.name
16     }`;
17   }
18
19   render() {
20     return (
21       <div class="container">
22         <div class="row">
23           <div class="col-12 col-lg-6 offset-lg-3 mb-4">
24             <h5>{i18n.t('create_community')}</h5>
25             <CommunityForm onCreate={this.handleCommunityCreate} />
26           </div>
27         </div>
28       </div>
29     );
30   }
31
32   handleCommunityCreate(community: Community) {
33     this.props.history.push(`/c/${community.name}`);
34   }
35 }