From 4b0fbf6672015c2cc1a076d7c9cd2062c3899386 Mon Sep 17 00:00:00 2001 From: ketan mehta Date: Fri, 25 Oct 2024 01:49:44 +0530 Subject: [PATCH] commented NavigationBar and NavigationBarItem because we are not using them now. --- .../components/NavigationBar.tsx | 58 +++++++-------- .../components/NavigationBarItem.tsx | 72 +++++++++---------- 2 files changed, 65 insertions(+), 65 deletions(-) diff --git a/packages/twenty-front/src/modules/ui/navigation/navigation-bar/components/NavigationBar.tsx b/packages/twenty-front/src/modules/ui/navigation/navigation-bar/components/NavigationBar.tsx index 5474ff1cc63d..b0d96c15dbfa 100644 --- a/packages/twenty-front/src/modules/ui/navigation/navigation-bar/components/NavigationBar.tsx +++ b/packages/twenty-front/src/modules/ui/navigation/navigation-bar/components/NavigationBar.tsx @@ -1,33 +1,33 @@ -import styled from '@emotion/styled'; -import { IconComponent } from 'twenty-ui'; +// import styled from '@emotion/styled'; +// import { IconComponent } from 'twenty-ui'; -import { NavigationBarItem } from './NavigationBarItem'; +// import { NavigationBarItem } from './NavigationBarItem'; -const StyledContainer = styled.div` - display: flex; - gap: ${({ theme }) => theme.spacing(4)}; - justify-content: center; - padding: ${({ theme }) => theme.spacing(3)}; - z-index: 1001; -`; +// const StyledContainer = styled.div` +// display: flex; +// gap: ${({ theme }) => theme.spacing(4)}; +// justify-content: center; +// padding: ${({ theme }) => theme.spacing(3)}; +// z-index: 1001; +// `; -type NavigationBarProps = { - activeItemName: string; - items: { name: string; Icon: IconComponent; onClick: () => void }[]; -}; +// type NavigationBarProps = { +// activeItemName: string; +// items: { name: string; Icon: IconComponent; onClick: () => void }[]; +// }; -export const NavigationBar = ({ - activeItemName, - items, -}: NavigationBarProps) => ( - - {items.map(({ Icon, name, onClick }) => ( - - ))} - -); +// export const NavigationBar = ({ +// activeItemName, +// items, +// }: NavigationBarProps) => ( +// +// {items.map(({ Icon, name, onClick }) => ( +// +// ))} +// +// ); diff --git a/packages/twenty-front/src/modules/ui/navigation/navigation-bar/components/NavigationBarItem.tsx b/packages/twenty-front/src/modules/ui/navigation/navigation-bar/components/NavigationBarItem.tsx index e7259d905371..dd9768a0c774 100644 --- a/packages/twenty-front/src/modules/ui/navigation/navigation-bar/components/NavigationBarItem.tsx +++ b/packages/twenty-front/src/modules/ui/navigation/navigation-bar/components/NavigationBarItem.tsx @@ -1,41 +1,41 @@ -import { useTheme } from '@emotion/react'; -import styled from '@emotion/styled'; -import { IconComponent } from 'twenty-ui'; +// import { useTheme } from '@emotion/react'; +// import styled from '@emotion/styled'; +// import { IconComponent } from 'twenty-ui'; -const StyledIconButton = styled.div<{ isActive?: boolean }>` - align-items: center; - background-color: ${({ isActive, theme }) => - isActive ? theme.background.transparent.light : 'none'}; - border-radius: ${({ theme }) => theme.spacing(1)}; - cursor: pointer; - display: flex; - height: ${({ theme }) => theme.spacing(10)}; - justify-content: center; - transition: background-color ${({ theme }) => theme.animation.duration.fast}s - ease; - width: ${({ theme }) => theme.spacing(10)}; +// const StyledIconButton = styled.div<{ isActive?: boolean }>` +// align-items: center; +// background-color: ${({ isActive, theme }) => +// isActive ? theme.background.transparent.light : 'none'}; +// border-radius: ${({ theme }) => theme.spacing(1)}; +// cursor: pointer; +// display: flex; +// height: ${({ theme }) => theme.spacing(10)}; +// justify-content: center; +// transition: background-color ${({ theme }) => theme.animation.duration.fast}s +// ease; +// width: ${({ theme }) => theme.spacing(10)}; - &:hover { - background-color: ${({ theme }) => theme.background.transparent.light}; - } -`; +// &:hover { +// background-color: ${({ theme }) => theme.background.transparent.light}; +// } +// `; -type NavigationBarItemProps = { - Icon: IconComponent; - isActive: boolean; - onClick: () => void; -}; +// type NavigationBarItemProps = { +// Icon: IconComponent; +// isActive: boolean; +// onClick: () => void; +// }; -export const NavigationBarItem = ({ - Icon, - isActive, - onClick, -}: NavigationBarItemProps) => { - const theme = useTheme(); +// export const NavigationBarItem = ({ +// Icon, +// isActive, +// onClick, +// }: NavigationBarItemProps) => { +// const theme = useTheme(); - return ( - - - - ); -}; +// return ( +// +// +// +// ); +// };