Files
Iris/src/js/components/ArtistGrid.js
James Barnsley fbc34e71a0 Search display
2017-03-27 08:29:18 +13:00

78 lines
2.0 KiB
JavaScript
Executable File

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 (
<div className={className}>
{
this.props.artists.map(
(artist, index) => {
return (
<Link
className="grid-item"
to={global.baseURL+'artist/'+artist.uri}
key={index}
onContextMenu={e => this.handleContextMenu(e,artist)}>
<Thumbnail size="medium" images={artist.images} />
<div className="name">
{artist.name}
{this.props.show_source_icon ? <FontAwesome name={helpers.sourceIcon(artist.uri)} className="source" fixedWidth /> : null}
</div>
<div className="secondary">
{artist.followers ? artist.followers.total.toLocaleString()+' followers' : null}
{artist.albums_uris && !artist.followers ? artist.albums_uris.length+' albums' : null}
</div>
</Link>
)
}
)
}
</div>
);
}
return null;
}
}
const mapStateToProps = (state, ownProps) => {
return {}
}
const mapDispatchToProps = (dispatch) => {
return {
uiActions: bindActionCreators(uiActions, dispatch)
}
}
export default connect(mapStateToProps, mapDispatchToProps)(ArtistGrid)