lemmy/ui/src/components/create-post.tsx

63 lines
1.7 KiB
TypeScript
Raw Normal View History

import { Component } from 'inferno';
import { PostForm } from './post-form';
import { WebSocketService } from '../services';
2019-08-22 23:13:26 +00:00
import { PostFormParams } from '../interfaces';
import { i18n } from '../i18next';
import { T } from 'inferno-i18next';
export class CreatePost extends Component<any, any> {
constructor(props: any, context: any) {
super(props, context);
this.handlePostCreate = this.handlePostCreate.bind(this);
}
2019-04-22 16:24:13 +00:00
componentDidMount() {
document.title = `${i18n.t('create_post')} - ${
WebSocketService.Instance.site.name
}`;
2019-04-22 16:24:13 +00:00
}
render() {
return (
<div class="container">
<div class="row">
<div class="col-12 col-lg-6 offset-lg-3 mb-4">
<h5>
<T i18nKey="create_post">#</T>
</h5>
2019-08-22 23:13:26 +00:00
<PostForm onCreate={this.handlePostCreate} params={this.params} />
</div>
</div>
</div>
);
}
2019-08-22 23:13:26 +00:00
get params(): PostFormParams {
let urlParams = new URLSearchParams(this.props.location.search);
let params: PostFormParams = {
name: urlParams.get('title'),
community: urlParams.get('community') || this.prevCommunityName,
body: urlParams.get('body'),
url: urlParams.get('url'),
2019-08-22 23:13:26 +00:00
};
return params;
}
get prevCommunityName(): string {
if (this.props.match.params.name) {
return this.props.match.params.name;
} else if (this.props.location.state) {
let lastLocation = this.props.location.state.prevPath;
if (lastLocation.includes('/c/')) {
return lastLocation.split('/c/')[1];
}
}
return undefined;
}
handlePostCreate(id: number) {
this.props.history.push(`/post/${id}`);
}
}