VueTube/NUXT/pages/updates.vue

79 lines
1.8 KiB
Vue
Raw Normal View History

2022-03-07 14:36:23 +00:00
<template>
<div>
<v-list-item v-for="(item, index) in commits" :key="index">
<v-card class="card">
2022-03-11 13:31:01 +00:00
<v-card-title style="padding-bottom: 0; padding-top: 0;">
2022-03-07 14:36:23 +00:00
{{ item.author.login }}
<span v-text="` ${item.sha.substring(0, 7)}`" class="subtitle" />
2022-03-11 13:31:01 +00:00
<v-spacer />
<v-chip outlined class="tags" color="orange" v-if="index == 0">Latest</v-chip>
<v-chip outlined class="tags" color="green" v-if="item.sha == installedVersion">Installed</v-chip>
2022-03-07 14:36:23 +00:00
</v-card-title>
2022-03-07 19:07:24 +00:00
<div style="margin-left: 1em;">
<div class="date" v-text="new Date(item.commit.committer.date).toLocaleString()" />
2022-03-07 19:09:58 +00:00
{{ item.commit.message }}
2022-03-07 19:07:24 +00:00
</div>
2022-03-07 14:36:23 +00:00
<v-card-actions>
<v-spacer />
2022-03-10 17:39:29 +00:00
<v-btn @click="openExternal(item)"><v-icon class="btn-icon">mdi-github</v-icon>View</v-btn>
<v-btn disabled><v-icon class="btn-icon">mdi-download</v-icon>Install</v-btn>
2022-03-07 14:36:23 +00:00
</v-card-actions>
</v-card>
</v-list-item>
</div>
</template>
<style scoped>
.card {
width: 100%;
margin: 1em 0 1em 0;
}
.subtitle {
margin: 0.4em;
font-size: 0.75em;
transform: translateY(5%);
color: #999;
}
.date {
color: #999;
transform: translateY(-40%);
}
2022-03-10 17:39:29 +00:00
.btn-icon {
margin-right: 0.25em;
}
2022-03-11 13:31:01 +00:00
.tags {
margin: 0 0.5em 0 0;
}
2022-03-07 14:36:23 +00:00
</style>
<script>
import { Browser } from '@capacitor/browser';
export default {
data() {
return {
2022-03-11 13:31:01 +00:00
commits: new Array(),
installedVersion: process.env.appVersion
2022-03-07 14:36:23 +00:00
}
},
async mounted() {
const commits = await this.$vuetube.commits;
if (commits[0].sha) { //If Commit Valid
this.commits = commits;
} else {
console.log(commits)
}
2022-03-07 14:36:23 +00:00
},
methods: {
async openExternal(item) {
await Browser.open({ url: item.html_url });
2022-03-07 14:36:23 +00:00
}
}
}
</script>