From 98777ee82561ae205f156a7f8497728aecfa080c Mon Sep 17 00:00:00 2001 From: James Taylor Date: Wed, 18 Dec 2019 19:39:16 -0800 Subject: Extraction: Rewrite item_extraction for better error handling and readability, rename extracted names for more consistency --- youtube/templates/common_elements.html | 78 ++++++++++++++++++---------------- 1 file changed, 41 insertions(+), 37 deletions(-) (limited to 'youtube/templates/common_elements.html') diff --git a/youtube/templates/common_elements.html b/youtube/templates/common_elements.html index 1a417ae..4c776b6 100644 --- a/youtube/templates/common_elements.html +++ b/youtube/templates/common_elements.html @@ -9,55 +9,59 @@ {{ text_run["text"] }} {%- endif -%} {%- endfor -%} - {%- else -%} + {%- elif runs -%} {{ runs }} {%- endif -%} {% endmacro %} {% macro item(info, description=false, horizontal=true, include_author=true, include_badges=true) %}
-
- - - {% if info['type'] != 'channel' %} -
- {{ info['size'] if info['type'] == 'playlist' else info['duration'] }} -
- {% endif %} -
+ {% if info['error'] %} + {{ info['error'] }} + {% else %} +
+ + + {% if info['type'] != 'channel' %} +
+ {{ (info['video_count']|string + ' videos') if info['type'] == 'playlist' else info['duration'] }} +
+ {% endif %} +
- + -
    - {% if info['type'] == 'channel' %} -
  • {{ info['subscriber_count'] }} subscribers
  • -
  • {{ info['size'] }} videos
  • - {% else %} - {% if include_author %} - {% if 'author_url' is in(info) %} -
  • By {{ info['author'] }}
  • - {% else %} -
  • {{ info['author'] }}
  • +
      + {% if info['type'] == 'channel' %} +
    • {{ info['approx_subscriber_count'] }} subscribers
    • +
    • {{ info['video_count'] }} videos
    • + {% else %} + {% if include_author %} + {% if info.get('author_url') %} +
    • By {{ info['author'] }}
    • + {% else %} +
    • {{ info['author'] }}
    • + {% endif %} + {% endif %} + {% if info.get('approx_view_count') %} +
    • {{ info['approx_view_count'] }} views
    • + {% endif %} + {% if info.get('time_published') %} +
    • {% endif %} {% endif %} - {% if 'views' is in(info) %} -
    • {{ info['views'] }}
    • - {% endif %} - {% if 'published' is in(info) %} -
    • - {% endif %} - {% endif %} -
    +
- {% if description %} - {{ text_runs(info.get('description', '')) }} - {% endif %} - {% if include_badges %} - {{ info['badges']|join(' | ') }} + {% if description %} + {{ text_runs(info.get('description', '')) }} + {% endif %} + {% if include_badges %} + {{ info['badges']|join(' | ') }} + {% endif %} +
+ {% if info['type'] == 'video' %} + {% endif %} -
- {% if info['type'] == 'video' %} - {% endif %}
-- cgit v1.2.3