Skip to content

Instantly share code, notes, and snippets.

@alanjohnson
Last active January 21, 2025 18:29
Show Gist options
  • Save alanjohnson/7d44ffa5503377a1ad9428e5880423a8 to your computer and use it in GitHub Desktop.
Save alanjohnson/7d44ffa5503377a1ad9428e5880423a8 to your computer and use it in GitHub Desktop.
Sidebar Component Example
import React, { ReactNode } from 'react';
import Button from '@/components/Button';
import { icons } from '@/images/_icons';
import { SidebarOverlay, SidebarContainer, SidebarContent } from '@/css/_styledComponents';
type SidebarProps = {
children: ReactNode, $sidebarOpen:boolean, $sidebarWidth:string, callback:() => void
}
function Sidebar({ children, $sidebarOpen = false, $sidebarWidth = '50%', callback }: SidebarProps) {
const closeSidebar = () => {
callback();
}
const outsideClick = (e: React.MouseEvent<HTMLElement>) => {
const element = e.target as HTMLElement;
if (element.id === 'sidebarOverlay') {
callback();
}
};
return (
<SidebarOverlay id="sidebarOverlay" $isOpen={$sidebarOpen} onClick={outsideClick}>
<SidebarContainer $isOpen={$sidebarOpen} $sidebarWidth={$sidebarWidth}>
<Button
aria-label="Close Sidebar"
className="close"
type={undefined}
$icon={icons.close}
callback={closeSidebar}
title="close"
$iconSize={32}
style={{
position: 'absolute',
left: $sidebarOpen ? '-40px' : '0',
transition: '0.4s all ease',
background: 'var(--color-sidebar-bg)',
borderRadius: '50% 0 0 50%'
}}
/>
<SidebarContent id="sidebarContent" $isOpen={$sidebarOpen}>
{children}
</SidebarContent>
</SidebarContainer>
</SidebarOverlay>
)
}
export default Sidebar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment