A search engine for MMP's eASLRB.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
asl-rulebook2/asl_rulebook2/webapp/static/TabbedPages.js

84 lines
2.2 KiB

import { gMainApp, gEventBus } from "./MainApp.js" ;
// --------------------------------------------------------------------
gMainApp.component( "tabbed-pages", {
data: function() { return {
tabs: [],
activeTabId: null,
} ; },
template: `
<div class="tabbed-pages">
<slot />
<div class="tab-strip">
<div v-for="tab in tabs"
:key=tab :data-tabid=tab.tabId
:class="{'active': tab.tabId == activeTabId}" class="tab"
@click=onTabClicked
>
{{tab.caption}}
</div>
</div>
</div>`,
created() {
gEventBus.on( "activate-tab", (sel, tabId) => {
// check if this event is for us
let $sel = $( sel ) ;
if ( sel.substring( 0, 1 ) == "#" )
sel = sel.substring( 1 ) ;
else
console.log( "INTERNAL ERROR: Tabs should be activated via a selector ID." ) ;
if ( this.$el.getAttribute("id") != sel && ! $.contains( $sel[0], this.$el ) )
return ;
// yup - activate the specified tab
this.activateTab( tabId ) ;
} ) ;
},
mounted() {
// start with the first tab activated
if ( this.tabs.length > 0 )
this.activateTab( this.tabs[0].tabId ) ;
},
methods: {
onTabClicked( evt ) {
// activate the selected tab
this.activateTab( evt.target.dataset.tabid ) ;
},
activateTab( tabId ) {
// activate the specified tab
this.activeTabId = tabId ;
$( this.$el ).find( ".tabbed-page" ).each( function() {
$(this).css( "display", ($(this).data("tabid") == tabId) ? "block" : "none" ) ;
} ) ;
},
},
} ) ;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
gMainApp.component( "tabbed-page", {
props: [ "tabId", "caption", "isActive" ],
template: `
<div :data-tabid=tabId v-show=isActive class="tabbed-page" >
<div class="wrapper"> <slot /> </div>
</div>`,
created() {
// add ourself to the parent's list of child tabs
this.$parent.tabs.push( {
tabId: this.tabId, caption: this.caption
} ) ;
},
} ) ;