chiark / gitweb /
static/tgal.js (keydown): Delete redundant case.
[tgal] / static / tgal.js
1 /* -*-javascript-*-
2  *
3  * Interactive features for Trivial Gallery.
4  *
5  * (c) 2021 Mark Wooding
6  */
7
8 /*----- Licensing notice --------------------------------------------------*
9  *
10  * This file is part of Trivial Gallery.
11  *
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.
16  *
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.
21  *
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/>.
25  */
26
27 /* Handle keyboard interaction. */
28 addEventListener("keydown", function (ev) {
29   var dir;
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";
35   else return;
36   var elt = document.querySelector("link[rel=" + dir + "]");
37   if (!elt) return;
38   location = elt.getAttribute("href");
39   ev.stopPropagation();
40 }, true);
41
42 /* Scroll the thumbnail strip so that the current image is in the middle. */
43 (function () {
44   var obs = null;
45
46   var scroll = function(strip) {
47     var focus = strip.querySelector("figure.focusthumb");
48     if (focus) {
49       var stripbox = strip.getBoundingClientRect();
50       var focusbox = focus.getBoundingClientRect();
51       strip.scrollLeft +=
52         (focusbox.x - stripbox.x) -
53         (stripbox.width - focusbox.width)/2;
54     }
55   };
56
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);
63           scroll(e.target);
64         }
65       });
66     }, {
67       root: document.querySelector("html")
68     });
69     strips.forEach(function (strip) { obs.observe(strip); });
70   } else {
71     strips.forEach(scroll);
72   }
73 })();
74
75 /*----- That's all, folks -------------------------------------------------*/