Piped/src/components/SubscriptionsPage.vue

98 lines
3.2 KiB
Vue
Raw Normal View History

<template>
<h1 class="font-bold text-center" v-t="'titles.subscriptions'" />
2021-12-27 14:46:30 +00:00
<div v-if="authenticated">
<button class="btn mr-0.5">
<router-link to="/import" v-t="'actions.import_from_json'" />
2021-09-04 18:30:13 +00:00
</button>
2021-09-04 15:02:59 +00:00
<button class="btn" @click="exportHandler" v-t="'actions.export_to_json'" />
2021-09-04 18:30:13 +00:00
</div>
<hr />
2021-12-27 14:46:30 +00:00
<div class="grid">
<div class="mb-3" v-for="subscription in subscriptions" :key="subscription.url">
<div class="flex justify-center place-items-center">
<div class="w-full grid grid-cols-3">
<router-link :to="subscription.url" class="col-start-2 block flex text-center font-bold text-4xl">
<img :src="subscription.avatar" class="rounded-full" width="48" height="48" />
2021-12-28 01:13:55 +00:00
<span v-text="subscription.name" />
2021-12-27 14:46:30 +00:00
</router-link>
2021-12-27 16:29:25 +00:00
<button
class="btn !w-min"
@click="handleButton(subscription)"
v-t="`actions.${subscription.subscribed ? 'unsubscribe' : 'subscribe'}`"
2021-12-27 16:29:25 +00:00
/>
2021-12-27 14:46:30 +00:00
</div>
</div>
</div>
</div>
2021-09-04 18:30:13 +00:00
<br />
</template>
<script>
export default {
data() {
return {
subscriptions: [],
};
},
mounted() {
if (this.authenticated)
this.fetchJson(this.authApiUrl() + "/subscriptions", null, {
headers: {
Authorization: this.getAuthToken(),
},
}).then(json => {
this.subscriptions = json;
this.subscriptions.forEach(subscription => (subscription.subscribed = true));
});
else this.$router.push("/login");
},
activated() {
document.title = "Subscriptions - Piped";
},
methods: {
handleButton(subscription) {
this.fetchJson(this.authApiUrl() + (subscription.subscribed ? "/unsubscribe" : "/subscribe"), null, {
method: "POST",
body: JSON.stringify({
channelId: subscription.url.split("/")[2],
}),
headers: {
Authorization: this.getAuthToken(),
"Content-Type": "application/json",
},
});
subscription.subscribed = !subscription.subscribed;
},
exportHandler() {
const subscriptions = [];
this.subscriptions.forEach(subscription => {
subscriptions.push({
url: "https://www.youtube.com" + subscription.url,
name: subscription.name,
service_id: 0,
});
});
const json = JSON.stringify({
app_version: "",
app_version_int: 0,
subscriptions: subscriptions,
});
var file = new Blob([json], { type: "application/json" });
const elem = document.createElement("a");
elem.href = URL.createObjectURL(file);
elem.download = "subscriptions.json";
elem.click();
elem.remove();
},
},
};
</script>