소스 검색

Adding login block

logicp 7 년 전
부모
커밋
52f62d0a7a
1개의 변경된 파일149개의 추가작업 그리고 183개의 파일을 삭제
  1. 149 183
      js/heartbeat.js

+ 149 - 183
js/heartbeat.js

@@ -2,53 +2,29 @@
  * Created by logicp on 5/28/17.
  */
 
-const commentListen = function(e) {
-
-  let commentBlock = e.srcElement.parentNode.parentNode.querySelector('.heartbeat-comments');
+(function($, Drupal, drupalSettings) {
 
-  if (!commentBlock.classList.contains('heartbeat-comments-visible')) {
-    commentBlock.className += ' heartbeat-comments-visible';
-  } else {
-    commentBlock.classList.remove('heartbeat-comments-visible');
-  }
+  const commentListen = function(e) {
 
+    if (drupalSettings.user.uid > 0) {
 
-  if (drupalSettings.user.uid > 0) {
-
-    let childs = e.srcElement.parentNode.querySelectorAll('.form-submit, .js-form-type-textarea');
-    console.dir(childs);
-    for (let c = 0; c < childs.length; c++) {
-      toggleCommentElements(childs[c]);
-    }
-  } else {
-    // loginModal()
-    $.ajax({
-      type: 'GET',
-      url: '/user/modal/login',
-      success: function (response) {
-        mainContainer = document.getElementById('main');
-        loginBlock = document.createElement('div');
-        loginBlock.innerHTML = response;
-        loginBlock.className = 'kekistan-login-block';
-        loginBlock.id = 'kekistan-login-block';
-        closeBtn = document.createElement('div');
-        closeBtn.className =  'kekistan-login-block-close';
-        closeBtn.innerHTML = '✖';
-        loginBlock.appendChild(closeBtn);
-        mainContainer.appendChild(loginBlock);
-
-        closeBtn.addEventListener('click', function() {
-          loginBlock.innerHTML = '';
-          mainContainer.removeChild(loginBlock);
-        });
+      let commentBlock = e.srcElement.parentNode.parentNode.querySelector('.heartbeat-comments');
 
+      if (!commentBlock.classList.contains('heartbeat-comments-visible')) {
+        commentBlock.className += ' heartbeat-comments-visible';
+      } else {
+        commentBlock.classList.remove('heartbeat-comments-visible');
       }
-    });
-  }
-};
 
+      let childs = e.srcElement.parentNode.querySelectorAll('.form-submit, .js-form-type-textarea');
 
-(function($, Drupal, drupalSettings) {
+      for (let c = 0; c < childs.length; c++) {
+        toggleCommentElements(childs[c]);
+      }
+    } else {
+      loginModal();
+    }
+  };
 
   $(document).ready(function() {
 
@@ -151,81 +127,80 @@ const commentListen = function(e) {
 
 
     function updateFeed() {
-
-    $.ajax({
-      type: 'POST',
-      url: '/heartbeat/form/heartbeat_update_feed',
-      success: function (response) {
-      }
-    })
+      $.ajax({
+        type: 'POST',
+        url: '/heartbeat/form/heartbeat_update_feed',
+        success: function (response) {
+        }
+      })
     }
 
     function listenImages() {
-    let cboxOptions = {
-      maxWidth: '960px',
-      maxHeight: '960px',
-    };
-
-    $('.heartbeat-content').find('img').each(function() {
-      let parentClass = $(this).parent().prop('className');
-      let phid = parentClass.substring(parentClass.indexOf('hid') + 4);
-      $(this).colorbox({rel: phid, href: $(this).attr('src'), cboxOptions});
-    });
+      let cboxOptions = {
+        maxWidth: '960px',
+        maxHeight: '960px',
+      };
+
+      $('.heartbeat-content').find('img').each(function() {
+        let parentClass = $(this).parent().prop('className');
+        let phid = parentClass.substring(parentClass.indexOf('hid') + 4);
+        $(this).colorbox({rel: phid, href: $(this).attr('src'), cboxOptions});
+      });
     }
 
     function listenCommentPost() {
-    let comments = document.querySelectorAll('[data-drupal-selector]');
+      let comments = document.querySelectorAll('[data-drupal-selector]');
 
-    for (let i = 0; i < comments.length; i++) {
-      let comment = comments[i];
-      comment.addEventListener('click', function() {
-          getParent(comment);
-      })
-    }
+      for (let i = 0; i < comments.length; i++) {
+        let comment = comments[i];
+        comment.addEventListener('click', function() {
+            getParent(comment);
+        })
+      }
     }
 
     function getParent(node) {
-    if (node != null && node != undefined && node.classList != undefined && node.classList.contains('heartbeat-comment')) {
-      let id = node.id.substr(node.id.indexOf('-') + 1);
-      $.ajax({
-        type: 'POST',
-        url:'/heartbeat/commentupdate/' + id,
-        success: function(response) {
+      if (node != null && node != undefined && node.classList != undefined && node.classList.contains('heartbeat-comment')) {
+        let id = node.id.substr(node.id.indexOf('-') + 1);
+        $.ajax({
+          type: 'POST',
+          url:'/heartbeat/commentupdate/' + id,
+          success: function(response) {
+          }
+        });
+      } else {
+        if (node != null && node.nodeName !== 'body') {
+          getParent(node.parentNode);
         }
-      });
-    } else {
-      if (node != null && node.nodeName !== 'body') {
-        getParent(node.parentNode);
       }
     }
-    }
 
     function getScrollXY() {
-    var scrOfX = 0, scrOfY = 0;
-    if( typeof( window.pageYOffset ) == 'number' ) {
-      //Netscape compliant
-      scrOfY = window.pageYOffset;
-      scrOfX = window.pageXOffset;
-    } else if( document.body && ( document.body.scrollLeft || document.body.scrollTop ) ) {
-      //DOM compliant
-      scrOfY = document.body.scrollTop;
-      scrOfX = document.body.scrollLeft;
-    } else if( document.documentElement && ( document.documentElement.scrollLeft || document.documentElement.scrollTop ) ) {
-      //IE6 standards compliant mode
-      scrOfY = document.documentElement.scrollTop;
-      scrOfX = document.documentElement.scrollLeft;
-    }
-    return [ scrOfX, scrOfY ];
+      var scrOfX = 0, scrOfY = 0;
+      if( typeof( window.pageYOffset ) == 'number' ) {
+
+        scrOfY = window.pageYOffset;
+        scrOfX = window.pageXOffset;
+      } else if( document.body && ( document.body.scrollLeft || document.body.scrollTop ) ) {
+
+        scrOfY = document.body.scrollTop;
+        scrOfX = document.body.scrollLeft;
+      } else if( document.documentElement && ( document.documentElement.scrollLeft || document.documentElement.scrollTop ) ) {
+
+        scrOfY = document.documentElement.scrollTop;
+        scrOfX = document.documentElement.scrollLeft;
+      }
+      return [ scrOfX, scrOfY ];
     }
 
     //taken from http://james.padolsey.com/javascript/get-document-height-cross-browser/
     function getDocHeight() {
-    var D = document;
-    return Math.max(
-      D.body.scrollHeight, D.documentElement.scrollHeight,
-      D.body.offsetHeight, D.documentElement.offsetHeight,
-      D.body.clientHeight, D.documentElement.clientHeight
-    );
+      var D = document;
+      return Math.max(
+        D.body.scrollHeight, D.documentElement.scrollHeight,
+        D.body.offsetHeight, D.documentElement.offsetHeight,
+        D.body.clientHeight, D.documentElement.clientHeight
+      );
     }
 
     document.addEventListener("scroll", function (event) {
@@ -271,106 +246,97 @@ const commentListen = function(e) {
     });
 
     $(document).on('cbox_open', function() {
-    $("#colorbox").swipe( {
-      //Generic swipe handler for all directions
-      swipeLeft:function(event, direction, distance, duration, fingerCount) {
-        $.colorbox.prev();
-      },
-      swipeRight:function(event, direction, distance, duration, fingerCount) {
-        $.colorbox.next();
-      },
-      //Default is 75px, set to 0 for demo so any distance triggers swipe
-      threshold:25
-    });
-    let cboxCloseBtn = $('#cboxClose');
-    cboxCloseBtn.on('click touchstart', function() {
-      $.colorbox.close();
-    });
-    cboxCloseBtn.on('keyup', function(e) {
-      if (e.keyCode == 27) {
-        $.colorbox().close();
+      $("#colorbox").swipe( {
+        //Generic swipe handler for all directions
+        swipeLeft:function(event, direction, distance, duration, fingerCount) {
+          $.colorbox.prev();
+        },
+        swipeRight:function(event, direction, distance, duration, fingerCount) {
+          $.colorbox.next();
+        },
+        //Default is 75px, set to 0 for demo so any distance triggers swipe
+        threshold:25
+      });
+      let cboxCloseBtn = $('#cboxClose');
+      cboxCloseBtn.on('click touchstart', function() {
+        $.colorbox.close();
+      });
+      cboxCloseBtn.on('keyup', function(e) {
+        if (e.keyCode == 27) {
+          $.colorbox().close();
+        }
+      });
+
+      return true;
+
       }
-    });
+    );
+
+    function commentFormListeners() {
+      console.log('Comment Form Listeners');
+      let cFormButtons = document.querySelectorAll('.heartbeat-comment-button');
 
-    // let cboxClose = document.getElementById('cboxClose');
-    // cboxClose.addEventListener('click', function() {
-    //   $.colorbox.close();
-    // });
-    // cboxClose.addEventListener('touchstart', function() {
-    //   $.colorbox.close();
-    // });
-    // document.addEventListener('keyup', function(e) {
-    //   if (e.keyCode == 27) {
-    //     $.colorbox.close();
-    //   }
-    // })
-
-    return true;
 
+      for (let b = 0; b < cFormButtons.length; b++) {
+        cFormButtons[b].removeEventListener('click', commentListen);
+        cFormButtons[b].addEventListener('click', commentListen);
+      }
     }
-    );
+  });
 
-    })
-})(jQuery, Drupal, drupalSettings);
+  /******** Load Login Block **********
+   ******** append to document ********
+   ******** Hover in middle of screen */
 
-function commentFormListeners() {
-  console.log('Comment Form Listeners');
-  let cFormButtons = document.querySelectorAll('.heartbeat-comment-button');
+  function loginModal() {
 
+    $('#heartbeat-loader').show(225);
 
-  for (let b = 0; b < cFormButtons.length; b++) {
-    cFormButtons[b].removeEventListener('click', commentListen);
-    cFormButtons[b].addEventListener('click', commentListen);
+    $.ajax({
+      type: 'GET',
+      url: '/user/modal/login',
+      success: function (response) {
+        mainContainer = document.getElementById('main');
+        loginBlock = document.createElement('div');
+        loginBlock.innerHTML = response;
+        loginBlock.className = 'kekistan-login-block';
+        loginBlock.id = 'kekistan-login-block';
+        closeBtn = document.createElement('div');
+        closeBtn.className =  'kekistan-login-block-close';
+        closeBtn.innerHTML = '✖';
+        loginBlock.appendChild(closeBtn);
+        mainContainer.appendChild(loginBlock);
+
+        closeBtn.addEventListener('click', function() {
+          loginBlock.innerHTML = '';
+          mainContainer.removeChild(loginBlock);
+        });
+
+      },
+      complete: function() {
+        $('#heartbeat-loader').hide(225);
+      }
+    });
   }
-}
-
-
-
-/******** Load Login Block **********
- ******** append to document ********
- ******** Hover in middle of screen */
-
-function loginModal() {
-
-  $.ajax({
-    type: 'GET',
-    url: '/user/modal/login',
-    success: function (response) {
-      mainContainer = document.getElementById('main');
-      loginBlock = document.createElement('div');
-      loginBlock.innerHTML = response;
-      loginBlock.className = 'kekistan-login-block';
-      loginBlock.id = 'kekistan-login-block';
-      closeBtn = document.createElement('div');
-      closeBtn.className =  'kekistan-login-block-close';
-      closeBtn.innerHTML = '✖';
-      loginBlock.appendChild(closeBtn);
-      mainContainer.appendChild(loginBlock);
-
-      closeBtn.addEventListener('click', function() {
-        loginBlock.innerHTML = '';
-        mainContainer.removeChild(loginBlock);
-      });
 
+  function hideCommentForms() {
+    let forms = document.querySelectorAll('.heartbeat-comment-form .js-form-type-textarea, .heartbeat-comment-form .form-submit');
+
+    for (let f = 0; f < forms.length; f++) {
+      forms[f].className += ' comment-form-hidden';
     }
-  });
-}
+  }
 
-function hideCommentForms() {
-  let forms = document.querySelectorAll('.heartbeat-comment-form .js-form-type-textarea, .heartbeat-comment-form .form-submit');
+  function toggleCommentElements(node) {
 
-  for (let f = 0; f < forms.length; f++) {
-    forms[f].className += ' comment-form-hidden';
+    console.dir(node);
+    if (node.classList.contains('comment-form-hidden')) {
+      console.log('removing comment-form-hidden class from element');
+      node.classList.remove('comment-form-hidden');
+    } else {
+      node.className += ' comment-form-hidden';
+    }
   }
-}
 
-function toggleCommentElements(node) {
+})(jQuery, Drupal, drupalSettings);
 
-  console.dir(node);
-  if (node.classList.contains('comment-form-hidden')) {
-    console.log('removing comment-form-hidden class from element');
-    node.classList.remove('comment-form-hidden');
-  } else {
-    node.className += ' comment-form-hidden';
-  }
-}