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 (