diff options
Diffstat (limited to 'web/src/js/components/ContentView/ContentViewOptions.jsx')
| -rw-r--r-- | web/src/js/components/ContentView/ContentViewOptions.jsx | 31 | 
1 files changed, 31 insertions, 0 deletions
| diff --git a/web/src/js/components/ContentView/ContentViewOptions.jsx b/web/src/js/components/ContentView/ContentViewOptions.jsx new file mode 100644 index 00000000..fed3a088 --- /dev/null +++ b/web/src/js/components/ContentView/ContentViewOptions.jsx @@ -0,0 +1,31 @@ +import React, { PropTypes } from 'react' +import { connect } from 'react-redux' +import ViewSelector from './ViewSelector' +import UploadContentButton from './UploadContentButton' +import DownloadContentButton from './DownloadContentButton' + +ContentViewOptions.propTypes = { +    flow: React.PropTypes.object.isRequired, +    message: React.PropTypes.object.isRequired, +} + +function ContentViewOptions(props) { +    const { flow, message, uploadContent, readonly, contentViewDescription } = props +    return ( +        <div className="view-options"> +            <ViewSelector message={message}/> +              +            <DownloadContentButton flow={flow} message={message}/> +              +            <UploadContentButton uploadContent={uploadContent}/> +              +            <span>{contentViewDescription}</span> +        </div> +    ) +} + +export default connect( +    state => ({ +        contentViewDescription: state.ui.flow.viewDescription +    }) +)(ContentViewOptions) | 
