Files
Iris/src/js/views/Queue.js

82 lines
2.1 KiB
JavaScript
Raw Normal View History

2016-10-03 14:44:27 +13:00
import React, { PropTypes } from 'react'
import { connect } from 'react-redux'
import { bindActionCreators } from 'redux'
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'
import AlbumLink from '../components/AlbumLink'
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'
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
}
this.props.mopidyActions.removeTracks( tlids )
2016-10-19 14:09:34 +13:00
}
playTrack( track ){
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">
<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) => {
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),
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)