ef499b6d47
## Summary - Re-enable one lint rule that was temporarily disabled during the ESLint-to-Oxlint migration: - **`twenty/sort-css-properties-alphabetically`** in twenty-front — 578 violations auto-fixed across 390 files - Document why **`typescript/consistent-type-imports`** cannot be auto-fixed in twenty-server: NestJS relies on `emitDecoratorMetadata` for DI, so converting constructor parameter imports to `import type` erases them at compile time and breaks dependency injection at runtime - Right-size CI runners, reducing 8-core usage from 18 jobs to 3: | Change | Jobs | Rationale | |--------|------|-----------| | **Keep 8-core** | `ci-merge-queue/e2e-test`, `ci-front/front-sb-build`, `ci-front/front-build` | Heavy builds needing max CPU + memory (10GB NODE_OPTIONS, full Storybook webpack bundling) | | **8-core → 4-core** | `ci-server` (build, lint-typecheck, validation, test, integration-test), `ci-front/front-sb-test`, `ci-zapier/server-setup`, `ci-sdk/sdk-e2e-test` | Already sharded into 10-12 parallel instances, I/O-bound (DB/Redis), or moderate single builds | | **8-core → 2-core** | `ci-emails/emails-test` | Trivially lightweight (build + curl health check) | | **Removed** | `ci-front/front-chromatic-deployment` | Dead code — permanently disabled with `if: false` | - Fix merge queue CI issues: - **Concurrency**: Use `merge_group.base_ref` instead of unique merge group ref so new queue entries cancel previous runs - **Required status checks**: Add `merge_group` trigger to all 6 required CI workflows (front, server, shared, website, docker-compose, sdk) with `changed-files-check` auto-skipped for merge_group events — status check jobs auto-pass without re-running full CI - **Build caching**: Add Nx build cache restore/save to E2E test job with fallback to `main` branch cache for faster frontend and server builds ## Test plan - [ ] CI passes on this PR (verifies lint rule auto-fix works) - [ ] Verify 4-core runner jobs complete within their 30-minute timeouts - [ ] Verify merge queue status checks auto-pass (ci-front-status-check, ci-server-status-check, etc.) - [ ] Verify merge queue E2E concurrency cancels previous runs when a new PR enters the queue
138 lines
4.7 KiB
TypeScript
138 lines
4.7 KiB
TypeScript
import { styled } from '@linaria/react';
|
|
|
|
import { ActivityList } from '@/activities/components/ActivityList';
|
|
import { CustomResolverFetchMoreLoader } from '@/activities/components/CustomResolverFetchMoreLoader';
|
|
import { SkeletonLoader } from '@/activities/components/SkeletonLoader';
|
|
import { EmailThreadPreview } from '@/activities/emails/components/EmailThreadPreview';
|
|
import { TIMELINE_THREADS_DEFAULT_PAGE_SIZE } from '@/activities/emails/constants/Messaging';
|
|
import { getTimelineThreadsFromCompanyId } from '@/activities/emails/graphql/queries/getTimelineThreadsFromCompanyId';
|
|
import { getTimelineThreadsFromOpportunityId } from '@/activities/emails/graphql/queries/getTimelineThreadsFromOpportunityId';
|
|
import { getTimelineThreadsFromPersonId } from '@/activities/emails/graphql/queries/getTimelineThreadsFromPersonId';
|
|
import { useCustomResolver } from '@/activities/hooks/useCustomResolver';
|
|
import { CoreObjectNameSingular } from 'twenty-shared/types';
|
|
import { useTargetRecord } from '@/ui/layout/contexts/useTargetRecord';
|
|
import { Trans } from '@lingui/react/macro';
|
|
import { H1Title, H1TitleFontColor } from 'twenty-ui/display';
|
|
import {
|
|
AnimatedPlaceholder,
|
|
AnimatedPlaceholderEmptyContainer,
|
|
AnimatedPlaceholderEmptySubTitle,
|
|
AnimatedPlaceholderEmptyTextContainer,
|
|
AnimatedPlaceholderEmptyTitle,
|
|
EMPTY_PLACEHOLDER_TRANSITION_PROPS,
|
|
Section,
|
|
} from 'twenty-ui/layout';
|
|
import { themeCssVariables } from 'twenty-ui/theme-constants';
|
|
import {
|
|
type TimelineThread,
|
|
type TimelineThreadsWithTotal,
|
|
} from '~/generated/graphql';
|
|
|
|
const StyledContainer = styled.div`
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: ${themeCssVariables.spacing[6]};
|
|
height: 100%;
|
|
overflow: auto;
|
|
padding: ${themeCssVariables.spacing[6]} ${themeCssVariables.spacing[6]}
|
|
${themeCssVariables.spacing[2]};
|
|
`;
|
|
|
|
const StyledH1TitleWrapper = styled.div`
|
|
> h2 {
|
|
display: flex;
|
|
gap: ${themeCssVariables.spacing[2]};
|
|
}
|
|
`;
|
|
|
|
const StyledEmailCount = styled.span`
|
|
color: ${themeCssVariables.font.color.light};
|
|
`;
|
|
|
|
export const EmailsCard = () => {
|
|
const targetRecord = useTargetRecord();
|
|
|
|
const [query, queryName] =
|
|
targetRecord.targetObjectNameSingular === CoreObjectNameSingular.Person
|
|
? [getTimelineThreadsFromPersonId, 'getTimelineThreadsFromPersonId']
|
|
: targetRecord.targetObjectNameSingular === CoreObjectNameSingular.Company
|
|
? [getTimelineThreadsFromCompanyId, 'getTimelineThreadsFromCompanyId']
|
|
: [
|
|
getTimelineThreadsFromOpportunityId,
|
|
'getTimelineThreadsFromOpportunityId',
|
|
];
|
|
|
|
const { data, firstQueryLoading, isFetchingMore, fetchMoreRecords } =
|
|
useCustomResolver<TimelineThreadsWithTotal>(
|
|
query,
|
|
queryName,
|
|
'timelineThreads',
|
|
targetRecord,
|
|
TIMELINE_THREADS_DEFAULT_PAGE_SIZE,
|
|
);
|
|
|
|
const { totalNumberOfThreads, timelineThreads } = data?.[queryName] ?? {};
|
|
const hasMoreTimelineThreads =
|
|
timelineThreads && totalNumberOfThreads
|
|
? timelineThreads?.length < totalNumberOfThreads
|
|
: false;
|
|
|
|
const handleLastRowVisible = async () => {
|
|
if (hasMoreTimelineThreads) {
|
|
await fetchMoreRecords();
|
|
}
|
|
};
|
|
|
|
if (firstQueryLoading) {
|
|
return <SkeletonLoader />;
|
|
}
|
|
|
|
if (!firstQueryLoading && !timelineThreads?.length) {
|
|
return (
|
|
<AnimatedPlaceholderEmptyContainer
|
|
// oxlint-disable-next-line react/jsx-props-no-spreading
|
|
{...EMPTY_PLACEHOLDER_TRANSITION_PROPS}
|
|
>
|
|
<AnimatedPlaceholder type="emptyInbox" />
|
|
<AnimatedPlaceholderEmptyTextContainer>
|
|
<AnimatedPlaceholderEmptyTitle>
|
|
<Trans>Empty Inbox</Trans>
|
|
</AnimatedPlaceholderEmptyTitle>
|
|
<AnimatedPlaceholderEmptySubTitle>
|
|
<Trans>No email exchange has occurred with this record yet.</Trans>
|
|
</AnimatedPlaceholderEmptySubTitle>
|
|
</AnimatedPlaceholderEmptyTextContainer>
|
|
</AnimatedPlaceholderEmptyContainer>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<StyledContainer>
|
|
<Section>
|
|
<StyledH1TitleWrapper>
|
|
<H1Title
|
|
title={
|
|
<>
|
|
<Trans>Inbox</Trans>{' '}
|
|
<StyledEmailCount>{totalNumberOfThreads}</StyledEmailCount>
|
|
</>
|
|
}
|
|
fontColor={H1TitleFontColor.Primary}
|
|
/>
|
|
</StyledH1TitleWrapper>
|
|
{!firstQueryLoading && (
|
|
<ActivityList>
|
|
{timelineThreads?.map((thread: TimelineThread) => (
|
|
<EmailThreadPreview key={thread.id} thread={thread} />
|
|
))}
|
|
</ActivityList>
|
|
)}
|
|
<CustomResolverFetchMoreLoader
|
|
loading={isFetchingMore || firstQueryLoading}
|
|
onLastRowVisible={handleLastRowVisible}
|
|
/>
|
|
</Section>
|
|
</StyledContainer>
|
|
);
|
|
};
|