2021-07-22 20:05:48 +00:00
|
|
|
<template>
|
2023-07-27 11:46:05 +00:00
|
|
|
<h1 v-t="'titles.subscriptions'" class="font-bold text-center my-4" />
|
2022-11-26 11:04:12 +00:00
|
|
|
<!-- import / export section -->
|
2022-08-01 14:16:06 +00:00
|
|
|
<div class="flex justify-between w-full">
|
2022-07-28 17:58:57 +00:00
|
|
|
<div class="flex">
|
|
|
|
<button class="btn mx-1">
|
2023-07-27 11:46:05 +00:00
|
|
|
<router-link v-t="'actions.import_from_json'" to="/import" />
|
2022-07-27 05:52:25 +00:00
|
|
|
</button>
|
2023-07-27 11:46:05 +00:00
|
|
|
<button v-t="'actions.export_to_json'" class="btn" @click="exportHandler" />
|
2022-07-27 05:52:25 +00:00
|
|
|
</div>
|
2022-11-26 11:04:12 +00:00
|
|
|
<!-- subscriptions count, only shown if there are any -->
|
|
|
|
<i18n-t v-if="subscriptions.length > 0" keypath="subscriptions.subscribed_channels_count">{{
|
|
|
|
subscriptions.length
|
|
|
|
}}</i18n-t>
|
2021-09-04 18:30:13 +00:00
|
|
|
</div>
|
2022-11-26 12:04:57 +00:00
|
|
|
<br />
|
2021-10-08 18:52:51 +00:00
|
|
|
<hr />
|
2023-05-07 17:56:56 +00:00
|
|
|
<div class="w-full flex flex-wrap">
|
|
|
|
<button
|
|
|
|
v-for="group in channelGroups"
|
2023-07-27 11:46:05 +00:00
|
|
|
:key="group.groupName"
|
2023-05-07 17:56:56 +00:00
|
|
|
class="btn mx-1 w-max"
|
|
|
|
:class="{ selected: selectedGroup === group }"
|
2023-07-28 16:49:16 +00:00
|
|
|
@click="selectGroup(group)"
|
2023-05-07 17:56:56 +00:00
|
|
|
>
|
|
|
|
<span v-text="group.groupName !== '' ? group.groupName : $t('video.all')" />
|
|
|
|
<div v-if="group.groupName != '' && selectedGroup == group">
|
|
|
|
<font-awesome-icon class="mx-2" icon="edit" @click="showEditGroupModal = true" />
|
|
|
|
<font-awesome-icon class="mx-2" icon="circle-minus" @click="deleteGroup(group)" />
|
|
|
|
</div>
|
|
|
|
</button>
|
|
|
|
<button class="btn mx-1">
|
|
|
|
<font-awesome-icon icon="circle-plus" @click="showCreateGroupModal = true" />
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<br />
|
|
|
|
<hr />
|
2022-11-26 11:04:12 +00:00
|
|
|
<!-- Subscriptions card list -->
|
2022-11-26 11:23:07 +00:00
|
|
|
<div class="xl:grid xl:grid-cols-5 <md:flex-wrap">
|
2022-11-26 11:04:12 +00:00
|
|
|
<!-- channel info card -->
|
|
|
|
<div
|
2023-05-07 17:56:56 +00:00
|
|
|
v-for="subscription in filteredSubscriptions"
|
2022-11-26 11:04:12 +00:00
|
|
|
:key="subscription.url"
|
2023-07-27 11:46:05 +00:00
|
|
|
class="col m-2 p-1 border rounded-lg border-gray-500"
|
2022-11-26 11:04:12 +00:00
|
|
|
>
|
|
|
|
<router-link :to="subscription.url" class="flex p-2 font-bold text-4x4">
|
|
|
|
<img :src="subscription.avatar" class="rounded-full h-[fit-content]" width="48" height="48" />
|
|
|
|
<span class="self-center mx-2" v-text="subscription.name" />
|
|
|
|
</router-link>
|
|
|
|
<!-- subscribe / unsubscribe btn -->
|
|
|
|
<button
|
2023-07-27 11:46:05 +00:00
|
|
|
v-t="`actions.${subscription.subscribed ? 'unsubscribe' : 'subscribe'}`"
|
2022-11-26 11:04:12 +00:00
|
|
|
class="btn w-full mt-2"
|
|
|
|
@click="handleButton(subscription)"
|
|
|
|
/>
|
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 />
|
2023-05-07 17:56:56 +00:00
|
|
|
|
|
|
|
<ModalComponent v-if="showCreateGroupModal" @close="showCreateGroupModal = !showCreateGroupModal">
|
|
|
|
<h2 v-t="'actions.create_group'" />
|
|
|
|
<div class="flex flex-col">
|
2023-07-27 11:46:05 +00:00
|
|
|
<input v-model="newGroupName" class="input my-4" type="text" :placeholder="$t('actions.group_name')" />
|
|
|
|
<button v-t="'actions.create_group'" class="ml-auto btn w-max" @click="createGroup()" />
|
2023-05-07 17:56:56 +00:00
|
|
|
</div>
|
|
|
|
</ModalComponent>
|
|
|
|
|
|
|
|
<ModalComponent v-if="showEditGroupModal" @close="showEditGroupModal = false">
|
2023-07-28 16:49:16 +00:00
|
|
|
<div class="flex justify-between mt-3 mb-5">
|
|
|
|
<input v-model="editedGroupName" type="text" class="input" />
|
|
|
|
<button v-t="'actions.okay'" class="btn" :placeholder="$t('actions.group_name')" @click="editGroupName()" />
|
|
|
|
</div>
|
2023-05-19 06:06:02 +00:00
|
|
|
<div class="flex flex-col mt-3 mb-2 overflow-y-scroll h-70">
|
2023-05-07 17:56:56 +00:00
|
|
|
<div v-for="subscription in subscriptions" :key="subscription.name">
|
2023-05-19 06:06:02 +00:00
|
|
|
<div class="flex justify-between mr-3">
|
2023-05-07 17:56:56 +00:00
|
|
|
<span>{{ subscription.name }}</span>
|
2023-05-08 12:13:32 +00:00
|
|
|
<input
|
|
|
|
type="checkbox"
|
|
|
|
class="checkbox"
|
|
|
|
:checked="selectedGroup.channels.includes(subscription.url.substr(-11))"
|
|
|
|
@change="checkedChange(subscription)"
|
2023-05-07 17:56:56 +00:00
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<hr />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</ModalComponent>
|
2021-07-22 20:05:48 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2023-05-07 17:56:56 +00:00
|
|
|
import ModalComponent from "./ModalComponent.vue";
|
|
|
|
|
2021-07-22 20:05:48 +00:00
|
|
|
export default {
|
2023-07-27 11:46:05 +00:00
|
|
|
components: { ModalComponent },
|
2021-07-22 20:05:48 +00:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
subscriptions: [],
|
2023-05-07 17:56:56 +00:00
|
|
|
selectedGroup: {
|
|
|
|
groupName: "",
|
|
|
|
channels: [],
|
|
|
|
},
|
|
|
|
channelGroups: [],
|
|
|
|
showCreateGroupModal: false,
|
|
|
|
showEditGroupModal: false,
|
|
|
|
newGroupName: "",
|
2023-07-28 16:49:16 +00:00
|
|
|
editedGroupName: "",
|
2021-07-22 20:05:48 +00:00
|
|
|
};
|
|
|
|
},
|
2023-07-27 11:46:05 +00:00
|
|
|
computed: {
|
|
|
|
filteredSubscriptions(_this) {
|
|
|
|
return _this.selectedGroup.groupName == ""
|
|
|
|
? _this.subscriptions
|
|
|
|
: _this.subscriptions.filter(channel => _this.selectedGroup.channels.includes(channel.url.substr(-11)));
|
|
|
|
},
|
|
|
|
},
|
2021-07-22 20:05:48 +00:00
|
|
|
mounted() {
|
2022-08-01 14:16:06 +00:00
|
|
|
this.fetchSubscriptions().then(json => {
|
|
|
|
this.subscriptions = json;
|
|
|
|
this.subscriptions.forEach(subscription => (subscription.subscribed = true));
|
|
|
|
});
|
2023-05-07 17:56:56 +00:00
|
|
|
|
2023-05-08 12:13:32 +00:00
|
|
|
this.channelGroups.push(this.selectedGroup);
|
2023-05-07 17:56:56 +00:00
|
|
|
|
|
|
|
if (!window.db) return;
|
|
|
|
const cursor = this.getChannelGroupsCursor();
|
|
|
|
cursor.onsuccess = e => {
|
|
|
|
const cursor = e.target.result;
|
|
|
|
if (cursor) {
|
|
|
|
const group = cursor.value;
|
2023-05-08 12:13:32 +00:00
|
|
|
this.channelGroups.push({
|
2023-05-07 17:56:56 +00:00
|
|
|
groupName: group.groupName,
|
|
|
|
channels: JSON.parse(group.channels),
|
|
|
|
});
|
2023-05-08 12:13:32 +00:00
|
|
|
cursor.continue();
|
2023-05-07 17:56:56 +00:00
|
|
|
}
|
|
|
|
};
|
2021-07-22 20:05:48 +00:00
|
|
|
},
|
|
|
|
activated() {
|
|
|
|
document.title = "Subscriptions - Piped";
|
|
|
|
},
|
|
|
|
methods: {
|
2022-08-01 14:16:06 +00:00
|
|
|
async fetchSubscriptions() {
|
|
|
|
if (this.authenticated) {
|
|
|
|
return await this.fetchJson(this.authApiUrl() + "/subscriptions", null, {
|
|
|
|
headers: {
|
|
|
|
Authorization: this.getAuthToken(),
|
|
|
|
},
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
return await this.fetchJson(this.authApiUrl() + "/subscriptions/unauthenticated", {
|
|
|
|
channels: this.getUnauthenticatedChannels(),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
2021-07-22 20:05:48 +00:00
|
|
|
handleButton(subscription) {
|
2022-08-01 16:29:49 +00:00
|
|
|
const channelId = subscription.url.split("/")[2];
|
|
|
|
if (this.authenticated) {
|
|
|
|
this.fetchJson(this.authApiUrl() + (subscription.subscribed ? "/unsubscribe" : "/subscribe"), null, {
|
|
|
|
method: "POST",
|
|
|
|
body: JSON.stringify({
|
|
|
|
channelId: channelId,
|
|
|
|
}),
|
|
|
|
headers: {
|
|
|
|
Authorization: this.getAuthToken(),
|
|
|
|
"Content-Type": "application/json",
|
|
|
|
},
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
this.handleLocalSubscriptions(channelId);
|
|
|
|
}
|
2021-07-22 20:05:48 +00:00
|
|
|
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,
|
|
|
|
});
|
2022-08-02 08:14:03 +00:00
|
|
|
this.download(json, "subscriptions.json", "application/json");
|
2021-07-31 18:48:38 +00:00
|
|
|
},
|
2023-07-28 16:49:16 +00:00
|
|
|
selectGroup(group) {
|
|
|
|
this.selectedGroup = group;
|
|
|
|
this.editedGroupName = group.groupName;
|
|
|
|
},
|
2023-05-07 17:56:56 +00:00
|
|
|
createGroup() {
|
|
|
|
if (!this.newGroupName || this.channelGroups.some(group => group.groupName == this.newGroupName)) return;
|
|
|
|
|
|
|
|
const newGroup = {
|
|
|
|
groupName: this.newGroupName,
|
|
|
|
channels: [],
|
|
|
|
};
|
2023-05-08 12:13:32 +00:00
|
|
|
this.channelGroups.push(newGroup);
|
2023-05-07 17:56:56 +00:00
|
|
|
this.createOrUpdateChannelGroup(newGroup);
|
|
|
|
|
|
|
|
this.newGroupName = "";
|
|
|
|
|
|
|
|
this.showCreateGroupModal = false;
|
|
|
|
},
|
2023-07-28 16:49:16 +00:00
|
|
|
editGroupName() {
|
|
|
|
const oldGroupName = this.selectedGroup.groupName;
|
|
|
|
const newGroupName = this.editedGroupName;
|
|
|
|
|
|
|
|
// the group mustn't yet exist and the name can't be empty
|
|
|
|
if (!newGroupName || newGroupName == oldGroupName) return;
|
|
|
|
if (this.channelGroups.some(group => group.groupName == newGroupName)) return;
|
|
|
|
|
|
|
|
// create a new group with the same info and delete the old one
|
|
|
|
this.selectedGroup.groupName = newGroupName;
|
|
|
|
this.createOrUpdateChannelGroup(this.selectedGroup);
|
|
|
|
this.deleteChannelGroup(oldGroupName);
|
|
|
|
|
|
|
|
this.showEditGroupModal = false;
|
|
|
|
},
|
2023-05-07 17:56:56 +00:00
|
|
|
deleteGroup(group) {
|
|
|
|
this.deleteChannelGroup(group.groupName);
|
|
|
|
this.channelGroups = this.channelGroups.filter(g => g != group);
|
|
|
|
this.selectedGroup = this.channelGroups[0];
|
|
|
|
},
|
|
|
|
checkedChange(subscription) {
|
|
|
|
const channelId = subscription.url.substr(-11);
|
|
|
|
this.selectedGroup.channels = this.selectedGroup.channels.includes(channelId)
|
|
|
|
? this.selectedGroup.channels.filter(channel => channel != channelId)
|
|
|
|
: this.selectedGroup.channels.concat(channelId);
|
|
|
|
this.createOrUpdateChannelGroup(this.selectedGroup);
|
|
|
|
},
|
2021-07-22 20:05:48 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|
2023-05-07 17:56:56 +00:00
|
|
|
|
|
|
|
<style>
|
|
|
|
.selected {
|
|
|
|
border: 0.1rem outset red;
|
|
|
|
}
|
|
|
|
</style>
|