VueTube/NUXT/pages/mods/updates.vue

139 lines
4.1 KiB
Vue
Raw Normal View History

2022-03-07 14:36:23 +00:00
<template>
2022-08-06 13:42:35 +00:00
<div style="padding: 2em;">
<v-icon x-large color="primary" style="padding-bottom: 0.25em;">mdi-cellphone-arrow-down</v-icon>
<div v-if="status == 'checking'">
<h1>{{ lang.checking }}</h1>
<div>{{ lang.installed }}: {{ installedVersion }}</div>
<center>
<v-progress-circular indeterminate color="primary" size="75" style="padding-top: 10em;" />
</center>
</div>
<div v-if="status == 'latest'">
<h1>{{ lang.noupdate }}</h1>
<p>{{ lang.noupdatemessage }}</p>
<div class="bottom">
2022-08-07 17:26:20 +00:00
<v-btn rounded @click="getLatest">{{ lang.refresh }}</v-btn>
2022-08-06 13:42:35 +00:00
<v-btn rounded color="primary" @click="$router.go(-1)">{{ lang.okay }}</v-btn>
</div>
</div>
2022-03-07 14:36:23 +00:00
2022-08-06 13:42:35 +00:00
<div v-if="status == 'available'">
2022-08-07 17:26:20 +00:00
<h1 v-if="!downloading">{{ lang.available }}</h1>
<h1 v-if="downloading">{{ lang.updating }}</h1>
2022-08-06 13:42:35 +00:00
<div>{{ lang.installed }}: {{ installedVersion }}</div>
<div>{{ lang.latest }}: {{ latestVersion.tag_name }}</div>
2022-08-07 17:26:20 +00:00
<div style="margin-top: 1em; color: #999;">
<div>{{ lang.published }}: {{ new Date(update.created_at).toLocaleString() }}</div>
<div>{{ lang.size }}: {{ require("~/plugins/utils").humanFileSize(update.size) }}</div>
<div>{{ lang.users }}: {{ update.download_count }}</div>
</div>
<div style="margin-top: 1em; color: #999;"><b>Changelog</b></div>
<p style="white-space: pre-line; color: #999;">{{ latestVersion.body.trim() }}</p>
2022-08-07 17:26:20 +00:00
2022-08-07 19:04:46 +00:00
<v-progress-linear indeterminate color="primary" v-if="downloading" style="position: absolute; top: 0; width: 100%; left: 0;" />
<div class="bottom" v-if="!downloading">
2022-08-06 13:42:35 +00:00
<v-btn rounded @click="$router.go(-1)">{{ lang.later }}</v-btn>
2022-08-07 17:26:20 +00:00
<v-btn rounded color="primary" @click="install()">{{ lang.update }}</v-btn>
2022-08-06 13:42:35 +00:00
</div>
</div>
2022-03-07 14:36:23 +00:00
</div>
</template>
<style scoped>
2022-08-06 13:42:35 +00:00
.bottom {
position: absolute;
bottom: 0;
right: 0;
padding: 2em;
2022-03-11 13:31:01 +00:00
}
2022-03-07 14:36:23 +00:00
</style>
<script>
2022-08-06 14:00:49 +00:00
import { Device } from "@capacitor/device";
2022-03-07 14:36:23 +00:00
export default {
2022-08-06 13:42:35 +00:00
layout: "empty",
2022-03-07 14:36:23 +00:00
data() {
return {
2022-03-21 23:47:11 +00:00
installedVersion: process.env.appVersion,
2022-08-06 13:42:35 +00:00
latestVersion: "",
lang: {},
2022-08-07 17:26:20 +00:00
status: "checking",
update: {},
downloading: false,
2022-03-21 23:47:11 +00:00
};
2022-03-07 14:36:23 +00:00
},
async mounted() {
2022-08-06 13:42:35 +00:00
//--- Setup Lang Pack ---//
this.lang = this.$lang("mods").updates;
2022-03-11 16:39:52 +00:00
2022-08-07 17:26:20 +00:00
this.getLatest();
2022-08-06 14:00:49 +00:00
},
methods: {
2022-08-07 17:26:20 +00:00
async getUpdate() {
2022-08-06 14:00:49 +00:00
const device = await Device.getInfo();
const platform = device.platform;
2022-08-07 17:26:20 +00:00
//--- Put all strings into 1 array ---//
2022-08-06 14:00:49 +00:00
let downloads = new Array();
for (const i in this.latestVersion.assets) {
const asset = this.latestVersion.assets[i];
downloads.push(asset.browser_download_url);
}
2022-08-07 17:26:20 +00:00
//--- Pick String For Platform From Above Array ---//
2022-08-06 14:00:49 +00:00
if (platform == "ios") {
2022-08-07 17:26:20 +00:00
this.update = downloads.filter(m => m.includes('.ipa'))[0];
2022-08-06 14:00:49 +00:00
} else {
2022-08-07 17:26:20 +00:00
this.update = downloads.filter(m => m.includes('.apk'))[0];
2022-08-06 14:00:49 +00:00
}
2022-08-07 17:26:20 +00:00
//--- Set Update As Full Data ---//
for (const i in this.latestVersion.assets) {
const asset = this.latestVersion.assets[i];
if (asset.browser_download_url == this.update) {
return this.update = asset;
}
}
},
async getLatest() {
//--- Get Latest Version ---//
this.status = "checking";
const releases = await this.$vuetube.releases;
this.latestVersion = releases[0];
//--- Wait like 2 seconds because if people don't see loading, they think it didn't refresh properly ---//
if (!this.$route.query.nowait) await require("~/plugins/utils").delay(2000);
//--- Get Proper File ---//
this.getUpdate();
//--- Kick Off Update Notice ---//
if (this.latestVersion.tag_name != this.installedVersion) {
this.status = "available";
} else {
this.status = "latest";
}
},
async install() {
2022-08-07 19:04:46 +00:00
this.downloading = true;
2022-08-07 20:58:48 +00:00
await this.$update(this.update.browser_download_url).catch(() => { this.downloading = false; });
2022-08-07 19:04:46 +00:00
//window.open(this.update.browser_download_url, '_blank');
2022-08-07 17:26:20 +00:00
2022-08-06 14:00:49 +00:00
}
2022-08-06 13:42:35 +00:00
}
2022-03-21 23:47:11 +00:00
};
2022-03-07 14:36:23 +00:00
</script>