Files
Iris/src/js/components/FollowButton.js

69 lines
1.7 KiB
JavaScript
Raw Normal View History

2016-11-18 13:21:30 +13:00
import React, { PropTypes } from 'react'
import { connect } from 'react-redux'
import { Link } from 'react-router'
import { createStore, bindActionCreators } from 'redux'
import FontAwesome from 'react-fontawesome'
import * as helpers from '../helpers'
import * as spotifyActions from '../services/spotify/actions'
class FollowButton extends React.Component{
constructor(props) {
2017-06-12 21:10:04 +12:00
super(props)
2016-11-18 13:21:30 +13:00
}
componentDidMount(){
if (this.props.spotify_authorized && this.props.uri){
this.props.spotifyActions.following(this.props.uri)
}
2016-11-18 13:21:30 +13:00
}
remove(){
this.props.spotifyActions.following(this.props.uri, 'DELETE')
}
add(){
this.props.spotifyActions.following(this.props.uri, 'PUT')
}
render(){
if (!this.props.spotify_authorized || !this.props.uri){
2017-06-12 21:10:04 +12:00
return false
}
2016-11-18 13:21:30 +13:00
2017-02-07 20:07:04 +13:00
var className = ''
2017-02-07 10:00:29 +13:00
2017-06-12 21:10:04 +12:00
// Inherit passed-down classes
if (this.props.className){
className += ' '+this.props.className
}
// Loader
2017-06-14 20:21:02 +12:00
if (helpers.isLoading(this.props.load_queue,['/following','/followers','me/albums/contains/?ids=','me/albums/?ids='])){
2017-06-12 21:10:04 +12:00
className += ' working'
}
if (this.props.is_following === true){
return <button className={className+' destructive'} onClick={e => this.remove()}>{this.props.removeText}</button>
} else {
return <button className={className} onClick={e => this.add()}>{this.props.addText}</button>
2016-11-18 13:21:30 +13:00
}
}
}
const mapStateToProps = (state, ownProps) => {
return {
2017-06-12 21:10:04 +12:00
load_queue: state.ui.load_queue,
spotify_authorized: state.spotify.authorization
2016-11-18 13:21:30 +13:00
}
}
const mapDispatchToProps = (dispatch) => {
return {
spotifyActions: bindActionCreators(spotifyActions, dispatch)
}
}
export default connect(mapStateToProps, mapDispatchToProps)(FollowButton)