File size: 1,774 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | import page from '@automattic/calypso-router';
import { __ } from '@wordpress/i18n';
import ActionPanel from 'calypso/components/action-panel';
import HeaderCake from 'calypso/components/header-cake';
import HeaderCakeBack from 'calypso/components/header-cake/back';
import { useSelector } from 'calypso/state';
import { getSelectedSiteId, getSelectedSiteSlug } from 'calypso/state/ui/selectors';
import { PageShell } from '../components/page-shell';
import { useSort } from '../components/sort-button/use-sort';
import { DeploymentsRunsTable } from '../deployment-run-logs/deployments-run-table';
import { useCodeDeploymentsRunsQuery } from '../deployment-run-logs/use-code-deployment-run-query';
import { indexPage } from '../routes';
import './style.scss';
interface DeploymentRunsDialogProps {
codeDeploymentId: number;
}
export function DeploymentRunsLogs( { codeDeploymentId }: DeploymentRunsDialogProps ) {
const siteId = useSelector( getSelectedSiteId );
const siteSlug = useSelector( getSelectedSiteSlug );
const { data: deployments = [] } = useCodeDeploymentsRunsQuery(
siteId as number,
codeDeploymentId
);
const { key, direction, handleSortChange } = useSort( 'name' );
const goToDeployments = () => {
page( indexPage( siteSlug! ) );
};
return (
<PageShell pageTitle={ __( 'GitHub Deployments' ) }>
<HeaderCakeBack icon="chevron-left" onClick={ goToDeployments } />
<div className="github-deployments-runs">
<HeaderCake isCompact>
<h1>{ __( 'Deployment runs' ) }</h1>
</HeaderCake>
<ActionPanel>
<DeploymentsRunsTable
deploymentsRuns={ deployments }
sortKey={ key }
sortDirection={ direction }
onSortChange={ handleSortChange }
/>
</ActionPanel>
</div>
</PageShell>
);
}
|