File: set_installer_tab.js

package info (click to toggle)
python-mne 1.9.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 131,492 kB
  • sloc: python: 213,302; javascript: 12,910; sh: 447; makefile: 144
file content (55 lines) | stat: -rw-r--r-- 2,255 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/* inspired by https://tobiasahlin.com/blog/move-from-jquery-to-vanilla-javascript/ */

function documentReady(callback) {
    if (document.readyState != "loading") callback();
    else document.addEventListener("DOMContentLoaded", callback);
}

function setTabs() {
    var platform = "linux";
    if (navigator.userAgent.indexOf("Win") !== -1) {
        platform = "windows";
    }
    if (navigator.userAgent.indexOf("Mac") !== -1) {
        // there's no good way to distinguish intel vs M1 in javascript so we
        // just default to showing the most modern macOS installer
        platform = "macos-apple";
    }
    var platform_short = platform.split("-")[0];

    let tab_label_nodes = [...document.querySelectorAll('.sd-tab-label')];

    let install_tab_nodes = document.querySelectorAll(
        '.install-selector-tabset')[0].children;
    let install_input_nodes = [...install_tab_nodes].filter(
        child => child.nodeName === "INPUT");
    let install_label = tab_label_nodes.filter(
        // label.id is drawn from :name: property in the rST, which must
        // be unique across the whole site (*sigh*)
        label => label.id.startsWith(`install-${platform}`))[0];
    let install_id = install_label.getAttribute('for');
    let install_input = install_input_nodes.filter(node => node.id === install_id)[0];
    install_input.checked = true;

    let uninstall_tab_nodes = document.querySelectorAll(
        '.uninstall-selector-tabset')[0].children;
    let uninstall_input_nodes = [...uninstall_tab_nodes].filter(
        child => child.nodeName === "INPUT");
    let uninstall_label = tab_label_nodes.filter(
        label => label.id.startsWith(`uninstall-${platform_short}`))[0];
    let uninstall_id = uninstall_label.getAttribute('for');
    let uninstall_input = uninstall_input_nodes.filter(node => node.id === uninstall_id)[0];
    uninstall_input.checked = true;
}

function setAlert() {
    for (let button of document.querySelectorAll('.install-download-button')) {
        button.addEventListener('click', function() {
            alert = document.querySelectorAll('.install-download-alert')[0];
            alert.style.display = 'block';
        });
    }
}

documentReady(setTabs);
documentReady(setAlert);