ampache_react/app/components/Album.jsx

103 lines
3.0 KiB
React
Raw Normal View History

2016-07-07 23:23:18 +02:00
import React, { Component, PropTypes } from "react";
import CSSModules from "react-css-modules";
2016-08-02 13:07:12 +02:00
import { defineMessages, FormattedMessage } from "react-intl";
import FontAwesome from "react-fontawesome";
2016-07-07 23:23:18 +02:00
2016-08-02 13:07:12 +02:00
import { formatLength, messagesMap } from "../utils";
import commonMessages from "../locales/messagesDescriptors/common";
2016-07-07 23:23:18 +02:00
import css from "../styles/Album.scss";
2016-08-02 13:07:12 +02:00
const albumMessages = defineMessages(messagesMap(commonMessages));
class AlbumTrackRowCSS extends Component {
2016-07-07 23:23:18 +02:00
render () {
const length = formatLength(this.props.track.time);
2016-07-07 23:23:18 +02:00
return (
<tr>
2016-08-02 13:07:12 +02:00
<td>
<button styleName="play">
<span className="sr-only">
<FormattedMessage {...albumMessages["app.common.play"]} />
</span>
<FontAwesome name="play-circle-o" aria-hidden="true" />
</button>
2016-08-02 13:07:12 +02:00
</td>
2016-07-07 23:23:18 +02:00
<td>{this.props.track.track}</td>
<td>{this.props.track.name}</td>
<td>{length}</td>
</tr>
);
}
}
AlbumTrackRowCSS.propTypes = {
2016-07-07 23:23:18 +02:00
track: PropTypes.object.isRequired
};
export let AlbumTrackRow = CSSModules(AlbumTrackRowCSS, css);
2016-07-07 23:23:18 +02:00
2016-07-30 01:05:25 +02:00
class AlbumTracksTableCSS extends Component {
2016-07-07 23:23:18 +02:00
render () {
var rows = [];
this.props.tracks.forEach(function (item) {
rows.push(<AlbumTrackRow track={item} key={item.id} />);
});
return (
2016-07-30 01:05:25 +02:00
<table className="table table-hover" styleName="songs">
2016-07-07 23:23:18 +02:00
<tbody>
{rows}
</tbody>
</table>
);
}
}
2016-07-30 01:05:25 +02:00
AlbumTracksTableCSS.propTypes = {
2016-07-07 23:23:18 +02:00
tracks: PropTypes.array.isRequired
};
2016-07-30 01:05:25 +02:00
export let AlbumTracksTable = CSSModules(AlbumTracksTableCSS, css);
class AlbumRowCSS extends Component {
2016-07-07 23:23:18 +02:00
render () {
return (
<div className="row" styleName="row">
<div className="col-sm-offset-2 col-xs-9 col-sm-10" styleName="nameRow">
2016-07-27 13:51:30 +02:00
<h2>{this.props.album.name}</h2>
2016-07-07 23:23:18 +02:00
</div>
<div className="col-xs-3 col-sm-2" styleName="artRow">
<p className="text-center"><img src={this.props.album.art} width="200" height="200" className="img-responsive img-circle" styleName="art" alt={this.props.album.name} /></p>
2016-07-27 13:51:30 +02:00
</div>
<div className="col-xs-9 col-sm-10 table-responsive">
{
Array.isArray(this.props.album.tracks) ?
<AlbumTracksTable tracks={this.props.album.tracks} /> :
null
}
2016-07-07 23:23:18 +02:00
</div>
</div>
);
}
}
AlbumRowCSS.propTypes = {
2016-07-07 23:23:18 +02:00
album: PropTypes.object.isRequired
};
export let AlbumRow = CSSModules(AlbumRowCSS, css);
2016-07-07 23:23:18 +02:00
export default class Album extends Component {
render () {
return (
<AlbumRow album={this.props.album} />
);
}
}
Album.propTypes = {
album: PropTypes.object.isRequired
};