mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
feat(ImagePreview): add enableDoubleScale option (#12360)
* feat: add enableDoubleSclae * feat: add enableDoubleScale attribute * Update package.json --------- Co-authored-by: neverland <jait.chen@foxmail.com>
This commit is contained in:
parent
33342a0b43
commit
16402112f5
@ -72,6 +72,7 @@ export const imagePreviewProps = {
|
|||||||
closeOnClickOverlay: truthProp,
|
closeOnClickOverlay: truthProp,
|
||||||
closeIconPosition: makeStringProp<PopupCloseIconPosition>('top-right'),
|
closeIconPosition: makeStringProp<PopupCloseIconPosition>('top-right'),
|
||||||
teleport: [String, Object] as PropType<TeleportProps['to']>,
|
teleport: [String, Object] as PropType<TeleportProps['to']>,
|
||||||
|
enableDoubleScale: truthProp,
|
||||||
};
|
};
|
||||||
|
|
||||||
export type ImagePreviewProps = ExtractPropTypes<typeof imagePreviewProps>;
|
export type ImagePreviewProps = ExtractPropTypes<typeof imagePreviewProps>;
|
||||||
@ -178,6 +179,7 @@ export default defineComponent({
|
|||||||
onScale={emitScale}
|
onScale={emitScale}
|
||||||
onClose={emitClose}
|
onClose={emitClose}
|
||||||
onLongPress={() => emit('longPress', { index })}
|
onLongPress={() => emit('longPress', { index })}
|
||||||
|
enableDoubleScale={props.enableDoubleScale}
|
||||||
/>
|
/>
|
||||||
))}
|
))}
|
||||||
</Swipe>
|
</Swipe>
|
||||||
|
@ -54,6 +54,7 @@ export default defineComponent({
|
|||||||
rootHeight: makeRequiredProp(Number),
|
rootHeight: makeRequiredProp(Number),
|
||||||
disableZoom: Boolean,
|
disableZoom: Boolean,
|
||||||
closeOnClickOverlay: Boolean,
|
closeOnClickOverlay: Boolean,
|
||||||
|
enableDoubleScale: Boolean,
|
||||||
},
|
},
|
||||||
|
|
||||||
emits: ['scale', 'close', 'longPress'],
|
emits: ['scale', 'close', 'longPress'],
|
||||||
@ -254,23 +255,28 @@ export default defineComponent({
|
|||||||
const TAP_TIME = 250;
|
const TAP_TIME = 250;
|
||||||
|
|
||||||
if (offsetX.value < TAP_OFFSET && offsetY.value < TAP_OFFSET) {
|
if (offsetX.value < TAP_OFFSET && offsetY.value < TAP_OFFSET) {
|
||||||
// tap or double tap
|
|
||||||
if (deltaTime < TAP_TIME) {
|
if (deltaTime < TAP_TIME) {
|
||||||
if (doubleTapTimer) {
|
// allow double to scale
|
||||||
clearTimeout(doubleTapTimer);
|
if (props.enableDoubleScale) {
|
||||||
doubleTapTimer = null;
|
// tap or double tap
|
||||||
toggleScale();
|
if (doubleTapTimer) {
|
||||||
} else {
|
clearTimeout(doubleTapTimer);
|
||||||
if (
|
|
||||||
!props.closeOnClickOverlay &&
|
|
||||||
event.target === swipeItem.value?.$el
|
|
||||||
) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
doubleTapTimer = setTimeout(() => {
|
|
||||||
emit('close');
|
|
||||||
doubleTapTimer = null;
|
doubleTapTimer = null;
|
||||||
}, TAP_TIME);
|
toggleScale();
|
||||||
|
} else {
|
||||||
|
if (
|
||||||
|
!props.closeOnClickOverlay &&
|
||||||
|
event.target === swipeItem.value?.$el
|
||||||
|
) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
doubleTapTimer = setTimeout(() => {
|
||||||
|
emit('close');
|
||||||
|
doubleTapTimer = null;
|
||||||
|
}, TAP_TIME);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
emit('close');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// long press
|
// long press
|
||||||
|
@ -217,6 +217,7 @@ Vant exports following ImagePreview utility functions:
|
|||||||
| overlayClass | Custom overlay class | _string \| Array \| object_ | - |
|
| overlayClass | Custom overlay class | _string \| Array \| object_ | - |
|
||||||
| overlayStyle | Custom overlay style | _object_ | - |
|
| overlayStyle | Custom overlay style | _object_ | - |
|
||||||
| teleport | Specifies a target element where ImagePreview will be mounted | _string \| Element_ | - |
|
| teleport | Specifies a target element where ImagePreview will be mounted | _string \| Element_ | - |
|
||||||
|
| enableDoubleScale | Do you want to enable double click zoom and enable the delay of closing the mask | _boolean_ | `true` |
|
||||||
|
|
||||||
### Props
|
### Props
|
||||||
|
|
||||||
@ -242,6 +243,7 @@ Vant exports following ImagePreview utility functions:
|
|||||||
| overlay-class | Custom overlay class | _string \| Array \| object_ | - |
|
| overlay-class | Custom overlay class | _string \| Array \| object_ | - |
|
||||||
| overlay-style | Custom overlay style | _object_ | - |
|
| overlay-style | Custom overlay style | _object_ | - |
|
||||||
| teleport | Specifies a target element where ImagePreview will be mounted | _string \| Element_ | - |
|
| teleport | Specifies a target element where ImagePreview will be mounted | _string \| Element_ | - |
|
||||||
|
| enableDoubleScale | Do you want to enable double click zoom and enable the delay of closing the mask | _boolean_ | `true` |
|
||||||
|
|
||||||
### Events
|
### Events
|
||||||
|
|
||||||
|
@ -220,6 +220,7 @@ Vant 中导出了以下 ImagePreview 相关的辅助函数:
|
|||||||
| overlayClass | 自定义遮罩层类名 | _string \| Array \| object_ | - |
|
| overlayClass | 自定义遮罩层类名 | _string \| Array \| object_ | - |
|
||||||
| overlayStyle | 自定义遮罩层样式 | _object_ | - |
|
| overlayStyle | 自定义遮罩层样式 | _object_ | - |
|
||||||
| teleport | 指定挂载的节点,等同于 Teleport 组件的 [to 属性](https://cn.vuejs.org/api/built-in-components.html#teleport) | _string \| Element_ | - |
|
| teleport | 指定挂载的节点,等同于 Teleport 组件的 [to 属性](https://cn.vuejs.org/api/built-in-components.html#teleport) | _string \| Element_ | - |
|
||||||
|
| enableDoubleScale | 是否开启双击缩放,开启蒙层关闭延迟 | _boolean_ | `true` |
|
||||||
|
|
||||||
### Props
|
### Props
|
||||||
|
|
||||||
@ -247,6 +248,7 @@ Vant 中导出了以下 ImagePreview 相关的辅助函数:
|
|||||||
| overlay-class | 自定义遮罩层类名 | _string \| Array \| object_ | - |
|
| overlay-class | 自定义遮罩层类名 | _string \| Array \| object_ | - |
|
||||||
| overlay-style | 自定义遮罩层样式 | _object_ | - |
|
| overlay-style | 自定义遮罩层样式 | _object_ | - |
|
||||||
| teleport | 指定挂载的节点,等同于 Teleport 组件的 [to 属性](https://cn.vuejs.org/api/built-in-components.html#teleport) | _string \| Element_ | - |
|
| teleport | 指定挂载的节点,等同于 Teleport 组件的 [to 属性](https://cn.vuejs.org/api/built-in-components.html#teleport) | _string \| Element_ | - |
|
||||||
|
| enableDoubleScale | 是否开启双击缩放,开启蒙层关闭延迟 | _boolean_ | `true` |
|
||||||
|
|
||||||
### Events
|
### Events
|
||||||
|
|
||||||
|
@ -28,6 +28,7 @@ const defaultConfig: ImagePreviewOptions = {
|
|||||||
closeOnPopstate: true,
|
closeOnPopstate: true,
|
||||||
closeOnClickOverlay: true,
|
closeOnClickOverlay: true,
|
||||||
closeIconPosition: 'top-right',
|
closeIconPosition: 'top-right',
|
||||||
|
enableDoubleScale: true,
|
||||||
};
|
};
|
||||||
|
|
||||||
function initInstance() {
|
function initInstance() {
|
||||||
|
@ -31,6 +31,7 @@ export type ImagePreviewOptions = {
|
|||||||
onClose?(): void;
|
onClose?(): void;
|
||||||
onScale?(args: { scale: number; index: number }): void;
|
onScale?(args: { scale: number; index: number }): void;
|
||||||
onChange?(index: number): void;
|
onChange?(index: number): void;
|
||||||
|
enableDoubleScale?: boolean;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type ImagePreviewScaleEventParams = {
|
export type ImagePreviewScaleEventParams = {
|
||||||
|
1
pnpm-lock.yaml
generated
1
pnpm-lock.yaml
generated
@ -2966,6 +2966,7 @@ packages:
|
|||||||
|
|
||||||
/safer-buffer@2.1.2:
|
/safer-buffer@2.1.2:
|
||||||
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
|
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
|
||||||
|
requiresBuild: true
|
||||||
|
|
||||||
/sax@1.2.4:
|
/sax@1.2.4:
|
||||||
resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==}
|
resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user