2019-04-08 05:19:02 +00:00
|
|
|
import { Component } from 'inferno';
|
2019-04-04 22:29:14 +00:00
|
|
|
import { CommunityForm } from './community-form';
|
2019-04-25 21:52:18 +00:00
|
|
|
import { Community } from '../interfaces';
|
2019-06-03 01:35:46 +00:00
|
|
|
import { WebSocketService } from '../services';
|
2019-08-10 00:14:43 +00:00
|
|
|
import { i18n } from '../i18next';
|
|
|
|
import { T } from 'inferno-i18next';
|
2019-03-23 01:42:57 +00:00
|
|
|
|
2019-04-04 22:29:14 +00:00
|
|
|
export class CreateCommunity extends Component<any, any> {
|
2019-04-08 05:19:02 +00:00
|
|
|
constructor(props: any, context: any) {
|
2019-03-23 01:42:57 +00:00
|
|
|
super(props, context);
|
2019-04-04 22:29:14 +00:00
|
|
|
this.handleCommunityCreate = this.handleCommunityCreate.bind(this);
|
2019-03-23 01:42:57 +00:00
|
|
|
}
|
|
|
|
|
2019-04-22 16:24:13 +00:00
|
|
|
componentDidMount() {
|
2019-10-19 00:20:27 +00:00
|
|
|
document.title = `${i18n.t('create_community')} - ${
|
|
|
|
WebSocketService.Instance.site.name
|
|
|
|
}`;
|
2019-04-22 16:24:13 +00:00
|
|
|
}
|
|
|
|
|
2019-03-23 01:42:57 +00:00
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
2019-07-29 01:57:09 +00:00
|
|
|
<div class="col-12 col-lg-6 offset-lg-3 mb-4">
|
2019-10-19 00:20:27 +00:00
|
|
|
<h5>
|
|
|
|
<T i18nKey="create_community">#</T>
|
|
|
|
</h5>
|
|
|
|
<CommunityForm onCreate={this.handleCommunityCreate} />
|
2019-03-23 01:42:57 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-10-19 00:20:27 +00:00
|
|
|
);
|
2019-03-23 01:42:57 +00:00
|
|
|
}
|
|
|
|
|
2019-04-25 21:52:18 +00:00
|
|
|
handleCommunityCreate(community: Community) {
|
2019-04-29 02:05:11 +00:00
|
|
|
this.props.history.push(`/c/${community.name}`);
|
2019-03-23 01:42:57 +00:00
|
|
|
}
|
2019-04-04 22:29:14 +00:00
|
|
|
}
|