mirror of
https://github.com/bigskysoftware/htmx.git
synced 2025-10-02 15:25:26 +00:00

* Update disable-element extension Allow multiple elements to be selected in the query * Remove unnecessary comments https://github.com/bigskysoftware/htmx/pull/1650#discussion_r1278773982 * Change tab indentations to spaces
91 lines
3.2 KiB
JavaScript
91 lines
3.2 KiB
JavaScript
describe("disable-element extension", function() {
|
|
beforeEach(function () {
|
|
this.server = makeServer();
|
|
clearWorkArea();
|
|
});
|
|
afterEach(function () {
|
|
this.server.restore();
|
|
clearWorkArea();
|
|
});
|
|
|
|
it('disables the triggering element during htmx request', function () {
|
|
// GIVEN:
|
|
// - A button triggering an htmx request with disable-element extension
|
|
// - The button is enabled
|
|
this.server.respondWith("GET", "/test", function (xhr) {
|
|
xhr.respond(200, {})
|
|
});
|
|
var btn = make('<button hx-get="/test" hx-ext="disable-element" hx-disable-element="self">Click Me!</button>')
|
|
btn.disabled.should.equal(false);
|
|
|
|
// WHEN clicking
|
|
btn.click();
|
|
|
|
// THEN it's disabled
|
|
btn.disabled.should.equal(true);
|
|
|
|
// WHEN server response has arrived
|
|
this.server.respond();
|
|
|
|
// THEN it's re-enabled
|
|
btn.disabled.should.equal(false);
|
|
});
|
|
|
|
it('disables the designated element during htmx request', function () {
|
|
// GIVEN:
|
|
// - A button triggering an htmx request with disable-element extension
|
|
// - Another button that needs to be disabled during the htmx request
|
|
// - Both buttons are enabled
|
|
this.server.respondWith("GET", "/test", function (xhr) {
|
|
xhr.respond(200, {})
|
|
});
|
|
var btn = make('<button hx-get="/test" hx-ext="disable-element" hx-disable-element="#should-be-disabled">Click Me!</button>')
|
|
var btn2 = make('<button id="should-be-disabled">Should be disabled</button>')
|
|
btn.disabled.should.equal(false);
|
|
btn2.disabled.should.equal(false);
|
|
|
|
// WHEN clicking
|
|
btn.click();
|
|
|
|
// THEN it's not disabled, but the other one is
|
|
btn.disabled.should.equal(false);
|
|
btn2.disabled.should.equal(true);
|
|
|
|
// WHEN server response has arrived
|
|
this.server.respond();
|
|
|
|
// THEN both buttons are back enabled
|
|
btn.disabled.should.equal(false);
|
|
btn2.disabled.should.equal(false);
|
|
});
|
|
|
|
it('disables multiple elements during htmx request', function () {
|
|
this.server.respondWith("GET", "/test", function (xhr) {
|
|
xhr.respond(200, {})
|
|
});
|
|
var btn = make('<button class="should-be-disabled" hx-get="/test" hx-ext="disable-element" hx-disable-element=".should-be-disabled">Click Me!</button>')
|
|
var btn2 = make('<button class="should-be-disabled">Should be disabled</button>')
|
|
var btn3 = make('<button>Should NOT be disabled</button>')
|
|
btn.disabled.should.equal(false);
|
|
btn2.disabled.should.equal(false);
|
|
btn3.disabled.should.equal(false);
|
|
|
|
// WHEN clicking
|
|
btn.click();
|
|
|
|
// THEN the first two are disabled, but the last one isn't
|
|
btn.disabled.should.equal(true);
|
|
btn2.disabled.should.equal(true);
|
|
btn3.disabled.should.equal(false);
|
|
|
|
// WHEN server response has arrived
|
|
this.server.respond();
|
|
|
|
// THEN all buttons are back enabled
|
|
btn.disabled.should.equal(false);
|
|
btn2.disabled.should.equal(false);
|
|
btn3.disabled.should.equal(false);
|
|
});
|
|
|
|
});
|