mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-12 00:06:07 -07:00
Add setting to change homepage refresh interval
This commit is contained in:
parent
2aff7713cd
commit
084732706d
4 changed files with 20 additions and 2 deletions
|
@ -589,7 +589,7 @@
|
||||||
if (!(create_instances.length) && activity_ready) {
|
if (!(create_instances.length) && activity_ready) {
|
||||||
getCurrentActivity();
|
getCurrentActivity();
|
||||||
}
|
}
|
||||||
}, 2000);
|
}, ${config['home_refresh_interval'] * 1000});
|
||||||
|
|
||||||
setInterval(function(){
|
setInterval(function(){
|
||||||
$('.progress_time_offset').each(function () {
|
$('.progress_time_offset').each(function () {
|
||||||
|
@ -604,7 +604,7 @@
|
||||||
if ($(this).data('state') === 'playing' && $(this).data('view_offset') >= 0) {
|
if ($(this).data('state') === 'playing' && $(this).data('view_offset') >= 0) {
|
||||||
var view_offset = parseInt($(this).data('view_offset'));
|
var view_offset = parseInt($(this).data('view_offset'));
|
||||||
var stream_duration = parseInt($(this).data('stream_duration'));
|
var stream_duration = parseInt($(this).data('stream_duration'));
|
||||||
var progress_percent = Math.min(Math.trunc(view_offset / stream_duration * 100), 100)
|
var progress_percent = Math.min(Math.trunc(view_offset / stream_duration * 100), 100);
|
||||||
$(this).width(progress_percent - 3 + '%').html(progress_percent + '%')
|
$(this).width(progress_percent - 3 + '%').html(progress_percent + '%')
|
||||||
.attr('data-original-title', 'Stream Progress ' + progress_percent + '%')
|
.attr('data-original-title', 'Stream Progress ' + progress_percent + '%')
|
||||||
.data('view_offset', Math.min(view_offset + 1000, stream_duration));
|
.data('view_offset', Math.min(view_offset + 1000, stream_duration));
|
||||||
|
|
|
@ -267,6 +267,21 @@
|
||||||
|
|
||||||
<div role="tabpanel" class="tab-pane" id="tabs-homepage">
|
<div role="tabpanel" class="tab-pane" id="tabs-homepage">
|
||||||
|
|
||||||
|
<div class="padded-header">
|
||||||
|
<h3>Activity</h3>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="home_refresh_interval">Activty Refresh Interval</label>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-2">
|
||||||
|
<input type="text" class="form-control" data-parsley-type="integer" id="home_refresh_interval" name="home_refresh_interval" value="${config['home_refresh_interval']}" size="5" data-parsley-min="2" data-parsley-trigger="change" data-parsley-errors-container="#home_refresh_interval_error" required>
|
||||||
|
</div>
|
||||||
|
<div id="home_refresh_interval_error" class="alert alert-danger settings-alert" role="alert"></div>
|
||||||
|
</div>
|
||||||
|
<p class="help-block">Set the interval (in seconds) to refresh the current activity on the homepage. Minimum 2.</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="padded-header">
|
<div class="padded-header">
|
||||||
<h3>Sections</h3>
|
<h3>Sections</h3>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -209,6 +209,7 @@ _CONFIG_DEFINITIONS = {
|
||||||
'HOME_STATS_CARDS': (list, 'General', ['top_movies', 'popular_movies', 'top_tv', 'popular_tv', 'top_music', \
|
'HOME_STATS_CARDS': (list, 'General', ['top_movies', 'popular_movies', 'top_tv', 'popular_tv', 'top_music', \
|
||||||
'popular_music', 'last_watched', 'top_users', 'top_platforms', 'most_concurrent']),
|
'popular_music', 'last_watched', 'top_users', 'top_platforms', 'most_concurrent']),
|
||||||
'HOME_STATS_RECENTLY_ADDED_COUNT': (int, 'General', 50),
|
'HOME_STATS_RECENTLY_ADDED_COUNT': (int, 'General', 50),
|
||||||
|
'HOME_REFRESH_INTERVAL': (int, 'General', 2),
|
||||||
'HTTPS_CREATE_CERT': (int, 'General', 1),
|
'HTTPS_CREATE_CERT': (int, 'General', 1),
|
||||||
'HTTPS_CERT': (str, 'General', ''),
|
'HTTPS_CERT': (str, 'General', ''),
|
||||||
'HTTPS_CERT_CHAIN': (str, 'General', ''),
|
'HTTPS_CERT_CHAIN': (str, 'General', ''),
|
||||||
|
|
|
@ -173,6 +173,7 @@ class WebInterface(object):
|
||||||
"home_stats_type": plexpy.CONFIG.HOME_STATS_TYPE,
|
"home_stats_type": plexpy.CONFIG.HOME_STATS_TYPE,
|
||||||
"home_stats_count": plexpy.CONFIG.HOME_STATS_COUNT,
|
"home_stats_count": plexpy.CONFIG.HOME_STATS_COUNT,
|
||||||
"home_stats_recently_added_count": plexpy.CONFIG.HOME_STATS_RECENTLY_ADDED_COUNT,
|
"home_stats_recently_added_count": plexpy.CONFIG.HOME_STATS_RECENTLY_ADDED_COUNT,
|
||||||
|
"home_refresh_interval": plexpy.CONFIG.HOME_REFRESH_INTERVAL,
|
||||||
"pms_name": plexpy.CONFIG.PMS_NAME,
|
"pms_name": plexpy.CONFIG.PMS_NAME,
|
||||||
"pms_is_cloud": plexpy.CONFIG.PMS_IS_CLOUD,
|
"pms_is_cloud": plexpy.CONFIG.PMS_IS_CLOUD,
|
||||||
"update_show_changelog": plexpy.CONFIG.UPDATE_SHOW_CHANGELOG
|
"update_show_changelog": plexpy.CONFIG.UPDATE_SHOW_CHANGELOG
|
||||||
|
@ -2642,6 +2643,7 @@ class WebInterface(object):
|
||||||
"home_sections": json.dumps(plexpy.CONFIG.HOME_SECTIONS),
|
"home_sections": json.dumps(plexpy.CONFIG.HOME_SECTIONS),
|
||||||
"home_stats_cards": json.dumps(plexpy.CONFIG.HOME_STATS_CARDS),
|
"home_stats_cards": json.dumps(plexpy.CONFIG.HOME_STATS_CARDS),
|
||||||
"home_library_cards": json.dumps(plexpy.CONFIG.HOME_LIBRARY_CARDS),
|
"home_library_cards": json.dumps(plexpy.CONFIG.HOME_LIBRARY_CARDS),
|
||||||
|
"home_refresh_interval": plexpy.CONFIG.HOME_REFRESH_INTERVAL,
|
||||||
"buffer_threshold": plexpy.CONFIG.BUFFER_THRESHOLD,
|
"buffer_threshold": plexpy.CONFIG.BUFFER_THRESHOLD,
|
||||||
"buffer_wait": plexpy.CONFIG.BUFFER_WAIT,
|
"buffer_wait": plexpy.CONFIG.BUFFER_WAIT,
|
||||||
"group_history_tables": checked(plexpy.CONFIG.GROUP_HISTORY_TABLES),
|
"group_history_tables": checked(plexpy.CONFIG.GROUP_HISTORY_TABLES),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue