|
@@ -3,6 +3,7 @@
|
|
*/
|
|
*/
|
|
|
|
|
|
(function($, Drupal, drupalSettings) {
|
|
(function($, Drupal, drupalSettings) {
|
|
|
|
+ drupalSettings.requestInProgress = false;
|
|
|
|
|
|
const flagListen = function(e) {
|
|
const flagListen = function(e) {
|
|
|
|
|
|
@@ -27,6 +28,48 @@
|
|
});
|
|
});
|
|
};
|
|
};
|
|
|
|
|
|
|
|
+ const addWindowScrollListener = function() {
|
|
|
|
+ if (drupalSettings.filterMode == false &&
|
|
|
|
+ (getScrollXY()[1] + window.innerHeight) / getDocHeight() > 0.99 &&
|
|
|
|
+ !drupalSettings.requestInProgress) {
|
|
|
|
+
|
|
|
|
+ drupalSettings.requestInProgress = true;
|
|
|
|
+ let streams = document.querySelectorAll('.heartbeat-stream');
|
|
|
|
+ let stream = streams.length > 1 ? streams[streams.length - 1] : streams[0];
|
|
|
|
+
|
|
|
|
+ if (stream !== null) {
|
|
|
|
+ let lastHeartbeat = stream.lastElementChild;
|
|
|
|
+
|
|
|
|
+ if (lastHeartbeat !== null) {
|
|
|
|
+
|
|
|
|
+ let hid = lastHeartbeat.id.substring(lastHeartbeat.id.indexOf('-') + 1);
|
|
|
|
+ if (drupalSettings.lastHid !== hid) {
|
|
|
|
+ drupalSettings.lastHid = hid;
|
|
|
|
+ $('#heartbeat-loader').show(225);
|
|
|
|
+
|
|
|
|
+ $.ajax({
|
|
|
|
+ type: 'POST',
|
|
|
|
+ url: '/heartbeat/update_feed/' + hid,
|
|
|
|
+
|
|
|
|
+ success: function (response) {
|
|
|
|
+ feedBlock = document.getElementById('block-heartbeatblock')
|
|
|
|
+ insertNode = document.createElement('div')
|
|
|
|
+ insertNode.innerHTML = response
|
|
|
|
+ feedBlock.appendChild(insertNode)
|
|
|
|
+ Drupal.attachBehaviors()
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ complete: function () {
|
|
|
|
+ $('#heartbeat-loader').hide(225);
|
|
|
|
+ drupalSettings.requestInProgress = false;
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ };
|
|
|
|
+
|
|
function updateFeed() {
|
|
function updateFeed() {
|
|
$.ajax({
|
|
$.ajax({
|
|
type: 'POST',
|
|
type: 'POST',
|
|
@@ -39,9 +82,6 @@
|
|
|
|
|
|
function listenImages() {
|
|
function listenImages() {
|
|
let cboxOptions = { maxWidth: '960px', maxHeight: '960px' };
|
|
let cboxOptions = { maxWidth: '960px', maxHeight: '960px' };
|
|
- let images = document.querySelectorAll('.heartbeat-content img');
|
|
|
|
-
|
|
|
|
- console.dir(images);
|
|
|
|
|
|
|
|
$('.heartbeat-content').find('img').each(function () {
|
|
$('.heartbeat-content').find('img').each(function () {
|
|
let parentClass = $(this).parent().prop('className');
|
|
let parentClass = $(this).parent().prop('className');
|
|
@@ -62,7 +102,6 @@
|
|
}
|
|
}
|
|
|
|
|
|
function commentFormListeners() {
|
|
function commentFormListeners() {
|
|
- console.log('Comment Form Listeners');
|
|
|
|
let cFormButtons = document.querySelectorAll('.heartbeat-comment-button');
|
|
let cFormButtons = document.querySelectorAll('.heartbeat-comment-button');
|
|
|
|
|
|
for (let b = 0; b < cFormButtons.length; b++) {
|
|
for (let b = 0; b < cFormButtons.length; b++) {
|
|
@@ -73,13 +112,7 @@
|
|
|
|
|
|
function flagListeners() {
|
|
function flagListeners() {
|
|
|
|
|
|
- if (arguments[0] !== null && arguments.constructor !== Array) {
|
|
|
|
- //noinspection JSValidateTypes
|
|
|
|
- arguments = [arguments[0]];
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
let flags = arguments[0] == undefined ? document.querySelectorAll('.flag .use-ajax') : arguments[0];
|
|
let flags = arguments[0] == undefined ? document.querySelectorAll('.flag .use-ajax') : arguments[0];
|
|
- console.log("Reloading FLAG LISTENERS");
|
|
|
|
|
|
|
|
if (flags.constructor === NodeList) {
|
|
if (flags.constructor === NodeList) {
|
|
for (let f = 0; f < flags.length; f++) {
|
|
for (let f = 0; f < flags.length; f++) {
|
|
@@ -118,15 +151,12 @@
|
|
function getScrollXY() {
|
|
function getScrollXY() {
|
|
let scrOfX = 0, scrOfY = 0;
|
|
let scrOfX = 0, scrOfY = 0;
|
|
if (typeof( window.pageYOffset ) == 'number') {
|
|
if (typeof( window.pageYOffset ) == 'number') {
|
|
-
|
|
|
|
scrOfY = window.pageYOffset;
|
|
scrOfY = window.pageYOffset;
|
|
scrOfX = window.pageXOffset;
|
|
scrOfX = window.pageXOffset;
|
|
} else if (document.body && ( document.body.scrollLeft || document.body.scrollTop )) {
|
|
} else if (document.body && ( document.body.scrollLeft || document.body.scrollTop )) {
|
|
-
|
|
|
|
scrOfY = document.body.scrollTop;
|
|
scrOfY = document.body.scrollTop;
|
|
scrOfX = document.body.scrollLeft;
|
|
scrOfX = document.body.scrollLeft;
|
|
} else if (document.documentElement && ( document.documentElement.scrollLeft || document.documentElement.scrollTop )) {
|
|
} else if (document.documentElement && ( document.documentElement.scrollLeft || document.documentElement.scrollTop )) {
|
|
-
|
|
|
|
scrOfY = document.documentElement.scrollTop;
|
|
scrOfY = document.documentElement.scrollTop;
|
|
scrOfX = document.documentElement.scrollLeft;
|
|
scrOfX = document.documentElement.scrollLeft;
|
|
}
|
|
}
|
|
@@ -143,59 +173,65 @@
|
|
);
|
|
);
|
|
}
|
|
}
|
|
|
|
|
|
- Drupal.AjaxCommands.prototype.selectFeed = function (ajax, response, status) {
|
|
|
|
- $.ajax({
|
|
|
|
- type: 'POST',
|
|
|
|
- url: '/heartbeat/render_feed/' + response.feed,
|
|
|
|
- success: function (response) {
|
|
|
|
- feedElement = document.querySelector('.heartbeat-stream');
|
|
|
|
-
|
|
|
|
- if (feedElement != null) {
|
|
|
|
- feedElement.innerHTML = response;
|
|
|
|
- } else {
|
|
|
|
- feedBlock = document.getElementById('block-heartbeatblock');
|
|
|
|
- insertNode = document.createElement('div');
|
|
|
|
- insertNode.innerHTML = response;
|
|
|
|
- feedBlock.appendChild(insertNode);
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- });
|
|
|
|
- };
|
|
|
|
-
|
|
|
|
- Drupal.AjaxCommands.prototype.updateFeed = function (ajax, response, status) {
|
|
|
|
- if (response.update) {
|
|
|
|
|
|
+ if (drupalSettings.user.uid > 0 && !drupalSettings.path.currentPathIsAdmin) {
|
|
|
|
+ Drupal.AjaxCommands.prototype.selectFeed = function (ajax, response, status) {
|
|
$.ajax({
|
|
$.ajax({
|
|
type: 'POST',
|
|
type: 'POST',
|
|
- url: '/heartbeat/update_feed/' + response.timestamp,
|
|
|
|
|
|
+ url: '/heartbeat/render_feed/' + response.feed,
|
|
success: function (response) {
|
|
success: function (response) {
|
|
-
|
|
|
|
|
|
+ feedElement = document.querySelector('.heartbeat-stream');
|
|
|
|
+
|
|
|
|
+ if (feedElement != null) {
|
|
|
|
+ feedElement.innerHTML = response;
|
|
|
|
+ } else {
|
|
|
|
+ feedBlock = document.getElementById('block-heartbeatblock');
|
|
|
|
+ insertNode = document.createElement('div');
|
|
|
|
+ insertNode.innerHTML = response;
|
|
|
|
+ feedBlock.appendChild(insertNode);
|
|
|
|
+ }
|
|
|
|
+ Drupal.attachBehaviors();
|
|
}
|
|
}
|
|
});
|
|
});
|
|
- }
|
|
|
|
- };
|
|
|
|
|
|
+ };
|
|
|
|
|
|
- Drupal.AjaxCommands.prototype.myfavouritemethodintheworld = function (ajax, response, status) {
|
|
|
|
- console.dir(response);
|
|
|
|
- if (response.cid) {
|
|
|
|
- console.log('this shit is getting called again');
|
|
|
|
- let parentComment = document.getElementById('heartbeat-comment-' + response.cid);
|
|
|
|
- let text = parentComment.querySelector('.form-textarea');
|
|
|
|
-
|
|
|
|
- text.addEventListener('keydown', function (e) {
|
|
|
|
- console.dir(e);
|
|
|
|
- if (e.keyCode === 13) {
|
|
|
|
- let submitBtn = parentComment.querySelector('.form-submit');
|
|
|
|
- submitBtn.click();
|
|
|
|
- }
|
|
|
|
- });
|
|
|
|
- }
|
|
|
|
- };
|
|
|
|
|
|
+ Drupal.AjaxCommands.prototype.updateFeed = function (ajax, response, status) {
|
|
|
|
+ if (response.update) {
|
|
|
|
+ $.ajax({
|
|
|
|
+ type: 'POST',
|
|
|
|
+ url: '/heartbeat/update_feed/' + response.timestamp,
|
|
|
|
+ success: function (response) {
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ };
|
|
|
|
+
|
|
|
|
+ Drupal.AjaxCommands.prototype.myfavouritemethodintheworld = function (ajax, response, status) {
|
|
|
|
+ console.dir(response);
|
|
|
|
+ if (response.cid) {
|
|
|
|
+ console.log('this shit is getting called again');
|
|
|
|
+ let parentComment = document.getElementById('heartbeat-comment-' + response.cid);
|
|
|
|
+ let text = parentComment.querySelector('.form-textarea');
|
|
|
|
+
|
|
|
|
+ text.addEventListener('keydown', function (e) {
|
|
|
|
+ console.dir(e);
|
|
|
|
+ if (e.keyCode === 13) {
|
|
|
|
+ let submitBtn = parentComment.querySelector('.form-submit');
|
|
|
|
+ submitBtn.click();
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ };
|
|
|
|
+ }
|
|
|
|
|
|
function hideCommentForms() {
|
|
function hideCommentForms() {
|
|
let forms = document.querySelectorAll('.heartbeat-comment-form .js-form-type-textarea, .heartbeat-comment-form .form-submit');
|
|
let forms = document.querySelectorAll('.heartbeat-comment-form .js-form-type-textarea, .heartbeat-comment-form .form-submit');
|
|
|
|
|
|
for (let f = 0; f < forms.length; f++) {
|
|
for (let f = 0; f < forms.length; f++) {
|
|
- forms[f].className += ' comment-form-hidden';
|
|
|
|
|
|
+ console.log('adding hidden class to comment form');
|
|
|
|
+ if (!forms[f].classList.contains('comment-form-hidden')) {
|
|
|
|
+ forms[f].className += ' comment-form-hidden';
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -230,6 +266,7 @@
|
|
},
|
|
},
|
|
complete: function () {
|
|
complete: function () {
|
|
$('#heartbeat-loader').hide(225);
|
|
$('#heartbeat-loader').hide(225);
|
|
|
|
+ Drupal.attachBehaviors()
|
|
}
|
|
}
|
|
});
|
|
});
|
|
}
|
|
}
|
|
@@ -285,6 +322,7 @@
|
|
}
|
|
}
|
|
listenImages();
|
|
listenImages();
|
|
listenCommentPost();
|
|
listenCommentPost();
|
|
|
|
+ commentFormListeners();
|
|
feedElement = document.querySelector('.heartbeat-stream');
|
|
feedElement = document.querySelector('.heartbeat-stream');
|
|
|
|
|
|
if (drupalSettings.feedUpdate == true) {
|
|
if (drupalSettings.feedUpdate == true) {
|
|
@@ -300,27 +338,27 @@
|
|
const body = document.getElementsByTagName('body')[0];
|
|
const body = document.getElementsByTagName('body')[0];
|
|
body.appendChild(loader);
|
|
body.appendChild(loader);
|
|
|
|
|
|
- commentFormListeners();
|
|
|
|
flagListeners();
|
|
flagListeners();
|
|
|
|
|
|
let stream = document.getElementById('block-heartbeatblock');
|
|
let stream = document.getElementById('block-heartbeatblock');
|
|
|
|
|
|
- let observer = new MutationObserver(function (mutations) {
|
|
|
|
- console.log('observer observes a change');
|
|
|
|
- listenImages();
|
|
|
|
- hideCommentForms();
|
|
|
|
- commentFormListeners();
|
|
|
|
- flagListeners();
|
|
|
|
- listenVideos();
|
|
|
|
- listenWindowScroll();
|
|
|
|
- });
|
|
|
|
-
|
|
|
|
- let config = {attributes: true, childList: true, characterData: true};
|
|
|
|
|
|
+ if (stream !== null) {
|
|
|
|
+ let observer = new MutationObserver(function (mutations) {
|
|
|
|
+ console.log('observer observes a change');
|
|
|
|
+ // Drupal.attachBehaviors();
|
|
|
|
+ // listenImages();
|
|
|
|
+ hideCommentForms();
|
|
|
|
+ // commentFormListeners();
|
|
|
|
+ // flagListeners();
|
|
|
|
+ // listenVideos();
|
|
|
|
+ });
|
|
|
|
|
|
- observer.observe(stream, config);
|
|
|
|
|
|
+ let config = {attributes: true, childList: true, characterData: true};
|
|
|
|
+ observer.observe(stream, config);
|
|
|
|
+ }
|
|
|
|
|
|
let flagObserver = new MutationObserver(function(mutations) {
|
|
let flagObserver = new MutationObserver(function(mutations) {
|
|
- console.dir(mutations);
|
|
|
|
|
|
+ console.log('observer observes a change');
|
|
if (mutations[0].target !== null && mutations[0].target.children !== null && mutations[0].target.children.length > 0 && mutations[0].target.children[0].classList.contains('flag')) {
|
|
if (mutations[0].target !== null && mutations[0].target.children !== null && mutations[0].target.children.length > 0 && mutations[0].target.children[0].classList.contains('flag')) {
|
|
flagListeners();
|
|
flagListeners();
|
|
}
|
|
}
|
|
@@ -334,49 +372,8 @@
|
|
flagObserver.observe(flag, flagObserveConfig);
|
|
flagObserver.observe(flag, flagObserveConfig);
|
|
});
|
|
});
|
|
|
|
|
|
-
|
|
|
|
-
|
|
|
|
- document.addEventListener("scroll", function (event) {
|
|
|
|
-
|
|
|
|
- if (drupalSettings.filterMode == false && (getScrollXY()[1] + window.innerHeight) / getDocHeight() > 0.99) {
|
|
|
|
-
|
|
|
|
- let streams = document.querySelectorAll('.heartbeat-stream');
|
|
|
|
- let stream = streams.length > 1 ? streams[streams.length - 1] : streams[0];
|
|
|
|
-
|
|
|
|
- if (stream !== null) {
|
|
|
|
- console.dir(stream);
|
|
|
|
- let lastHeartbeat = stream.lastElementChild;
|
|
|
|
-
|
|
|
|
- if (lastHeartbeat !== null) {
|
|
|
|
-
|
|
|
|
- let hid = lastHeartbeat.id.substring(lastHeartbeat.id.indexOf('-') + 1);
|
|
|
|
- if (drupalSettings.lastHid !== hid) {
|
|
|
|
-
|
|
|
|
- drupalSettings.lastHid = hid;
|
|
|
|
-
|
|
|
|
- $('#heartbeat-loader').show(225);
|
|
|
|
-
|
|
|
|
- $.ajax({
|
|
|
|
- type: 'POST',
|
|
|
|
- url: '/heartbeat/update_feed/' + hid,
|
|
|
|
-
|
|
|
|
- success: function (response) {
|
|
|
|
-
|
|
|
|
- feedBlock = document.getElementById('block-heartbeatblock');
|
|
|
|
- insertNode = document.createElement('div');
|
|
|
|
- insertNode.innerHTML = response;
|
|
|
|
- feedBlock.appendChild(insertNode)
|
|
|
|
- },
|
|
|
|
-
|
|
|
|
- complete: function () {
|
|
|
|
- $('#heartbeat-loader').hide(225);
|
|
|
|
- }
|
|
|
|
- });
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- });
|
|
|
|
|
|
+ document.removeEventListener('scroll', addWindowScrollListener);
|
|
|
|
+ document.addEventListener('scroll', addWindowScrollListener);
|
|
|
|
|
|
$(document).on('cbox_open', function () {
|
|
$(document).on('cbox_open', function () {
|
|
$("#colorbox").swipe({
|
|
$("#colorbox").swipe({
|
|
@@ -404,4 +401,3 @@
|
|
);
|
|
);
|
|
})
|
|
})
|
|
})(jQuery, Drupal, drupalSettings);
|
|
})(jQuery, Drupal, drupalSettings);
|
|
-
|
|
|