Files
Iris/src/js/components/Track.js

67 lines
1.9 KiB
JavaScript
Raw Normal View History

2016-10-03 21:21:14 +13:00
import React, { PropTypes } from 'react'
2016-10-06 16:38:06 +13:00
import FontAwesome from 'react-fontawesome'
2016-10-25 21:36:33 +13:00
import ArtistSentence from './ArtistSentence'
import AlbumLink from './AlbumLink'
2016-10-31 16:49:42 +13:00
import Dater from './Dater'
2016-11-06 18:29:49 +13:00
var helpers = require('../helpers.js')
2016-10-03 21:21:14 +13:00
export default class Track extends React.Component{
constructor(props) {
super(props);
}
2016-10-27 10:02:12 +13:00
handleClick(e){
var target = $(e.target);
if( !target.is('a') && target.closest('a').length <= 0 ){
this.props.handleClick(e);
}
2016-10-06 16:38:06 +13:00
}
2016-10-27 10:02:12 +13:00
handleDoubleClick(e){
return this.props.handleDoubleClick(e);
}
2016-10-27 10:02:12 +13:00
handleContextMenu(e){
e.preventDefault();
// trigger a regular click event
if( !this.props.track.selected ) this.handleClick(e);
// notify our tracklist
this.props.handleContextMenu(e);
}
2016-10-03 21:21:14 +13:00
render(){
2016-10-31 16:49:42 +13:00
var track = this.props.track;
2016-10-06 16:38:06 +13:00
var className = 'list-item track';
2016-10-31 16:49:42 +13:00
if( typeof(track.selected) !== 'undefined' && track.selected ) className += ' selected';
if( track.playing ) className += ' playing';
2016-10-06 16:38:06 +13:00
return (
<div
className={className}
onDoubleClick={ (e) => this.handleDoubleClick(e) }
2016-10-27 10:02:12 +13:00
onClick={ (e) => this.handleClick(e) }
onContextMenu={ (e) => this.handleContextMenu(e) }>
2016-10-25 14:09:53 +13:00
{ this.props.track.selected ? <FontAwesome name="check" className="select-state" fixedWidth /> : null }
<span className="col name">
2016-10-31 16:49:42 +13:00
{track.name}
</span>
<span className="col artists">
2016-10-31 16:49:42 +13:00
{ track.artists ? <ArtistSentence artists={track.artists} /> : null }
</span>
<span className="col album">
2016-10-31 16:49:42 +13:00
{ track.album ? <AlbumLink album={track.album} /> : null }
</span>
<span className="col duration">
2016-10-31 16:49:42 +13:00
{ track.duration_ms ? <Dater type="length" data={track.duration_ms} /> : null }
{ track.length ? <Dater type="length" data={track.length} /> : null }
</span>
2016-11-06 18:29:49 +13:00
{ this.props.show_source_icon ? <FontAwesome className="source" name={helpers.sourceIcon(track.uri)} /> : null }
2016-10-06 16:38:06 +13:00
</div>
);
2016-10-03 21:21:14 +13:00
}
}