import { Component } from 'inferno'; import { PostForm } from './post-form'; import { WebSocketService } from '../services'; import { i18n } from '../i18next'; import { T } from 'inferno-i18next'; export class CreatePost extends Component { constructor(props: any, context: any) { super(props, context); this.handlePostCreate = this.handlePostCreate.bind(this); } componentDidMount() { document.title = `${i18n.t('create_post')} - ${WebSocketService.Instance.site.name}`; } render() { return (
#
) } 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}`); } }