[new feature] ImagePreview: add closeOnPopstate prop

This commit is contained in:
陈嘉涵 2019-05-24 20:13:21 +08:00
parent 30ddcb5daa
commit b572c76245
7 changed files with 53 additions and 2 deletions

View File

@ -1,4 +1,4 @@
import { use, range } from '../utils';
import { use, range, isServer } from '../utils';
import { preventDefault } from '../utils/event';
import { PopupMixin } from '../mixins/popup';
import { TouchMixin } from '../mixins/touch';
@ -26,6 +26,7 @@ export default sfc({
asyncClose: Boolean,
startPosition: Number,
showIndicators: Boolean,
closeOnPopstate: Boolean,
loop: {
type: Boolean,
default: true
@ -57,6 +58,8 @@ export default sfc({
},
data() {
this.bindStatus = false;
return {
scale: 1,
moveX: 0,
@ -90,10 +93,30 @@ export default sfc({
startPosition(active) {
this.active = active;
},
closeOnPopstate: {
handler(val) {
this.handlePopstate(val);
},
immediate: true
}
},
methods: {
handlePopstate(bind) {
/* istanbul ignore if */
if (isServer) {
return;
}
if (this.bindStatus !== bind) {
this.bindStatus = bind;
const action = bind ? 'add' : 'remove';
window[`${action}EventListener`]('popstate', this.close);
}
},
onWrapperTouchStart() {
this.touchStartTime = new Date();
},

View File

@ -94,6 +94,7 @@ export default {
const instance = ImagePreview({
images,
asyncClose: !!timer,
closeOnPopstate: true,
startPosition: typeof position === 'number' ? position : 0
});

View File

@ -95,6 +95,7 @@ export default {
| showIndicators | Whether to show indicators | `Boolean` | `false` |
| loop | Whether to enable loop | `Boolean` | `true` |
| onClose | Close callback | `Function` | - |
| closeOnPopstate | Whether to close when popstate | `Boolean` | `false` |
| asyncClose | Whether to enable async close | `Boolean` | `false` |
| className | Custom className | `String | Array | Object` | - |
| lazyLoad | Whether to enable thumb lazy loadshould register [Lazyload](#/en-US/lazyload) component | `Boolean` | `false` |
@ -111,6 +112,7 @@ export default {
| show-indicators | Whether to show indicators | `Boolean` | `false` |
| loop | Whether to enable loop | `Boolean` | `true` |
| async-close | Whether to enable async close | `Boolean` | `false` |
| close-on-popstate | Whether to close when popstate | `Boolean` | `false` |
| class-name | Custom className | `String | Array | Object` | - |
| lazy-load | Whether to enable thumb lazy loadshould register [Lazyload](#/en-US/lazyload) component | `Boolean` | `false` |
| max-zoom | Max zoom | `Number` | `3` |

View File

@ -15,7 +15,8 @@ const defaultConfig = {
showIndex: true,
asyncClose: false,
startPosition: 0,
showIndicators: false
showIndicators: false,
closeOnPopstate: false
};
const initInstance = () => {

View File

@ -116,3 +116,24 @@ test('index slot', () => {
expect(wrapper).toMatchSnapshot();
});
test('closeOnPopstate', () => {
const wrapper = mount(ImagePreviewVue, {
propsData: {
images,
value: true,
closeOnPopstate: true
}
});
trigger(window, 'popstate');
expect(wrapper.emitted('input')[0][0]).toBeFalsy();
wrapper.setProps({
value: true,
closeOnPopstate: false
});
trigger(window, 'popstate');
expect(wrapper.emitted('input')[1]).toBeFalsy();
});

View File

@ -108,6 +108,7 @@ export default {
| loop | 是否开启循环播放 | `Boolean` | `true` | 1.4.4 |
| onClose | 关闭时的回调函数 | `Function` | - | 1.1.16 |
| asyncClose | 是否开启异步关闭 | `Boolean` | `false` | 1.4.8 |
| closeOnPopstate | 是否在页面回退时自动关闭 | `Boolean` | `false` | 2.0.0 |
| className | 自定义类名 | `String | Array | Object` | - | 1.5.2 |
| lazyLoad | 是否开启图片懒加载,须配合 [Lazyload](#/zh-CN/lazyload) 组件使用 | `Boolean` | `false` | 1.5.3 |
| maxZoom | 手势缩放时,最大缩放比例 | `Number` | `3` | 1.6.14 |
@ -125,6 +126,7 @@ export default {
| show-indicators | 是否显示轮播指示器 | `Boolean` | `false` | 1.3.10 |
| loop | 是否开启循环播放 | `Boolean` | `true` | 1.4.4 |
| async-close | 是否开启异步关闭 | `Boolean` | `false` | 1.4.8 |
| close-on-popstate | 是否在页面回退时自动关闭 | `Boolean` | `false` |
| class-name | 自定义类名 | `String | Array | Object` | - | 1.5.2 |
| lazy-load | 是否开启图片懒加载,须配合 [Lazyload](#/zh-CN/lazyload) 组件使用 | `Boolean` | `false` | 1.5.3 |
| max-zoom | 手势缩放时,最大缩放比例 | `Number` | `3` | 1.6.14 |

View File

@ -11,6 +11,7 @@ export type ImagePreviewOptions = string[] | {
showIndex?: boolean;
asyncClose?: boolean;
showIndicators?: boolean;
closeOnPopstate?: boolean;
onClose?: () => any;
};