docs(ImagePreview): improve document (#11137)

This commit is contained in:
neverland 2022-10-15 22:58:45 +08:00 committed by GitHub
parent 7d48159e65
commit 97d2badd45
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 30 additions and 43 deletions

View File

@ -118,12 +118,16 @@ export default {
}; };
``` ```
### Component Call use image slot ### Use image slot
When using ImagePreview component, you can custom the image through the `image` slot, such as render a video content.
```html ```html
<van-image-preview v-model:show="show" :images="images" @change="onChange"> <van-image-preview v-model:show="show" :images="images">
<template #image="{ src }"> <template #image="{ src }">
<video style="width: 100%;" controls><source :src="src" /></video> <video style="width: 100%;" controls>
<source :src="src" />
</video>
</template> </template>
</van-image-preview> </van-image-preview>
``` ```
@ -134,21 +138,14 @@ import { ref } from 'vue';
export default { export default {
setup() { setup() {
const show = ref(false); const show = ref(false);
const index = ref(0);
const images = [ const images = [
'https://www.w3school.com.cn/i/movie.ogg', 'https://www.w3school.com.cn/i/movie.ogg',
'https://www.w3school.com.cn/i/movie.ogg', 'https://www.w3school.com.cn/i/movie.ogg',
'https://www.w3school.com.cn/i/movie.ogg', 'https://www.w3school.com.cn/i/movie.ogg',
]; ];
const onChange = (newIndex) => {
index.value = newIndex;
};
return { return {
show, show,
index,
images, images,
onChange,
}; };
}, },
}; };
@ -254,7 +251,7 @@ imagePreviewRef.value?.swipeTo(1);
| --- | --- | --- | | --- | --- | --- |
| index | Custom index | { index: index of current image } | | index | Custom index | { index: index of current image } |
| cover | Custom content that covers the image preview | - | | cover | Custom content that covers the image preview | - |
| image | Custom image slot | { src: current image src } | | image `v3.6.5` | Custom image content | { src: current image src } |
### onClose Parameters ### onClose Parameters

View File

@ -172,12 +172,16 @@ export default {
}; };
``` ```
### 组件调用 - 使用 image 插槽 ### 使用 image 插槽
当以组件调用的方式使用 ImagePreview 时,可以通过 `image` 插槽来插入自定义的内容,比如展示一个视频内容。
```html ```html
<van-image-preview v-model:show="show" :images="images" @change="onChange"> <van-image-preview v-model:show="show" :images="images">
<template #image="{ src }"> <template #image="{ src }">
<video style="width: 100%;" controls><source :src="src" /></video> <video style="width: 100%;" controls>
<source :src="src" />
</video>
</template> </template>
</van-image-preview> </van-image-preview>
``` ```
@ -188,21 +192,14 @@ import { ref } from 'vue';
export default { export default {
setup() { setup() {
const show = ref(false); const show = ref(false);
const index = ref(0);
const images = [ const images = [
'https://www.w3school.com.cn/i/movie.ogg', 'https://www.w3school.com.cn/i/movie.ogg',
'https://www.w3school.com.cn/i/movie.ogg', 'https://www.w3school.com.cn/i/movie.ogg',
'https://www.w3school.com.cn/i/movie.ogg', 'https://www.w3school.com.cn/i/movie.ogg',
]; ];
const onChange = (newIndex) => {
index.value = newIndex;
};
return { return {
show, show,
index,
images, images,
onChange,
}; };
}, },
}; };
@ -312,10 +309,10 @@ imagePreviewRef.value?.swipeTo(1);
通过组件调用 `ImagePreview` 时,支持以下插槽: 通过组件调用 `ImagePreview` 时,支持以下插槽:
| 名称 | 说明 | 参数 | | 名称 | 说明 | 参数 |
| ----- | ------------------------------ | ------------------------- | | -------------- | ------------------------------ | ------------------------- |
| index | 自定义页码内容 | { index: 当前图片的索引 } | | index | 自定义页码内容 | { index: 当前图片的索引 } |
| cover | 自定义覆盖在图片预览上方的内容 | - | | cover | 自定义覆盖在图片预览上方的内容 | - |
| image | 自定义图片插槽 | { src: 当前资源地址 } | | image `v3.6.5` | 自定义图片内容 | { src: 当前资源地址 } |
### onClose 回调参数 ### onClose 回调参数

View File

@ -17,7 +17,7 @@ const t = useTranslate({
customConfig: '传入配置项', customConfig: '传入配置项',
startPosition: '指定初始位置', startPosition: '指定初始位置',
componentCall: '组件调用', componentCall: '组件调用',
componentImage: '组件调用使用image插槽', useImageSlot: '使用 image 插槽',
index: (index: number) => `${index + 1}`, index: (index: number) => `${index + 1}`,
}, },
'en-US': { 'en-US': {
@ -29,7 +29,7 @@ const t = useTranslate({
customConfig: 'Custom Config', customConfig: 'Custom Config',
startPosition: 'Set Start Position', startPosition: 'Set Start Position',
componentCall: 'Component Call', componentCall: 'Component Call',
componentImage: 'Component Call use image slot', useImageSlot: 'Use image slot',
index: (index: number) => `Page: ${index}`, index: (index: number) => `Page: ${index}`,
}, },
}); });
@ -52,7 +52,6 @@ const show = ref(false);
const index = ref(0); const index = ref(0);
const showSlot = ref(false); const showSlot = ref(false);
const indexSlot = ref(0);
const onClose = () => Toast(t('closed')); const onClose = () => Toast(t('closed'));
@ -75,10 +74,6 @@ const showComponentCallSlot = () => {
showSlot.value = true; showSlot.value = true;
}; };
const onChangeSlot = (newIndex: number) => {
indexSlot.value = newIndex;
};
const showImagePreview = (options: Partial<ImagePreviewOptions> = {}) => { const showImagePreview = (options: Partial<ImagePreviewOptions> = {}) => {
const instance = ImagePreview({ const instance = ImagePreview({
images, images,
@ -131,19 +126,17 @@ const showImagePreview = (options: Partial<ImagePreviewOptions> = {}) => {
</van-image-preview> </van-image-preview>
</demo-block> </demo-block>
<demo-block card :title="t('componentImage')"> <demo-block card :title="t('useImageSlot')">
<van-cell <van-cell
is-link is-link
:value="t('componentImage')" :value="t('useImageSlot')"
@click="showComponentCallSlot" @click="showComponentCallSlot"
/> />
<van-image-preview <van-image-preview v-model:show="showSlot" :images="imagesSlot">
v-model:show="showSlot"
:images="imagesSlot"
@change="onChangeSlot"
>
<template #image="{ src }"> <template #image="{ src }">
<video style="width: 100%" controls><source :src="src" /></video> <video style="width: 100%" controls>
<source :src="src" />
</video>
</template> </template>
</van-image-preview> </van-image-preview>
</demo-block> </demo-block>