dify/web/features/deployments/list/ui/instance-card-utils.ts
Stephen Zhou a84c2d36a3
style: format with vp fmt (#38803)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2026-07-12 15:57:46 +00:00

18 lines
682 B
TypeScript

import type { EnvironmentDeployment, Release } from '@dify/contracts/enterprise/types.gen'
import type { InstanceDetailTabKey } from '../../detail/tabs'
import { isUndeployedDeploymentRow } from '../../shared/domain/runtime-status'
export function getInstanceTabHref(appInstanceId: string, tabKey: InstanceDetailTabKey) {
return `/deployments/${appInstanceId}/${tabKey}`
}
export function isActiveDeployment(row: EnvironmentDeployment) {
return !isUndeployedDeploymentRow(row)
}
export function isReleaseDeployed(release: Release | undefined, rows: EnvironmentDeployment[]) {
if (!release) return false
return rows.some((row) => row.currentRelease?.id === release.id)
}