aboutsummaryrefslogtreecommitdiff
path: root/src/js/arching-kaos-spa-router.js
blob: 162f1e2e21cb886a81fad0a395c4c481257febcd (plain)
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
/*
 * A new feature for a new future:
 *
 * We will get `location.search` values to figure out where the visitor wants
 * to go.
 *
 * We should then replace the menu links with these ones.
 *
 * We should also modify the existing menu mechanism to show/hide depending on
 * the "route" we got from `location.search`.
 *
 */

function locationHashSetter(value){
    window.location.hash = value;
    locationHashOnChange();
}

function locationHashGetter(){
    return window.location.hash;
}

function locationHashOnChange(){
    var route = new Object;
    route.full = locationHashGetter();
    route.args = route.full.split('/');
    route.menuid = '#'+route.args[1];
    route.subcommand = route.args[2];
    menuinit();
    if ( (locationHashGetter() !== 'undefined') && (locationHashGetter() === '') ){
        document.querySelector('#welcome-section').hidden=false;
    } else if ( (locationHashGetter() !== 'undefined') && ( menuids.includes(route.menuid))){
        document.querySelector(route.menuid).hidden=false;
    } else {
        document.querySelector('#not-found-section').hidden=false;
    }
}