3 * Interactive features for Trivial Gallery.
5 * (c) 2021 Mark Wooding
8 /*----- Licensing notice --------------------------------------------------*
10 * This file is part of Trivial Gallery.
12 * Trivial Gallery is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU Affero General Public License as
14 * published by the Free Software Foundation; either version 3 of the
15 * License, or (at your option) any later version.
17 * Trivial Gallery is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * Affero General Public License for more details.
22 * You should have received a copy of the GNU Affero General Public
23 * License along with Trivial Gallery. If not, see
24 * <https://www.gnu.org/licenses/>.
27 /* Handle keyboard interaction. */
28 addEventListener("keydown", function (ev) {
30 if (ev.key === " " || ev.key === "ArrowRight") dir = "next";
31 else if (ev.key === "Backspace" || ev.key === "ArrowLeft") dir = "prev";
32 else if (ev.key === "^") dir = "up";
33 else if (ev.key === "<") dir = "first";
34 else if (ev.key === ">") dir = "last";
36 var elt = document.querySelector("link[rel=" + dir + "]");
38 location = elt.getAttribute("href");
42 /* Scroll the thumbnail strip so that the current image is in the middle. */
46 var scroll = function(strip) {
47 var focus = strip.querySelector("figure.focusthumb");
49 var stripbox = strip.getBoundingClientRect();
50 var focusbox = focus.getBoundingClientRect();
52 (focusbox.x - stripbox.x) -
53 (stripbox.width - focusbox.width)/2;
57 var strips = document.querySelectorAll("div.thumbstrip");
58 if (window.IntersectionObserver) {
59 obs = new IntersectionObserver(function (ee) {
60 ee.forEach(function (e) {
61 if (e.isIntersecting) {
62 obs.unobserve(e.target);
67 root: document.querySelector("html")
69 strips.forEach(function (strip) { obs.observe(strip); });
71 strips.forEach(scroll);
75 /*----- That's all, folks -------------------------------------------------*/