summaryrefslogtreecommitdiffstats
path: root/front/odiparpack/app/components/CardPaper/PlayerCard.js
diff options
context:
space:
mode:
Diffstat (limited to 'front/odiparpack/app/components/CardPaper/PlayerCard.js')
-rw-r--r--front/odiparpack/app/components/CardPaper/PlayerCard.js66
1 files changed, 66 insertions, 0 deletions
diff --git a/front/odiparpack/app/components/CardPaper/PlayerCard.js b/front/odiparpack/app/components/CardPaper/PlayerCard.js
new file mode 100644
index 0000000..eabbb3a
--- /dev/null
+++ b/front/odiparpack/app/components/CardPaper/PlayerCard.js
@@ -0,0 +1,66 @@
+import React from 'react';
+import PropTypes from 'prop-types';
+import { withStyles } from '@material-ui/core/styles';
+import SkipPreviousIcon from '@material-ui/icons/SkipPrevious';
+import PlayArrowIcon from '@material-ui/icons/PlayArrow';
+import SkipNextIcon from '@material-ui/icons/SkipNext';
+import { Typography, Card, CardMedia, CardContent, IconButton } from '@material-ui/core';
+import styles from './cardStyle-jss';
+
+
+class PlayerCard extends React.Component {
+ state = { expanded: false };
+
+ handleExpandClick = () => {
+ this.setState({ expanded: !this.state.expanded });
+ };
+
+ render() {
+ const {
+ classes,
+ theme,
+ title,
+ artist,
+ cover,
+ } = this.props;
+
+ return (
+ <Card className={classes.cardPlayer}>
+ <div className={classes.details}>
+ <CardContent className={classes.content}>
+ <Typography variant="h5">{title}</Typography>
+ <Typography variant="subtitle1" color="textSecondary">
+ {artist}
+ </Typography>
+ </CardContent>
+ <div className={classes.controls}>
+ <IconButton aria-label="Previous">
+ {theme.direction === 'rtl' ? <SkipNextIcon /> : <SkipPreviousIcon />}
+ </IconButton>
+ <IconButton aria-label="Play/pause">
+ <PlayArrowIcon className={classes.playIcon} />
+ </IconButton>
+ <IconButton aria-label="Next">
+ {theme.direction === 'rtl' ? <SkipPreviousIcon /> : <SkipNextIcon />}
+ </IconButton>
+ </div>
+ </div>
+ <CardMedia
+ className={classes.cover}
+ image={cover}
+ title={title}
+ />
+ </Card>
+ );
+ }
+}
+
+PlayerCard.propTypes = {
+ classes: PropTypes.object.isRequired,
+ theme: PropTypes.object.isRequired,
+ title: PropTypes.string.isRequired,
+ artist: PropTypes.string.isRequired,
+ cover: PropTypes.string.isRequired,
+};
+
+export default withStyles(styles, { withTheme: true })(PlayerCard);