Initial Implementation of Feature Req: on/off button for auto-reload js #1, configurable in localstorage using options menu
This commit is contained in:
parent
a1d4854448
commit
3a2e2f4f6e
@ -8,7 +8,7 @@
|
|||||||
* Copyright (c) 2012 Michael Save <savetheinternet@tinyboard.org>
|
* Copyright (c) 2012 Michael Save <savetheinternet@tinyboard.org>
|
||||||
* Copyright (c) 2013-2014 Marcin Łabanowski <marcin@6irc.net>
|
* Copyright (c) 2013-2014 Marcin Łabanowski <marcin@6irc.net>
|
||||||
* Copyright (c) 2013 undido <firekid109@hotmail.com>
|
* Copyright (c) 2013 undido <firekid109@hotmail.com>
|
||||||
* Copyright (c) 2014 Fredrick Brennan <admin@8chan.co>
|
* Copyright (c) 2014-2015 Fredrick Brennan <admin@8chan.co>
|
||||||
*
|
*
|
||||||
* Usage:
|
* Usage:
|
||||||
* $config['additional_javascript'][] = 'js/jquery.min.js';
|
* $config['additional_javascript'][] = 'js/jquery.min.js';
|
||||||
@ -17,26 +17,99 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
au = false;
|
// From http://stackoverflow.com/a/14035162
|
||||||
auto_reload_enabled = true; // for watch.js to interop
|
$.fn.scrollStopped = function(callback) {
|
||||||
|
$(this).scroll(function(){
|
||||||
|
var self = this, $this = $(self);
|
||||||
|
if ($this.data('scrollTimeout')) {
|
||||||
|
clearTimeout($this.data('scrollTimeout'));
|
||||||
|
}
|
||||||
|
$this.data('scrollTimeout', setTimeout(callback,250,self));
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
function makeIcon(){
|
function makeIcon(mode){
|
||||||
if(au) return;
|
var favicon = $("link[rel='shortcut icon']");
|
||||||
au = true;
|
|
||||||
$("link[rel='icon']").attr("href", "../static/favicon_au.png");
|
if (!favicon.length) {
|
||||||
|
var favicon = $('<link rel="shortcut icon"></link>').appendTo('head');
|
||||||
|
}
|
||||||
|
|
||||||
|
$("link[rel='shortcut icon']").attr("href", configRoot+"static/favicon"+(mode?"-"+mode:"")+".ico");
|
||||||
}
|
}
|
||||||
|
|
||||||
$(document).ready(function(){
|
+function(){
|
||||||
if($('div.banner').length == 0)
|
var notify = false;
|
||||||
return; // not index
|
auto_reload_enabled = true; // for watch.js to interop
|
||||||
|
|
||||||
if($(".post.op").size() != 1)
|
$(document).ready(function(){
|
||||||
return; //not thread page
|
|
||||||
|
// Adds Options panel item
|
||||||
|
if (typeof localStorage.auto_thread_update === 'undefined') {
|
||||||
|
localStorage.auto_thread_update = 'true'; //default value
|
||||||
|
}
|
||||||
|
if (window.Options && Options.get_tab('general')) {
|
||||||
|
Options.extend_tab("general", "<fieldset id='auto-update-fs'><legend>"+_("Auto update")+"</legend>"
|
||||||
|
+ ('<label id="auto-thread-update"><input type="checkbox">' + _('Auto update thread') + '</label>')
|
||||||
|
+ ('<label id="auto_thread_desktop_notifications"><input type="checkbox">' + _('Show desktop notifications when users quote me') + '</label>')
|
||||||
|
+ ('<label id="auto_thread_desktop_notifications_all"><input type="checkbox">' + _('Show desktop notifications on all replies') + '</label>')
|
||||||
|
+ '</fieldset>');
|
||||||
|
|
||||||
|
$('#auto-thread-update>input').on('click', function() {
|
||||||
|
if ($('#auto-thread-update>input').is(':checked')) {
|
||||||
|
localStorage.auto_thread_update = 'true';
|
||||||
|
} else {
|
||||||
|
localStorage.auto_thread_update = 'false';
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
$('#auto_thread_desktop_notifications>input,#auto_thread_desktop_notifications_all>input').on('click', function() {
|
||||||
|
if (!("Notification" in window)) return;
|
||||||
|
|
||||||
|
var setting = $(this).parent().attr('id');
|
||||||
|
|
||||||
|
if ($(this).is(':checked')) {
|
||||||
|
Notification.requestPermission(function(permission){
|
||||||
|
if (permission === "granted") {
|
||||||
|
localStorage[setting] = 'true';
|
||||||
|
}
|
||||||
|
});
|
||||||
|
if (Notification.permission === "granted") {
|
||||||
|
localStorage[setting] = 'true';
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
localStorage[setting] = 'false';
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
if (localStorage.auto_thread_update === 'true') {
|
||||||
|
$('#auto-thread-update>input').prop('checked', true);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (localStorage.auto_thread_desktop_notifications === 'true') {
|
||||||
|
$('#auto_thread_desktop_notifications>input').prop('checked', true);
|
||||||
|
notify = "mention";
|
||||||
|
}
|
||||||
|
|
||||||
|
if (localStorage.auto_thread_desktop_notifications_all === 'true') {
|
||||||
|
$('#auto_thread_desktop_notifications_all>input').prop('checked', true);
|
||||||
|
notify = "all";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// not thread
|
||||||
|
if (active_page != 'thread')
|
||||||
|
return;
|
||||||
|
|
||||||
var countdown_interval;
|
var countdown_interval;
|
||||||
|
|
||||||
// Add an update link
|
// Add an update link
|
||||||
$(".threadlinks span:last-child").after("<span id='updater'><a href='#' id='update_thread' style='padding-left:10px'>"+_("Update")+"</a> ] (<input type='checkbox' id='auto_update_status' checked> "+_("Auto")+") <span id='update_secs'></span></span>");
|
$(".threadlinks span:last-child").append("<span id='updater'><a href='#' id='update_thread'>["+_("Update")+"]</a> (<input type='checkbox' id='auto_update_status'> "+_("Auto")+") <span id='update_secs'></span></span>");
|
||||||
|
|
||||||
|
// Set the updater checkbox according to user setting
|
||||||
|
if (localStorage.auto_thread_update === 'true') {
|
||||||
|
$('#auto_update_status').prop('checked', true);
|
||||||
|
}
|
||||||
|
|
||||||
// Grab the settings
|
// Grab the settings
|
||||||
var settings = new script_settings('auto-reload');
|
var settings = new script_settings('auto-reload');
|
||||||
@ -61,6 +134,7 @@ $(document).ready(function(){
|
|||||||
document.title = "("+new_posts+") "+title;
|
document.title = "("+new_posts+") "+title;
|
||||||
} else {
|
} else {
|
||||||
document.title = title;
|
document.title = title;
|
||||||
|
makeIcon(false);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
@ -105,10 +179,11 @@ $(document).ready(function(){
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
var recheck_activated = function() {
|
var recheck_activated = function(end_of_page) {
|
||||||
if (new_posts && window_active &&
|
if (typeof end_of_page == "undefined") var end_of_page = false;
|
||||||
|
if (end_of_page || (new_posts && window_active &&
|
||||||
$(window).scrollTop() + $(window).height() >=
|
$(window).scrollTop() + $(window).height() >=
|
||||||
$('footer').position().top) {
|
$('div.boardlist.bottom').position().top)) {
|
||||||
|
|
||||||
new_posts = 0;
|
new_posts = 0;
|
||||||
}
|
}
|
||||||
@ -150,14 +225,18 @@ $(document).ready(function(){
|
|||||||
url: document.location,
|
url: document.location,
|
||||||
success: function(data) {
|
success: function(data) {
|
||||||
var loaded_posts = 0; // the number of new posts loaded in this update
|
var loaded_posts = 0; // the number of new posts loaded in this update
|
||||||
$(data).find('div.postcontainer').each(function() {
|
$(data).find('div.post.reply').each(function() {
|
||||||
var id = $(this).attr('id').substring(2);
|
var id = $(this).attr('id');
|
||||||
if($('#' + id).length == 0) {
|
if($('#' + id).length == 0) {
|
||||||
if (!new_posts) {
|
if (!new_posts) {
|
||||||
first_new_post = this;
|
first_new_post = this;
|
||||||
makeIcon();
|
makeIcon('reply');
|
||||||
|
if (notify === "all" || (notify === "mention" && $(this).find('.own_post').length)) {
|
||||||
|
var body = $(this).children('.body').html().replace(/<br\s*[\/]?>/gi, "\n");
|
||||||
|
var n = new Notification("New reply to "+$('title').text(), {body: $('<div/>').html(body).text()});
|
||||||
}
|
}
|
||||||
$(this).insertAfter($('div.postcontainer:last').next()).after('<br class="clear">');
|
}
|
||||||
|
$(this).insertAfter($('div.post:not(.post-hover):last').next()).after('<br class="clear">');
|
||||||
new_posts++;
|
new_posts++;
|
||||||
loaded_posts++;
|
loaded_posts++;
|
||||||
$(document).trigger('new_post', this);
|
$(document).trigger('new_post', this);
|
||||||
@ -219,20 +298,18 @@ $(document).ready(function(){
|
|||||||
return false;
|
return false;
|
||||||
};
|
};
|
||||||
|
|
||||||
$(window).scroll(function() {
|
$(window).scrollStopped(function() {
|
||||||
recheck_activated();
|
|
||||||
|
|
||||||
// if the newest post is not visible
|
// if the newest post is not visible
|
||||||
if($(this).scrollTop() + $(this).height() <
|
if($(this).scrollTop() + $(this).height() <
|
||||||
$('div.post:last').position().top + $('div.post:last').height()) {
|
$('div.post:last').position().top + $('div.post:last').height()) {
|
||||||
end_of_page = false;
|
end_of_page = false;
|
||||||
return;
|
|
||||||
} else {
|
} else {
|
||||||
if($("#auto_update_status").is(':checked') && timeDiff(poll_interval_mindelay)) {
|
if($("#auto_update_status").is(':checked') && timeDiff(poll_interval_mindelay)) {
|
||||||
poll(manualUpdate = true);
|
poll(manualUpdate = true);
|
||||||
}
|
}
|
||||||
end_of_page = true;
|
end_of_page = true;
|
||||||
}
|
}
|
||||||
|
recheck_activated(end_of_page);
|
||||||
});
|
});
|
||||||
|
|
||||||
$('#update_thread').on('click', function() { poll(manualUpdate = true); return false; });
|
$('#update_thread').on('click', function() { poll(manualUpdate = true); return false; });
|
||||||
@ -241,3 +318,4 @@ $(document).ready(function(){
|
|||||||
auto_update(poll_interval_delay);
|
auto_update(poll_interval_delay);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
}();
|
||||||
|
Loading…
Reference in New Issue
Block a user