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: '',
|
2017-05-05 10:47:18 +12:00
|
|
|
next: false
|
2017-03-08 09:13:24 +13:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
handleSubmit(e){
|
2017-11-17 20:25:43 +13:00
|
|
|
var uris = this.state.uris.split(',');
|
|
|
|
|
this.props.mopidyActions.enqueueURIs(uris, null, this.state.next);
|
|
|
|
|
this.props.uiActions.closeModal();
|
2017-03-08 09:13:24 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
render(){
|
|
|
|
|
return (
|
|
|
|
|
<div>
|
2017-07-14 08:57:53 +12:00
|
|
|
<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">
|
2017-07-14 08:57:53 +12:00
|
|
|
<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">
|
2017-07-14 08:57:53 +12:00
|
|
|
<span className="label">Position</span>
|
2017-03-08 09:13:24 +13:00
|
|
|
<label>
|
|
|
|
|
<input
|
|
|
|
|
type="radio"
|
2017-05-05 10:47:18 +12:00
|
|
|
name="next"
|
|
|
|
|
checked={!this.state.next}
|
|
|
|
|
onChange={e => this.setState({next: false})} />
|
2017-07-14 08:57:53 +12:00
|
|
|
<span className="label">End</span>
|
2017-03-08 09:13:24 +13:00
|
|
|
</label>
|
|
|
|
|
<label>
|
|
|
|
|
<input
|
|
|
|
|
type="radio"
|
2017-05-05 10:47:18 +12:00
|
|
|
name="next"
|
|
|
|
|
checked={this.state.next}
|
|
|
|
|
onChange={e => this.setState({next: true})} />
|
2017-07-14 08:57:53 +12:00
|
|
|
<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>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
}
|