Added image prop to Image, self determines src vs sources
This commit is contained in:
@ -29,16 +29,28 @@ export default class Image extends React.Component {
|
|||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
|
let sourceProps = Object.assign({}, this.props);
|
||||||
|
|
||||||
|
//Prop Manipulation
|
||||||
|
if(sourceProps.image) {
|
||||||
|
if(Array.isArray(sourceProps.image)) {
|
||||||
|
sourceProps.sources = sourceProps.image;
|
||||||
|
} else {
|
||||||
|
sourceProps.src = sourceProps.image;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//Image
|
||||||
let sourceElements = [];
|
let sourceElements = [];
|
||||||
let sources = {};
|
let sources = {};
|
||||||
|
|
||||||
let defaultSrc = this.props.src;
|
let defaultSrc = sourceProps.src;
|
||||||
let defaultAlt = this.props.alt;
|
let defaultAlt = sourceProps.alt;
|
||||||
|
|
||||||
if(this.props.sources) {
|
if(sourceProps.sources) {
|
||||||
//Iterate over supplied sources
|
//Iterate over supplied sources
|
||||||
for(let i = 0; i < this.props.sources.length; i++) {
|
for(let i = 0; i < sourceProps.sources.length; i++) {
|
||||||
let x = this.props.sources[i];
|
let x = sourceProps.sources[i];
|
||||||
let w = x.size;
|
let w = x.size;
|
||||||
sources[w] = sources[w] || [];
|
sources[w] = sources[w] || [];
|
||||||
sources[w].push(x);
|
sources[w].push(x);
|
||||||
@ -69,7 +81,7 @@ export default class Image extends React.Component {
|
|||||||
return (
|
return (
|
||||||
<picture>
|
<picture>
|
||||||
{ sourceElements }
|
{ sourceElements }
|
||||||
<img src={ this.props.src } alt={ this.props.alt } className={ this.props.className } />
|
<img src={ defaultSrc } alt={ defaultAlt } className={ sourceProps.className } />
|
||||||
</picture>
|
</picture>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user