Skip to content
This repository has been archived by the owner on Jan 19, 2023. It is now read-only.

Commit

Permalink
fix: Improve rendering on zoom in Safari
Browse files Browse the repository at this point in the history
Merge pull request #70 from sbking/ios-safari-zoom-fix
Modify transformations for better iOS Safari rendering
  • Loading branch information
fritz-c committed Oct 5, 2017
2 parents bb0edb3 + 72ba17d commit bab9ca1
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 32 deletions.
56 changes: 26 additions & 30 deletions src/react-image-lightbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -385,8 +385,10 @@ class ReactImageLightbox extends Component {

return {
src: imageSrc,
height: fitSizes.height,
width: fitSizes.width,
height: this.imageCache[imageSrc].height,
width: this.imageCache[imageSrc].width,
targetHeight: fitSizes.height,
targetWidth: fitSizes.width
};
}

Expand Down Expand Up @@ -1196,27 +1198,17 @@ class ReactImageLightbox extends Component {
}

// Request to transition to the previous image
static getTransform({ x = null, y = null, zoom = null }) {
static getTransform({ x = 0, y = 0, zoom = 1, width, targetWidth }) {
const isOldIE = _ieVersion < 10;
const transforms = [];
if (x !== null || y !== null) {
transforms.push(isOldIE ?
`translate(${x || 0}px,${y || 0}px)` :
`translate3d(${x || 0}px,${y || 0}px,0)`
);
}

if (zoom !== null) {
transforms.push(isOldIE ?
`scale(${zoom})` :
`scale3d(${zoom},${zoom},1)`
);
const windowWidth = getWindowWidth()
if (width > windowWidth) {
x += (windowWidth - width) / 2;
}
const scaleFactor = zoom * (targetWidth / width)

return {
[isOldIE ? 'msTransform' : 'transform']:
transforms.length === 0 ? 'none' : transforms.join(' '),
};
return isOldIE ?
{ msTransform: `translate(${x}px,${y}px) scale(${scaleFactor})` } :
{ transform: `translate3d(${x}px,${y}px,0) scale3d(${scaleFactor},${scaleFactor},1)` };
}

static loadStyles() {
Expand Down Expand Up @@ -1266,18 +1258,25 @@ class ReactImageLightbox extends Component {

// Images to be displayed
const images = [];
const addImage = (srcType, imageClass, baseStyle = {}) => {
const addImage = (srcType, imageClass, transforms) => {
// Ignore types that have no source defined for their full size image
if (!this.props[srcType]) {
return;
}
const bestImageInfo = this.getBestImageForType(srcType);

const imageStyle = {
...transitionStyle,
...ReactImageLightbox.getTransform({
...transforms,
...bestImageInfo
})
};

const imageStyle = { ...baseStyle, ...transitionStyle };
if (zoomLevel > MIN_ZOOM_LEVEL) {
imageStyle.cursor = 'move';
}

const bestImageInfo = this.getBestImageForType(srcType);
if (bestImageInfo === null) {
let loadingIcon;
if (_ieVersion < 10) {
Expand Down Expand Up @@ -1321,9 +1320,6 @@ class ReactImageLightbox extends Component {
return;
}

imageStyle.width = isNaN(bestImageInfo.width) ? null : bestImageInfo.width;
imageStyle.height = isNaN(bestImageInfo.height) ? null : bestImageInfo.height;

const imageSrc = bestImageInfo.src;
if (discourageDownloads) {
imageStyle.backgroundImage = `url('${imageSrc}')`;
Expand Down Expand Up @@ -1360,23 +1356,23 @@ class ReactImageLightbox extends Component {
addImage(
'nextSrc',
`ril-image-next ${styles.imageNext}`,
ReactImageLightbox.getTransform({ x: boxSize.width })
{ x: boxSize.width }
);
// Main Image
addImage(
'mainSrc',
'ril-image-current',
ReactImageLightbox.getTransform({
{
x: -1 * offsetX,
y: -1 * offsetY,
zoom: zoomMultiplier,
})
}
);
// Previous Image (displayed on the left)
addImage(
'prevSrc',
`ril-image-prev ${styles.imagePrev}`,
ReactImageLightbox.getTransform({ x: -1 * boxSize.width })
{ x: -1 * boxSize.width }
);

const noop = () => {};
Expand Down
2 changes: 0 additions & 2 deletions src/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,6 @@ $maxCaptionHeight: 150px;
bottom: 0;
left: 0;
margin: auto;
max-width: 100%;
max-height: 100%;
-ms-content-zooming: none;
-ms-user-select: none;
-ms-touch-select: none;
Expand Down

0 comments on commit bab9ca1

Please sign in to comment.