This is where Tab header and tab content is defined, expectation is Tabs_content has component name, and under tabpanel it should traverse array tabs_content and display component < AddQueueCard /> and call the component shown in image 3
JavaScript
x
2
1
let tabs_data= ['Add Queue','Edit Queue','Remove Queue'];
2
let tabs_content= ['<AddQueueCard />','EditQueueCard','C content' ];
JavaScript
1
31
31
1
<div class="card-body">
2
<div class="tab-content">
3
<div class="tab-pane active">
4
<div>
5
<div id="test">
6
<Tabs>
7
<ul>
8
<TabList>
9
10
{tabs_data.map(i => (
11
<Tab>{i}</Tab>
12
))}`***enter code here***`
13
</TabList>
14
</ul>
15
{tabs_content.map(i => (
16
17
<TabPanel>
18
{i} {/* here I want to call cards dynamically like <AddQueueCard /> <EditQueueCard> if clicked on 1st or 2nd tab respectively. How do I do that */}
19
</TabPanel>
20
21
))}
22
</Tabs>
23
</div>
24
</div>
25
</div>
26
<div class="tab-pane">
27
28
</div>
29
30
</div>
31
</div>
Advertisement
Answer
Just pass Component itself , but its better to have a separate component dictionary and loop through that for rendering dynamic component, don’t mix component and other things in one array, if you did you have to find a way to detect that item is react component and then render it.
JavaScript
1
29
29
1
let tabs_data= ['Add Queue','Edit Queue','Remove Queue'];
2
let tabs_content= [AddQueueCard, EditQueueCard, 'C content'];
3
4
<div class="card-body">
5
<div class="tab-content">
6
<div class="tab-pane active">
7
<div>
8
<div id="test">
9
<Tabs>
10
<ul>
11
<TabList>
12
{tabs_data.map((i) => (
13
<Tab>{i}</Tab>
14
))}
15
</TabList>
16
</ul>
17
{tabs_content.map((Item) => {
18
return <TabPanel>
19
{typeof Item === "function" ? <Item /> : Item}
20
</TabPanel>
21
})}
22
</Tabs>
23
</div>
24
</div>
25
</div>
26
<div class="tab-pane"></div>
27
</div>
28
</div>;
29