Removed test props, fixed image scaling issue.
This commit is contained in:
@ -24,7 +24,7 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import LoadableImage from './LoadableImage';
|
import LoadableImage from './LoadableImage';
|
||||||
|
|
||||||
const DPI_RATIOS = 4;
|
const DPI_RATIOS = [1,2,4];
|
||||||
|
|
||||||
export default (props) => {
|
export default (props) => {
|
||||||
let newProps = {...props};
|
let newProps = {...props};
|
||||||
@ -66,6 +66,11 @@ export default (props) => {
|
|||||||
//Image
|
//Image
|
||||||
sources = sources || [];
|
sources = sources || [];
|
||||||
|
|
||||||
|
//Sort the sources by their size
|
||||||
|
sources.sort((l,r) => {
|
||||||
|
return (l.size||l.width) - (r.size||r.width);
|
||||||
|
});
|
||||||
|
|
||||||
let sourcesByWidth = {};
|
let sourcesByWidth = {};
|
||||||
let sourceElements = [];
|
let sourceElements = [];
|
||||||
|
|
||||||
@ -78,51 +83,57 @@ export default (props) => {
|
|||||||
for(let i = 0; i < sources.length; i++) {
|
for(let i = 0; i < sources.length; i++) {
|
||||||
let source = sources[i];
|
let source = sources[i];
|
||||||
let width = source.size || source.width;
|
let width = source.size || source.width;
|
||||||
let isLast = (i+1) === sources.length;
|
|
||||||
|
|
||||||
for(let scale = 1; scale <= DPI_RATIOS; scale++) {//4 = max scales
|
//Thanks to maxWidth prop we need to check if this iteration is the last.
|
||||||
let scaledWidth = Math.round(width / scale);
|
let maxWidthBreak = false;
|
||||||
|
if(maxWidth && i > 0) {
|
||||||
|
if(width >= maxWidth) maxWidthBreak = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
DPI_RATIOS.forEach(ratio => {
|
||||||
|
let scaledWidth = Math.round(width / ratio);
|
||||||
|
|
||||||
|
//Don't scale less than the smallest image (i.e. 200px@1x shouldn't be 50@4x)
|
||||||
|
if(scaledWidth < (sources[0].size||sources[0].width)) return false;
|
||||||
|
|
||||||
let o = {...source};
|
let o = {...source};
|
||||||
o.scale = scale;//Inject scale (DPI ratio)
|
o.scale = ratio;//Inject scale (DPI ratio)
|
||||||
o.isLast = isLast;//Is Last used for min-width rather than max-width
|
|
||||||
|
|
||||||
let widthKey = `${scaledWidth}`;
|
|
||||||
|
|
||||||
//Create an array for this screen width
|
//Create an array for this screen width
|
||||||
|
let widthKey = `${scaledWidth}`;
|
||||||
sourcesByWidth[widthKey] = sourcesByWidth[widthKey] || [];
|
sourcesByWidth[widthKey] = sourcesByWidth[widthKey] || [];
|
||||||
sourcesByWidth[widthKey].push(o);//Add this source
|
sourcesByWidth[widthKey].push(o);//Add this source
|
||||||
}
|
});
|
||||||
|
|
||||||
|
//Was this the last iteration?
|
||||||
|
if(maxWidthBreak) break;
|
||||||
}
|
}
|
||||||
|
|
||||||
//Sort by size in descending order
|
//Sort by size in ascending order
|
||||||
let keys = Object.keys(sourcesByWidth);
|
let keys = Object.keys(sourcesByWidth);
|
||||||
keys.sort((l, r) => {
|
keys.sort((l, r) => {
|
||||||
return parseInt(l) - parseInt(r);
|
return parseInt(l) - parseInt(r);
|
||||||
});
|
});
|
||||||
|
|
||||||
let breakNext = false;
|
//let breakNext = false;
|
||||||
for(let i = 0; i < keys.length; i++) {
|
for(let i = 0; i < keys.length; i++) {
|
||||||
if(breakNext) break;
|
|
||||||
let k = keys[i];//The pixel size
|
let k = keys[i];//The pixel size
|
||||||
|
|
||||||
let ss = sourcesByWidth[k];//Sources at this pixel resolution (array of sources)
|
let ss = sourcesByWidth[k];//Sources at this pixel resolution (array of sources)
|
||||||
let mediaQuery = `(max-width:${k}px)`;//Media query
|
if(!ss.length) continue;
|
||||||
|
|
||||||
|
let mediaQuery;//Media query
|
||||||
let sss = [];
|
let sss = [];
|
||||||
|
|
||||||
let isNextBreak = false;
|
//Try and make this media query be max width by the next key
|
||||||
if(maxWidth && (i+1 < keys.length)) {
|
if(i+1 < keys.length) {
|
||||||
if(keys[i+1] > parseInt(maxWidth)) isNextBreak = true;
|
let nextKey = keys[i+1];
|
||||||
}
|
mediaQuery = `(max-width:${nextKey}px)`;
|
||||||
if(isNextBreak) {
|
} else {
|
||||||
breakNext = true;
|
|
||||||
mediaQuery = `(min-width:${k}px)`;
|
mediaQuery = `(min-width:${k}px)`;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(ss.length && ss[0].isLast) {
|
|
||||||
let prev = i > 0 ? keys[i-1] : 0;
|
|
||||||
mediaQuery = `(min-width:${prev}px)`;
|
|
||||||
}
|
|
||||||
|
|
||||||
for(let x = 0; x < ss.length; x++) {
|
for(let x = 0; x < ss.length; x++) {
|
||||||
let scale = ss[x];
|
let scale = ss[x];
|
||||||
let source = scale.src || scale.path;
|
let source = scale.src || scale.path;
|
||||||
|
@ -109,7 +109,7 @@ class ContactPage extends React.Component {
|
|||||||
onError={ this.onError.bind(this) }
|
onError={ this.onError.bind(this) }
|
||||||
manager={ this.manager }
|
manager={ this.manager }
|
||||||
>
|
>
|
||||||
<FormGroup test="First Group">
|
<FormGroup>
|
||||||
<Label htmlFor="name">
|
<Label htmlFor="name">
|
||||||
{ Language.get("pages.contact.name.label") }
|
{ Language.get("pages.contact.name.label") }
|
||||||
</Label>
|
</Label>
|
||||||
|
@ -42,7 +42,7 @@ export default (props) => {
|
|||||||
>
|
>
|
||||||
<PageBoundary full>
|
<PageBoundary full>
|
||||||
<FloatingContentBox position="middle center" size="large" className="u-text-center">
|
<FloatingContentBox position="middle center" size="large" className="u-text-center">
|
||||||
<ElementScrollFader from="bottom" test="yes">
|
<ElementScrollFader from="bottom" >
|
||||||
<Title>{ Language.get("pages.home.banner.title") }</Title>
|
<Title>{ Language.get("pages.home.banner.title") }</Title>
|
||||||
<Subtitle className="u-responsive--small-up">{ Language.get("pages.home.banner.subtitle") }</Subtitle>
|
<Subtitle className="u-responsive--small-up">{ Language.get("pages.home.banner.subtitle") }</Subtitle>
|
||||||
</ElementScrollFader>
|
</ElementScrollFader>
|
||||||
|
@ -140,7 +140,6 @@ export default props => {
|
|||||||
src={ require('@assets/images/work-showcase/kopalife.png') }
|
src={ require('@assets/images/work-showcase/kopalife.png') }
|
||||||
title={ Language.get("pages.home.work.kopa.heading") }
|
title={ Language.get("pages.home.work.kopa.heading") }
|
||||||
description={ Language.get("pages.home.work.kopa.description") }
|
description={ Language.get("pages.home.work.kopa.description") }
|
||||||
test="true"
|
|
||||||
/>
|
/>
|
||||||
|
|
||||||
{/* SMAI */}
|
{/* SMAI */}
|
||||||
|
Reference in New Issue
Block a user