TabPanel
Try resizing the page to see how the tabs adjust. If the text in a tab is too long, it will be truncated with an ellipsis
. You can also place the TabPanel.Item
within other components.
INFO
Make sure to provide a tooltip with full text for tabs with text truncated with an ellipsis
.
TabPanel item with addons
You can add icons, badges, and counters as addons to the left or right of the text in the item.
import React from 'react';
import TabPanel from '@semcore/ui/tab-panel';
import FacebookM from '@semcore/ui/icon/Facebook/m';
import InstagramM from '@semcore/ui/icon/Instagram/m';
import TwitterM from '@semcore/ui/icon/Twitter/m';
import Badge from '@semcore/ui/badge';
const Demo = () => {
const [value, setValue] = React.useState(1);
return (
<>
<TabPanel value={value} onChange={setValue} aria-label='Social network reports'>
<TabPanel.Item
value={1}
aria-controls={value === 1 ? 'tab-panel-4-1' : undefined}
id='tab-label-4-1'
>
<TabPanel.Item.Addon>
<FacebookM />
</TabPanel.Item.Addon>
<TabPanel.Item.Text>Facebook</TabPanel.Item.Text>
</TabPanel.Item>
<TabPanel.Item
value={2}
aria-controls={value === 2 ? 'tab-panel-4-2' : undefined}
id='tab-label-4-2'
>
<TabPanel.Item.Addon>
<InstagramM />
</TabPanel.Item.Addon>
<TabPanel.Item.Text>Instagram</TabPanel.Item.Text>
<TabPanel.Item.Addon>
<Badge bg='green-400'>new</Badge>
</TabPanel.Item.Addon>
</TabPanel.Item>
<TabPanel.Item
value={3}
aria-controls={value === 3 ? 'tab-panel-4-3' : undefined}
id='tab-label-4-3'
>
<TabPanel.Item.Addon>
<TwitterM />
</TabPanel.Item.Addon>
<TabPanel.Item.Text>Twitter</TabPanel.Item.Text>
</TabPanel.Item>
</TabPanel>
{
[
<div id='tab-panel-4-1' role='tabpanel' aria-labelledby='tab-label-4-1' tabIndex={-1}>
<h3>Facebook</h3>
<p>
It's where your aunt's cat has more followers than you, and your high school nemesis
still thinks they're relevant.
</p>
</div>,
<div
id='tab-panel-4-2'
aria-hidden='true'
role='tabpanel'
aria-labelledby='tab-label-4-2'
tabIndex={-1}
>
<h3>Instagram</h3>
<p>
It's where people spend hours perfecting their avocado toast just for a 'like', and
your explore page thinks you need therapy based on your search history.
</p>
</div>,
<div
id='tab-panel-4-3'
aria-hidden='true'
role='tabpanel'
aria-labelledby='tab-label-4-3'
tabIndex={-1}
>
<h3>Twitter</h3>
<p>
It's where 280 characters can start a revolution or a feud over pineapple on pizza,
and your timeline is a mix of breaking news and cat memes.
</p>
</div>,
][value - 1]
}
</>
);
};
export default Demo;
Disabled TabPanel item
Use disabled
property to make <TabPanel.Item />
disabled. Always add Tooltip
to explain why this item is disabled.
import React from 'react';
import TabPanel from '@semcore/ui/tab-panel';
import Tooltip from '@semcore/ui/tooltip';
const Demo = () => {
const [value, setValue] = React.useState(1);
return (
<>
<TabPanel value={value} onChange={setValue} aria-label='Social network reports'>
<TabPanel.Item
value={1}
aria-controls={value === 1 ? 'tab-panel-2-1' : undefined}
id='tab-label-2-1'
>
<TabPanel.Item.Text>Normal tab</TabPanel.Item.Text>
</TabPanel.Item>
<Tooltip
title='Do not forget to add short text to explain why this item is disabled.'
placement='top'
role='tab'
>
<TabPanel.Item value={2} disabled>
<TabPanel.Item.Text>Disabled tab</TabPanel.Item.Text>
</TabPanel.Item>
</Tooltip>
</TabPanel>
{
[
<div id='tab-panel-2-1' role='tabpanel' aria-labelledby='tab-label-2-1' tabIndex={-1}>
<h3>Normal tab</h3>
<p>
Here you can place your content, or just leave it blank for that avant-garde
minimalist vibe.
</p>
</div>,
][value - 1]
}
</>
);
};
export default Demo;
Manual tab activation
By default, tabs are switched manually when selected.
import React from 'react';
import TabPanel from '@semcore/ui/tab-panel';
const Demo = () => {
const [value, setValue] = React.useState(1);
return (
<>
<TabPanel onChange={setValue} value={value} aria-label='Animals'>
<TabPanel.Item
value={1}
aria-controls={value === 1 ? 'tab-panel-3-1' : undefined}
id='tab-label-3-1'
>
Cats
</TabPanel.Item>
<TabPanel.Item
value={2}
aria-controls={value === 2 ? 'tab-panel-3-2' : undefined}
id='tab-label-3-2'
>
Dogs
</TabPanel.Item>
<TabPanel.Item
value={3}
aria-controls={value === 3 ? 'tab-panel-3-3' : undefined}
id='tab-label-3-3'
>
Birds
</TabPanel.Item>
</TabPanel>
{
[
<div id='tab-panel-3-1' role='tabpanel' aria-labelledby='tab-label-3-1' tabIndex={-1}>
<h3>Cats</h3>
<p>
They are the only creatures that can simultaneously demand your attention and ignore
you completely, while plotting world domination from the top of the refrigerator.
</p>
</div>,
<div
id='tab-panel-3-2'
aria-hidden='true'
role='tabpanel'
aria-labelledby='tab-label-3-2'
tabIndex={-1}
>
<h3>Dogs</h3>
<p>
They are the eternal optimists who believe that every stranger is a potential friend
and every walk is an adventure, even if it's just to the mailbox.
</p>
</div>,
<div
id='tab-panel-3-3'
aria-hidden='true'
role='tabpanel'
aria-labelledby='tab-label-3-3'
tabIndex={-1}
>
<h3>Birds</h3>
<p>
They are the tiny dinosaurs who sing like they're auditioning for Broadway and have a
knack for leaving 'gifts' on freshly washed cars.
</p>
</div>,
][value - 1]
}
</>
);
};
export default Demo;
Automatic tab activation
You can set behavior='auto'
on TabPanel to change the tab activation method to automatic.
import React from 'react';
import TabPanel from '@semcore/ui/tab-panel';
const Demo = () => {
const [value, setValue] = React.useState(1);
return (
<>
<TabPanel onChange={setValue} value={value} behavior='auto' aria-label='Animals'>
<TabPanel.Item
value={1}
aria-controls={value === 1 ? 'tab-panel-1-1' : undefined}
id='tab-label-1-1'
>
Cats
</TabPanel.Item>
<TabPanel.Item
value={2}
aria-controls={value === 2 ? 'tab-panel-1-2' : undefined}
id='tab-label-1-2'
>
Dogs
</TabPanel.Item>
<TabPanel.Item
value={3}
aria-controls={value === 3 ? 'tab-panel-1-3' : undefined}
id='tab-label-1-3'
>
Birds
</TabPanel.Item>
</TabPanel>
{
[
<div id='tab-panel-1-1' role='tabpanel' aria-labelledby='tab-label-1-1' tabIndex={-1}>
<h3>Cats</h3>
<p>
They are the only creatures that can simultaneously demand your attention and ignore
you completely, while plotting world domination from the top of the refrigerator.
</p>
</div>,
<div
id='tab-panel-1-2'
aria-hidden='true'
role='tabpanel'
aria-labelledby='tab-label-1-2'
tabIndex={-1}
>
<h3>Dogs</h3>
<p>
They are the eternal optimists who believe that every stranger is a potential friend
and every walk is an adventure, even if it's just to the mailbox.
</p>
</div>,
<div
id='tab-panel-1-3'
aria-hidden='true'
role='tabpanel'
aria-labelledby='tab-label-1-3'
tabIndex={-1}
>
<h3>Birds</h3>
<p>
They are the tiny dinosaurs who sing like they're auditioning for Broadway and have a
knack for leaving 'gifts' on freshly washed cars.
</p>
</div>,
][value - 1]
}
</>
);
};
export default Demo;
Custom indents
Since the TabPanel component doesn't have default margins at the edges, to make it fill the entire width of its parent block (which may have its own margins), you can set the desired padding
and margin
for the TabPanel component like this:
<Box p={5}>
<TabPanel px={5} mx="-20px" />
</Box>