summaryrefslogtreecommitdiffstatshomepage
path: root/src/ext/path-deps.js
blob: 4a7b881fd9ee6e745f4d328fac86c21678fd4b25 (plain) (blame)
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
(function(){
    function dependsOn(pathSpec, url) {
        var dependencyPath = pathSpec.split("/");
        var urlPath = url.split("/");
        for (var i = 0; i < urlPath.length; i++) {
            var dependencyElement = dependencyPath.shift();
            var pathElement = urlPath[i];
            if (dependencyElement !== pathElement && dependencyElement !== "*") {
                return false;
            }
            if (dependencyPath.length === 0 || (dependencyPath.length === 1 && dependencyPath[0] === "")) {
                return true;
            }
        }
        return false;
    }

    htmx.defineExtension('path-deps', {
        onEvent: function (name, evt) {
            if (name === "htmx:afterRequest") {
                var xhr = evt.detail.xhr;
                // mutating call
                if (xhr.method !== "GET") {
                    var eltsWithDeps = htmx.findAll("[path-deps]");
                    for (var i = 0; i < eltsWithDeps.length; i++) {
                        var elt = eltsWithDeps[i];
                        if (dependsOn(elt.getAttribute('path-deps'), xhr.url)) {
                            htmx.trigger(elt, "path-deps");
                        }
                    }
                }
            }
        }
    });
})();