2012-03-15 04:44:15 +01:00
|
|
|
/*
|
|
|
|
* auto-reload.js
|
2012-03-31 02:13:11 +02:00
|
|
|
* https://github.com/savetheinternet/Tinyboard/blob/master/js/auto-reload.js
|
2012-03-15 04:44:15 +01:00
|
|
|
*
|
|
|
|
* Brings AJAX to Tinyboard.
|
|
|
|
*
|
|
|
|
* Released under the MIT license
|
|
|
|
* Copyright (c) 2012 Michael Save <savetheinternet@tinyboard.org>
|
2014-01-19 13:40:29 +01:00
|
|
|
* Copyright (c) 2013-2014 Marcin Łabanowski <marcin@6irc.net>
|
2014-01-19 14:27:24 +01:00
|
|
|
* Copyright (c) 2013 undido <firekid109@hotmail.com>
|
2012-03-15 04:44:15 +01:00
|
|
|
*
|
|
|
|
* Usage:
|
2012-03-15 06:19:26 +01:00
|
|
|
* $config['additional_javascript'][] = 'js/jquery.min.js';
|
2013-12-29 01:10:35 +01:00
|
|
|
* //$config['additional_javascript'][] = 'js/titlebar-notifications.js';
|
2012-03-15 06:19:26 +01:00
|
|
|
* $config['additional_javascript'][] = 'js/auto-reload.js';
|
2012-03-15 04:44:15 +01:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2013-12-29 01:10:35 +01:00
|
|
|
auto_reload_enabled = true; // for watch.js to interop
|
|
|
|
|
2012-03-15 04:44:15 +01:00
|
|
|
$(document).ready(function(){
|
|
|
|
if($('div.banner').length == 0)
|
|
|
|
return; // not index
|
2013-03-20 04:56:59 +01:00
|
|
|
|
|
|
|
if($(".post.op").size() != 1)
|
|
|
|
return; //not thread page
|
2012-03-15 04:44:15 +01:00
|
|
|
|
2012-03-15 10:40:52 +01:00
|
|
|
var poll_interval;
|
2013-12-23 16:34:44 +01:00
|
|
|
|
|
|
|
var end_of_page = false;
|
2013-12-23 17:31:47 +01:00
|
|
|
|
|
|
|
var new_posts = 0;
|
|
|
|
var first_new_post = null;
|
2013-12-29 01:10:35 +01:00
|
|
|
|
|
|
|
if (typeof update_title == "undefined") {
|
|
|
|
var update_title = function() { };
|
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof add_title_collector != "undefined")
|
|
|
|
add_title_collector(function(){
|
|
|
|
return new_posts;
|
|
|
|
});
|
2013-12-23 17:31:47 +01:00
|
|
|
|
|
|
|
var window_active = true;
|
|
|
|
$(window).focus(function() {
|
|
|
|
window_active = true;
|
|
|
|
recheck_activated();
|
|
|
|
});
|
|
|
|
$(window).blur(function() {
|
|
|
|
window_active = false;
|
|
|
|
});
|
2012-03-15 10:40:52 +01:00
|
|
|
|
2013-12-23 17:31:47 +01:00
|
|
|
var recheck_activated = function() {
|
|
|
|
if (new_posts && window_active &&
|
|
|
|
$(window).scrollTop() + $(window).height() >=
|
|
|
|
$(first_new_post).position().top) {
|
|
|
|
|
|
|
|
new_posts = 0;
|
|
|
|
}
|
|
|
|
update_title();
|
|
|
|
};
|
|
|
|
|
2012-03-15 10:40:52 +01:00
|
|
|
var poll = function() {
|
2012-03-15 04:44:15 +01:00
|
|
|
$.ajax({
|
|
|
|
url: document.location,
|
|
|
|
success: function(data) {
|
|
|
|
$(data).find('div.post.reply').each(function() {
|
|
|
|
var id = $(this).attr('id');
|
|
|
|
if($('#' + id).length == 0) {
|
2013-12-23 17:31:47 +01:00
|
|
|
if (!new_posts) {
|
|
|
|
first_new_post = this;
|
|
|
|
}
|
2012-03-15 23:08:03 +01:00
|
|
|
$(this).insertAfter($('div.post:last').next()).after('<br class="clear">');
|
2013-12-23 17:31:47 +01:00
|
|
|
new_posts++;
|
2012-03-18 13:55:01 +01:00
|
|
|
$(document).trigger('new_post', this);
|
2013-12-23 17:31:47 +01:00
|
|
|
recheck_activated();
|
2012-03-15 04:44:15 +01:00
|
|
|
}
|
|
|
|
});
|
2013-12-29 01:10:35 +01:00
|
|
|
time_loaded = Date.now(); // interop with watch.js
|
2012-03-15 04:44:15 +01:00
|
|
|
}
|
|
|
|
});
|
2012-03-15 10:40:52 +01:00
|
|
|
|
2013-12-23 16:34:44 +01:00
|
|
|
clearTimeout(poll_interval);
|
|
|
|
poll_interval = setTimeout(poll, end_of_page ? 3000 : 10000);
|
2012-03-15 10:40:52 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
$(window).scroll(function() {
|
2013-12-23 17:31:47 +01:00
|
|
|
recheck_activated();
|
|
|
|
|
|
|
|
if($(this).scrollTop() + $(this).height() <
|
|
|
|
$('div.post:last').position().top + $('div.post:last').height()) {
|
2013-12-23 16:34:44 +01:00
|
|
|
end_of_page = false;
|
2012-03-15 10:40:52 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-12-23 16:34:44 +01:00
|
|
|
clearTimeout(poll_interval);
|
|
|
|
poll_interval = setTimeout(poll, 100);
|
|
|
|
end_of_page = true;
|
2012-03-15 10:40:52 +01:00
|
|
|
}).trigger('scroll');
|
2013-12-23 16:34:44 +01:00
|
|
|
|
|
|
|
poll_interval = setTimeout(poll, 3000);
|
2012-03-15 04:44:15 +01:00
|
|
|
});
|
|
|
|
|