2024-05-14 00:10:31 +02:00
|
|
|
// Copyright 2023, Command Line Inc.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
import * as React from "react";
|
|
|
|
import * as jotai from "jotai";
|
2024-05-14 08:45:41 +02:00
|
|
|
import { Block } from "@/app/block/block";
|
|
|
|
import { atoms } from "@/store/global";
|
2024-05-14 00:10:31 +02:00
|
|
|
|
|
|
|
import "./tab.less";
|
|
|
|
|
2024-05-14 08:45:41 +02:00
|
|
|
const TabContent = ({ tabId }: { tabId: string }) => {
|
|
|
|
const tabs = jotai.useAtomValue(atoms.tabsAtom);
|
|
|
|
const tabData = tabs.find((tab) => tab.tabid === tabId);
|
|
|
|
if (!tabData) {
|
|
|
|
return <div className="tabcontent">Tab not found</div>;
|
|
|
|
}
|
2024-05-14 00:10:31 +02:00
|
|
|
return (
|
|
|
|
<div className="tabcontent">
|
2024-05-24 23:08:24 +02:00
|
|
|
{tabData.blockids.map((blockId: string) => {
|
2024-05-14 08:45:41 +02:00
|
|
|
return (
|
|
|
|
<div key={blockId} className="block-container">
|
2024-05-16 22:22:46 +02:00
|
|
|
<Block tabId={tabId} blockId={blockId} />
|
2024-05-14 08:45:41 +02:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
})}
|
2024-05-14 00:10:31 +02:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export { TabContent };
|