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-03-23 01:42:57 +00:00
|
|
|
|
2019-04-04 22:29:14 +00:00
|
|
|
export class CreateCommunity extends Component<any, any> {
|
2019-03-26 18:00:18 +00:00
|
|
|
|
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() {
|
|
|
|
document.title = "Create Forum - Lemmy";
|
|
|
|
}
|
|
|
|
|
2019-03-23 01:42:57 +00:00
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-12 col-lg-6 mb-4">
|
2019-04-20 04:06:25 +00:00
|
|
|
<h5>Create Forum</h5>
|
2019-04-04 22:29:14 +00:00
|
|
|
<CommunityForm onCreate={this.handleCommunityCreate}/>
|
2019-03-23 01:42:57 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2019-04-04 22:29:14 +00:00
|
|
|
handleCommunityCreate(id: number) {
|
|
|
|
this.props.history.push(`/community/${id}`);
|
2019-03-23 01:42:57 +00:00
|
|
|
}
|
2019-04-04 22:29:14 +00:00
|
|
|
}
|
2019-03-23 01:42:57 +00:00
|
|
|
|
|
|
|
|