Tabs
Add tab item
Add a new tab item to an existing tab bar. The content of the the new tab item contains a component section. This works with tab bar's which have routing and also static tab bars. If the tab bar has routing then the route for the tab item will be generated automatically.
Usage:
import { ui } from '@shopware-ag/meteor-admin-sdk';
ui.tabs('sw-product-detail' /* The positionId of the tab bar*/).addTabItem({
label: 'Example tab',
componentSectionId: 'example-product-detail-tab-content'
})
Parameters
Name | Required | Default | Description |
---|---|---|---|
label | true | The label of the tab bar item | |
componentSectionId | true | The Id for for the component section in the tab content |
Example
import { ui, location } from '@shopware-ag/meteor-admin-sdk';
// For general commands
if (location.is(location.MAIN_HIDDEN)) {
// Add tab bar item
ui.tabs('sw-product-detail').addTabItem({
label: 'Example',
componentSectionId: 'my-awesome-app-example-product-view'
})
// Add component to the new created section
ui.componentSection.add({
component: 'card',
positionId: 'my-awesome-app-example-product-view',
props: {
title: 'Hello in the new tab',
locationId: 'my-example-product-view-tab-card'
}
})
}
// Render custom view of the component
if (location.is('my-example-product-view-tab-card')) {
document.body.innerHTML = '
<h1>Hello in the example card</h1>
<button onClick="sw.notification.dispatch({ title: 'Foo', message: 'bar' })">
Throw notification
</button>
';
}