lodash-es#values TypeScript Examples
The following examples show how to use
lodash-es#values.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ReleasesTableView.tsx From github-deploy-center with MIT License | 4 votes |
ReleasesTableView = () => {
const { selectedApplication, pendingDeployments } = useAppState()
const repo = selectedApplication?.repo
const { triggerDeployment, removeEnvironment } = useActions()
const allReleaseResultsForTag = useFetchReleases()
const releases = allReleaseResultsForTag.data || []
const { mutate, error, isLoading } = useMutation(
async ({
release,
environmentName,
}: {
release: string
environmentName: string
}) => {
await triggerDeployment({ release, environmentName })
}
)
if (
!selectedApplication ||
!DeployWorkflowCodec.is(selectedApplication.deploySettings) ||
!selectedApplication.deploySettings.workflowId
) {
return null
}
if (allReleaseResultsForTag.isLoading) {
return <CircularProgress />
}
const releasesSorted = orderBy(
releases
.slice()
.sort((a, b) =>
b.tagName.localeCompare(a.tagName, undefined, { numeric: true })
)
.filter((r) =>
r.name
.toLowerCase()
.startsWith(selectedApplication.releaseFilter.toLowerCase())
),
(r) => r.createdAt,
'desc'
)
const selectedEnvironments = values(
selectedApplication.environmentSettingsByName
)
const releasesByEnvironment = selectedEnvironments.reduce<
Record<string, ReleaseModel[]>
>((record, environment) => {
record[environment.name] = releasesSorted.filter((r) =>
r.deployments.some((d) => d.environment === environment.name)
)
return record
}, {})
const createButton = (
deployment: DeploymentModel | undefined,
release: ReleaseModel,
environment: EnvironmentSettings
) => {
const latestRelease = releasesByEnvironment[environment.name]?.[0]
const isAfterLatest =
!latestRelease || release.createdAt.isAfter(latestRelease.createdAt)
const deploymentId = getDeploymentId({
release: release.tagName,
environment: environment.name,
repo: selectedApplication.repo.name,
owner: selectedApplication.repo.owner,
})
const pendingDeployment = pendingDeployments[deploymentId]
const modifiedAt = deployment?.modifiedAt
const deploymentState =
pendingDeployment &&
(!modifiedAt || pendingDeployment.isAfter(modifiedAt))
? DeploymentState.Pending
: deployment?.state
const deployButtonVariant =
(isAfterLatest && !deploymentState) ||
deploymentState === DeploymentState.Active
? 'contained'
: 'outlined'
return (
<Button
disabled={isLoading}
variant={deployButtonVariant}
color={!deploymentState && isAfterLatest ? 'primary' : 'default'}
style={getButtonStyle(deploymentState)}
onClick={() =>
mutate({
release: release.tagName,
environmentName: environment.name,
})
}>
{deploymentState?.replaceAll('_', ' ') ?? 'Deploy'}
</Button>
)
}
return (
<>
{error instanceof Error && (
<Alert severity="error">{error.message}</Alert>
)}
<Table>
<TableHead>
<TableRow>
<TableCell>Release name</TableCell>
{selectedEnvironments.map((environment) => (
<TableCell key={environment.name}>
<Link
href={`https://github.com/${repo?.owner}/${
repo?.name
}/deployments/activity_log?environment=${encodeURIComponent(
environment.name
)}`}
target="_blank"
color="inherit">
{environment.name}
</Link>
<IconButton onClick={() => removeEnvironment(environment.name)}>
<Icon>delete</Icon>
</IconButton>
</TableCell>
))}
</TableRow>
</TableHead>
<TableBody>
{releasesSorted.map((release) => (
<TableRow key={release.id}>
<TableCell style={{ width: '20%' }}>
<Link
href={`https://github.com/${repo?.owner}/${repo?.name}/releases/tag/${release.tagName}`}
target="_blank"
color="inherit">
{release.name}
</Link>
</TableCell>
{selectedEnvironments.map((environment) => {
const deployment = release.deployments.find(
(d) => d.environment === environment.name
)
return (
<TableCell key={environment.name}>
{createButton(deployment, release, environment)}
</TableCell>
)
})}
</TableRow>
))}
</TableBody>
</Table>
</>
)
}