-
-
Save CalyCherkaoui/d9a5a1884349c982b51fd4cf4e2bcef8 to your computer and use it in GitHub Desktop.
Revisions
-
ryenski revised this gist
Feb 9, 2018 . No changes.There are no files selected for viewing
-
ryenski created this gist
Feb 8, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ div data-controller='tabs' data-tabs-index='1' .tabs.is-boxed.is-marginless ul li data-target='tabs.tab' a data={action: "tabs#change"} Tab 1 li data-target='tabs.tab' a data={action: "tabs#change"} Tab 2 .tab.box data={target: 'tabs.tabPanel'} Tab panel 1 .tab.box data={target: 'tabs.tabPanel'} Tab panel 2 This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,43 @@ import { Controller } from "stimulus" export default class extends Controller { static targets = [ "tab", "tabPanel" ] initialize() { this.showTab() } change(e){ this.index = this.tabTargets.indexOf(e.target.parentNode) this.showTab(this.index) } showTab() { this.tabPanelTargets.forEach((el, i) => { if(i==this.index){ el.classList.remove('is-hidden') } else { el.classList.add('is-hidden') } }) this.tabTargets.forEach((el, i) => { if(i==this.index){ el.classList.add('is-active') } else { el.classList.remove('is-active') } }) } get index() { return parseInt(this.data.get('index')) } set index(value) { this.data.set("index", value) this.showTab() } }