Skip to content

Commit

Permalink
Added Side Panel compact header (#6560)
Browse files Browse the repository at this point in the history
Fixes issue #6487 
Added a new prop, `isInRightDrawer` to both the `ShowPageSummaryCard`
and `ShowPageRightContainer` components. This prop allows for different
styles to be applied based on the specific needs of the drawer..

Rather than creating a new component, I opted to add this prop to avoid
code duplication. However, if you would prefer a separate component for
this functionality, I'm happy to make that adjustment—please just let me
know!

Also added `box-sizing: border-box` to `ShowPageSummaryCard` to make
sure it aligns with figma designs.



https://github.com/user-attachments/assets/38e8d85e-55d5-471e-884a-11c67467f56f
  • Loading branch information
ehconitin authored Aug 7, 2024
1 parent f2aa67b commit 8408cf6
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 26 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ChangeEvent, useRef, useState } from 'react';
import styled from '@emotion/styled';
import { ChangeEvent, useRef, useState } from 'react';
import { IconPlus } from 'twenty-ui';

import { SkeletonLoader } from '@/activities/components/SkeletonLoader';
Expand Down Expand Up @@ -33,7 +33,6 @@ const StyledFileInput = styled.input`

const StyledDropZoneContainer = styled.div`
height: 100%;
padding: ${({ theme }) => theme.spacing(6)};
`;

export const Attachments = ({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ export const RecordShowContainer = ({

const summaryCard = isDefined(recordFromStore) ? (
<ShowPageSummaryCard
isMobile={isMobile}
id={objectRecordId}
logoOrAvatar={recordIdentifier?.avatarUrl ?? ''}
avatarPlaceholder={recordIdentifier?.name ?? ''}
Expand Down Expand Up @@ -301,7 +302,7 @@ export const RecordShowContainer = ({

return (
<ShowPageContainer>
<ShowPageLeftContainer forceMobile={isInRightDrawer}>
<ShowPageLeftContainer forceMobile={isMobile}>
{!isMobile && summaryCard}
{!isMobile && fieldsBox}
</ShowPageLeftContainer>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ReactElement } from 'react';
import styled from '@emotion/styled';
import { ReactElement } from 'react';

import { useIsMobile } from '@/ui/utilities/responsive/hooks/useIsMobile';
import { ScrollWrapper } from '@/ui/utilities/scroll/components/ScrollWrapper';
Expand All @@ -16,6 +16,7 @@ const StyledInnerContainer = styled.div`
display: flex;
flex-direction: ${() => (useIsMobile() ? 'column' : 'row')};
width: 100%;
height: 100%;
`;

const StyledScrollWrapper = styled(ScrollWrapper)`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ const StyledShowPageRightContainer = styled.div<{ isMobile: boolean }>`
flex-direction: column;
justify-content: start;
width: 100%;
height: 100%;
`;

const StyledTabListContainer = styled.div`
Expand All @@ -40,6 +41,19 @@ const StyledTabListContainer = styled.div`
height: 40px;
`;

const StyledGreyBox = styled.div<{ isInRightDrawer: boolean }>`
background: ${({ theme, isInRightDrawer }) =>
isInRightDrawer ? theme.background.secondary : ''};
border: ${({ isInRightDrawer, theme }) =>
isInRightDrawer ? `1px solid ${theme.border.color.medium}` : ''};
border-radius: ${({ isInRightDrawer, theme }) =>
isInRightDrawer ? theme.border.radius.md : ''};
height: ${({ isInRightDrawer }) => (isInRightDrawer ? 'auto' : '100%')};
margin: ${({ isInRightDrawer, theme }) =>
isInRightDrawer ? theme.spacing(4) : ''};
`;

export const TAB_LIST_COMPONENT_ID = 'show-page-right-tab-list';

type ShowPageRightContainerProps = {
Expand Down Expand Up @@ -151,7 +165,6 @@ export const ShowPageRightContainer = ({
hide: !shouldDisplayCalendarTab,
},
];

const renderActiveTabContent = () => {
switch (activeTabId) {
case 'timeline':
Expand All @@ -173,7 +186,12 @@ export const ShowPageRightContainer = ({
)
);
case 'fields':
return fieldsBox;
return (
<StyledGreyBox isInRightDrawer={isInRightDrawer}>
{fieldsBox}
</StyledGreyBox>
);

case 'tasks':
return <ObjectTasks targetableObject={targetableObject} />;
case 'notes':
Expand All @@ -188,17 +206,16 @@ export const ShowPageRightContainer = ({
return <></>;
}
};

return (
<StyledShowPageRightContainer isMobile={isMobile}>
{summaryCard}
<StyledTabListContainer>
<TabList
loading={loading}
tabListId={`${TAB_LIST_COMPONENT_ID}-${isInRightDrawer}`}
tabs={tabs}
/>
</StyledTabListContainer>
{summaryCard}
{renderActiveTabContent()}
</StyledShowPageRightContainer>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,40 +20,45 @@ type ShowPageSummaryCardProps = {
onUploadPicture?: (file: File) => void;
title: ReactNode;
loading: boolean;
isMobile?: boolean;
};

export const StyledShowPageSummaryCard = styled.div`
export const StyledShowPageSummaryCard = styled.div<{
isMobile: boolean;
}>`
align-items: center;
display: flex;
flex-direction: column;
gap: ${({ theme }) => theme.spacing(3)};
justify-content: center;
flex-direction: ${({ isMobile }) => (isMobile ? 'row' : 'column')};
gap: ${({ theme, isMobile }) =>
isMobile ? theme.spacing(2) : theme.spacing(3)};
justify-content: ${({ isMobile }) => (isMobile ? 'flex-start' : 'center')};
padding: ${({ theme }) => theme.spacing(4)};
border-bottom: 1px solid ${({ theme }) => theme.border.color.light};
height: 127px;
height: ${({ isMobile }) => (isMobile ? '77px' : '127px')};
box-sizing: border-box;
`;

const StyledInfoContainer = styled.div`
align-items: center;
const StyledInfoContainer = styled.div<{ isMobile: boolean }>`
align-items: ${({ isMobile }) => (isMobile ? 'flex-start' : 'center')};
display: flex;
flex-direction: column;
gap: ${({ theme }) => theme.spacing(1)};
width: 100%;
`;

const StyledDate = styled.div`
const StyledDate = styled.div<{ isMobile: boolean }>`
color: ${({ theme }) => theme.font.color.tertiary};
cursor: pointer;
padding-left: ${({ theme, isMobile }) => (isMobile ? theme.spacing(2) : 0)};
`;

const StyledTitle = styled.div`
const StyledTitle = styled.div<{ isMobile: boolean }>`
color: ${({ theme }) => theme.font.color.primary};
display: flex;
font-size: ${({ theme }) => theme.font.size.xl};
font-weight: ${({ theme }) => theme.font.weight.semiBold};
justify-content: center;
width: 100%;
justify-content: ${({ isMobile }) => (isMobile ? 'flex-start' : 'center')};
width: ${({ isMobile }) => (isMobile ? '' : '100%')};
`;

const StyledAvatarWrapper = styled.div`
Expand Down Expand Up @@ -97,13 +102,13 @@ export const ShowPageSummaryCard = ({
onUploadPicture,
title,
loading,
isMobile = false,
}: ShowPageSummaryCardProps) => {
const beautifiedCreatedAt =
date !== '' ? beautifyPastDateRelativeToNow(date) : '';
const exactCreatedAt = date !== '' ? beautifyExactDateTime(date) : '';
const dateElementId = `date-id-${uuidV4()}`;
const inputFileRef = useRef<HTMLInputElement>(null);

const onFileChange = (e: ChangeEvent<HTMLInputElement>) => {
if (isDefined(e.target.files)) onUploadPicture?.(e.target.files[0]);
};
Expand All @@ -114,13 +119,13 @@ export const ShowPageSummaryCard = ({

if (loading)
return (
<StyledShowPageSummaryCard>
<StyledShowPageSummaryCard isMobile={isMobile}>
<StyledShowPageSummaryCardSkeletonLoader />
</StyledShowPageSummaryCard>
);

return (
<StyledShowPageSummaryCard>
<StyledShowPageSummaryCard isMobile={isMobile}>
<StyledAvatarWrapper>
<Avatar
avatarUrl={logoOrAvatar}
Expand All @@ -136,10 +141,10 @@ export const ShowPageSummaryCard = ({
type="file"
/>
</StyledAvatarWrapper>
<StyledInfoContainer>
<StyledTitle>{title}</StyledTitle>
<StyledInfoContainer isMobile={isMobile}>
<StyledTitle isMobile={isMobile}>{title}</StyledTitle>
{beautifiedCreatedAt && (
<StyledDate id={dateElementId}>
<StyledDate isMobile={isMobile} id={dateElementId}>
Added {beautifiedCreatedAt}
</StyledDate>
)}
Expand Down

0 comments on commit 8408cf6

Please sign in to comment.