2021-07-22 20:05:48 +00:00
|
|
|
<template>
|
2022-01-30 23:48:27 +00:00
|
|
|
<h1 class="font-bold text-center" v-t="'titles.subscriptions'" />
|
2021-09-05 13:08:26 +00:00
|
|
|
|
2022-07-27 05:52:25 +00:00
|
|
|
<div v-if="authenticated" class="flex justify-between w-full">
|
|
|
|
<div>
|
|
|
|
<button class="btn mr-0.5">
|
|
|
|
<router-link to="/import" v-t="'actions.import_from_json'" />
|
|
|
|
</button>
|
|
|
|
<button class="btn" @click="exportHandler" v-t="'actions.export_to_json'" />
|
|
|
|
</div>
|
|
|
|
<i18n-t keypath="subscriptions.subscribed_channels_count">{{ subscriptions.length }}</i18n-t>
|
2021-09-04 18:30:13 +00:00
|
|
|
</div>
|
2021-10-08 18:52:51 +00:00
|
|
|
<hr />
|
2021-07-31 18:48:38 +00:00
|
|
|
|
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)"
|
2022-01-30 23:48:27 +00:00
|
|
|
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>
|
2021-07-22 20:05:48 +00:00
|
|
|
</div>
|
2021-10-08 18:52:51 +00:00
|
|
|
</div>
|
2021-09-04 18:30:13 +00:00
|
|
|
<br />
|
2021-07-22 20:05:48 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
subscriptions: [],
|
|
|
|
};
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
if (this.authenticated)
|
2022-07-21 04:04:57 +00:00
|
|
|
this.fetchJson(this.authApiUrl() + "/subscriptions", null, {
|
2021-07-22 20:05:48 +00:00
|
|
|
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) {
|
2022-07-21 04:04:57 +00:00
|
|
|
this.fetchJson(this.authApiUrl() + (subscription.subscribed ? "/unsubscribe" : "/subscribe"), null, {
|
2021-07-22 20:05:48 +00:00
|
|
|
method: "POST",
|
|
|
|
body: JSON.stringify({
|
|
|
|
channelId: subscription.url.split("/")[2],
|
|
|
|
}),
|
|
|
|
headers: {
|
|
|
|
Authorization: this.getAuthToken(),
|
|
|
|
"Content-Type": "application/json",
|
|
|
|
},
|
|
|
|
});
|
|
|
|
subscription.subscribed = !subscription.subscribed;
|
|
|
|
},
|
2021-07-31 18:48:38 +00:00
|
|
|
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();
|
|
|
|
},
|
2021-07-22 20:05:48 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|