-
-
Notifications
You must be signed in to change notification settings - Fork 32.6k
[docs] Add ImgMediaCard TypeScript demo #15130
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
e2c5101
two more tables
jasondashwang 1719353
require help on virtualized table
jasondashwang 8321d3d
CustomPaginationActionsTable demo
jasondashwang 9bb9ca7
reversed virtualized table prop changes
jasondashwang 6c8ad26
cannot figure out virtualized table
jasondashwang fe7b54f
Merge branch 'next' of github.com:mui-org/material-ui into next
jasondashwang 8fc0a4a
formatted JS
jasondashwang 602e53f
ran yarn prettier
jasondashwang 5a98b28
Merge branch 'next' of github.com:mui-org/material-ui into next
jasondashwang 935b265
Merge branch 'next' of github.com:mui-org/material-ui into next
jasondashwang c8f5950
img media card
jasondashwang 697350e
Merge branch 'next' into pr/jasondashwang/15130
eps1lon a0adbc3
[docs] Update ImgMediaCard demo
eps1lon File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
import React from 'react'; | ||
import PropTypes from 'prop-types'; | ||
import { withStyles, createStyles, WithStyles } from '@material-ui/core/styles'; | ||
import Card from '@material-ui/core/Card'; | ||
import CardActionArea from '@material-ui/core/CardActionArea'; | ||
import CardActions from '@material-ui/core/CardActions'; | ||
import CardContent from '@material-ui/core/CardContent'; | ||
import CardMedia from '@material-ui/core/CardMedia'; | ||
import Button from '@material-ui/core/Button'; | ||
import Typography from '@material-ui/core/Typography'; | ||
|
||
const styles = createStyles({ | ||
card: { | ||
maxWidth: 345, | ||
}, | ||
}); | ||
|
||
export interface Props extends WithStyles<typeof styles> {} | ||
|
||
function ImgMediaCard(props: Props) { | ||
const { classes } = props; | ||
return ( | ||
<Card className={classes.card}> | ||
<CardActionArea> | ||
<CardMedia | ||
component="img" | ||
alt="Contemplative Reptile" | ||
height="140" | ||
image="/static/images/cards/contemplative-reptile.jpg" | ||
title="Contemplative Reptile" | ||
/> | ||
<CardContent> | ||
<Typography gutterBottom variant="h5" component="h2"> | ||
Lizard | ||
</Typography> | ||
<Typography variant="body2" color="textSecondary" component="p"> | ||
Lizards are a widespread group of squamate reptiles, with over 6,000 species, ranging | ||
across all continents except Antarctica | ||
</Typography> | ||
</CardContent> | ||
</CardActionArea> | ||
<CardActions> | ||
<Button size="small" color="primary"> | ||
Share | ||
</Button> | ||
<Button size="small" color="primary"> | ||
Learn More | ||
</Button> | ||
</CardActions> | ||
</Card> | ||
); | ||
} | ||
|
||
ImgMediaCard.propTypes = { | ||
classes: PropTypes.object.isRequired, | ||
} as any; | ||
|
||
export default withStyles(styles)(ImgMediaCard); |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am getting a TS compile error:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like we need to apply #15003 to CardMedia? cc @eps1lon