Files
im/pages/conversation/chating/components/MessageItem/VideoMessageRender.vue
T
cansnow 5a086fa1fa 13
2025-12-11 22:33:31 +08:00

264 lines
7.1 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<template>
<view>
<view class="video_message_container" @click="clickMediaItem">
<u--image
:showLoading="true"
:src="src"
:width="imgWidth"
:height="maxHeight"
mode="widthFix"
@load="onLoaded"
@click="clickMediaItem">
<template v-slot:loading>
<u-loading-icon color="red"></u-loading-icon>
</template>
</u--image>
<!-- 覆盖层显示封面下载状态/视频下载入口/播放按钮 -->
<view class="download-overlay" @click.stop="onOverlayClick">
<view v-if="videoDownloading" class="progress-box">
<view class="progress-bar">
<view class="progress-fill" :style="{ width: videoDownloadProgress + '%' }"></view>
</view>
<text class="progress-text">{{ videoDownloadProgress }}%</text>
</view>
<u-icon v-else-if="videoExists" class="play_icon" name="play-circle" size="48" color="#fff"></u-icon>
<uni-icons v-else class="play_icon" type="cloud-download" size="48" color="#fff"></uni-icons>
</view>
</view>
<!-- 视频播放器组件 -->
<videoPlayer :previewVideoFlag="previewVideoFlag" :previewVideoSrc="previewVideoSrc" @quitPlay="previewVideoFlag=false"></videoPlayer>
</view>
</template>
<script>
/*
{
"clientMsgID": "d9a596f3e665e84559821a8aa5fb9f16",
"serverMsgID": "76a56965a5fba40df213da2acb331517",
"createTime": 1765413732786,
"sendTime": 1765413733732,
"sessionType": 1,
"sendID": "100003",
"recvID": "100004",
"msgFrom": 100,
"contentType": 104,
"senderPlatformID": 2,
"senderNickname": "131****2222",
"senderFaceUrl": "/static/img/avatar.png",
"seq": 22,
"isRead": false,
"status": 2,
"videoElem": {
"videoPath": "/storage/emulated/0/Movies/顺网云电脑 2025-10-21 04-26-04-converted.mp4",
"videoUrl": "http://www.axzc.xyz/object/100003/msg_video_d9a596f3e665e84559821a8aa5fb9f16.mp4",
"videoType": "mp4",
"videoSize": 3751005,
"duration": 44,
"snapshotPath": "/storage/emulated/0/Android/data/hk.huisheng.im/apps/__UNI__CA458BA/doc/video_cover_2ea1c8ec.jpg",
"snapshotSize": 36974,
"snapshotUrl": "http://www.axzc.xyz/object/100003/msg_videoSnapshot_d9a596f3e665e84559821a8aa5fb9f16.jpg",
"snapshotWidth": 1087,
"snapshotHeight": 726
},
"attachedInfoElem": {
"groupHasReadInfo": {
"hasReadCount": 0,
"groupMemberCount": 0
},
"isPrivateChat": false,
"burnDuration": 0,
"hasReadTime": 0,
"isEncryption": false,
"inEncryptStatus": false
}
}
*/
const imgWidth = 240;
import md5 from "md5";
import videoPlayer from "@/components/videoPlayer.vue";
import util from "@/util"
export default {
name: "VideoMessageContainer",
components: {
videoPlayer,
},
props: {
message: Object,
conversationID:String,
},
data() {
return {
loadingWidth: imgWidth+"px",
imgWidth:imgWidth,
isDownloading: false,
downloadProgress: 0,
coverDownloading: false,
coverDownloadProgress: 0,
videoDownloading: false,
videoDownloadProgress: 0,
coverExists: false,
videoExists: false,
coverCachePath:"",
videoCachePath:"",
previewVideoFlag: false,
previewVideoSrc: "",
src:"",
};
},
computed: {
maxHeight() {
const imageHeight = this.message.videoElem.snapshotHeight;
const imageWidth = this.message.videoElem.snapshotWidth;
const aspectRatio = imageHeight / imageWidth;
return imgWidth * aspectRatio;
}
},
async created(){
this.init();
},
methods: {
async init(){
// 如果有远程 snapshotUrl,则下载到 coverCachePath
const snapshotUrl = this.message?.videoElem?.snapshotUrl;
const key = md5(this.message?.videoElem?.videoUrl || '');
this.coverCachePath = `_doc/${this.conversationID}/cover_${key}.jpg`;
this.videoCachePath = `_doc/${this.conversationID}/${key}.mp4`;
const coverExists = await util.fileExsit(this.coverCachePath);
// 自动缓存封面到 this.coverCachePath
const self = this;
if (typeof plus === 'undefined' || !this.coverCachePath) return;
try {
// 检查封面是否存在
const coverExists = await util.fileExsit(self.coverCachePath);
this.coverExists = !!coverExists;
// 同时检查视频缓存是否存在
const vidExists = await util.fileExsit(self.videoCachePath);
this.videoExists = !!vidExists;
if (this.coverExists) {
this.src = this.coverCachePath;
return;
}
if (!snapshotUrl) {
this.src="/static/images/sync_error.png";
return;
}
this.coverDownloading = true;
await new Promise((resolve, reject) => {
util.downloadFile(snapshotUrl, self.coverCachePath, function(localPath) {
self.coverDownloading = false;
self.coverExists = true;
resolve(localPath);
}, function(err) {
self.coverDownloading = false;
reject(err);
}, function(progress) {
self.coverDownloadProgress = progress;
});
});
} catch (e) {
this.coverDownloading = false;
}
},
clickMediaItem() {
uni.previewImage({
current: 0,
urls: [this.message.videoElem?.snapshotUrl],
indicator: "none",
});
},
async onLoaded() {
this.loadingWidth = "auto";
},
onOverlayClick() {
// 点击覆盖层:如果视频已缓存则直接播放,否则开始下载
if (this.videoExists) {
this.playVideo(this.videoCachePath);
return;
}
const url = this.message?.videoElem?.videoUrl || this.message?.videoElem?.videoPath;
if (!url) {
uni.showToast({ title: '无可下载的视频' });
return;
}
this.videoDownloading = true;
this.videoDownloadProgress = 0;
util.downloadFile(url, this.videoCachePath, (localPath) => {
this.videoDownloading = false;
this.videoExists = true;
this.playVideo(localPath);
}, (err) => {
this.videoDownloading = false;
uni.showToast({ title: '下载失败' });
}, (prog) => {
this.videoDownloadProgress = prog;
});
},
playVideo(localPath) {
if (!localPath) return;
this.previewVideoSrc = localPath;
this.previewVideoFlag = true;
},
},
};
</script>
<style lang="scss" scoped>
.video_message_container {
position: relative;
border-radius: 16rpx;
overflow: hidden;
.play_icon {
width: 48px;
height: 48px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.video_duration {
position: absolute;
bottom: 12rpx;
right: 24rpx;
color: #fff;
}
}
.download-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: flex;
align-items: center;
justify-content: center;
background: rgba(0,0,0,0.35);
}
.progress-box {
width: 70%;
max-width: 240px;
text-align: center;
}
.progress-bar {
width: 100%;
height: 8px;
background: rgba(255,255,255,0.25);
border-radius: 4px;
overflow: hidden;
}
.progress-fill {
height: 100%;
background: #4caf50;
width: 0%;
}
.progress-text {
display: block;
color: #fff;
margin-top: 8px;
font-size: 12px;
}
</style>