VueTube/NUXT/pages/updates.vue

69 lines
1.4 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">
<v-card-title style="padding-bottom: 0;">
{{ item.author.login }}
<span v-text="` ${item.sha.substring(0, 7)}`" class="subtitle" />
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 />
<v-btn @click="openExternal(item)"><v-icon>mdi-open-in-new</v-icon>Open</v-btn>
<v-btn disabled><v-icon>mdi-download</v-icon>Download</v-btn>
</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-07 14:36:23 +00:00
</style>
<script>
import { Browser } from '@capacitor/browser';
export default {
data() {
return {
commits: new Array()
}
},
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>