import React, { PropTypes } from 'react'; import { connect } from 'react-redux'; import { bindActionCreators } from 'redux'; import { Link } from 'react-router'; import prettyBytes from 'pretty-bytes'; import * as AssetActions from '../actions/assets'; class AssetList extends React.Component { constructor(props) { super(props); this.props.getAssets(this.props.username); } render() { return (
{this.props.assets.length === 0 &&

No uploaded assets.

} {this.props.assets.length > 0 && {this.props.assets.map(asset => )}
Name Size View Sketch
{asset.name} {prettyBytes(asset.size)} View {asset.sketchName}
}
); } } AssetList.propTypes = { username: PropTypes.string.isRequired, assets: PropTypes.arrayOf(PropTypes.shape({ key: PropTypes.string.isRequired, name: PropTypes.string.isRequired, url: PropTypes.string.isRequired, sketchName: PropTypes.string.isRequired, sketchId: PropTypes.string.isRequired })).isRequired, getAssets: PropTypes.func.isRequired, }; function mapStateToProps(state) { return { user: state.user, assets: state.assets }; } function mapDispatchToProps(dispatch) { return bindActionCreators(Object.assign({}, AssetActions), dispatch); } export default connect(mapStateToProps, mapDispatchToProps)(AssetList);