UNPKG

4.54 kBJavaScriptView Raw
1// This adds the "preload" extension to htmx. By default, this will
2// preload the targets of any tags with `href` or `hx-get` attributes
3// if they also have a `preload` attribute as well. See documentation
4// for more detauls
5htmx.defineExtension("preload", {
6
7 onEvent: function(name, event) {
8
9 // Only take actions on "htmx:afterProcessNode"
10 if (name !== "htmx:afterProcessNode") {
11 return;
12 }
13
14 // SOME HELPER FUNCTIONS WE'LL NEED ALONG THE WAY
15
16 // attr gets the closest non-empty value from the attribute.
17 var attr = function(node, property) {
18 if (node == undefined) {return undefined;}
19 return node.getAttribute(property) || node.getAttribute("data-" + property) || attr(node.parentElement, property)
20 }
21
22 // load handles the actual HTTP fetch, and uses htmx.ajax in cases where we're
23 // preloading an htmx resource (this sends the same HTTP headers as a regular htmx request)
24 var load = function(node) {
25
26 // Called after a successful AJAX request, to mark the
27 // content as loaded (and prevent additional AJAX calls.)
28 var done = function(html) {
29 node.preloadState = "DONE"
30
31 if (attr(node, "preload-images") == "true") {
32 document.createElement("div").innerHTML = html // create and populate a node to load linked resources, too.
33 }
34 }
35
36 return function() {
37
38 // If this value has already been loaded, then do not try again.
39 if (node.preloadState !== "READY") {
40 return;
41 }
42
43 // Special handling for HX-GET - use built-in htmx.ajax function
44 // so that headers match other htmx requests, then set
45 // node.preloadState = TRUE so that requests are not duplicated
46 // in the future
47 var hxGet = node.getAttribute("hx-get") || node.getAttribute("data-hx-get")
48 if (hxGet) {
49 htmx.ajax("GET", hxGet, {handler:function(elt, info) {
50 done(info.xhr.responseText);
51 }});
52 return;
53 }
54
55 // Otherwise, perform a standard xhr request, then set
56 // node.preloadState = TRUE so that requests are not duplicated
57 // in the future.
58 if (node.getAttribute("href")) {
59 var r = new XMLHttpRequest();
60 r.open("GET", node.getAttribute("href"));
61 r.onload = function() {done(r.responseText);};
62 r.send();
63 return;
64 }
65 }
66 }
67
68 // This function processes a specific node and sets up event handlers.
69 // We'll search for nodes and use it below.
70 var init = function(node) {
71
72 // If this node DOES NOT include a "GET" transaction, then there's nothing to do here.
73 if (node.getAttribute("href") + node.getAttribute("hx-get") + node.getAttribute("data-hx-get") == "") {
74 return;
75 }
76
77 // Guarantee that we only initialize each node once.
78 if (node.preloadState !== undefined) {
79 return;
80 }
81
82 // Get event name from config.
83 var on = attr(node, "preload") || "mousedown"
84
85 // FALL THROUGH to here means we need to add an EventListener
86
87 // Apply the listener to the node
88 node.addEventListener(on, function(evt) {
89 if (node.preloadState === "PAUSE") { // Only add one event listener
90 node.preloadState = "READY"; // Requred for the `load` function to trigger
91
92 // Special handling for "mouseover" events. Wait 100ms before triggering load.
93 if (on === "mouseover") {
94 window.setTimeout(load(node), 100);
95 } else {
96 load(node)() // all other events trigger immediately.
97 }
98 }
99 })
100
101 // Special handling for certain built-in event handlers
102 switch (on) {
103
104 case "mouseover":
105 // Mirror `touchstart` events (fires immediately)
106 node.addEventListener("touchstart", load(node));
107
108 // WHhen the mouse leaves, immediately disable the preload
109 node.addEventListener("mouseout", function(evt) {
110 if ((evt.target === node) && (node.preloadState === "READY")) {
111 node.preloadState = "PAUSE";
112 }
113 })
114 break;
115
116 case "mousedown":
117 // Mirror `touchstart` events (fires immediately)
118 node.addEventListener("touchstart", load(node));
119 break;
120 }
121
122 // Mark the node as ready to run.
123 node.preloadState = "PAUSE";
124 htmx.trigger(node, "preload:init") // This event can be used to load content immediately.
125 }
126
127 // Search for all child nodes that have a "preload" attribute
128 event.target.querySelectorAll("[preload]").forEach(function(node) {
129
130 // Initialize the node with the "preload" attribute
131 init(node)
132
133 // Initialize all child elements that are anchors or have `hx-get` (use with care)
134 node.querySelectorAll("a,[hx-get],[data-hx-get").forEach(init)
135 })
136 }
137})