mirror of
https://github.com/tubearchivist/tubearchivist-frontend.git
synced 2024-11-22 11:50:14 +00:00
extend sort and filter to channel_id view
This commit is contained in:
parent
8255fe9e55
commit
21d55561a0
@ -34,6 +34,11 @@
|
|||||||
false
|
false
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</p>
|
</p>
|
||||||
|
<p>Channel id: {{ channel_info.channel_id }}</p>
|
||||||
|
<button onclick="deleteConfirm()" id="delete-item">Delete Channel</button>
|
||||||
|
<div class="delete-confirm" id="delete-button">
|
||||||
|
<span>Delete {{ channel_info.channel_name }} including all videos? </span><button class="danger-button" onclick="deleteChannel(this)" data-id="{{ channel_info.channel_id }}">Delete</button> <button onclick="cancelDelete()">Cancel</button>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="info-box-item">
|
<div class="info-box-item">
|
||||||
@ -47,11 +52,6 @@
|
|||||||
<p>Total Videos archived: {{ max_hits }}</p>
|
<p>Total Videos archived: {{ max_hits }}</p>
|
||||||
<p>Watched: <button title="Mark all videos from {{ channel_info.channel_name }} as watched" type="button" id="{{ channel_info.channel_id }}" onclick="isWatched(this.id)">Mark as watched</button></p>
|
<p>Watched: <button title="Mark all videos from {{ channel_info.channel_name }} as watched" type="button" id="{{ channel_info.channel_id }}" onclick="isWatched(this.id)">Mark as watched</button></p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<p>Channel id: {{ channel_info.channel_id }}</p>
|
|
||||||
<button onclick="deleteConfirm()" id="delete-item">Delete Channel</button>
|
|
||||||
<div class="delete-confirm" id="delete-button">
|
|
||||||
<span>Delete {{ channel_info.channel_name }} including all videos? </span><button class="danger-button" onclick="deleteChannel(this)" data-id="{{ channel_info.channel_id }}">Delete</button> <button onclick="cancelDelete()">Cancel</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -63,12 +63,49 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<div class="view-icons">
|
|
||||||
<img src="{% static 'img/icon-gridview.svg' %}" onclick="changeView(this)" data-origin="home" data-value="grid" alt="grid view">
|
|
||||||
<img src="{% static 'img/icon-listview.svg' %}" onclick="changeView(this)" data-origin="home" data-value="list" alt="list view">
|
|
||||||
</div>
|
|
||||||
<div id="player" class="video-player"></div>
|
<div id="player" class="video-player"></div>
|
||||||
<h2>Videos</h2>
|
<div class="sort">
|
||||||
|
<p>Sort by <span class="settings-current">{{ sort_by }}</span>
|
||||||
|
<select name="sort" id="sort" onchange="sortChange(this.value)">
|
||||||
|
<option value="" disabled selected> -- change sort by -- </option>
|
||||||
|
<option value="published">date published</option>
|
||||||
|
<option value="downloaded">date downloaded</option>
|
||||||
|
<option value="views">views</option>
|
||||||
|
<option value="likes">likes</option>
|
||||||
|
</select>
|
||||||
|
<select name="sord-order" id="sort-order" onchange="sortChange(this.value)">
|
||||||
|
{% if sort_order == "asc" %}
|
||||||
|
<option value="asc" selected>asc</option>
|
||||||
|
{% else %}
|
||||||
|
<option value="asc">asc</option>
|
||||||
|
{% endif %}
|
||||||
|
{% if sort_order == "desc" %}
|
||||||
|
<option value="desc" selected>desc</option>
|
||||||
|
{% else %}
|
||||||
|
<option value="desc">desc</option>
|
||||||
|
{% endif %}
|
||||||
|
</select>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="view-controls">
|
||||||
|
<div class="toggle">
|
||||||
|
<span>Hide watched videos:</span>
|
||||||
|
<div class="toggleBox">
|
||||||
|
<input
|
||||||
|
id="hide_watched" onclick="toggleCheckbox(this)" type="checkbox"
|
||||||
|
{% if hide_watched %}
|
||||||
|
checked
|
||||||
|
{% endif %}
|
||||||
|
>
|
||||||
|
<label for="" class="onbtn">On</label>
|
||||||
|
<label for="" class="ofbtn">Off</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="view-icons">
|
||||||
|
<img src="{% static 'img/icon-gridview.svg' %}" onclick="changeView(this)" data-origin="home" data-value="grid" alt="grid view">
|
||||||
|
<img src="{% static 'img/icon-listview.svg' %}" onclick="changeView(this)" data-origin="home" data-value="list" alt="list view">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div class="video-list {{ view_style }}">
|
<div class="video-list {{ view_style }}">
|
||||||
{% if videos %}
|
{% if videos %}
|
||||||
{% for video in videos %}
|
{% for video in videos %}
|
||||||
|
@ -302,27 +302,47 @@ class ChannelIdView(View):
|
|||||||
|
|
||||||
def get(self, request, channel_id_detail):
|
def get(self, request, channel_id_detail):
|
||||||
"""get method"""
|
"""get method"""
|
||||||
es_url, colors, view_style = self.read_config()
|
# es_url, colors, view_style = self.read_config()
|
||||||
context = self.get_channel_videos(request, channel_id_detail, es_url)
|
view_config = self.read_config()
|
||||||
context.update({"colors": colors, "view_style": view_style})
|
context = self.get_channel_videos(
|
||||||
|
request, channel_id_detail, view_config
|
||||||
|
)
|
||||||
|
context.update(view_config)
|
||||||
return render(request, "home/channel_id.html", context)
|
return render(request, "home/channel_id.html", context)
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def read_config():
|
def read_config():
|
||||||
"""read config file"""
|
"""read config file"""
|
||||||
config = AppConfig().config
|
config = AppConfig().config
|
||||||
es_url = config["application"]["es_url"]
|
|
||||||
colors = config["application"]["colors"]
|
|
||||||
view_style = config["default_view"]["home"]
|
|
||||||
return es_url, colors, view_style
|
|
||||||
|
|
||||||
def get_channel_videos(self, request, channel_id_detail, es_url):
|
sort_by = RedisArchivist().get_message("sort_by")
|
||||||
|
if sort_by == {"status": False}:
|
||||||
|
sort_by = "published"
|
||||||
|
sort_order = RedisArchivist().get_message("sort_order")
|
||||||
|
if sort_order == {"status": False}:
|
||||||
|
sort_order = "desc"
|
||||||
|
hide_watched = RedisArchivist().get_message("hide_watched")
|
||||||
|
|
||||||
|
view_config = {
|
||||||
|
"colors": config["application"]["colors"],
|
||||||
|
"es_url": config["application"]["es_url"],
|
||||||
|
"view_style": config["default_view"]["home"],
|
||||||
|
"sort_by": sort_by,
|
||||||
|
"sort_order": sort_order,
|
||||||
|
"hide_watched": hide_watched,
|
||||||
|
}
|
||||||
|
# return es_url, colors, view_style
|
||||||
|
return view_config
|
||||||
|
|
||||||
|
def get_channel_videos(self, request, channel_id_detail, view_config):
|
||||||
"""get channel from video index"""
|
"""get channel from video index"""
|
||||||
page_get = int(request.GET.get("page", 0))
|
page_get = int(request.GET.get("page", 0))
|
||||||
pagination_handler = Pagination(page_get)
|
pagination_handler = Pagination(page_get)
|
||||||
# get data
|
# get data
|
||||||
url = es_url + "/ta_video/_search"
|
url = view_config["es_url"] + "/ta_video/_search"
|
||||||
data = self.build_data(pagination_handler, channel_id_detail)
|
data = self.build_data(
|
||||||
|
pagination_handler, channel_id_detail, view_config
|
||||||
|
)
|
||||||
search = SearchHandler(url, data)
|
search = SearchHandler(url, data)
|
||||||
videos_hits = search.get_data()
|
videos_hits = search.get_data()
|
||||||
max_hits = search.max_hits
|
max_hits = search.max_hits
|
||||||
@ -334,7 +354,7 @@ class ChannelIdView(View):
|
|||||||
else:
|
else:
|
||||||
# get details from channel index when when no hits
|
# get details from channel index when when no hits
|
||||||
channel_info, channel_name = self.get_channel_info(
|
channel_info, channel_name = self.get_channel_info(
|
||||||
channel_id_detail, es_url
|
channel_id_detail, view_config["es_url"]
|
||||||
)
|
)
|
||||||
videos_hits = False
|
videos_hits = False
|
||||||
pagination = False
|
pagination = False
|
||||||
@ -350,21 +370,43 @@ class ChannelIdView(View):
|
|||||||
return context
|
return context
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def build_data(pagination_handler, channel_id_detail):
|
def build_data(pagination_handler, channel_id_detail, view_config):
|
||||||
"""build data dict for search"""
|
"""build data dict for search"""
|
||||||
page_size = pagination_handler.pagination["page_size"]
|
sort_by = view_config["sort_by"]
|
||||||
page_from = pagination_handler.pagination["page_from"]
|
sort_order = view_config["sort_order"]
|
||||||
|
|
||||||
|
# overwrite sort_by to match key
|
||||||
|
if sort_by == "views":
|
||||||
|
sort_by = "stats.view_count"
|
||||||
|
elif sort_by == "likes":
|
||||||
|
sort_by = "stats.like_count"
|
||||||
|
elif sort_by == "downloaded":
|
||||||
|
sort_by = "date_downloaded"
|
||||||
|
|
||||||
data = {
|
data = {
|
||||||
"size": page_size,
|
"size": pagination_handler.pagination["page_size"],
|
||||||
"from": page_from,
|
"from": pagination_handler.pagination["page_from"],
|
||||||
"query": {
|
"query": {
|
||||||
"term": {"channel.channel_id": {"value": channel_id_detail}}
|
"bool": {
|
||||||
|
"must": [
|
||||||
|
{
|
||||||
|
"term": {
|
||||||
|
"channel.channel_id": {
|
||||||
|
"value": channel_id_detail
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"sort": [
|
"sort": [{sort_by: {"order": sort_order}}],
|
||||||
{"published": {"order": "desc"}},
|
|
||||||
{"date_downloaded": {"order": "desc"}},
|
|
||||||
],
|
|
||||||
}
|
}
|
||||||
|
if view_config["hide_watched"]:
|
||||||
|
to_append = {"term": {"player.watched": {"value": False}}}
|
||||||
|
data["query"]["bool"]["must"].append(to_append)
|
||||||
|
|
||||||
|
print(data)
|
||||||
|
|
||||||
return data
|
return data
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
|
Loading…
Reference in New Issue
Block a user