import React, { Component, PropTypes } from 'react' import { MessageUtils } from '../flow/utils.js' import { ViewAuto, ViewImage } from './ContentView/ContentViews' import * as ContentErrors from './ContentView/ContentErrors' import ContentLoader from './ContentView/ContentLoader' import ViewSelector from './ContentView/ViewSelector' export default class ContentView extends Component { static propTypes = { // It may seem a bit weird at the first glance: // Every view takes the flow and the message as props, e.g. // flow: React.PropTypes.object.isRequired, message: React.PropTypes.object.isRequired, } constructor(props, context) { super(props, context) this.state = { displayLarge: false, View: ViewAuto } this.selectView = this.selectView.bind(this) } selectView(View) { this.setState({ View }) } displayLarge() { this.setState({ displayLarge: true }) } componentWillReceiveProps(nextProps) { if (nextProps.message !== this.props.message) { this.setState({ displayLarge: false, View: ViewAuto }) } } isContentTooLarge(msg) { return msg.contentLength > 1024 * 1024 * (ViewImage.matches(msg) ? 10 : 0.2) } render() { const { flow, message } = this.props const { displayLarge, View } = this.state if (message.contentLength === 0) { return } if (message.contentLength === null) { return } if (!displayLarge && this.isContentTooLarge(message)) { return } return (
{View.textView ? ( ) : ( )}
 
) } }