Files
Iris/src/js/components/Modal/AddToQueueModal.js

67 lines
1.7 KiB
JavaScript
Raw Normal View History

2017-03-08 09:13:24 +13:00
import React, { PropTypes } from 'react'
import FontAwesome from 'react-fontawesome'
import Icon from '../Icon'
import * as helpers from '../../helpers'
export default class AddToQueueModal extends React.Component{
constructor(props){
super(props)
this.state = {
uris: '',
next: false
2017-03-08 09:13:24 +13:00
}
}
handleSubmit(e){
var uris = this.state.uris.split(',')
console.log(this.state)
this.props.mopidyActions.enqueueURIs(uris, null, this.state.next)
2017-03-08 09:13:24 +13:00
this.props.uiActions.closeModal()
}
render(){
return (
<div>
<h1>Add to queue</h1>
<h2 className="grey-text">Add a comma-separated list of URIs to the play queue. You must have the appropriate Mopidy backend enabled for each URI schema (eg spotify:, yt:).</h2>
2017-03-08 09:13:24 +13:00
<form onSubmit={e => this.handleSubmit(e)}>
<div className="field text">
<span className="label">URI(s)</span>
2017-03-08 09:13:24 +13:00
<input
type="text"
onChange={e => this.setState({uris: e.target.value})}
value={this.state.uris} />
</div>
<div className="field radio white">
<span className="label">Position</span>
2017-03-08 09:13:24 +13:00
<label>
<input
type="radio"
name="next"
checked={!this.state.next}
onChange={e => this.setState({next: false})} />
<span className="label">End</span>
2017-03-08 09:13:24 +13:00
</label>
<label>
<input
type="radio"
name="next"
checked={this.state.next}
onChange={e => this.setState({next: true})} />
<span className="label">After current track</span>
2017-03-08 09:13:24 +13:00
</label>
</div>
<div className="actions centered-text">
<button type="submit" className="primary wide">Add</button>
</div>
</form>
</div>
)
}
}