import PropTypes from 'prop-types'; import React from 'react'; import { connect } from 'react-redux'; import { bindActionCreators } from 'redux'; import { Link } from 'react-router'; import { Helmet } from 'react-helmet'; import prettyBytes from 'pretty-bytes'; import { withTranslation } from 'react-i18next'; import Loader from '../../App/components/loader'; import * as AssetActions from '../actions/assets'; import DownFilledTriangleIcon from '../../../images/down-filled-triangle.svg'; class AssetListRowBase extends React.Component { constructor(props) { super(props); this.state = { isFocused: false, optionsOpen: false }; } onFocusComponent = () => { this.setState({ isFocused: true }); } onBlurComponent = () => { this.setState({ isFocused: false }); setTimeout(() => { if (!this.state.isFocused) { this.closeOptions(); } }, 200); } openOptions = () => { this.setState({ optionsOpen: true }); } closeOptions = () => { this.setState({ optionsOpen: false }); } toggleOptions = () => { if (this.state.optionsOpen) { this.closeOptions(); } else { this.openOptions(); } } handleDropdownOpen = () => { this.closeOptions(); this.openOptions(); } handleAssetDelete = () => { const { key, name } = this.props.asset; this.closeOptions(); if (window.confirm(`Are you sure you want to delete "${name}"?`)) { this.props.deleteAssetRequest(key); } } render() { const { asset, username } = this.props; const { optionsOpen } = this.state; return ( {asset.name} {prettyBytes(asset.size)} { asset.sketchId && {asset.sketchName} } {optionsOpen && } ); } } AssetListRowBase.propTypes = { asset: PropTypes.shape({ key: PropTypes.string.isRequired, url: PropTypes.string.isRequired, sketchId: PropTypes.string, sketchName: PropTypes.string, name: PropTypes.string.isRequired, size: PropTypes.number.isRequired }).isRequired, deleteAssetRequest: PropTypes.func.isRequired, username: PropTypes.string.isRequired, t: PropTypes.func.isRequired }; function mapStateToPropsAssetListRow(state) { return { username: state.user.username }; } function mapDispatchToPropsAssetListRow(dispatch) { return bindActionCreators(AssetActions, dispatch); } const AssetListRow = connect(mapStateToPropsAssetListRow, mapDispatchToPropsAssetListRow)(AssetListRowBase); class AssetList extends React.Component { constructor(props) { super(props); this.props.getAssets(); } getAssetsTitle() { return this.props.t('AssetList.Title'); } hasAssets() { return !this.props.loading && this.props.assetList.length > 0; } renderLoader() { if (this.props.loading) return ; return null; } renderEmptyTable() { if (!this.props.loading && this.props.assetList.length === 0) { return (

{this.props.t('AssetList.NoUploadedAssets')}

); } return null; } render() { const { assetList, t } = this.props; return (
{this.getAssetsTitle()} {this.renderLoader()} {this.renderEmptyTable()} {this.hasAssets() && {assetList.map(asset => )}
{t('AssetList.HeaderName')} {t('AssetList.HeaderSize')} {t('AssetList.HeaderSketch')}
}
); } } AssetList.propTypes = { user: PropTypes.shape({ username: PropTypes.string }).isRequired, assetList: PropTypes.arrayOf(PropTypes.shape({ key: PropTypes.string.isRequired, name: PropTypes.string.isRequired, url: PropTypes.string.isRequired, sketchName: PropTypes.string, sketchId: PropTypes.string })).isRequired, getAssets: PropTypes.func.isRequired, loading: PropTypes.bool.isRequired, t: PropTypes.func.isRequired }; function mapStateToProps(state) { return { user: state.user, assetList: state.assets.list, loading: state.loading }; } function mapDispatchToProps(dispatch) { return bindActionCreators(Object.assign({}, AssetActions), dispatch); } export default withTranslation()(connect(mapStateToProps, mapDispatchToProps)(AssetList));