Skip to content

Commit

Permalink
feat: ✨ Swiper 支持指定轮播项的文件类型
Browse files Browse the repository at this point in the history
Closes: #712
  • Loading branch information
Moonofweisheng committed Nov 18, 2024
1 parent 314c2e8 commit c205a1b
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 16 deletions.
8 changes: 7 additions & 1 deletion docs/component/swiper.md
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,13 @@ const isLoop = ref(false)

### SwiperList

轮播图项的列表配置,包括 图片或视频地址`value`、视频封面`poster` 等属性,支持扩展属性。
轮播图项的列表配置,包括 图片或视频地址`value`、视频封面`poster` 、文件资源的类型`type`等属性,支持扩展属性。指定`type`后组件将不在内部判断文件类型,以`type`为准。
| name | 说明 | 最低版本 |
| --------- | ------------ | -------- |
| value | 图片或视频地址 |- |
| poster | 视频封面 |- |
| type | 用于指定文件资源的类型,可选值`image``video` | $LOWEST_VERSION$ |


### SwiperIndicatorProps

Expand Down
2 changes: 2 additions & 0 deletions src/uni_modules/wot-design-uni/components/wd-swiper/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ export interface SwiperList {
value?: string
// 视频资源的封面
poster?: string
// 资源文件类型,可选值:'image' | 'video'
type?: string
}

export const swiperProps = {
Expand Down
40 changes: 25 additions & 15 deletions src/uni_modules/wot-design-uni/components/wd-swiper/wd-swiper.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@
>
<swiper-item v-for="(item, index) in list" :key="index" class="wd-swiper__item" @click="handleClick(index, item)">
<image
v-if="isImageUrl(isObj(item) ? item[valueKey] : item)"
v-if="isImage(item)"
:src="isObj(item) ? item[valueKey] : item"
:class="`wd-swiper__image ${customImageClass} ${customItemClass} ${getCustomItemClass(navCurrent, index, list)}`"
:style="{ height: addUnit(height) }"
:mode="imageMode"
/>
<video
v-else
v-else-if="isVideo(item)"
:id="`video-${index}-${uid}`"
:style="{ height: addUnit(height) }"
:src="isObj(item) ? item[valueKey] : item"
Expand Down Expand Up @@ -77,7 +77,7 @@ export default {
<script lang="ts" setup>
import wdSwiperNav from '../wd-swiper-nav/wd-swiper-nav.vue'
import { computed, watch, ref, getCurrentInstance } from 'vue'
import { addUnit, isObj, isImageUrl, isVideoUrl, uuid } from '../common/util'
import { addUnit, isObj, isImageUrl, isVideoUrl, uuid, isDef } from '../common/util'
import { swiperProps, type SwiperList } from './types'
import type { SwiperNavProps } from '../wd-swiper-nav/types'
Expand Down Expand Up @@ -122,6 +122,22 @@ const swiperIndicator = computed(() => {
return swiperIndicator
})
const getMediaType = (item: string | SwiperList, type: 'video' | 'image') => {
if (isObj(item)) {
return item.type ? item.type === type : type === 'video' ? isVideoUrl(item[props.valueKey]) : isImageUrl(item[props.valueKey])
} else {
return type === 'video' ? isVideoUrl(item) : isImageUrl(item)
}
}
const isVideo = (item: string | SwiperList) => {
return getMediaType(item, 'video')
}
const isImage = (item: string | SwiperList) => {
return getMediaType(item, 'image')
}
function go(index: number) {
navCurrent.value = index
}
Expand Down Expand Up @@ -205,12 +221,9 @@ function handleVideoChange(previous: number, current: number) {
function handleStartVideoPaly(index: number) {
if (props.autoplayVideo) {
const currentItem = props.list[index]
if (currentItem) {
const url = isObj(currentItem) ? currentItem.url : currentItem
if (isVideoUrl(url)) {
const video = uni.createVideoContext(`video-${index}-${uid.value}`, proxy)
video.play()
}
if (isDef(currentItem) && isVideo(currentItem)) {
const video = uni.createVideoContext(`video-${index}-${uid.value}`, proxy)
video.play()
}
}
}
Expand All @@ -222,12 +235,9 @@ function handleStartVideoPaly(index: number) {
function handleStopVideoPaly(index: number) {
if (props.stopPreviousVideo) {
const previousItem = props.list[index]
if (previousItem) {
const url = isObj(previousItem) ? previousItem.url : previousItem
if (isVideoUrl(url)) {
const video = uni.createVideoContext(`video-${index}-${uid.value}`, proxy)
video.pause()
}
if (isDef(previousItem) && isVideo(previousItem)) {
const video = uni.createVideoContext(`video-${index}-${uid.value}`, proxy)
video.pause()
}
} else if (props.stopAutoplayWhenVideoPlay) {
handleVideoPause()
Expand Down

0 comments on commit c205a1b

Please sign in to comment.