aurelia-plugins-tabs v2.6.2
aurelia-plugins-tabs
A tabs plugin for Aurelia.
Installation
Webpack/Aurelia CLI
npm install aurelia-plugins-tabs --saveWhen using Aurelia CLI add the following dependency to aurelia.json as described in the documentation:
{
"name": "aurelia-plugins-tabs",
"path": "../node_modules/aurelia-plugins-tabs/dist/amd",
"main": "aurelia-plugins-tabs"
}Add node_modules/babel-polyfill/dist/polyfill.min.js to the prepend list in aurelia.json. Do not forgot to add babel-polyfill to the dependencies in package.json.
For projects using Webpack, please add babel-polyfill to your webpack.config.js as documented by babeljs.io.
JSPM
jspm install aurelia-plugins-tabsBower
bower install aurelia-plugins-tabsConfiguration
Inside of your main.js or main.ts file simply load the plugin inside of the configure method using .plugin().
import {PLATFORM} from 'aurelia-framework';
export async function configure(aurelia) {
aurelia.use
.standardConfiguration()
.developmentLogging();
aurelia.use
.plugin(PLATFORM.moduleName('aurelia-plugins-tabs'));
await aurelia.start();
aurelia.setRoot('app');
}Usage
This plugin is comprised of multiple components to be used together.
Tabs
The tabs component is where your clickable tabs are generated. It has a required bindable attribute tabs and two optional attributes class and translate.
- The
tabsattribute expects an array of one or more objects which contains at least anidproperty and alabelproperty.- The
idproperty is used to identify which pane this tab will open. - The
labelproperty is the value displayed. - The optional property
activeallows us to specify if this tab is the default active tab. - The optional property
disabledallows us to disable a certain tab. - The optional property
tooltipshows a tooltip beside the specified tab. For more info see the Bootstrap documentation.
- The
- The
classattribute is copied from the custom element to the innerULelement. Useful if you want to use something else than tabs, like pills or inline. For more info see the Bootstrap documentation. - If the
translateattribute is set totruethe value provided inlabelwill be used as a translation key according toaurelia-i18n. Thetranslateattribute isfalseby default.
<aup-tabs class="nav-tabs" tabs.bind="myTabs" translate="true"></aup-tabs>export class App {
constructor() {
this.myTabs = [
{ id: 'tab1', label: 'tabs.tab1', active: true },
{ id: 'tab2', label: 'tabs.tab2', disabled: true, tooltip: 'An explanation why it\'s disabled!' },
{ id: 'tab3', label: 'tabs.tab3' }
];
}
}When a tab is clicked, the event aurelia-plugins:tabs:tab-clicked:{tab-id} will be published, where {tab-id} is the corresponding id as defined in the tabs array. The payload is the click event.
Tab Content
Once you have your tabs setup, you will want to create your tab content which wraps tab panes.
<aup-tab-content></aup-tab-content>Tab Pane
Inside the tab content, create a tab pane for each defined tab. A tab pane has a required value tab which matches the id of a tab in the tabs array.
<aup-tab-pane tab="tab1">
<h1>Tab 1</h1>
<p>Lorem ipsum...</p>
</aup-tab-pane>Composition
A tab pane can dynamically render a ViewModel by placing the compose element inside it.
<aup-tab-pane tab="tab1"><compose view="./helloWorld.html"></compose></aup-tab-pane>Full Example
<aup-tabs class="nav-tabs" tabs.bind="myTabs" translate="true"></aup-tabs>
<aup-tab-content>
<aup-tab-pane tab="tab1">
<h1>Tab 1</h1>
<p>Lorem ipsum...</p>
</aup-tab-pane>
<aup-tab-pane tab="tab2"><compose view="./helloWorld.html"></compose></aup-tab-pane>
<aup-tab-pane tab="tab3"><compose view-model="./helloWorld" model.bind="myModel"></compose></aup-tab-pane>
</aup-tab-content>export class App {
constructor() {
this.myModel = { target: 'Hello World' };
this.myTabs = [
{ id: 'tab1', label: 'tabs.tab1', active: true },
{ id: 'tab2', label: 'tabs.tab2', disabled: true, tooltip: 'An explanation why it\'s disabled!' },
{ id: 'tab3', label: 'tabs.tab3' }
];
}
}