mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-08-15 15:00:58 +00:00
54 lines
1.1 KiB
TypeScript
54 lines
1.1 KiB
TypeScript
import styles from './HomeSidebar.module.css';
|
|
import { I18nLabel } from '@/app/infra/entities/common';
|
|
|
|
export interface ISidebarChildVO {
|
|
id: string;
|
|
icon: React.ReactNode;
|
|
name: string;
|
|
route: string;
|
|
description: string;
|
|
helpLink: I18nLabel;
|
|
}
|
|
|
|
export class SidebarChildVO {
|
|
id: string;
|
|
icon: React.ReactNode;
|
|
name: string;
|
|
route: string;
|
|
description: string;
|
|
helpLink: I18nLabel;
|
|
|
|
constructor(props: ISidebarChildVO) {
|
|
this.id = props.id;
|
|
this.icon = props.icon;
|
|
this.name = props.name;
|
|
this.route = props.route;
|
|
this.description = props.description;
|
|
this.helpLink = props.helpLink;
|
|
}
|
|
}
|
|
|
|
export function SidebarChild({
|
|
icon,
|
|
name,
|
|
isSelected,
|
|
onClick,
|
|
}: {
|
|
icon: React.ReactNode;
|
|
name: string;
|
|
isSelected: boolean;
|
|
onClick: () => void;
|
|
}) {
|
|
return (
|
|
<div
|
|
className={`${styles.sidebarChildContainer} ${
|
|
isSelected ? styles.sidebarSelected : styles.sidebarUnselected
|
|
}`}
|
|
onClick={onClick}
|
|
>
|
|
<div className={`${styles.sidebarChildIcon}`}>{icon}</div>
|
|
<span className={`${styles.sidebarChildName}`}>{name}</span>
|
|
</div>
|
|
);
|
|
}
|