Commit 3dfd2451 authored by ftab's avatar ftab Committed by Phil Hughes

Make swipe view images line up

If left without a width/height, swipeFrame goes off track when the image
isn't wide enough to fill the available width. The spaceLeft prevented
reaching the right edge of the image.
parent dfb2c378
...@@ -58,12 +58,11 @@ export default { ...@@ -58,12 +58,11 @@ export default {
const moveX = e.pageX || e.touches[0].pageX; const moveX = e.pageX || e.touches[0].pageX;
let leftValue = moveX - this.$refs.swipeFrame.getBoundingClientRect().left; let leftValue = moveX - this.$refs.swipeFrame.getBoundingClientRect().left;
const spaceLeft = 20;
const { clientWidth } = this.$refs.swipeFrame; const { clientWidth } = this.$refs.swipeFrame;
if (leftValue <= 0) { if (leftValue <= 0) {
leftValue = 0; leftValue = 0;
} else if (leftValue > clientWidth - spaceLeft) { } else if (leftValue > clientWidth) {
leftValue = clientWidth - spaceLeft; leftValue = clientWidth;
} }
this.swipeWrapWidth = (leftValue / clientWidth) * 100; this.swipeWrapWidth = (leftValue / clientWidth) * 100;
...@@ -80,7 +79,7 @@ export default { ...@@ -80,7 +79,7 @@ export default {
document.body.removeEventListener('touchmove', this.dragMove); document.body.removeEventListener('touchmove', this.dragMove);
}, },
prepareSwipe() { prepareSwipe() {
if (this.swipeOldImgInfo && this.swipeNewImgInfo) { if (this.swipeOldImgInfo && this.swipeNewImgInfo && this.swipeOldImgInfo.renderedWidth > 0) {
// Add 2 for border width // Add 2 for border width
this.swipeMaxWidth = this.swipeMaxWidth =
Math.max(this.swipeOldImgInfo.renderedWidth, this.swipeNewImgInfo.renderedWidth) + 2; Math.max(this.swipeOldImgInfo.renderedWidth, this.swipeNewImgInfo.renderedWidth) + 2;
...@@ -101,6 +100,8 @@ export default { ...@@ -101,6 +100,8 @@ export default {
}, },
resize: _.throttle(function throttledResize() { resize: _.throttle(function throttledResize() {
this.swipeBarPos = 0; this.swipeBarPos = 0;
this.swipeWrapWidth = 0;
this.prepareSwipe();
}, 400), }, 400),
}, },
}; };
...@@ -111,6 +112,8 @@ export default { ...@@ -111,6 +112,8 @@ export default {
<div <div
ref="swipeFrame" ref="swipeFrame"
:style="{ :style="{
width: swipeMaxPixelWidth,
height: swipeMaxPixelHeight,
'user-select': dragging ? 'none' : null, 'user-select': dragging ? 'none' : null,
}" }"
class="swipe-frame" class="swipe-frame"
......
---
title: "Fix misaligned image diff swipe view"
merge_request: 26969
author: ftab
type: fixed
...@@ -191,29 +191,119 @@ describe 'Merge request > User creates image diff notes', :js do ...@@ -191,29 +191,119 @@ describe 'Merge request > User creates image diff notes', :js do
end end
end end
describe 'image view modes' do shared_examples 'swipe view' do
before do it 'moves the swipe handle' do
visit project_commit_path(project, '2f63565e7aac07bcdadb654e253078b727143ec4') # Simulate dragging swipe view slider
expect { drag_and_drop_by(find('.swipe-bar'), 20, 0) }
.to change { find('.swipe-bar')['style'] }
.from(a_string_matching('left: 1px'))
end end
it 'resizes image in onion skin view mode' do it 'shows both images at the same position' do
find('.view-modes-menu .onion-skin').click drag_and_drop_by(find('.swipe-bar'), 40, 0)
expect(find('.onion-skin-frame')['style']).to match('width: 228px; height: 240px;') expect(left_position('.frame.added img'))
.to eq(left_position('.frame.deleted img'))
end end
end
it 'resets onion skin view mode opacity when toggling between view modes' do shared_examples 'onion skin' do
find('.view-modes-menu .onion-skin').click it 'resets opacity when toggling between view modes' do
# Simulate dragging onion-skin slider # Simulate dragging onion-skin slider
drag_and_drop_by(find('.dragger'), -30, 0) drag_and_drop_by(find('.dragger'), -30, 0)
expect(find('.onion-skin-frame .frame.added', visible: false)['style']).not_to match('opacity: 1;') expect(find('.onion-skin-frame .frame.added', visible: false)['style']).not_to match('opacity: 1;')
switch_to_swipe_view
switch_to_onion_skin
expect(find('.onion-skin-frame .frame.added', visible: false)['style']).to match('opacity: 1;')
end
end
describe 'changes tab image diff' do
let(:merge_request) { create(:merge_request, source_project: project, target_project: project, target_branch: 'master', source_branch: 'deleted-image-test', author: user) }
before do
visit diffs_project_merge_request_path(project, merge_request)
click_link "Changes"
end
def set_image_diff_sources
# set path of added and deleted images to something the spec can view
page.execute_script("document.querySelector('.frame.added img').src = '/apple-touch-icon.png';")
page.execute_script("document.querySelector('.frame.deleted img').src = '/favicon.png';")
wait_for_requests
expect(find('.frame.added img', visible: false)['src']).to match('/apple-touch-icon.png')
expect(find('.frame.deleted img', visible: false)['src']).to match('/favicon.png')
end
def switch_to_swipe_view
# it isn't given the .swipe class in the merge request diff
find('.view-modes-menu li:nth-child(2)').click
expect(find('.view-modes-menu li.active')).to have_content('Swipe')
set_image_diff_sources
end
def switch_to_onion_skin
# it isn't given the .onion-skin class in the merge request diff
find('.view-modes-menu li:nth-child(3)').click
expect(find('.view-modes-menu li.active')).to have_content('Onion skin')
set_image_diff_sources
end
describe 'onion skin' do
before do
switch_to_onion_skin
end
it_behaves_like 'onion skin'
end
describe 'swipe view' do
before do
switch_to_swipe_view
end
it_behaves_like 'swipe view'
end
end
describe 'image view modes' do
before do
visit project_commit_path(project, '2f63565e7aac07bcdadb654e253078b727143ec4')
end
def switch_to_swipe_view
find('.view-modes-menu .swipe').click find('.view-modes-menu .swipe').click
end
def switch_to_onion_skin
find('.view-modes-menu .onion-skin').click find('.view-modes-menu .onion-skin').click
end
expect(find('.onion-skin-frame .frame.added', visible: false)['style']).to match('opacity: 1;') describe 'onion skin' do
before do
switch_to_onion_skin
end
it 'resizes image' do
expect(find('.onion-skin-frame')['style']).to match('width: 228px; height: 240px;')
end
it_behaves_like 'onion skin'
end
describe 'swipe view' do
before do
switch_to_swipe_view
end
it_behaves_like 'swipe view'
end end
end end
...@@ -232,4 +322,8 @@ describe 'Merge request > User creates image diff notes', :js do ...@@ -232,4 +322,8 @@ describe 'Merge request > User creates image diff notes', :js do
click_button 'Comment' click_button 'Comment'
wait_for_requests wait_for_requests
end end
def left_position(element)
page.evaluate_script("document.querySelectorAll('#{element}')[0].getBoundingClientRect().left;")
end
end end
...@@ -138,22 +138,6 @@ describe('ImageDiffViewer', () => { ...@@ -138,22 +138,6 @@ describe('ImageDiffViewer', () => {
done(); done();
}); });
}); });
it('drag handler is working', done => {
vm.$el.querySelector('.view-modes-menu li:nth-child(2)').click();
vm.$nextTick(() => {
expect(vm.$el.querySelector('.swipe-bar').style.left).toBe('1px');
expect(vm.$el.querySelector('.top-handle')).not.toBeNull();
dragSlider(vm.$el.querySelector('.swipe-bar'), 40);
vm.$nextTick(() => {
expect(vm.$el.querySelector('.swipe-bar').style.left).toBe('-20px');
done();
});
});
});
}); });
describe('onionSkin', () => { describe('onionSkin', () => {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment