import React, { PropTypes } from 'react' import { connect } from 'react-redux' import { createStore, bindActionCreators } from 'redux' import { Link } from 'react-router' import FontAwesome from 'react-fontawesome' import Thumbnail from './Thumbnail' import * as helpers from '../helpers' import * as uiActions from '../services/ui/actions' class ArtistGrid extends React.Component{ constructor(props) { super(props); } handleContextMenu(e,item){ e.preventDefault() var data = { e: e, context: 'artist', uris: [item.uri], items: [item] } this.props.uiActions.showContextMenu(data) } render(){ if( this.props.artists ){ var className = "grid artist-grid" if( this.props.className ) className += ' '+this.props.className return (
{ this.props.artists.map( (artist, index) => { return ( this.handleContextMenu(e,artist)}>
{artist.name} {this.props.show_source_icon ? : null}
{artist.followers ? artist.followers.total.toLocaleString()+' followers' : null} {artist.albums_uris && !artist.followers ? artist.albums_uris.length+' albums' : null}
) } ) }
); } return null; } } const mapStateToProps = (state, ownProps) => { return {} } const mapDispatchToProps = (dispatch) => { return { uiActions: bindActionCreators(uiActions, dispatch) } } export default connect(mapStateToProps, mapDispatchToProps)(ArtistGrid)