import React, { PropTypes } from 'react' import { connect } from 'react-redux' import { bindActionCreators } from 'redux' import { Link } from 'react-router' import FontAwesome from 'react-fontawesome' import TrackList from '../components/TrackList' import Thumbnail from '../components/Thumbnail' import Dater from '../components/Dater' import ConfirmationButton from '../components/ConfirmationButton' import LazyLoadListener from '../components/LazyLoadListener' import FollowButton from '../components/FollowButton' import SidebarToggleButton from '../components/SidebarToggleButton' import * as helpers from '../helpers' import * as uiActions from '../services/ui/actions' import * as mopidyActions from '../services/mopidy/actions' import * as spotifyActions from '../services/spotify/actions' class Playlist extends React.Component{ constructor(props) { super(props); } componentDidMount(){ this.loadPlaylist(); } componentWillReceiveProps( nextProps ){ if( nextProps.params.uri != this.props.params.uri ){ this.loadPlaylist( nextProps ) }else if( !this.props.mopidy_connected && nextProps.mopidy_connected ){ if( helpers.uriSource( this.props.params.uri ) == 'm3u' ){ this.loadPlaylist( nextProps ) } } } loadPlaylist( props = this.props ){ switch( helpers.uriSource( props.params.uri ) ){ case 'spotify': this.props.spotifyActions.getPlaylist( props.params.uri ); break case 'm3u': if( props.mopidy_connected ) this.props.mopidyActions.getPlaylist( props.params.uri ); break } } loadMore(){ if( !this.props.playlist.tracks_more ) return this.props.spotifyActions.getURL( this.props.playlist.tracks_more, 'SPOTIFY_PLAYLIST_LOADED_MORE' ); } play(){ this.props.mopidyActions.playURIs([this.props.params.uri]) } follow(){ this.props.spotifyActions.toggleFollowingPlaylist( this.props.params.uri, 'PUT' ) } // TODO: Once unfollowing occurs, remove playlist from global playlists list unfollow(){ this.props.spotifyActions.toggleFollowingPlaylist( this.props.params.uri, 'DELETE' ) } // TODO: Once deletion occurs, remove playlist from global playlists list delete(){ this.props.mopidyActions.deletePlaylist( this.props.params.uri ) } reorderTracks( indexes, index ){ if( this.isEditable() ){ this.props.uiActions.reorderPlaylistTracks( this.props.playlist.uri, indexes, index, this.props.playlist.snapshot_id ) }else{ alert('Cannot edit a playlist you don\'t own') } } removeTracks( tracks_indexes ){ this.props.uiActions.removeTracksFromPlaylist( this.props.playlist.uri, tracks_indexes ) } isEditable(){ if( helpers.uriSource( this.props.params.uri ) == 'spotify' ){ if( !this.props.spotify_authorized ) return false return ( this.props.playlist && this.props.playlist.owner && this.props.playlist.owner.id == this.props.spotify_userid ) }else{ return true } } renderExtraButtons(){ switch( helpers.uriSource( this.props.params.uri ) ){ case 'm3u': return ( this.delete() } /> ) case 'spotify': if( this.isEditable() ){ return ( this.unfollow() } /> ) } return } } render(){ if( !this.props.playlist || !this.props.playlist.name ) return null; var scheme = helpers.uriSource( this.props.params.uri ); return (
{ this.renderExtraButtons() }
  • { this.props.playlist.tracks_total } tracks,  { this.props.playlist.tracks ? : null }
  • { this.props.playlist.last_modified ?
  • Updated ago
  • : null } { this.props.playlist.followers ?
  • {this.props.playlist.followers.total.toLocaleString()} followers
  • : null } { scheme == 'spotify' && this.props.playlist.owner ?
  • By {this.props.playlist.owner.id}  { !this.props.playlist.public ? : null }
  • : null } { scheme == 'spotify' ?
  • Spotify playlist
  • : null } { scheme == 'm3u' ?
  • Local playlist
  • : null }

{ this.props.playlist.name }

{ this.props.playlist.description ?

: null }
{ this.props.playlist.tracks ? this.removeTracks(tracks_indexes) } reorderTracks={ (indexes, index) => this.reorderTracks(indexes, index) } /> : null } this.loadMore() }/>
) } } /** * Export our component * * We also integrate our global store, using connect() **/ const mapStateToProps = (state, ownProps) => { return { playlist: state.ui.playlist, mopidy_connected: state.mopidy.connected, spotify_authorized: state.spotify.authorized, spotify_userid: state.spotify.me.id } } const mapDispatchToProps = (dispatch) => { return { uiActions: bindActionCreators(uiActions, dispatch), mopidyActions: bindActionCreators(mopidyActions, dispatch), spotifyActions: bindActionCreators(spotifyActions, dispatch) } } export default connect(mapStateToProps, mapDispatchToProps)(Playlist)