Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: integrate react-query for execution data fetching #123

Merged
merged 6 commits into from
Nov 19, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,8 @@
"react-intersection-observer": "^8.25.1",
"react-json-tree": "^0.11.0",
"react-loading-skeleton": "^1.1.2",
"react-query": "^3.2.0-beta",
"react-query-devtools": "^3.0.0-beta",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"react-test-renderer": "^16.9.0",
Expand Down
51 changes: 31 additions & 20 deletions src/components/App/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ import { CssBaseline } from '@material-ui/core';
import { ThemeProvider } from '@material-ui/styles';
import { env } from 'common/env';
import { debug, debugPrefix } from 'common/log';
import { QueryAuthorizationObserver } from 'components/common/QueryAuthorizationObserver';
import { queryClient } from 'components/common/queryCache';
import { APIContext, useAPIState } from 'components/data/apiContext';
import { LoginExpiredHandler } from 'components/Errors/LoginExpiredHandler';
import { SystemStatusBanner } from 'components/Notifications/SystemStatusBanner';
Expand All @@ -11,6 +13,8 @@ import * as React from 'react';
import { Helmet } from 'react-helmet';
import { hot } from 'react-hot-loader';
import { SkeletonTheme } from 'react-loading-skeleton';
import { QueryClientProvider } from 'react-query';
import { ReactQueryDevtools } from 'react-query-devtools';
import { Router } from 'react-router-dom';
import { ApplicationRouter } from 'routes/ApplicationRouter';
import { history } from 'routes/history';
Expand All @@ -25,26 +29,33 @@ export const AppComponent: React.StatelessComponent<{}> = () => {

return (
<ThemeProvider theme={muiTheme}>
<APIContext.Provider value={apiState}>
<SkeletonTheme
color={skeletonColor}
highlightColor={skeletonHighlightColor}
>
<CssBaseline />
<Helmet>
<title>Flyte Console</title>
<meta name="viewport" content="width=device-width" />
</Helmet>
<Router history={history}>
<ErrorBoundary fixed={true}>
<NavBarRouter />
<ApplicationRouter />
<LoginExpiredHandler />
</ErrorBoundary>
</Router>
<SystemStatusBanner />
</SkeletonTheme>
</APIContext.Provider>
<QueryClientProvider client={queryClient}>
<APIContext.Provider value={apiState}>
<QueryAuthorizationObserver />
<SkeletonTheme
color={skeletonColor}
highlightColor={skeletonHighlightColor}
>
<CssBaseline />
<Helmet>
<title>Flyte Console</title>
<meta
name="viewport"
content="width=device-width"
/>
</Helmet>
<Router history={history}>
<ErrorBoundary fixed={true}>
<NavBarRouter />
<ApplicationRouter />
<LoginExpiredHandler />
</ErrorBoundary>
</Router>
<SystemStatusBanner />
</SkeletonTheme>
</APIContext.Provider>
<ReactQueryDevtools initialIsOpen={false} />
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should this only be enabled in dev?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

According to the docs, the import is a no-op in production, so this is safe to leave in.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I will try building prod mode locally to verify, and if that's not the case, I'll add logic in the next PR to conditionally render it.

</QueryClientProvider>
</ThemeProvider>
);
};
Expand Down
91 changes: 50 additions & 41 deletions src/components/Executions/ExecutionDetails/ExecutionDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@ import { Collapse, IconButton } from '@material-ui/core';
import { makeStyles, Theme } from '@material-ui/core/styles';
import ExpandMore from '@material-ui/icons/ExpandMore';
import * as classnames from 'classnames';
import { WaitForData, withRouteParams } from 'components/common';
import { RefreshConfig, useDataRefresher } from 'components/hooks';
import { withRouteParams } from 'components/common';
import { WaitForQuery } from 'components/common/WaitForQuery';
import { RefreshConfig } from 'components/hooks';
import { Execution } from 'models';
import * as React from 'react';
import { executionRefreshIntervalMs } from '../constants';
import { ExecutionContext, ExecutionDataCacheContext } from '../contexts';
import { useExecutionDataCache } from '../useExecutionDataCache';
import { useWorkflowExecution } from '../useWorkflowExecution';
import { useWorkflowExecutionQuery } from '../useWorkflowExecution';
import { executionIsTerminal } from '../utils';
import { ExecutionDetailsAppBarContent } from './ExecutionDetailsAppBarContent';
import { ExecutionMetadata } from './ExecutionMetadata';
Expand Down Expand Up @@ -50,8 +51,47 @@ const executionRefreshConfig: RefreshConfig<Execution> = {
valueIsFinal: executionIsTerminal
};

interface RenderExecutionDetailsProps {
execution: Execution;
}

const RenderExecutionDetails: React.FC<RenderExecutionDetailsProps> = ({
execution
}) => {
const styles = useStyles();
const [metadataExpanded, setMetadataExpanded] = React.useState(true);
const toggleMetadata = () => setMetadataExpanded(!metadataExpanded);
const dataCache = useExecutionDataCache();
const contextValue = {
execution
};

return (
<ExecutionContext.Provider value={contextValue}>
<ExecutionDetailsAppBarContent execution={execution} />
<div className={styles.metadataContainer}>
<Collapse in={metadataExpanded}>
<ExecutionMetadata execution={execution} />
</Collapse>
<div className={styles.expandCollapseContainer}>
<IconButton size="small" onClick={toggleMetadata}>
<ExpandMore
className={classnames(styles.expandCollapseButton, {
expanded: metadataExpanded
})}
/>
</IconButton>
</div>
</div>
<ExecutionDataCacheContext.Provider value={dataCache}>
<ExecutionNodeViews execution={execution} />
</ExecutionDataCacheContext.Provider>
</ExecutionContext.Provider>
);
};

/** The view component for the Execution Details page */
export const ExecutionDetailsContainer: React.FC<ExecutionDetailsRouteParams> = ({
export const ExecutionDetailsContainer: React.FC<ExecutionDetailsProps> = ({
executionId,
domainId,
projectId
Expand All @@ -61,46 +101,15 @@ export const ExecutionDetailsContainer: React.FC<ExecutionDetailsRouteParams> =
domain: domainId,
name: executionId
};
const styles = useStyles();
const [metadataExpanded, setMetadataExpanded] = React.useState(true);
const toggleMetadata = () => setMetadataExpanded(!metadataExpanded);
const dataCache = useExecutionDataCache();
const { fetchable, terminateExecution } = useWorkflowExecution(
id,
dataCache

const renderExecutionDetails = (execution: Execution) => (
<RenderExecutionDetails execution={execution} />
);
useDataRefresher(id, fetchable, executionRefreshConfig);
const contextValue = {
terminateExecution,
execution: fetchable.value
};

return (
<WaitForData {...fetchable}>
<ExecutionContext.Provider value={contextValue}>
<ExecutionDetailsAppBarContent execution={fetchable.value} />
<div className={styles.metadataContainer}>
<Collapse in={metadataExpanded}>
<ExecutionMetadata execution={fetchable.value} />
</Collapse>
<div className={styles.expandCollapseContainer}>
<IconButton size="small" onClick={toggleMetadata}>
<ExpandMore
className={classnames(
styles.expandCollapseButton,
{
expanded: metadataExpanded
}
)}
/>
</IconButton>
</div>
</div>
<ExecutionDataCacheContext.Provider value={dataCache}>
<ExecutionNodeViews execution={fetchable.value} />
</ExecutionDataCacheContext.Provider>
</ExecutionContext.Provider>
</WaitForData>
<WaitForQuery query={useWorkflowExecutionQuery(id)}>
{renderExecutionDetails}
</WaitForQuery>
);
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { Link as RouterLink } from 'react-router-dom';
import { ExecutionInputsOutputsModal } from '../ExecutionInputsOutputsModal';
import { ExecutionStatusBadge } from '../ExecutionStatusBadge';
import { TerminateExecutionButton } from '../TerminateExecution';
import { executionIsTerminal } from '../utils';
import { executionIsRunning, executionIsTerminal } from '../utils';
import { backLinkTitle, executionActionStrings } from './constants';
import { RelaunchExecutionForm } from './RelaunchExecutionForm';
import { getExecutionBackLink, getExecutionSourceId } from './utils';
Expand Down Expand Up @@ -80,6 +80,7 @@ export const ExecutionDetailsAppBarContent: React.FC<{
const { phase } = execution.closure;
const sourceId = getExecutionSourceId(execution);
const { backLink = getExecutionBackLink(execution) } = useLocationState();
const isRunning = executionIsRunning(execution);
const isTerminal = executionIsTerminal(execution);
const onClickShowInputsOutputs = () => setShowInputsOutputs(true);
const onClickRelaunch = () => setShowRelaunchForm(true);
Expand All @@ -96,7 +97,9 @@ export const ExecutionDetailsAppBarContent: React.FC<{
);
}

const actionContent = isTerminal ? (
const actionContent = isRunning ? (
<TerminateExecutionButton className={styles.actionButton} />
) : isTerminal ? (
<Button
variant="outlined"
color="primary"
Expand All @@ -109,12 +112,9 @@ export const ExecutionDetailsAppBarContent: React.FC<{
>
Relaunch
</Button>
) : (
<TerminateExecutionButton className={styles.actionButton} />
);
) : null;

// For running executions, add an overflow menu with the ability to clone
// while we are still running.
// For non-terminal executions, add an overflow menu with the ability to clone
const moreActionsContent = !isTerminal ? (
<MoreOptionsMenu
className={styles.moreActions}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,20 +26,14 @@ jest.mock('components/Navigation/NavBarContent', () => ({
describe('ExecutionDetailsAppBarContent', () => {
let execution: Execution;
let executionContext: ExecutionContextData;
let mockTerminateExecution: jest.Mock<Promise<void>>;
let terminatePromise: DelayedPromiseResult<void>;
let sourceId: Identifier;

beforeEach(() => {
execution = createMockExecution();
sourceId = execution.closure.workflowId;
mockTerminateExecution = jest.fn().mockImplementation(() => {
terminatePromise = delayedPromise();
return terminatePromise;
});

executionContext = {
execution,
terminateExecution: mockTerminateExecution
execution
};
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,7 @@ describe('ExecutionNodeViews', () => {
);

executionContext = {
execution: workflowExecution,
terminateExecution: jest.fn().mockRejectedValue('Not Implemented')
execution: workflowExecution
};

props = { execution: workflowExecution };
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,7 @@ describe('NodeExecutionsTable', () => {
);

executionContext = {
execution: mockExecution,
terminateExecution: jest.fn().mockRejectedValue('Not Implemented')
execution: mockExecution
};
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,7 @@ export const TerminateExecutionForm: React.FC<{
const {
cause,
setCause,
terminating,
terminationError,
terminationState: { error, isLoading: terminating },
terminateExecution
} = useTerminateExecutionState(onClose);

Expand Down Expand Up @@ -74,9 +73,7 @@ export const TerminateExecutionForm: React.FC<{
value={cause}
/>
</FormControl>
{terminationError && (
<p className={commonStyles.errorText}>{terminationError}</p>
)}
{error && <p className={commonStyles.errorText}>{`${error}`}</p>}
<div className={commonStyles.formButtonGroup}>
<Button
color="primary"
Expand Down

This file was deleted.

Loading