From a4e01da27c08e43a67b2618ad1e71c1f8f86d5cd Mon Sep 17 00:00:00 2001 From: Biswakalyan Bhuyan Date: Thu, 19 Sep 2024 15:33:11 +0530 Subject: youtube fronend --- youtube/templates/common_elements.html | 140 +++++++++++++++++++++++++++++++++ 1 file changed, 140 insertions(+) create mode 100644 youtube/templates/common_elements.html (limited to 'youtube/templates/common_elements.html') diff --git a/youtube/templates/common_elements.html b/youtube/templates/common_elements.html new file mode 100644 index 0000000..bacc513 --- /dev/null +++ b/youtube/templates/common_elements.html @@ -0,0 +1,140 @@ +{% macro text_runs(runs) %} + {%- if runs[0] is mapping -%} + {%- for text_run in runs -%} + {%- if text_run.get("bold", false) -%} + {{ text_run["text"] }} + {%- elif text_run.get('italics', false) -%} + {{ text_run["text"] }} + {%- else -%} + {{ text_run["text"] }} + {%- endif -%} + {%- endfor -%} + {%- elif runs -%} + {{ runs }} + {%- endif -%} +{% endmacro %} + +{% macro item(info, description=false, horizontal=true, include_author=true, include_badges=true, lazy_load=false) %} +
+ {% if info['error'] %} + {{ info['error'] }} + {% else %} +
+ +
+ {% if lazy_load %} +  + {% elif info['type'] == 'channel' %} +  + {% else %} +  + {% endif %} + + {% if info['type'] != 'channel' %} +

{{ (info['video_count']|commatize + ' videos') if info['type'] == 'playlist' else info['duration'] }}

+ {% endif %} +
+
+

{{ info['title'] }}

+ + {% if include_author %} + {% set author_description = info['author'] %} + {% set AUTHOR_DESC_LENGTH = 35 %} + {% if author_description != None %} + {% if author_description|length >= AUTHOR_DESC_LENGTH %} + {% set author_description = author_description[:AUTHOR_DESC_LENGTH].split(' ')[:-1]|join(' ') %} + {% if not author_description[-1] in ['.', '?', ':', '!'] %} + {% set author_more = author_description + '…' %} + {% set author_description = author_more|replace('"','') %} + {% endif %} + {% endif %} + {% endif %} + {% if info.get('author_url') %} +
{{ author_description }}
+ {% else %} +
{{ author_description }}
+ {% endif %} + {% endif %} + +
+ {% if info['type'] == 'channel' %} +
{{ info['approx_subscriber_count'] }} subscribers
+
{{ info['video_count']|commatize }} videos
+ {% else %} + {% if info.get('time_published') %} + {{ info['time_published'] }} + {% endif %} + {% if info.get('approx_view_count') %} +
{{ info['approx_view_count'] }} views
+ {% endif %} + {% endif %} +
+
+ {% if info['type'] == 'video' %} + + {% endif %} + {% endif %} +
+{% endmacro %} + +{% macro page_buttons(estimated_pages, url, parameters_dictionary, include_ends=false) %} + {% set current_page = parameters_dictionary.get('page', 1)|int %} + {% set parameters_dictionary = parameters_dictionary.to_dict() %} + {% if current_page is le(5) %} + {% set page_start = 1 %} + {% set page_end = [9, estimated_pages]|min %} + {% else %} + {% set page_start = current_page - 4 %} + {% set page_end = [current_page + 4, estimated_pages]|min %} + {% endif %} + + {% if include_ends and page_start is gt(1) %} + {% set _ = parameters_dictionary.__setitem__('page', 1) %} + {{ 1 }} + {% endif %} + + {% for page in range(page_start, page_end+1) %} + {% if page == current_page %} + {{ page }} + {% else %} + {# https://stackoverflow.com/questions/36886650/how-to-add-a-new-entry-into-a-dictionary-object-while-using-jinja2 #} + {% set _ = parameters_dictionary.__setitem__('page', page) %} + {{ page }} + {% endif %} + {% endfor %} + + {% if include_ends and page_end is lt(estimated_pages) %} + {% set _ = parameters_dictionary.__setitem__('page', estimated_pages) %} + {{ estimated_pages }} + {% endif %} + +{% endmacro %} + +{% macro next_previous_buttons(is_last_page, url, parameters_dictionary) %} + {% set current_page = parameters_dictionary.get('page', 1)|int %} + {% set parameters_dictionary = parameters_dictionary.to_dict() %} + + {% if current_page != 1 %} + {% set _ = parameters_dictionary.__setitem__('page', current_page - 1) %} + Previous page + {% endif %} + + {% if not is_last_page %} + {% set _ = parameters_dictionary.__setitem__('page', current_page + 1) %} + Next page + {% endif %} +{% endmacro %} + +{% macro next_previous_ctoken_buttons(prev_ctoken, next_ctoken, url, parameters_dictionary) %} + {% set parameters_dictionary = parameters_dictionary.to_dict() %} + + {% if prev_ctoken %} + {% set _ = parameters_dictionary.__setitem__('ctoken', prev_ctoken) %} + Previous page + {% endif %} + + {% if next_ctoken %} + {% set _ = parameters_dictionary.__setitem__('ctoken', next_ctoken) %} + Next page + {% endif %} +{% endmacro %} -- cgit v1.2.3-59-g8ed1b