mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 12:11:56 +00:00
* rename frontend to web and update contributing guide * rename this time * fix build * restructure rust code * update documentation * update descriptions * Update CONTRIBUTING.md Co-authored-by: J H <2364004+Blu-J@users.noreply.github.com> --------- Co-authored-by: Aiden McClelland <me@drbonez.dev> Co-authored-by: Aiden McClelland <3732071+dr-bonez@users.noreply.github.com> Co-authored-by: J H <2364004+Blu-J@users.noreply.github.com>
189 lines
4.5 KiB
TypeScript
189 lines
4.5 KiB
TypeScript
import { isEmptyObject } from '@start9labs/shared'
|
|
import {
|
|
MainStatusStarting,
|
|
PackageDataEntry,
|
|
PackageMainStatus,
|
|
PackageState,
|
|
Status,
|
|
} from 'src/app/services/patch-db/data-model'
|
|
import { PkgDependencyErrors } from './dep-error.service'
|
|
|
|
export interface PackageStatus {
|
|
primary: PrimaryStatus
|
|
dependency: DependencyStatus | null
|
|
health: HealthStatus | null
|
|
}
|
|
|
|
export function renderPkgStatus(
|
|
pkg: PackageDataEntry,
|
|
depErrors: PkgDependencyErrors,
|
|
): PackageStatus {
|
|
let primary: PrimaryStatus
|
|
let dependency: DependencyStatus | null = null
|
|
let health: HealthStatus | null = null
|
|
|
|
if (pkg.state === PackageState.Installed && pkg.installed) {
|
|
primary = getPrimaryStatus(pkg.installed.status)
|
|
dependency = getDependencyStatus(depErrors)
|
|
health = getHealthStatus(
|
|
pkg.installed.status,
|
|
!isEmptyObject(pkg.manifest['health-checks']),
|
|
)
|
|
} else {
|
|
primary = pkg.state as string as PrimaryStatus
|
|
}
|
|
|
|
return { primary, dependency, health }
|
|
}
|
|
|
|
function getPrimaryStatus(status: Status): PrimaryStatus {
|
|
if (!status.configured) {
|
|
return PrimaryStatus.NeedsConfig
|
|
} else if ((status.main as MainStatusStarting).restarting) {
|
|
return PrimaryStatus.Restarting
|
|
} else {
|
|
return status.main.status as any as PrimaryStatus
|
|
}
|
|
}
|
|
|
|
function getDependencyStatus(depErrors: PkgDependencyErrors): DependencyStatus {
|
|
return Object.values(depErrors).some(err => !!err)
|
|
? DependencyStatus.Warning
|
|
: DependencyStatus.Satisfied
|
|
}
|
|
|
|
function getHealthStatus(
|
|
status: Status,
|
|
hasHealthChecks: boolean,
|
|
): HealthStatus | null {
|
|
if (status.main.status !== PackageMainStatus.Running || !status.main.health) {
|
|
return null
|
|
}
|
|
|
|
const values = Object.values(status.main.health)
|
|
|
|
if (values.some(h => h.result === 'failure')) {
|
|
return HealthStatus.Failure
|
|
}
|
|
|
|
if (!values.length && hasHealthChecks) {
|
|
return HealthStatus.Waiting
|
|
}
|
|
|
|
if (values.some(h => h.result === 'loading')) {
|
|
return HealthStatus.Loading
|
|
}
|
|
|
|
if (values.some(h => !h.result || h.result === 'starting')) {
|
|
return HealthStatus.Starting
|
|
}
|
|
|
|
return HealthStatus.Healthy
|
|
}
|
|
|
|
export interface StatusRendering {
|
|
display: string
|
|
color: string
|
|
showDots?: boolean
|
|
}
|
|
|
|
export enum PrimaryStatus {
|
|
// state
|
|
Installing = 'installing',
|
|
Updating = 'updating',
|
|
Removing = 'removing',
|
|
Restoring = 'restoring',
|
|
// status
|
|
Starting = 'starting',
|
|
Running = 'running',
|
|
Stopping = 'stopping',
|
|
Restarting = 'restarting',
|
|
Stopped = 'stopped',
|
|
BackingUp = 'backing-up',
|
|
// config
|
|
NeedsConfig = 'needs-config',
|
|
}
|
|
|
|
export enum DependencyStatus {
|
|
Warning = 'warning',
|
|
Satisfied = 'satisfied',
|
|
}
|
|
|
|
export enum HealthStatus {
|
|
Failure = 'failure',
|
|
Waiting = 'waiting',
|
|
Starting = 'starting',
|
|
Loading = 'loading',
|
|
Healthy = 'healthy',
|
|
}
|
|
|
|
export const PrimaryRendering: Record<string, StatusRendering> = {
|
|
[PrimaryStatus.Installing]: {
|
|
display: 'Installing',
|
|
color: 'primary',
|
|
showDots: true,
|
|
},
|
|
[PrimaryStatus.Updating]: {
|
|
display: 'Updating',
|
|
color: 'primary',
|
|
showDots: true,
|
|
},
|
|
[PrimaryStatus.Removing]: {
|
|
display: 'Removing',
|
|
color: 'danger',
|
|
showDots: true,
|
|
},
|
|
[PrimaryStatus.Restoring]: {
|
|
display: 'Restoring',
|
|
color: 'primary',
|
|
showDots: true,
|
|
},
|
|
[PrimaryStatus.Stopping]: {
|
|
display: 'Stopping',
|
|
color: 'dark-shade',
|
|
showDots: true,
|
|
},
|
|
[PrimaryStatus.Restarting]: {
|
|
display: 'Restarting',
|
|
color: 'tertiary',
|
|
showDots: true,
|
|
},
|
|
[PrimaryStatus.Stopped]: {
|
|
display: 'Stopped',
|
|
color: 'dark-shade',
|
|
showDots: false,
|
|
},
|
|
[PrimaryStatus.BackingUp]: {
|
|
display: 'Backing Up',
|
|
color: 'primary',
|
|
showDots: true,
|
|
},
|
|
[PrimaryStatus.Starting]: {
|
|
display: 'Starting',
|
|
color: 'primary',
|
|
showDots: true,
|
|
},
|
|
[PrimaryStatus.Running]: {
|
|
display: 'Running',
|
|
color: 'success',
|
|
showDots: false,
|
|
},
|
|
[PrimaryStatus.NeedsConfig]: {
|
|
display: 'Needs Config',
|
|
color: 'warning',
|
|
showDots: false,
|
|
},
|
|
}
|
|
|
|
export const DependencyRendering: Record<string, StatusRendering> = {
|
|
[DependencyStatus.Warning]: { display: 'Issue', color: 'warning' },
|
|
[DependencyStatus.Satisfied]: { display: 'Satisfied', color: 'success' },
|
|
}
|
|
|
|
export const HealthRendering: Record<string, StatusRendering> = {
|
|
[HealthStatus.Failure]: { display: 'Failure', color: 'danger' },
|
|
[HealthStatus.Starting]: { display: 'Starting', color: 'primary' },
|
|
[HealthStatus.Loading]: { display: 'Loading', color: 'primary' },
|
|
[HealthStatus.Healthy]: { display: 'Healthy', color: 'success' },
|
|
}
|