mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-19 13:19:39 +02:00
44 lines
1.1 KiB
JavaScript
44 lines
1.1 KiB
JavaScript
import { Controller } from "@hotwired/stimulus";
|
|
|
|
// Connects to data-controller="tabs"
|
|
export default class extends Controller {
|
|
static classes = ["active"];
|
|
static targets = ["btn", "tab"];
|
|
static values = { defaultTab: String };
|
|
|
|
connect() {
|
|
this.updateClasses(this.defaultTabValue);
|
|
document.addEventListener(
|
|
"turbo:load",
|
|
this.updateClasses.bind(this, this.defaultTabValue)
|
|
);
|
|
}
|
|
|
|
disconnect() {
|
|
document.removeEventListener(
|
|
"turbo:load",
|
|
this.updateClasses.bind(this, this.defaultTabValue)
|
|
);
|
|
}
|
|
|
|
select(event) {
|
|
this.updateClasses(event.target.dataset.id);
|
|
}
|
|
|
|
updateClasses(selectedId) {
|
|
this.btnTargets.forEach((btn) => btn.classList.remove(this.activeClass));
|
|
this.tabTargets.forEach((tab) => tab.classList.add("hidden"));
|
|
|
|
this.btnTargets.forEach((btn) => {
|
|
if (btn.dataset.id === selectedId) {
|
|
btn.classList.add(this.activeClass);
|
|
}
|
|
});
|
|
|
|
this.tabTargets.forEach((tab) => {
|
|
if (tab.id === selectedId) {
|
|
tab.classList.remove("hidden");
|
|
}
|
|
});
|
|
}
|
|
}
|