Sha256: 1f50c5c809f60cfe05c4798f6ab04f408ccdf1fadeba45e56176e4335d043dba

Contents?: true

Size: 878 Bytes

Versions: 33

Compression:

Stored size: 878 Bytes

Contents

//= require thredded/core/on_page_load

(() => {
  const Thredded = window.Thredded;

  const COMPONENT_SELECTOR = '[data-thredded-currently-online]';
  const EXPANDED_CLASS = 'thredded--is-expanded';

  const handleMouseEnter = (evt) => {
    evt.target.classList.add(EXPANDED_CLASS);
  };

  const handleMouseLeave = (evt) => {
    evt.target.classList.remove(EXPANDED_CLASS);
  };

  const handleTouchStart = (evt) => {
    evt.target.classList.toggle(EXPANDED_CLASS);
  };

  const initCurrentlyOnline = (node) => {
    node.addEventListener('mouseenter', handleMouseEnter);
    node.addEventListener('mouseleave', handleMouseLeave);
    node.addEventListener('touchstart', handleTouchStart);
  };

  Thredded.onPageLoad(() => {
    Array.prototype.forEach.call(document.querySelectorAll(COMPONENT_SELECTOR), (node) => {
      initCurrentlyOnline(node);
    });
  });
})();

Version data entries

33 entries across 33 versions & 2 rubygems

Version Path
thredded-0.16.13 app/assets/javascripts/thredded/components/currently_online.es6
thredded-0.16.12 app/assets/javascripts/thredded/components/currently_online.es6
thredded-0.16.11 app/assets/javascripts/thredded/components/currently_online.es6
thredded-0.16.10 app/assets/javascripts/thredded/components/currently_online.es6
thredded-0.16.9 app/assets/javascripts/thredded/components/currently_online.es6
thredded-0.16.8 app/assets/javascripts/thredded/components/currently_online.es6
thredded-0.16.7 app/assets/javascripts/thredded/components/currently_online.es6
thredded-0.16.6 app/assets/javascripts/thredded/components/currently_online.es6
thredded-0.16.5 app/assets/javascripts/thredded/components/currently_online.es6
thredded-0.16.4 app/assets/javascripts/thredded/components/currently_online.es6
thredded-0.16.3 app/assets/javascripts/thredded/components/currently_online.es6
thredded-0.16.1 app/assets/javascripts/thredded/components/currently_online.es6
thredded-0.16.0 app/assets/javascripts/thredded/components/currently_online.es6
thredded-0.15.5 app/assets/javascripts/thredded/components/currently_online.es6
thredded-0.15.4 app/assets/javascripts/thredded/components/currently_online.es6
thredded-0.15.3 app/assets/javascripts/thredded/components/currently_online.es6
thredded-0.15.2 app/assets/javascripts/thredded/components/currently_online.es6
thredded-0.15.1 app/assets/javascripts/thredded/components/currently_online.es6
threddedDANIEL-0.14.5 app/assets/javascripts/thredded/components/currently_online.es6
thredded-0.14.4 app/assets/javascripts/thredded/components/currently_online.es6