htmx.org 2.0.0-alpha1 → 2.0.0-beta1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,17 @@
1
+ htmx.defineExtension('morphdom-swap', {
2
+ isInlineSwap: function(swapStyle) {
3
+ return swapStyle === 'morphdom';
4
+ },
5
+ handleSwap: function (swapStyle, target, fragment) {
6
+ if (swapStyle === 'morphdom') {
7
+ if (fragment.nodeType === Node.DOCUMENT_FRAGMENT_NODE) {
8
+ // IE11 doesn't support DocumentFragment.firstElementChild
9
+ morphdom(target, fragment.firstElementChild || fragment.firstChild);
10
+ return [target];
11
+ } else {
12
+ morphdom(target, fragment.outerHTML);
13
+ return [target];
14
+ }
15
+ }
16
+ }
17
+ });
@@ -0,0 +1,45 @@
1
+ (function () {
2
+
3
+ /** @type {import("../htmx").HtmxInternalApi} */
4
+ var api;
5
+
6
+ htmx.defineExtension('multi-swap', {
7
+ init: function (apiRef) {
8
+ api = apiRef;
9
+ },
10
+ isInlineSwap: function (swapStyle) {
11
+ return swapStyle.indexOf('multi:') === 0;
12
+ },
13
+ handleSwap: function (swapStyle, target, fragment, settleInfo) {
14
+ if (swapStyle.indexOf('multi:') === 0) {
15
+ var selectorToSwapStyle = {};
16
+ var elements = swapStyle.replace(/^multi\s*:\s*/, '').split(/\s*,\s*/);
17
+
18
+ elements.map(function (element) {
19
+ var split = element.split(/\s*:\s*/);
20
+ var elementSelector = split[0];
21
+ var elementSwapStyle = typeof (split[1]) !== "undefined" ? split[1] : "innerHTML";
22
+
23
+ if (elementSelector.charAt(0) !== '#') {
24
+ console.error("HTMX multi-swap: unsupported selector '" + elementSelector + "'. Only ID selectors starting with '#' are supported.");
25
+ return;
26
+ }
27
+
28
+ selectorToSwapStyle[elementSelector] = elementSwapStyle;
29
+ });
30
+
31
+ for (var selector in selectorToSwapStyle) {
32
+ var swapStyle = selectorToSwapStyle[selector];
33
+ var elementToSwap = fragment.querySelector(selector);
34
+ if (elementToSwap) {
35
+ api.oobSwap(swapStyle, elementToSwap, settleInfo);
36
+ } else {
37
+ console.warn("HTMX multi-swap: selector '" + selector + "' not found in source content.");
38
+ }
39
+ }
40
+
41
+ return true;
42
+ }
43
+ }
44
+ });
45
+ })();
@@ -0,0 +1,60 @@
1
+ (function(undefined){
2
+ 'use strict';
3
+
4
+ // Save a reference to the global object (window in the browser)
5
+ var _root = this;
6
+
7
+ function dependsOn(pathSpec, url) {
8
+ if (pathSpec === "ignore") {
9
+ return false;
10
+ }
11
+ var dependencyPath = pathSpec.split("/");
12
+ var urlPath = url.split("/");
13
+ for (var i = 0; i < urlPath.length; i++) {
14
+ var dependencyElement = dependencyPath.shift();
15
+ var pathElement = urlPath[i];
16
+ if (dependencyElement !== pathElement && dependencyElement !== "*") {
17
+ return false;
18
+ }
19
+ if (dependencyPath.length === 0 || (dependencyPath.length === 1 && dependencyPath[0] === "")) {
20
+ return true;
21
+ }
22
+ }
23
+ return false;
24
+ }
25
+
26
+ function refreshPath(path) {
27
+ var eltsWithDeps = htmx.findAll("[path-deps]");
28
+ for (var i = 0; i < eltsWithDeps.length; i++) {
29
+ var elt = eltsWithDeps[i];
30
+ if (dependsOn(elt.getAttribute('path-deps'), path)) {
31
+ htmx.trigger(elt, "path-deps");
32
+ }
33
+ }
34
+ }
35
+
36
+ htmx.defineExtension('path-deps', {
37
+ onEvent: function (name, evt) {
38
+ if (name === "htmx:beforeOnLoad") {
39
+ var config = evt.detail.requestConfig;
40
+ // mutating call
41
+ if (config.verb !== "get" && evt.target.getAttribute('path-deps') !== 'ignore') {
42
+ refreshPath(config.path);
43
+ }
44
+ }
45
+ }
46
+ });
47
+
48
+ /**
49
+ * ********************
50
+ * Expose functionality
51
+ * ********************
52
+ */
53
+
54
+ _root.PathDeps = {
55
+ refresh: function(path) {
56
+ refreshPath(path);
57
+ }
58
+ };
59
+
60
+ }).call(this);
@@ -0,0 +1,147 @@
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 details
5
+ htmx.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
+ if (!node.preloadAlways) {
30
+ node.preloadState = "DONE"
31
+ }
32
+
33
+ if (attr(node, "preload-images") == "true") {
34
+ document.createElement("div").innerHTML = html // create and populate a node to load linked resources, too.
35
+ }
36
+ }
37
+
38
+ return function() {
39
+
40
+ // If this value has already been loaded, then do not try again.
41
+ if (node.preloadState !== "READY") {
42
+ return;
43
+ }
44
+
45
+ // Special handling for HX-GET - use built-in htmx.ajax function
46
+ // so that headers match other htmx requests, then set
47
+ // node.preloadState = TRUE so that requests are not duplicated
48
+ // in the future
49
+ var hxGet = node.getAttribute("hx-get") || node.getAttribute("data-hx-get")
50
+ if (hxGet) {
51
+ htmx.ajax("GET", hxGet, {
52
+ source: node,
53
+ handler:function(elt, info) {
54
+ done(info.xhr.responseText);
55
+ }
56
+ });
57
+ return;
58
+ }
59
+
60
+ // Otherwise, perform a standard xhr request, then set
61
+ // node.preloadState = TRUE so that requests are not duplicated
62
+ // in the future.
63
+ if (node.getAttribute("href")) {
64
+ var r = new XMLHttpRequest();
65
+ r.open("GET", node.getAttribute("href"));
66
+ r.onload = function() {done(r.responseText);};
67
+ r.send();
68
+ return;
69
+ }
70
+ }
71
+ }
72
+
73
+ // This function processes a specific node and sets up event handlers.
74
+ // We'll search for nodes and use it below.
75
+ var init = function(node) {
76
+
77
+ // If this node DOES NOT include a "GET" transaction, then there's nothing to do here.
78
+ if (node.getAttribute("href") + node.getAttribute("hx-get") + node.getAttribute("data-hx-get") == "") {
79
+ return;
80
+ }
81
+
82
+ // Guarantee that we only initialize each node once.
83
+ if (node.preloadState !== undefined) {
84
+ return;
85
+ }
86
+
87
+ // Get event name from config.
88
+ var on = attr(node, "preload") || "mousedown"
89
+ const always = on.indexOf("always") !== -1
90
+ if (always) {
91
+ on = on.replace('always', '').trim()
92
+ }
93
+
94
+ // FALL THROUGH to here means we need to add an EventListener
95
+
96
+ // Apply the listener to the node
97
+ node.addEventListener(on, function(evt) {
98
+ if (node.preloadState === "PAUSE") { // Only add one event listener
99
+ node.preloadState = "READY"; // Required for the `load` function to trigger
100
+
101
+ // Special handling for "mouseover" events. Wait 100ms before triggering load.
102
+ if (on === "mouseover") {
103
+ window.setTimeout(load(node), 100);
104
+ } else {
105
+ load(node)() // all other events trigger immediately.
106
+ }
107
+ }
108
+ })
109
+
110
+ // Special handling for certain built-in event handlers
111
+ switch (on) {
112
+
113
+ case "mouseover":
114
+ // Mirror `touchstart` events (fires immediately)
115
+ node.addEventListener("touchstart", load(node));
116
+
117
+ // WHhen the mouse leaves, immediately disable the preload
118
+ node.addEventListener("mouseout", function(evt) {
119
+ if ((evt.target === node) && (node.preloadState === "READY")) {
120
+ node.preloadState = "PAUSE";
121
+ }
122
+ })
123
+ break;
124
+
125
+ case "mousedown":
126
+ // Mirror `touchstart` events (fires immediately)
127
+ node.addEventListener("touchstart", load(node));
128
+ break;
129
+ }
130
+
131
+ // Mark the node as ready to run.
132
+ node.preloadState = "PAUSE";
133
+ node.preloadAlways = always;
134
+ htmx.trigger(node, "preload:init") // This event can be used to load content immediately.
135
+ }
136
+
137
+ // Search for all child nodes that have a "preload" attribute
138
+ event.target.querySelectorAll("[preload]").forEach(function(node) {
139
+
140
+ // Initialize the node with the "preload" attribute
141
+ init(node)
142
+
143
+ // Initialize all child elements that are anchors or have `hx-get` (use with care)
144
+ node.querySelectorAll("a,[hx-get],[data-hx-get]").forEach(init)
145
+ })
146
+ }
147
+ })
@@ -0,0 +1,10 @@
1
+ htmx.defineExtension('rails-method', {
2
+ onEvent: function (name, evt) {
3
+ if (name === "configRequest.htmx") {
4
+ var methodOverride = evt.detail.headers['X-HTTP-Method-Override'];
5
+ if (methodOverride) {
6
+ evt.detail.parameters['_method'] = methodOverride;
7
+ }
8
+ }
9
+ }
10
+ });
@@ -0,0 +1,27 @@
1
+ (function(){
2
+ function maybeRemoveMe(elt) {
3
+ var timing = elt.getAttribute("remove-me") || elt.getAttribute("data-remove-me");
4
+ if (timing) {
5
+ setTimeout(function () {
6
+ elt.parentElement.removeChild(elt);
7
+ }, htmx.parseInterval(timing));
8
+ }
9
+ }
10
+
11
+ htmx.defineExtension('remove-me', {
12
+ onEvent: function (name, evt) {
13
+ if (name === "htmx:afterProcessNode") {
14
+ var elt = evt.detail.elt;
15
+ if (elt.getAttribute) {
16
+ maybeRemoveMe(elt);
17
+ if (elt.querySelectorAll) {
18
+ var children = elt.querySelectorAll("[remove-me], [data-remove-me]");
19
+ for (var i = 0; i < children.length; i++) {
20
+ maybeRemoveMe(children[i]);
21
+ }
22
+ }
23
+ }
24
+ }
25
+ }
26
+ });
27
+ })();
@@ -0,0 +1,130 @@
1
+ (function(){
2
+
3
+ /** @type {import("../htmx").HtmxInternalApi} */
4
+ var api;
5
+
6
+ var attrPrefix = 'hx-target-';
7
+
8
+ // IE11 doesn't support string.startsWith
9
+ function startsWith(str, prefix) {
10
+ return str.substring(0, prefix.length) === prefix
11
+ }
12
+
13
+ /**
14
+ * @param {HTMLElement} elt
15
+ * @param {number} respCode
16
+ * @returns {HTMLElement | null}
17
+ */
18
+ function getRespCodeTarget(elt, respCodeNumber) {
19
+ if (!elt || !respCodeNumber) return null;
20
+
21
+ var respCode = respCodeNumber.toString();
22
+
23
+ // '*' is the original syntax, as the obvious character for a wildcard.
24
+ // The 'x' alternative was added for maximum compatibility with HTML
25
+ // templating engines, due to ambiguity around which characters are
26
+ // supported in HTML attributes.
27
+ //
28
+ // Start with the most specific possible attribute and generalize from
29
+ // there.
30
+ var attrPossibilities = [
31
+ respCode,
32
+
33
+ respCode.substr(0, 2) + '*',
34
+ respCode.substr(0, 2) + 'x',
35
+
36
+ respCode.substr(0, 1) + '*',
37
+ respCode.substr(0, 1) + 'x',
38
+ respCode.substr(0, 1) + '**',
39
+ respCode.substr(0, 1) + 'xx',
40
+
41
+ '*',
42
+ 'x',
43
+ '***',
44
+ 'xxx',
45
+ ];
46
+ if (startsWith(respCode, '4') || startsWith(respCode, '5')) {
47
+ attrPossibilities.push('error');
48
+ }
49
+
50
+ for (var i = 0; i < attrPossibilities.length; i++) {
51
+ var attr = attrPrefix + attrPossibilities[i];
52
+ var attrValue = api.getClosestAttributeValue(elt, attr);
53
+ if (attrValue) {
54
+ if (attrValue === "this") {
55
+ return api.findThisElement(elt, attr);
56
+ } else {
57
+ return api.querySelectorExt(elt, attrValue);
58
+ }
59
+ }
60
+ }
61
+
62
+ return null;
63
+ }
64
+
65
+ /** @param {Event} evt */
66
+ function handleErrorFlag(evt) {
67
+ if (evt.detail.isError) {
68
+ if (htmx.config.responseTargetUnsetsError) {
69
+ evt.detail.isError = false;
70
+ }
71
+ } else if (htmx.config.responseTargetSetsError) {
72
+ evt.detail.isError = true;
73
+ }
74
+ }
75
+
76
+ htmx.defineExtension('response-targets', {
77
+
78
+ /** @param {import("../htmx").HtmxInternalApi} apiRef */
79
+ init: function (apiRef) {
80
+ api = apiRef;
81
+
82
+ if (htmx.config.responseTargetUnsetsError === undefined) {
83
+ htmx.config.responseTargetUnsetsError = true;
84
+ }
85
+ if (htmx.config.responseTargetSetsError === undefined) {
86
+ htmx.config.responseTargetSetsError = false;
87
+ }
88
+ if (htmx.config.responseTargetPrefersExisting === undefined) {
89
+ htmx.config.responseTargetPrefersExisting = false;
90
+ }
91
+ if (htmx.config.responseTargetPrefersRetargetHeader === undefined) {
92
+ htmx.config.responseTargetPrefersRetargetHeader = true;
93
+ }
94
+ },
95
+
96
+ /**
97
+ * @param {string} name
98
+ * @param {Event} evt
99
+ */
100
+ onEvent: function (name, evt) {
101
+ if (name === "htmx:beforeSwap" &&
102
+ evt.detail.xhr &&
103
+ evt.detail.xhr.status !== 200) {
104
+ if (evt.detail.target) {
105
+ if (htmx.config.responseTargetPrefersExisting) {
106
+ evt.detail.shouldSwap = true;
107
+ handleErrorFlag(evt);
108
+ return true;
109
+ }
110
+ if (htmx.config.responseTargetPrefersRetargetHeader &&
111
+ evt.detail.xhr.getAllResponseHeaders().match(/HX-Retarget:/i)) {
112
+ evt.detail.shouldSwap = true;
113
+ handleErrorFlag(evt);
114
+ return true;
115
+ }
116
+ }
117
+ if (!evt.detail.requestConfig) {
118
+ return true;
119
+ }
120
+ var target = getRespCodeTarget(evt.detail.requestConfig.elt, evt.detail.xhr.status);
121
+ if (target) {
122
+ handleErrorFlag(evt);
123
+ evt.detail.shouldSwap = true;
124
+ evt.detail.target = target;
125
+ }
126
+ return true;
127
+ }
128
+ }
129
+ });
130
+ })();
@@ -0,0 +1,15 @@
1
+ htmx.defineExtension('restored', {
2
+ onEvent : function(name, evt) {
3
+ if (name === 'htmx:restored'){
4
+ var restoredElts = evt.detail.document.querySelectorAll(
5
+ "[hx-trigger='restored'],[data-hx-trigger='restored']"
6
+ );
7
+ // need a better way to do this, would prefer to just trigger from evt.detail.elt
8
+ var foundElt = Array.from(restoredElts).find(
9
+ (x) => (x.outerHTML === evt.detail.elt.outerHTML)
10
+ );
11
+ var restoredEvent = evt.detail.triggerEvent(foundElt, 'restored');
12
+ }
13
+ return;
14
+ }
15
+ })