import React, { PropTypes } from 'react'; import { Lifecycle } from 'react-router'; import { Panel, Button, Row, Col } from 'react-bootstrap'; import { contain } from 'thundercats-react'; import ShowJob from './ShowJob.jsx'; import JobNotFound from './JobNotFound.jsx'; export default contain( { store: 'JobsStore', actions: [ 'appActions', 'jobActions' ], map({ form: job = {} }) { return { job }; } }, React.createClass({ displayName: 'Preview', propTypes: { appActions: PropTypes.object, job: PropTypes.object, jobActions: PropTypes.object }, mixins: [Lifecycle], componentDidMount() { const { appActions, job } = this.props; // redirect user in client if (!job || !job.position || !job.description) { appActions.goTo('/jobs/new'); } }, routerWillLeave() { const { jobActions } = this.props; jobActions.clearPromo(); }, render() { const { appActions, job, jobActions } = this.props; if (!job || !job.position || !job.description) { return ; } return (
); } }) );