| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470 |
- <template>
- <el-row v-if="!permissionDenied" class="movie-list">
- <el-col v-if="video !== null" :md="15">
- <el-row style="padding-right: 5px; padding-left: 5px; padding-bottom: 5px">
- <el-card class="box-card">
- <div slot="header" class="clearfix">
- <el-row>
- <router-link style="text-decoration-line: none" target="_blank" :to="`/vod/video/${video.videoId}`">
- <el-button style="float: right; padding: 3px 0" type="text">
- 原视频
- </el-button>
- </router-link>
- </el-row>
- <el-row>
- <h3 v-html="video.title" />
- </el-row>
- <el-row style="color: #999;font-size: 16px;padding-top: 0px;">
- <span><i class="el-icon-video-play">{{ video.view }}</i></span>
- <span v-html="' '" />
- <span><i class="el-icon-s-comment">{{ video.comment }}</i></span>
- <span v-html="' '" />
- <span><i class="el-icon-watch">{{ video.pubDate }}</i></span>
- </el-row>
- </div>
- <div class="text item">
- <div id="dplayer" ref="dplayer" style="height: 480px;" />
- </div>
- </el-card>
- </el-row>
- <el-row style="padding-right: 5px; padding-left: 5px; padding-bottom: 5px">
- <el-card class="box-card">
- <div slot="header" class="clearfix">
- <div class="video-data-row">
- <el-button
- type="danger"
- size="mini"
- icon="el-icon-collection"
- :disabled="isCollected"
- @click="collection(video.videoId)"
- >
- <span>收藏 {{ video.favorite }}</span>
- </el-button>
- <el-button
- type="danger"
- size="mini"
- icon="el-icon-delete"
- @click="deleteVideo(video)"
- >
- <span>删除</span>
- </el-button>
- </div>
- </div>
- <div class="text item">
- <!--视频描述行-->
- <span class="description" v-html="video.description" />
- <el-divider />
- <!--视频标签行-->
- <div class="v-tag">
- <el-tag
- v-for="(tag,index) in video.tags"
- :key="index"
- class="tag"
- size="medium"
- effect="plain"
- >
- <router-link style="text-decoration-line: none" target="_blank" :to="`/vod/video/tag/` + tag">
- {{ tag }}
- </router-link>
- </el-tag>
- </div>
- </div>
- </el-card>
- </el-row>
- </el-col>
- <el-col :md="9">
- <el-row>
- <el-row v-if="showPlaylist" style="padding-right: 5px; padding-left: 5px; padding-bottom: 5px">
- <el-card class="box-card">
- <div slot="header" class="clearfix">
- <el-row>
- <h3>播放列表</h3>
- </el-row>
- <el-row>
- <span>自动播放 <el-switch v-model="autoPlay" /></span>
- </el-row>
- </div>
- <div class="text item">
- <el-table
- :data="playList.list"
- :show-header="false"
- height="480"
- style="width: 100%"
- >
- <el-table-column
- type="index"
- />
- <el-table-column
- prop="coverUrl"
- >
- <template slot-scope="scope">
- <el-image
- lazy
- fit="cover"
- class="coverImg"
- :src="scope.row.coverUrl"
- />
- </template>
- </el-table-column>
- <el-table-column
- prop="title"
- >
- <template slot-scope="scope">
- <el-button type="text" @click="playItem(scope.row)">
- {{ scope.row.title | ellipsis }}
- </el-button>
- </template>
- </el-table-column>
- <el-table-column
- prop="duration"
- >
- <template slot-scope="scope">
- <span>{{ scope.row.duration }}</span>
- </template>
- </el-table-column>
- </el-table>
- </div>
- </el-card>
- </el-row>
- </el-row>
- </el-col>
- </el-row>
- <el-row v-else>
- <permission-denied-card :text-object="textObject" />
- </el-row>
- </template>
- <script>
- import PermissionDeniedCard from '@/components/card/PermissionDeniedCard'
- import flvjs from 'flv.js'
- import DPlayer from 'dplayer'
- import { videoUrl, videoInfo } from '@/api/video'
- import { videoErrorDelete } from '@/api/video_edit'
- import { getPlaylistItems } from '@/api/collect'
- import { getUserInfo } from '@/api/user'
- export default {
- name: 'PlaylistView',
- components: { PermissionDeniedCard },
- filters: {
- ellipsis(value) {
- if (!value) return ''
- const max = 20
- if (value.length > max) {
- return value.slice(0, max) + '...'
- }
- return value
- }
- },
- data() {
- return {
- video: null,
- user: null,
- isCollected: false,
- errorReportForm: {
- videoId: null,
- errorCode: null
- },
- permissionDenied: false,
- textObject: {
- content: '视频',
- route: '/video'
- },
- showPlaylist: true,
- autoPlay: false,
- playList: {
- current: 0,
- list: []
- },
- // **********************************************************************/
- flvjs,
- DPlayer,
- danmaku: {
- api: process.env.VUE_APP_SERVER_URL + '/api/comment/danmaku/',
- token: 'tnbapp'
- },
- getUrl: true
- }
- },
- watch: {
- // 地址栏 url 发生变化时重新加载本页面
- $route() {
- this.$router.go()
- }
- },
- created() {
- const albumId = this.$route.params.albumId
- getPlaylistItems(albumId).then(resp => {
- if (resp.code === 0) {
- const respData = resp.data
- document.title = respData.albumInfo.albumName
- this.playList.list = respData.pageList.list
- const videoId = this.playList.list[0].videoId
- this.getVideoInfo(videoId)
- const key = 'myplaylist-' + videoId
- const value = localStorage.getItem(key)
- if (value != null) {
- this.playList = JSON.parse(value)
- this.calculateCurrent(videoId)
- }
- } else {
- document.title = '播放列表'
- }
- })
- },
- mounted() {
- window.addEventListener('beforeunload', this.handleBeforeUnload)
- const header = this.$refs.header
- if (header !== undefined && header !== null) {
- console.log('header -> ' + header)
- this.wrapStyle = `height: calc(100vh - ${header.clientHeight + 20}px)`
- }
- },
- methods: {
- handleBeforeUnload(event) {
- const key = 'myplaylist-' + this.video.videoId
- localStorage.removeItem(key)
- // event.preventDefault()
- },
- // 获取视频的详细信息
- getVideoInfo(videoId) {
- videoInfo(videoId).then(resp => {
- if (resp.code === 0) {
- this.video = resp.data
- this.getVideoUrl(videoId)
- this.userId = resp.data.userId
- getUserInfo(this.userId).then(resp => {
- if (resp.code === 0) {
- this.user = resp.data
- } else {
- this.$notify.error({
- message: '用户数据获取失败',
- type: 'warning',
- duration: 3000
- })
- }
- })
- } else if (resp.code === 2) {
- this.$router.push('/404')
- } else {
- this.permissionDenied = true
- }
- }).catch(error => {
- this.$notify.error({
- message: error.message,
- type: 'warning',
- duration: 3000
- })
- })
- },
- // 用户点击收藏
- collection(videoId) {
- },
- deleteVideo(video) {
- this.$confirm('确定要删除 ' + video.title + '?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning',
- customClass: 'msgbox'
- }).then(() => {
- const videoId = video.videoId
- const errorReportForm = {
- videoId: videoId,
- errorCode: 4
- }
- videoErrorDelete(errorReportForm).then(resp => {
- if (resp.code === 0) {
- this.errorReportForm.errorCode = null
- this.$notify({
- title: '提示',
- message: '视频错误已提交',
- type: 'warning',
- duration: 3000
- })
- } else {
- this.$notify({
- title: '提示',
- message: resp.msg,
- type: 'warning',
- duration: 3000
- })
- }
- }).catch(error => {
- this.$notify({
- title: '提示',
- message: error.message,
- type: 'warning',
- duration: 3000
- })
- })
- }).catch(() => {
- this.$message({
- type: 'info',
- message: '已取消'
- })
- })
- },
- // ****************************************************************************************************************
- getVideoUrl(videoId) {
- videoUrl(videoId).then(res => {
- if (res.code === 0) {
- const urlType = res.data.type
- if (urlType === 'mp4') {
- const urls = res.data.urls
- for (const url of urls) {
- url.type = 'normal'
- }
- this.initMp4Player(this.video.userId, videoId, this.video.coverUrl, urls, res.data.currentTime)
- } else {
- this.$notify.error({
- message: '视频 url 类型不合法',
- type: 'warning',
- duration: 3000
- })
- }
- } else {
- this.$notify.error({
- message: '视频 url 获取失败',
- type: 'warning',
- duration: 3000
- })
- }
- }).catch(error => {
- this.$notify.error({
- message: error.message,
- type: 'error',
- duration: 3000
- })
- })
- },
- initMp4Player(userId, videoId, coverUrl, urls, pos) {
- const player = new DPlayer({
- container: document.querySelector('#dplayer'),
- lang: 'zh-cn',
- screenshot: false,
- autoplay: false,
- volume: 0.1,
- mutex: true,
- video: {
- pic: coverUrl,
- defaultQuality: 0,
- quality: urls,
- hotkey: true
- },
- danmaku: {
- id: videoId,
- maximum: 10000,
- api: this.danmaku.api,
- token: this.danmaku.token,
- user: userId,
- bottom: '15%',
- unlimited: true
- }
- })
- // 设置音量
- // player.volume(0.1, true, false)
- // 跳转到上次看到的位置
- player.seek(pos)
- /* 事件绑定 */
- player.on('progress', function() {
- })
- player.on('ended', () => {
- this.$message.info('当前视频播放完成')
- })
- player.on('volumechange', () => {
- console.log('声音改变')
- })
- },
- calculateCurrent(videoId) {
- for (var i = 0; i < this.playList.list.length; i++) {
- if (videoId === this.playList.list[i].videoId) {
- this.playList.current = i
- const key = 'myplaylist-' + this.video.videoId
- localStorage.setItem(key, JSON.stringify(this.playList))
- }
- }
- },
- setCurrent(current) {
- this.playList.current = current
- const key = 'myplaylist-' + this.video.videoId
- localStorage.setItem(key, JSON.stringify(this.playList))
- },
- getNextPath(current) {
- this.calculateCurrent(current)
- const next = this.playList.current + 1
- if (next < this.playList.list.length) {
- this.setCurrent(next)
- const videoId = this.playList.list[next].videoId
- const path = '/vidlist/' + videoId
- if (path !== this.$route.path) {
- this.$router.push(path)
- } else {
- console.log(this.playList)
- this.$notify.info({
- message: '视频列表播放完成',
- duration: 3000
- })
- }
- }
- },
- playItem(item) {
- this.getVideoInfo(item.videoId)
- }
- }
- }
- </script>
- <style scoped>
- /*处于手机屏幕时*/
- @media screen and (max-width: 768px) {
- .movie-list {
- padding-top: 8px;
- padding-left: 0.5%;
- padding-right: 0.5%;
- }
- .msgbox{
- width: 320px !important;
- }
- }
- .movie-list {
- padding-top: 5px;
- padding-bottom: 5px;
- padding-left: 5px;
- padding-right: 5px;
- }
- .clearfix:before,
- .clearfix:after {
- display: table;
- content: "";
- }
- .clearfix:after {
- clear: both;
- }
- .v-tag {
- padding-top: 10px;
- }
- .tag{
- margin-right: 3px;
- }
- .coverImg {
- width: 100%;
- height: 90px;
- display: block;
- }
- </style>
|