FreeTube/src/renderer/components/watch-video-info/watch-video-info.js

143 lines
3.3 KiB
JavaScript
Raw Normal View History

2020-02-16 19:30:00 +01:00
import Vue from 'vue'
2020-08-05 05:44:34 +02:00
import { mapActions } from 'vuex'
2020-02-16 19:30:00 +01:00
import FtCard from '../ft-card/ft-card.vue'
import FtButton from '../ft-button/ft-button.vue'
import FtListDropdown from '../ft-list-dropdown/ft-list-dropdown.vue'
import FtFlexBox from '../ft-flex-box/ft-flex-box.vue'
2020-06-06 05:15:44 +02:00
import FtIconButton from '../ft-icon-button/ft-icon-button.vue'
2020-06-17 14:15:36 +02:00
import FtShareButton from '../ft-share-button/ft-share-button.vue'
// import { shell } from 'electron'
2020-02-16 19:30:00 +01:00
export default Vue.extend({
name: 'WatchVideoInfo',
components: {
'ft-card': FtCard,
'ft-button': FtButton,
'ft-list-dropdown': FtListDropdown,
2020-06-06 05:15:44 +02:00
'ft-flex-box': FtFlexBox,
2020-06-17 14:15:36 +02:00
'ft-icon-button': FtIconButton,
'ft-share-button': FtShareButton
2020-02-16 19:30:00 +01:00
},
props: {
id: {
type: String,
required: true
},
title: {
type: String,
required: true
},
channelId: {
type: String,
required: true
},
channelName: {
type: String,
required: true
},
channelThumbnail: {
type: String,
required: true
},
published: {
type: Number,
required: true
},
2020-02-16 19:30:00 +01:00
viewCount: {
type: Number,
required: true
},
subscriptionCountText: {
type: String,
required: true
},
likeCount: {
type: Number,
default: 0
2020-02-16 19:30:00 +01:00
},
dislikeCount: {
type: Number,
default: 0
2020-02-16 19:30:00 +01:00
}
},
data: function () {
return {
formatTypeLabel: 'VIDEO FORMATS',
formatTypeValues: [
'dash',
'legacy',
'audio'
2020-02-16 19:30:00 +01:00
]
}
},
computed: {
invidiousInstance: function () {
return this.$store.getters.getInvidiousInstance
},
usingElectron: function () {
return this.$store.getters.getUsingElectron
},
formatTypeNames: function () {
return [
this.$t('Change Format.Use Dash Formats').toUpperCase(),
this.$t('Change Format.Use Legacy Formats').toUpperCase(),
this.$t('Change Format.Use Audio Formats').toUpperCase()
]
},
2020-02-16 19:30:00 +01:00
totalLikeCount: function () {
return this.likeCount + this.dislikeCount
},
likePercentageRatio: function () {
return parseInt(this.likeCount / this.totalLikeCount * 100)
},
parsedViewCount: function () {
return this.viewCount.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',') + ` ${this.$t('Video.Views').toLowerCase()}`
2020-02-16 19:30:00 +01:00
},
subscribedText: function () {
return `${this.$t('Channel.Subscribe').toUpperCase()} ${this.subscriptionCountText}`
},
dateString() {
const date = new Date(this.published)
const dateSplit = date.toDateString().split(' ')
const localeDateString = `Video.Published.${dateSplit[1]}`
return `${this.$t(localeDateString)} ${dateSplit[2]}, ${dateSplit[3]}`
2020-02-16 19:30:00 +01:00
}
},
methods: {
goToChannel: function () {
this.$router.push({ path: `/channel/${this.channelId}` })
2020-02-16 19:30:00 +01:00
},
handleSubscription: function () {
2020-08-05 05:44:34 +02:00
this.showToast({
message: 'Subscriptions have not yet been implemented'
})
2020-02-16 19:30:00 +01:00
},
handleFormatChange: function (format) {
switch (format) {
case 'dash':
this.$parent.enableDashFormat()
break
case 'legacy':
this.$parent.enableLegacyFormat()
break
case 'audio':
this.$parent.enableAudioFormat()
break
}
2020-08-05 05:44:34 +02:00
},
...mapActions([
'showToast'
])
2020-02-16 19:30:00 +01:00
}
})