Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7dc9cc91 authored by Markus Heiser's avatar Markus Heiser
Browse files

[mod] simple theme, JS: introduce window.searxng.theme namespace



In window.searxng.theme the theme data can be passed through to JS
implementations.

Initial the window.searxng.theme namespace starts with a value for
`img_load_error`::

    // image that is displayed if load of <img src='...'> failed
    img_load_error: 'img/img_load_error.svg'

The searx/static/themes/__common__/js/image_layout.js is patched to uses the
value, if the theme defines a value for img_load_error in this namespace.

Signed-off-by: default avatarMarkus Heiser <markus.heiser@darmarit.de>
parent eff08844
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -149,7 +149,7 @@

    function img_load_error(event) {
      // console.log("ERROR can't load: " + event.originalTarget.src);
      event.originalTarget.src = window.searxng.static_path + 'img/img_load_error.svg';
      event.originalTarget.src = w.searxng.static_path + w.searxng.theme.img_load_error;
    }

    function throttleAlign() {
@@ -175,9 +175,11 @@
        img.addEventListener('load', throttleAlign);
        // https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onerror
        img.addEventListener('error', throttleAlign);
        if (w.searxng.theme.img_load_error) {
          img.addEventListener('error', img_load_error, {once: true});
        }
      }
    }
  };

  w.searxng.ImageLayout = ImageLayout;
+4 −0
Original line number Diff line number Diff line
@@ -24,6 +24,10 @@
        hotkeys: script.getAttribute('data-hotkeys') === 'true',
        static_path: script.getAttribute('data-static-path'),
        translations: JSON.parse(script.getAttribute('data-translations')),
        theme : {
            // image that is displayed if load of <img src='...'> failed
            img_load_error: 'img/img_load_error.svg'
        }
    };

    // update the css