Skip to content
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

Fix: fix page change flickering when zoomed in #384

Merged
merged 2 commits into from
Sep 12, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 66 additions & 0 deletions src/lib/__tests__/util-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -561,4 +561,70 @@ describe('lib/util', () => {
expect(element.style.height).to.equal(`${height}px`);
});
});

describe('pageNumberFromScroll()', () => {
it('should incrememt the page if scrolling down and scroll top has passed the midpoint of page', () => {
const currentPageNum = 1;
const previousScrollTop = 0;
const currentPageEl = {
offsetTop: 0,
clientHeight: 200
};
const wrapperEl = {
scrollTop: 101,
offsetHeight: 500
};

const result = util.pageNumberFromScroll(currentPageNum, previousScrollTop, currentPageEl, wrapperEl);
expect(result).to.equal(2);
});

it('should not change the page if scrolling down and scroll top has not passed the midpoint of page', () => {
const currentPageNum = 1;
const previousScrollTop = 0;
const currentPageEl = {
offsetTop: 0,
clientHeight: 200
};
const wrapperEl = {
scrollTop: 99,
offsetHeight: 500
};

const result = util.pageNumberFromScroll(currentPageNum, previousScrollTop, currentPageEl, wrapperEl);
expect(result).to.equal(1);
});

it('should decrement the page if scrolling up and scroll bottom has passed the midpoint of page', () => {
const currentPageNum = 2;
const previousScrollTop = 500;
const currentPageEl = {
offsetTop: 100,
clientHeight: 200
};
const wrapperEl = {
scrollTop: 0,
offsetHeight: 100
};

const result = util.pageNumberFromScroll(currentPageNum, previousScrollTop, currentPageEl, wrapperEl);
expect(result).to.equal(1);
});

it('should not change the page if scrolling up and scroll bottom has not passed the midpoint of page', () => {
const currentPageNum = 2;
const previousScrollTop = 500;
const currentPageEl = {
offsetTop: 0,
clientHeight: 200
};
const wrapperEl = {
scrollTop: 10,
offsetHeight: 100
};

const result = util.pageNumberFromScroll(currentPageNum, previousScrollTop, currentPageEl, wrapperEl);
expect(result).to.equal(2);
});
});
});
18 changes: 11 additions & 7 deletions src/lib/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -730,20 +730,24 @@ export function removeActivationListener(element, handler) {
*
* @public
* @param {number} currentPageNum - The current page
* @param {number} previousScrollTop - The last recorded Y scrolling position
* @param {HTMLElement} currentPageEl - The current page element
* @param {HTMLElement} wrapperEl - the content wrapper element
* @param {HTMLElement} wrapperEl - The content wrapper element
* @return {number} the resulting page number
*/
export function pageNumberFromScroll(currentPageNum, currentPageEl, wrapperEl) {
export function pageNumberFromScroll(currentPageNum, previousScrollTop, currentPageEl, wrapperEl) {
let pageNum = currentPageNum;
const currentScrollTop = wrapperEl.scrollTop;
const currentScrollBottom = wrapperEl.scrollTop + wrapperEl.offsetHeight;
const currentPageMiddleY = currentPageEl.offsetTop + currentPageEl.clientHeight / 2;

if (currentScrollTop > currentPageMiddleY) {
return currentPageNum + 1;
} else if (currentScrollBottom < currentPageMiddleY) {
return currentPageNum - 1;
if (currentScrollTop > previousScrollTop) {
// Scrolling down
pageNum = currentScrollTop > currentPageMiddleY ? currentPageNum + 1 : currentPageNum;
} else if (currentScrollTop < previousScrollTop) {
// Scrolling up
pageNum = currentScrollBottom < currentPageMiddleY ? currentPageNum - 1 : currentPageNum;
}

return currentPageNum;
return pageNum;
}
4 changes: 4 additions & 0 deletions src/lib/viewers/image/MultiImageViewer.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ class MultiImageViewer extends ImageBaseViewer {

// Defaults the current page number to 1
this.currentPageNumber = 1;
this.previousScrollTop = 0;
}

/**
Expand Down Expand Up @@ -338,12 +339,15 @@ class MultiImageViewer extends ImageBaseViewer {
handlePageChangeFromScroll() {
const pageChange = pageNumberFromScroll(
this.currentPageNumber,
this.previousScrollTop,
this.singleImageEls[this.currentPageNumber - 1],
this.wrapperEl
);

this.updateCurrentPage(pageChange);

this.scrollCheckHandler = null;
this.previousScrollTop = this.wrapperEl.scrollTop;
}
}

Expand Down
11 changes: 8 additions & 3 deletions src/lib/viewers/image/__tests__/MultiImageViewer-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -528,26 +528,31 @@ describe('lib/viewers/image/MultiImageViewer', () => {
multiImage.singleImageEls = [document.createElement('div')];
stubs.singleImageEls = multiImage.singleImageEls;

multiImage.wrapperEl = document.createElement('div');
multiImage.wrapperEl = {
scrollTop: 100
}
stubs.wrapperEl = multiImage.wrapperEl;

multiImage.previousScrollTop = 0;

})

it('should determine the current page number based on scroll', () => {
multiImage.handlePageChangeFromScroll();
expect(stubs.pageNumberFromScroll).to.be.calledWith(1, stubs.singleImageEls[0], stubs.wrapperEl);
expect(stubs.pageNumberFromScroll).to.be.calledWith(1, 0, stubs.singleImageEls[0], stubs.wrapperEl);
});

it('should attempt to update the current page number', () => {
multiImage.handlePageChangeFromScroll();
expect(stubs.updateCurrentPage).to.be.called;
});

it('reset the scroll check handler', () => {
it('reset the scroll check handler and update the previous scroll top position', () => {
multiImage.scrollCheckHandler = true;

multiImage.handlePageChangeFromScroll();
expect(multiImage.scrollCheckHandler).to.equal(null);
expect(multiImage.previousScrollTop).to.equal(100);
});
});
});