f2fa958f20
Introduces a progress indicator for command menu items (both engine commands and front components). When a command is running, the menu item now displays a percentage alongside the loader spinner instead of just a spinner. - Added `commandMenuItemProgressFamilyState` to track per-item progress and `CommandListItemLoader` to render it - Exposed `updateProgress` in the twenty-sdk public API so front components can report execution progress back to the host - Wired progress reporting into `ExportMultipleRecordsCommand` as the first consumer, showing CSV export progress - Progress state is cleaned up on unmount for both engine commands and headless front components - Refactor
108 lines
3.5 KiB
TypeScript
108 lines
3.5 KiB
TypeScript
import { FrontComponentRendererProvider } from '@/front-components/components/FrontComponentRendererProvider';
|
|
import { useFrontComponentExecutionContext } from '@/front-components/hooks/useFrontComponentExecutionContext';
|
|
import { useOnFrontComponentUpdated } from '@/front-components/hooks/useOnFrontComponentUpdated';
|
|
import { frontComponentApplicationTokenPairComponentState } from '@/front-components/states/frontComponentApplicationTokenPairComponentState';
|
|
import { getFrontComponentUrl } from '@/front-components/utils/getFrontComponentUrl';
|
|
import { useSnackBar } from '@/ui/feedback/snack-bar-manager/hooks/useSnackBar';
|
|
import { useSetAtomComponentState } from '@/ui/utilities/state/jotai/hooks/useSetAtomComponentState';
|
|
import { t } from '@lingui/core/macro';
|
|
import { useCallback, useContext, useEffect } from 'react';
|
|
import { FrontComponentRenderer as SharedFrontComponentRenderer } from 'twenty-sdk/front-component-renderer';
|
|
import { isDefined } from 'twenty-shared/utils';
|
|
import { ThemeContext } from 'twenty-ui/theme-constants';
|
|
import { REACT_APP_SERVER_BASE_URL } from '~/config';
|
|
import { useQuery } from '@apollo/client/react';
|
|
import { FindOneFrontComponentDocument } from '~/generated-metadata/graphql';
|
|
|
|
type FrontComponentRendererProps = {
|
|
frontComponentId: string;
|
|
commandMenuItemId?: string;
|
|
};
|
|
|
|
export const FrontComponentRenderer = ({
|
|
frontComponentId,
|
|
commandMenuItemId,
|
|
}: FrontComponentRendererProps) => {
|
|
const { colorScheme } = useContext(ThemeContext);
|
|
const { enqueueErrorSnackBar } = useSnackBar();
|
|
|
|
const setFrontComponentApplicationTokenPair = useSetAtomComponentState(
|
|
frontComponentApplicationTokenPairComponentState,
|
|
frontComponentId,
|
|
);
|
|
|
|
const { executionContext, frontComponentHostCommunicationApi } =
|
|
useFrontComponentExecutionContext({ frontComponentId, commandMenuItemId });
|
|
|
|
const handleError = useCallback(
|
|
(error?: Error) => {
|
|
if (!isDefined(error)) {
|
|
return;
|
|
}
|
|
|
|
const errorMessage = error.message;
|
|
|
|
enqueueErrorSnackBar({
|
|
message: t`Failed to load front component: ${errorMessage}`,
|
|
});
|
|
},
|
|
[enqueueErrorSnackBar],
|
|
);
|
|
|
|
const { data, loading, error } = useQuery(FindOneFrontComponentDocument, {
|
|
variables: { id: frontComponentId },
|
|
});
|
|
|
|
useEffect(() => {
|
|
if (error) {
|
|
handleError(error);
|
|
}
|
|
}, [error, handleError]);
|
|
|
|
useEffect(() => {
|
|
if (data) {
|
|
const tokenPair = data.frontComponent?.applicationTokenPair;
|
|
|
|
if (isDefined(tokenPair)) {
|
|
setFrontComponentApplicationTokenPair(tokenPair);
|
|
}
|
|
}
|
|
}, [data, setFrontComponentApplicationTokenPair]);
|
|
|
|
useOnFrontComponentUpdated({
|
|
frontComponentId,
|
|
});
|
|
|
|
const componentUrl = getFrontComponentUrl({
|
|
frontComponentId,
|
|
checksum: data?.frontComponent?.builtComponentChecksum,
|
|
});
|
|
|
|
const applicationTokenPair =
|
|
data?.frontComponent?.applicationTokenPair ?? null;
|
|
|
|
if (
|
|
loading ||
|
|
!isDefined(data?.frontComponent) ||
|
|
!isDefined(applicationTokenPair)
|
|
) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<FrontComponentRendererProvider frontComponentId={frontComponentId}>
|
|
<SharedFrontComponentRenderer
|
|
colorScheme={colorScheme}
|
|
componentUrl={componentUrl}
|
|
applicationAccessToken={
|
|
applicationTokenPair.applicationAccessToken.token
|
|
}
|
|
apiUrl={REACT_APP_SERVER_BASE_URL}
|
|
executionContext={executionContext}
|
|
frontComponentHostCommunicationApi={frontComponentHostCommunicationApi}
|
|
onError={handleError}
|
|
/>
|
|
</FrontComponentRendererProvider>
|
|
);
|
|
};
|