From 076452c61232ee357b1f92d7b03672d0c6c0ec36 Mon Sep 17 00:00:00 2001 From: Simon Date: Wed, 23 Aug 2023 23:28:09 +0700 Subject: [PATCH] move subscribe buttons to API calls --- .../home/templates/home/channel.html | 4 +- .../home/templates/home/channel_id.html | 4 +- .../templates/home/channel_id_playlist.html | 4 +- .../home/templates/home/playlist.html | 4 +- .../home/templates/home/playlist_id.html | 4 +- tubearchivist/static/script.js | 41 +++++++++++-------- 6 files changed, 34 insertions(+), 27 deletions(-) diff --git a/tubearchivist/home/templates/home/channel.html b/tubearchivist/home/templates/home/channel.html index c2f1e0b..7a7debf 100644 --- a/tubearchivist/home/templates/home/channel.html +++ b/tubearchivist/home/templates/home/channel.html @@ -66,9 +66,9 @@

Last refreshed: {{ channel.source.channel_last_refresh }}

{% if channel.source.channel_subscribed %} - + {% else %} - + {% endif %}
diff --git a/tubearchivist/home/templates/home/channel_id.html b/tubearchivist/home/templates/home/channel_id.html index 8948772..7c09888 100644 --- a/tubearchivist/home/templates/home/channel_id.html +++ b/tubearchivist/home/templates/home/channel_id.html @@ -38,9 +38,9 @@

Subscribers: {{ channel_info.channel_subs|intcomma }}

{% endif %} {% if channel_info.channel_subscribed %} - + {% else %} - + {% endif %} diff --git a/tubearchivist/home/templates/home/channel_id_playlist.html b/tubearchivist/home/templates/home/channel_id_playlist.html index 971e41e..c40a121 100644 --- a/tubearchivist/home/templates/home/channel_id_playlist.html +++ b/tubearchivist/home/templates/home/channel_id_playlist.html @@ -54,9 +54,9 @@

{{ playlist.source.playlist_name }}

Last refreshed: {{ playlist.source.playlist_last_refresh }}

{% if playlist.source.playlist_subscribed %} - + {% else %} - + {% endif %} diff --git a/tubearchivist/home/templates/home/playlist.html b/tubearchivist/home/templates/home/playlist.html index 2d786bf..c82af74 100644 --- a/tubearchivist/home/templates/home/playlist.html +++ b/tubearchivist/home/templates/home/playlist.html @@ -49,9 +49,9 @@

{{ playlist.source.playlist_name }}

Last refreshed: {{ playlist.source.playlist_last_refresh }}

{% if playlist.source.playlist_subscribed %} - + {% else %} - + {% endif %} diff --git a/tubearchivist/home/templates/home/playlist_id.html b/tubearchivist/home/templates/home/playlist_id.html index 92a450d..b814fec 100644 --- a/tubearchivist/home/templates/home/playlist_id.html +++ b/tubearchivist/home/templates/home/playlist_id.html @@ -27,9 +27,9 @@

Last refreshed: {{ playlist_info.playlist_last_refresh }}

Playlist: {% if playlist_info.playlist_subscribed %} - + {% else %} - + {% endif %}

{% if playlist_info.playlist_active %} diff --git a/tubearchivist/static/script.js b/tubearchivist/static/script.js index 528b1a7..ec16569 100644 --- a/tubearchivist/static/script.js +++ b/tubearchivist/static/script.js @@ -71,20 +71,27 @@ function isWatchedButton(button) { }, 1000); } -function unsubscribe(id_unsub) { - let payload = JSON.stringify({ unsubscribe: id_unsub }); - sendPost(payload); +function subscribeStatus(subscribeButton) { + let id = subscribeButton.getAttribute('data-id'); + let type = subscribeButton.getAttribute('data-type'); + let subscribe = Boolean(subscribeButton.getAttribute('data-subscribe')); + let apiEndpoint; + let data; + if (type === 'channel') { + apiEndpoint = '/api/channel/'; + data = { data: [{ channel_id: id, channel_subscribed: subscribe }] }; + } else if (type === 'playlist') { + apiEndpoint = '/api/playlist/'; + data = { data: [{ playlist_id: id, playlist_subscribed: subscribe }] }; + } + apiRequest(apiEndpoint, 'POST', data); let message = document.createElement('span'); - message.innerText = 'You are unsubscribed.'; - document.getElementById(id_unsub).replaceWith(message); -} - -function subscribe(id_sub) { - let payload = JSON.stringify({ subscribe: id_sub }); - sendPost(payload); - let message = document.createElement('span'); - message.innerText = 'You are subscribed.'; - document.getElementById(id_sub).replaceWith(message); + if (subscribe) { + message.innerText = 'You are subscribed.'; + } else { + message.innerText = 'You are unsubscribed.'; + } + subscribeButton.replaceWith(message); } function changeView(image) { @@ -1057,9 +1064,9 @@ function createChannel(channel, viewStyle) { const channelLastRefresh = channel.channel_last_refresh; let button; if (channel.channel_subscribed) { - button = ``; + button = ``; } else { - button = ``; + button = ``; } // build markup const markup = ` @@ -1103,9 +1110,9 @@ function createPlaylist(playlist, viewStyle) { const playlistLastRefresh = playlist.playlist_last_refresh; let button; if (playlist.playlist_subscribed) { - button = ``; + button = ``; } else { - button = ``; + button = ``; } const markup = `