mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-13 00:32:58 -07:00
Show extra type on activity cards
This commit is contained in:
parent
36b80aa6d3
commit
91c647f9ae
4 changed files with 40 additions and 20 deletions
|
@ -64,7 +64,7 @@ DOCUMENTATION :: END
|
||||||
from collections import defaultdict
|
from collections import defaultdict
|
||||||
from urllib import quote
|
from urllib import quote
|
||||||
from plexpy import helpers
|
from plexpy import helpers
|
||||||
from plexpy.common import VIDEO_RESOLUTION_OVERRIDES, AUDIO_CODEC_OVERRIDES
|
from plexpy.common import VIDEO_RESOLUTION_OVERRIDES, AUDIO_CODEC_OVERRIDES, EXTRA_TYPES
|
||||||
import plexpy
|
import plexpy
|
||||||
%>
|
%>
|
||||||
<%
|
<%
|
||||||
|
@ -108,7 +108,11 @@ DOCUMENTATION :: END
|
||||||
<div id="poster-${sk}" class="dashboard-activity-cover" style="background-image: url(pms_image_proxy?img=${data['parent_thumb']}&width=300&height=300&fallback=cover&refresh=true);"></div>
|
<div id="poster-${sk}" class="dashboard-activity-cover" style="background-image: url(pms_image_proxy?img=${data['parent_thumb']}&width=300&height=300&fallback=cover&refresh=true);"></div>
|
||||||
</a>
|
</a>
|
||||||
% elif data['media_type'] in ('photo', 'clip'):
|
% elif data['media_type'] in ('photo', 'clip'):
|
||||||
<div id="poster-${sk}" class="dashboard-activity-poster" style="background-image: url(pms_image_proxy?img=${data['parent_thumb']}&width=300&height=450&fallback=poster&refresh=true);"></div>
|
% if data['extra_type']:
|
||||||
|
<div id="poster-${sk}" class="dashboard-activity-poster" style="background-image: url(pms_image_proxy?img=${data['art'].replace('/art', '/thumb') or data['thumb']}&width=300&height=450&fallback=poster&refresh=true);"></div>
|
||||||
|
% else:
|
||||||
|
<div id="poster-${sk}" class="dashboard-activity-poster" style="background-image: url(pms_image_proxy?img=${data['parent_thumb'] or data['thumb']}&width=300&height=450&fallback=poster&refresh=true);"></div>
|
||||||
|
% endif
|
||||||
% else:
|
% else:
|
||||||
<div id="poster-${sk}" class="dashboard-activity-poster" style="background-image: url(images/art.png);"></div>
|
<div id="poster-${sk}" class="dashboard-activity-poster" style="background-image: url(images/art.png);"></div>
|
||||||
% endif
|
% endif
|
||||||
|
@ -301,10 +305,9 @@ DOCUMENTATION :: END
|
||||||
<li class="dashboard-activity-info-item">
|
<li class="dashboard-activity-info-item">
|
||||||
<div class="sub-heading">Bandwidth</div>
|
<div class="sub-heading">Bandwidth</div>
|
||||||
<div class="sub-value time-right">
|
<div class="sub-value time-right">
|
||||||
% if data['media_type'] != 'photo' and helpers.cast_to_int(data['bandwidth']):
|
% if data['media_type'] != 'photo' and data['bandwidth'] != 'Unknown':
|
||||||
<%
|
<%
|
||||||
bw = helpers.cast_to_int(data['bandwidth'])
|
bw = helpers.cast_to_int(data['bandwidth'])
|
||||||
if bw != "Unknown":
|
|
||||||
if bw > 1000:
|
if bw > 1000:
|
||||||
bw = str(round(bw / 1000.0, 1)) + ' Mbps'
|
bw = str(round(bw / 1000.0, 1)) + ' Mbps'
|
||||||
else:
|
else:
|
||||||
|
@ -439,9 +442,14 @@ DOCUMENTATION :: END
|
||||||
<a id="metadata-parent_title-${sk}" href="${parent_href}" title="${data['parent_title']}" class="sub-heading">${data['parent_title']}</a>
|
<a id="metadata-parent_title-${sk}" href="${parent_href}" title="${data['parent_title']}" class="sub-heading">${data['parent_title']}</a>
|
||||||
% elif data['media_type'] == 'photo':
|
% elif data['media_type'] == 'photo':
|
||||||
<span title="${data['title']}" class="sub-heading">${data['title']}</span>
|
<span title="${data['title']}" class="sub-heading">${data['title']}</span>
|
||||||
|
% else:
|
||||||
|
% if data['extra_type']:
|
||||||
|
<% extra_type = EXTRA_TYPES.get(data['extra_type'], data['sub_type'].capitalize()) %>
|
||||||
|
<span title="${data['year']} (${extra_type})" class="sub-heading">${data['year']} (${extra_type})</span>
|
||||||
% else:
|
% else:
|
||||||
<span title="${data['year']}" class="sub-heading">${data['year']}</span>
|
<span title="${data['year']}" class="sub-heading">${data['year']}</span>
|
||||||
% endif
|
% endif
|
||||||
|
% endif
|
||||||
% elif data['channel_title']:
|
% elif data['channel_title']:
|
||||||
<span title="${data['channel_title']}" class="sub-heading">${data['channel_title']}</span>
|
<span title="${data['channel_title']}" class="sub-heading">${data['channel_title']}</span>
|
||||||
% if data['media_type'] == 'episode' and data['parent_media_index'] and data['media_index']:
|
% if data['media_type'] == 'episode' and data['parent_media_index'] and data['media_index']:
|
||||||
|
|
|
@ -515,17 +515,15 @@
|
||||||
|
|
||||||
$('#location-' + key).html(s.location.toUpperCase());
|
$('#location-' + key).html(s.location.toUpperCase());
|
||||||
|
|
||||||
if (s.media_type !== 'photo' && parseInt(s.bandwidth)) {
|
if (s.media_type !== 'photo' && s.bandwidth !== 'Unknown') {
|
||||||
var bw = parseInt(s.bandwidth);
|
var bw = parseInt(s.bandwidth) || 0;
|
||||||
if (bw !== "Unknown") {
|
|
||||||
if (bw > 1000) {
|
if (bw > 1000) {
|
||||||
bw = (bw / 1000).toFixed(1) + ' Mbps';
|
bw = (bw / 1000).toFixed(1) + ' Mbps';
|
||||||
} else {
|
} else {
|
||||||
bw = bw + ' kbps'
|
bw = bw + ' kbps'
|
||||||
}
|
}
|
||||||
}
|
|
||||||
$('#stream-bandwidth-' + key).html(bw);
|
$('#stream-bandwidth-' + key).html(bw);
|
||||||
}
|
};
|
||||||
|
|
||||||
// Update the stream progress times
|
// Update the stream progress times
|
||||||
$('#stream-eta-' + key).html(moment().add(parseInt(s.duration) - parseInt(s.view_offset), 'milliseconds').format(time_format));
|
$('#stream-eta-' + key).html(moment().add(parseInt(s.duration) - parseInt(s.view_offset), 'milliseconds').format(time_format));
|
||||||
|
|
|
@ -171,6 +171,16 @@ HW_ENCODERS = [
|
||||||
'nvenc'
|
'nvenc'
|
||||||
]
|
]
|
||||||
|
|
||||||
|
EXTRA_TYPES = {
|
||||||
|
'1': 'Trailer',
|
||||||
|
'2': 'Deleted Scene',
|
||||||
|
'3': 'Interview',
|
||||||
|
'5': 'Behind the Scenes',
|
||||||
|
'6': 'Scene',
|
||||||
|
'10': 'Featurette',
|
||||||
|
'11': 'Short'
|
||||||
|
}
|
||||||
|
|
||||||
SCHEDULER_LIST = [
|
SCHEDULER_LIST = [
|
||||||
'Check GitHub for updates',
|
'Check GitHub for updates',
|
||||||
'Check for server response',
|
'Check for server response',
|
||||||
|
|
|
@ -1096,7 +1096,9 @@ class PmsConnect(object):
|
||||||
'genres': genres,
|
'genres': genres,
|
||||||
'labels': labels,
|
'labels': labels,
|
||||||
'collections': collections,
|
'collections': collections,
|
||||||
'full_title': helpers.get_xml_attr(metadata_main, 'title')
|
'full_title': helpers.get_xml_attr(metadata_main, 'title'),
|
||||||
|
'extra_type': helpers.get_xml_attr(metadata_main, 'extraType'),
|
||||||
|
'sub_type': helpers.get_xml_attr(metadata_main, 'subtype')
|
||||||
}
|
}
|
||||||
|
|
||||||
else:
|
else:
|
||||||
|
@ -1687,7 +1689,9 @@ class PmsConnect(object):
|
||||||
'audio_channel_layout': common.AUDIO_CHANNELS.get(audio_channels, audio_channels),
|
'audio_channel_layout': common.AUDIO_CHANNELS.get(audio_channels, audio_channels),
|
||||||
'channel_icon': helpers.get_xml_attr(session, 'sourceIcon'),
|
'channel_icon': helpers.get_xml_attr(session, 'sourceIcon'),
|
||||||
'channel_title': helpers.get_xml_attr(session, 'sourceTitle'),
|
'channel_title': helpers.get_xml_attr(session, 'sourceTitle'),
|
||||||
'live': int(helpers.get_xml_attr(session, 'live') == '1')
|
'live': int(helpers.get_xml_attr(session, 'live') == '1'),
|
||||||
|
'extra_type': helpers.get_xml_attr(session, 'extraType'),
|
||||||
|
'sub_type': helpers.get_xml_attr(session, 'subtype')
|
||||||
}
|
}
|
||||||
else:
|
else:
|
||||||
channel_stream = 0
|
channel_stream = 0
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue