mirror of
https://github.com/cuiocean/ZY-Player.git
synced 2026-02-13 07:25:01 +08:00
502 lines
14 KiB
Vue
502 lines
14 KiB
Vue
<template>
|
|
<div class="setting">
|
|
<div class="setting-box zy-scroll">
|
|
<div class="logo"><img src="@/assets/image/logo.png" alt=""></div>
|
|
<div class="info">
|
|
<a @click="linkOpen('http://zyplayer.fun/')">官网</a>
|
|
<a @click="linkOpen('https://github.com/Hunlongyu/ZY-Player')">Github</a>
|
|
<a @click="linkOpen('https://github.com/Hunlongyu/ZY-Player/issues')">当前版本v{{pkg.version}} 反馈</a>
|
|
<a style="color:#38dd77" @click="linkOpen('https://github.com/Hunlongyu/ZY-Player/releases/tag/v' + latestVersion)" v-show="latestVersion !== pkg.version" >最新版本v{{latestVersion}}</a>
|
|
</div>
|
|
<div class="view">
|
|
<div class="title">视图</div>
|
|
<div class="view-box">
|
|
<div class="zy-select" @mouseleave="show.view = false">
|
|
<div class="vs-placeholder" @click="show.view = true">默认视图</div>
|
|
<div class="vs-options" v-show="show.view">
|
|
<ul class="zy-scroll">
|
|
<li :class="d.view === 'picture' ? 'active' : ''" @click="changeView('picture')">海报</li>
|
|
<li :class="d.view === 'table' ? 'active' : ''" @click="changeView('table')">列表</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="shortcut">
|
|
<div class="title">快捷键</div>
|
|
<div class="shortcut-box">
|
|
<div class="zy-select" @mouseleave="show.shortcut = false">
|
|
<div class="vs-placeholder" @click="show.shortcut = true">快捷键</div>
|
|
<div class="vs-options" v-show="show.shortcut">
|
|
<ul class="zy-scroll">
|
|
<li :class="d.shortcut === true ? 'active' : ''" @click="changeShortcut(true)">开启</li>
|
|
<li :class="d.shortcut === false ? 'active' : ''" @click="changeShortcut(false)">关闭</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div class="zy-select">
|
|
<div class="vs-placeholder vs-noAfter" @click="expShortcut">导出</div>
|
|
</div>
|
|
<div class="zy-select">
|
|
<div class="vs-placeholder vs-noAfter" @click="impShortcut">导入</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="site">
|
|
<div class="title">定位时间设置</div>
|
|
<div class="zy-input">
|
|
左/右方向键:<input style="width:50px" type="number" v-model = "d.forwardTimeInSec" @change="updateSettingEvent">秒
|
|
</div>
|
|
</div>
|
|
<div class='search'>
|
|
<div class="title">搜索</div>
|
|
<div class="zy-input" @click="toggleSearchAllSites">
|
|
<input type="checkbox" v-model = "d.searchAllSites" @change="updateSettingEvent"> 搜索所有资源
|
|
</div>
|
|
</div>
|
|
<div class='site'>
|
|
<div class="title">第三方播放</div>
|
|
<div class="site-box">
|
|
<div class="zy-select">
|
|
<div class="vs-placeholder vs-noAfter" @click="selectLocalPlayer">选择本地播放器</div>
|
|
</div>
|
|
<div class="zy-select" @click = "editPlayerPath = true">
|
|
<div class="vs-placeholder vs-noAfter" v-show = "editPlayerPath == false">
|
|
<label>编辑</label>
|
|
</div>
|
|
<input class="zy-input" v-show = "editPlayerPath == true" v-model = "d.externalPlayer"
|
|
@blur= "updateSettingEvent"
|
|
@keyup.enter = "updateSettingEvent">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="site">
|
|
<div class="title">源管理</div>
|
|
<div class="site-box">
|
|
<div class="zy-select">
|
|
<div class="vs-placeholder vs-noAfter" @click="editSitesEvent">编辑源</div>
|
|
</div>
|
|
<div class="zy-input" @click="toggleExcludeRootClasses">
|
|
<input type="checkbox" v-model = "d.excludeRootClasses" @change="updateSettingEvent"> 屏蔽主分类
|
|
</div>
|
|
<div class="zy-input" @click="toggleExcludeR18Films">
|
|
<input type="checkbox" v-model = "d.excludeR18Films" @change="updateSettingEvent"> 屏蔽福利片
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="theme">
|
|
<div class="title">主题</div>
|
|
<div class="theme-box">
|
|
<div @click="changeTheme('light')" class="theme-item light">
|
|
<div class="theme-image">
|
|
<img src="../assets/image/light.png" alt="">
|
|
</div>
|
|
<div class="theme-name">Light</div>
|
|
</div>
|
|
<div @click="changeTheme('dark')" class="theme-item dark">
|
|
<div class="theme-image">
|
|
<img src="../assets/image/dark.png" alt="">
|
|
</div>
|
|
<div class="theme-name">Dark</div>
|
|
</div>
|
|
<div @click="changeTheme('green')" class="theme-item green">
|
|
<div class="theme-image">
|
|
<img src="../assets/image/green.png" alt="">
|
|
</div>
|
|
<div class="theme-name">Green</div>
|
|
</div>
|
|
<div @click="changeTheme('pink')" class="theme-item pink">
|
|
<div class="theme-image">
|
|
<img src="../assets/image/pink.png" alt="">
|
|
</div>
|
|
<div class="theme-name">Pink</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="qrcode">
|
|
<div class="title">请作者吃辣条</div>
|
|
<div class="qrcode-box">
|
|
<img class="qrcode-item" src="../assets/image/alipay.png">
|
|
<img class="qrcode-item" src="../assets/image/wepay.jpg">
|
|
<img class="qrcode-item" src="../assets/image/wepay_cuiocean.jpg">
|
|
</div>
|
|
</div>
|
|
<div class="clearDB">
|
|
<span @click="clearDBEvent" class="clearBtn">软件重置</span>
|
|
<span class="clearTips">如果新安装用户, 无法显示资源, 请点击软件重置. 如非必要, 切勿点击. 会清空用户数据, 恢复默认设置. 点击即软件重置, 并关闭软件.</span>
|
|
</div>
|
|
<div class="Tips">
|
|
<span>所有资源来自网上, 该软件不参与任何制作, 上传, 储存等内容, 禁止传播违法资源. 该软件仅供学习参考, 请于安装后24小时内删除.</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import { mapMutations } from 'vuex'
|
|
import pkg from '../../package.json'
|
|
import { setting, sites, shortcut, star } from '../lib/dexie'
|
|
import { shell, clipboard, remote } from 'electron'
|
|
import db from '../lib/dexie/dexie'
|
|
export default {
|
|
name: 'setting',
|
|
data () {
|
|
return {
|
|
pkg: pkg,
|
|
sitesList: [],
|
|
shortcutList: [],
|
|
favoritesList: [],
|
|
show: {
|
|
site: false,
|
|
shortcut: false,
|
|
view: false
|
|
},
|
|
externalPlayer: '',
|
|
editPlayerPath: false,
|
|
excludeR18Films: true,
|
|
latestVersion: pkg.version,
|
|
forwardTimeInSec: 5,
|
|
d: {
|
|
id: 0,
|
|
site: '',
|
|
theme: '',
|
|
shortcut: true,
|
|
searchAllSites: true,
|
|
view: 'picture',
|
|
externalPlayer: '',
|
|
editPlayerPath: false,
|
|
excludeRootClasses: true,
|
|
excludeR18Films: true,
|
|
forwardTimeInSec: 5
|
|
}
|
|
}
|
|
},
|
|
computed: {
|
|
setting: {
|
|
get () {
|
|
return this.$store.getters.getSetting
|
|
},
|
|
set (val) {
|
|
this.SET_SETTING(val)
|
|
}
|
|
},
|
|
editSites: {
|
|
get () {
|
|
return this.$store.getters.getEditSites
|
|
},
|
|
set (val) {
|
|
this.SET_EDITSITES(val)
|
|
}
|
|
}
|
|
},
|
|
methods: {
|
|
...mapMutations(['SET_SETTING', 'SET_EDITSITES']),
|
|
linkOpen (e) {
|
|
shell.openExternal(e)
|
|
},
|
|
getSetting () {
|
|
setting.find().then(res => {
|
|
this.d = {
|
|
id: res.id,
|
|
site: res.site,
|
|
theme: res.theme,
|
|
shortcut: res.shortcut,
|
|
view: res.view,
|
|
searchAllSites: res.searchAllSites !== null ? res.searchAllSites : true,
|
|
externalPlayer: res.externalPlayer,
|
|
editPlayerPath: false,
|
|
excludeRootClasses: res.excludeRootClasses !== null ? res.excludeRootClasses : true,
|
|
excludeR18Films: res.excludeR18Films !== null ? res.excludeR18Films : true,
|
|
forwardTimeInSec: res.forwardTimeInSec !== null ? res.forwardTimeInSec : 5
|
|
}
|
|
this.setting = this.d
|
|
})
|
|
},
|
|
getSites () {
|
|
sites.all().then(res => {
|
|
this.sitesList = res
|
|
})
|
|
},
|
|
getShortcut () {
|
|
shortcut.all().then(res => {
|
|
this.shortcutList = res
|
|
})
|
|
},
|
|
getFavorites () {
|
|
star.all().then(res => {
|
|
this.favoritesList = res
|
|
})
|
|
},
|
|
changeView (e) {
|
|
this.d.view = e
|
|
setting.update(this.d).then(res => {
|
|
this.$message.success('修改成功')
|
|
this.show.view = false
|
|
})
|
|
},
|
|
updateSettingEvent () {
|
|
this.editPlayerPath = false
|
|
setting.update(this.d)
|
|
},
|
|
toggleSearchAllSites () {
|
|
this.d.searchAllSites = !this.d.searchAllSites
|
|
setting.update(this.d)
|
|
},
|
|
toggleExcludeR18Films () {
|
|
this.d.excludeR18Films = !this.d.excludeR18Films
|
|
setting.update(this.d)
|
|
},
|
|
toggleExcludeRootClasses () {
|
|
this.d.excludeRootClasses = !this.d.excludeRootClasses
|
|
setting.update(this.d)
|
|
},
|
|
selectLocalPlayer () {
|
|
const options = {
|
|
filters: [
|
|
{ name: 'Executable file', extensions: ['exe'] },
|
|
{ name: 'All types', extensions: ['*'] }
|
|
],
|
|
properties: ['openFile']
|
|
}
|
|
remote.dialog.showOpenDialog(options).then(result => {
|
|
if (!result.canceled) {
|
|
var playerPath = result.filePaths[0].replace(/\\/g, '/')
|
|
this.$message.success('设定第三方播放器路径为:' + result.filePaths[0])
|
|
this.d.externalPlayer = playerPath
|
|
setting.update(this.d)
|
|
}
|
|
}).catch(err => {
|
|
this.$message.error(err)
|
|
})
|
|
},
|
|
resetLocalPlayer () {
|
|
this.d.externalPlayer = ''
|
|
setting.update(this.d).then(res => {
|
|
this.setting = this.d
|
|
this.$message.success('重置第三方播放器成功')
|
|
})
|
|
},
|
|
updatePlayerPath () {
|
|
this.$message.success('设定第三方播放器路径为:' + this.d.externalPlayer)
|
|
this.editPlayerPath = false
|
|
setting.update(this.d)
|
|
},
|
|
editSitesEvent () {
|
|
this.editSites = {
|
|
show: true,
|
|
sites: this.sitesList
|
|
}
|
|
},
|
|
changeTheme (e) {
|
|
this.d.theme = e
|
|
setting.update(this.d).then(res => {
|
|
this.$message.success('修改成功')
|
|
})
|
|
},
|
|
changeShortcut (e) {
|
|
this.d.shortcut = e
|
|
setting.update(this.d).then(res => {
|
|
this.$message.success('修改成功')
|
|
this.show.shortcut = false
|
|
})
|
|
},
|
|
expShortcut () {
|
|
const arr = [...this.shortcutList]
|
|
const str = JSON.stringify(arr, null, 4)
|
|
clipboard.writeText(str)
|
|
this.$message.success('已复制到剪贴板')
|
|
},
|
|
impShortcut () {
|
|
const str = clipboard.readText()
|
|
const json = JSON.parse(str)
|
|
shortcut.clear().then(res => {
|
|
this.$message.info('已清空原数据')
|
|
shortcut.add(json).then(e => {
|
|
this.$message.success('已添加成功')
|
|
this.getSites()
|
|
})
|
|
})
|
|
},
|
|
clearDBEvent () {
|
|
db.delete().then(res => {
|
|
this.$message.success('重置成功')
|
|
const win = remote.getCurrentWindow()
|
|
win.destroy()
|
|
})
|
|
},
|
|
openDoc (e) {
|
|
if (e === 'sites') {
|
|
this.linkOpen('http://zyplayer.fun/doc/sites/')
|
|
return false
|
|
}
|
|
if (e === 'shortcut') {
|
|
this.linkOpen('http://zyplayer.fun/doc/shortcut/')
|
|
return false
|
|
}
|
|
},
|
|
getLatestVersion () {
|
|
const cheerio = require('cheerio')
|
|
const axios = require('axios')
|
|
var url = 'https://github.com/Hunlongyu/ZY-Player/releases'
|
|
axios.get(url).then(res => {
|
|
const $ = cheerio.load(res.data)
|
|
var e = $('div.release-header')[0]
|
|
var firstResult = $(e).find('div>div>a')
|
|
this.latestVersion = firstResult.text()
|
|
})
|
|
}
|
|
},
|
|
created () {
|
|
this.getSetting()
|
|
this.getSites()
|
|
this.getShortcut()
|
|
this.getFavorites()
|
|
this.getLatestVersion()
|
|
}
|
|
}
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.setting{
|
|
height: calc(100% - 40px);
|
|
width: 100%;
|
|
border-radius: 5px;
|
|
padding: 20px 0;
|
|
.setting-box{
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow-y: auto;
|
|
}
|
|
.logo{
|
|
margin-top: 10px;
|
|
width: 100%;
|
|
text-align: center;
|
|
img{
|
|
width: 120px;
|
|
height: auto;
|
|
}
|
|
}
|
|
.info{
|
|
width: 100%;
|
|
margin-top: 20px;
|
|
text-align: center;
|
|
a{
|
|
text-decoration: none;
|
|
margin: 0 10px;
|
|
font-size: 14px;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
.view{
|
|
width: 100%;
|
|
padding: 20px;
|
|
margin-top: 20px;
|
|
.view-box{
|
|
margin-top: 10px;
|
|
.zy-select{
|
|
margin-right: 20px;
|
|
}
|
|
}
|
|
}
|
|
.search{
|
|
width: 100%;
|
|
padding: 20px;
|
|
margin-top: 20px;
|
|
}
|
|
.site{
|
|
width: 100%;
|
|
padding: 20px;
|
|
margin-top: 20px;
|
|
.site-box{
|
|
margin-top: 10px;
|
|
.zy-select{
|
|
margin-right: 20px;
|
|
}
|
|
}
|
|
}
|
|
.shortcut{
|
|
width: 100%;
|
|
padding: 20px;
|
|
margin-top: 20px;
|
|
.shortcut-box{
|
|
margin-top: 10px;
|
|
.zy-select{
|
|
margin-right: 20px;
|
|
}
|
|
}
|
|
}
|
|
.theme{
|
|
width: 100%;
|
|
padding-left: 20px;
|
|
margin-top: 20px;
|
|
.theme-box{
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: flex-start;
|
|
margin-top: 10px;
|
|
.theme-item{
|
|
width: 200px;
|
|
height: 180px;
|
|
margin-right: 20px;
|
|
cursor: pointer;
|
|
border-radius: 2px;
|
|
.theme-image{
|
|
width: 180px;
|
|
margin: 10px auto;
|
|
img{
|
|
width: 100%;
|
|
}
|
|
}
|
|
.theme-name{
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.qrcode{
|
|
width: 100%;
|
|
padding-left: 20px;
|
|
margin-top: 20px;
|
|
margin-bottom: 20px;
|
|
.qrcode-box{
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
margin-top: 10px;
|
|
.qrcode-item{
|
|
width: auto;
|
|
height: 300px;
|
|
margin-right: 20px;
|
|
border-radius: 2px;
|
|
}
|
|
}
|
|
}
|
|
.clearDB{
|
|
margin-top: 20px;
|
|
margin-bottom: 20px;
|
|
.clearBtn{
|
|
margin-left: 20px;
|
|
color: red;
|
|
cursor: pointer;
|
|
border: 1px solid #ff000088;
|
|
display: inline-block;
|
|
width: 160px;
|
|
height: 32px;
|
|
font-size: 14px;
|
|
text-align: center;
|
|
line-height: 32px;
|
|
}
|
|
.clearTips{
|
|
font-size: 12px;
|
|
color: #ff000088;
|
|
margin-left: 10px;
|
|
}
|
|
}
|
|
.Tips{
|
|
margin: 20px;
|
|
font-size: 12px;
|
|
color: #ff000066;
|
|
}
|
|
}
|
|
</style>
|