2016-10-03 14:44:27 +13:00
|
|
|
|
|
|
|
|
import React, { PropTypes } from 'react'
|
|
|
|
|
import { connect } from 'react-redux'
|
|
|
|
|
import { bindActionCreators } from 'redux'
|
|
|
|
|
|
2016-10-14 22:42:45 +13:00
|
|
|
import FontAwesome from 'react-fontawesome'
|
2016-10-03 15:22:15 +13:00
|
|
|
import TrackList from '../components/TrackList'
|
2016-10-03 21:21:14 +13:00
|
|
|
import Track from '../components/Track'
|
2016-11-04 13:51:17 +13:00
|
|
|
import FullPlayer from '../components/FullPlayer'
|
2016-10-25 21:36:33 +13:00
|
|
|
import ArtistSentence from '../components/ArtistSentence'
|
2016-10-16 12:37:37 +13:00
|
|
|
import AlbumLink from '../components/AlbumLink'
|
2016-10-23 23:48:06 +13:00
|
|
|
import Header from '../components/Header'
|
|
|
|
|
|
2016-11-03 18:22:26 +13:00
|
|
|
import * as uiActions from '../services/ui/actions'
|
|
|
|
|
import * as spotifyActions from '../services/spotify/actions'
|
2016-10-27 13:34:22 +13:00
|
|
|
import * as mopidyActions from '../services/mopidy/actions'
|
2016-10-03 14:44:27 +13:00
|
|
|
|
2016-10-03 20:05:44 +13:00
|
|
|
class Queue extends React.Component{
|
2016-10-03 14:44:27 +13:00
|
|
|
|
|
|
|
|
constructor(props) {
|
|
|
|
|
super(props);
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-12 17:09:29 +13:00
|
|
|
removeTracks( tracks_indexes ){
|
2016-10-19 14:09:34 +13:00
|
|
|
var tlids = [];
|
2016-11-12 17:09:29 +13:00
|
|
|
for( var i = 0; i < tracks_indexes.length; i++ ){
|
|
|
|
|
tlids.push( this.props.current_tracklist[tracks_indexes[i]].tlid )
|
2016-10-19 14:09:34 +13:00
|
|
|
}
|
2016-10-27 13:34:22 +13:00
|
|
|
this.props.mopidyActions.removeTracks( tlids )
|
2016-10-19 14:09:34 +13:00
|
|
|
}
|
|
|
|
|
|
2016-10-21 16:34:16 +13:00
|
|
|
playTrack( track ){
|
2016-10-27 13:34:22 +13:00
|
|
|
this.props.mopidyActions.changeTrack( track.tlid )
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
playTracks( tracks ){
|
|
|
|
|
this.props.mopidyActions.changeTrack( tracks[0].tlid )
|
2016-10-19 14:09:34 +13:00
|
|
|
}
|
|
|
|
|
|
2016-10-03 14:44:27 +13:00
|
|
|
render(){
|
|
|
|
|
return (
|
2016-10-26 16:55:47 +13:00
|
|
|
<div className="view queue-view">
|
2016-11-04 15:55:17 +13:00
|
|
|
|
2016-11-04 13:51:17 +13:00
|
|
|
<FullPlayer />
|
2016-11-04 15:55:17 +13:00
|
|
|
|
|
|
|
|
<section className="list-wrapper">
|
2016-11-09 13:18:03 +13:00
|
|
|
<TrackList
|
|
|
|
|
show_source_icon={true}
|
|
|
|
|
context="queue"
|
|
|
|
|
tracks={this.props.current_tracklist}
|
|
|
|
|
removeTracks={ tracks => this.removeTracks( tracks ) }
|
|
|
|
|
playTracks={ tracks => this.playTracks( tracks ) }
|
|
|
|
|
playTrack={ track => this.playTrack( track ) } />
|
2016-11-04 15:55:17 +13:00
|
|
|
</section>
|
|
|
|
|
|
2016-10-03 14:44:27 +13:00
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Export our component
|
|
|
|
|
*
|
|
|
|
|
* We also integrate our global store, using connect()
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
|
|
const mapStateToProps = (state, ownProps) => {
|
2016-11-09 13:18:03 +13:00
|
|
|
return {
|
|
|
|
|
current_tracklist: state.ui.current_tracklist
|
|
|
|
|
}
|
2016-10-03 14:44:27 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const mapDispatchToProps = (dispatch) => {
|
|
|
|
|
return {
|
2016-11-03 18:22:26 +13:00
|
|
|
uiActions: bindActionCreators(uiActions, dispatch),
|
|
|
|
|
spotifyActions: bindActionCreators(spotifyActions, dispatch),
|
2016-10-27 13:34:22 +13:00
|
|
|
mopidyActions: bindActionCreators(mopidyActions, dispatch)
|
2016-10-03 14:44:27 +13:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-03 20:05:44 +13:00
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(Queue)
|