import React from 'react' import ListItem from '@mui/material/ListItem' import ListItemText from '@mui/material/ListItemText' import ListItemIcon from '@mui/material/ListItemIcon' import { LmCoreComponents } from '@CONFIG' import { ButtonStoryblok } from '../../../typings/generated/components-schema' import LmIcon from '../../icon/LmIcon' import { getLinkAttrs, LinkType } from '../../../utils/linkHandler' import { useAppContext } from '@context/AppContext' type DrawerButtonProps = { content: ButtonStoryblok } export function DrawerButton({ content }: DrawerButtonProps): JSX.Element { const { slug } = useAppContext() const buttonProps = { text: content.label || content.name, graphic: content.icon?.name } const cachedUrl = content.link?.cached_url const btnProps: any = cachedUrl ? { ...getLinkAttrs(content.link as LinkType, { openExternal: !!content.open_external }), activeClassName: 'Mui-selected', // naked: true, component: LmCoreComponents.lm_link_render } : {} const isActiveRoute = cachedUrl ? slug?.includes(`/${cachedUrl}`) ?? false : false return ( {buttonProps.graphic && ( )} ) }