mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 20:14:49 +00:00
* port 040 config, WIP * update fixtures * use taiga modal for backups too * fix: update Taiga UI and refactor everything to work * chore: package-lock * fix interfaces and mocks for interfaces * better mocks * function to transform old spec to new * delete unused fns * delete unused FE config utils * fix exports from sdk * reorganize exports * functions to translate config * rename unionSelectKey and unionValueKey * Adding in the transformation of the getConfig to the new types. * chore: add Taiga UI to preloader --------- Co-authored-by: waterplea <alexander@inkin.ru> Co-authored-by: Aiden McClelland <me@drbonez.dev> Co-authored-by: J H <dragondef@gmail.com>
61 lines
2.2 KiB
TypeScript
61 lines
2.2 KiB
TypeScript
import { NgModule } from '@angular/core'
|
|
import { CommonModule } from '@angular/common'
|
|
import { Routes, RouterModule } from '@angular/router'
|
|
import { IonicModule } from '@ionic/angular'
|
|
import { AppShowPage } from './app-show.page'
|
|
import {
|
|
EmverPipesModule,
|
|
ResponsiveColModule,
|
|
SharedPipesModule,
|
|
} from '@start9labs/shared'
|
|
import { StatusComponentModule } from 'src/app/components/status/status.component.module'
|
|
import { LaunchablePipeModule } from 'src/app/pipes/launchable/launchable.module'
|
|
import { UiPipeModule } from 'src/app/pipes/ui/ui.module'
|
|
import { AppShowHeaderComponent } from './components/app-show-header/app-show-header.component'
|
|
import { AppShowProgressComponent } from './components/app-show-progress/app-show-progress.component'
|
|
import { AppShowStatusComponent } from './components/app-show-status/app-show-status.component'
|
|
import { AppShowDependenciesComponent } from './components/app-show-dependencies/app-show-dependencies.component'
|
|
import { AppShowMenuComponent } from './components/app-show-menu/app-show-menu.component'
|
|
import { AppShowHealthChecksComponent } from './components/app-show-health-checks/app-show-health-checks.component'
|
|
import { AppShowAdditionalComponent } from './components/app-show-additional/app-show-additional.component'
|
|
import { HealthColorPipe } from './pipes/health-color.pipe'
|
|
import { ToHealthChecksPipe } from './pipes/to-health-checks.pipe'
|
|
import { ToButtonsPipe } from './pipes/to-buttons.pipe'
|
|
import { InstallingProgressPipeModule } from 'src/app/pipes/install-progress/install-progress.module'
|
|
|
|
const routes: Routes = [
|
|
{
|
|
path: '',
|
|
component: AppShowPage,
|
|
},
|
|
]
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
AppShowPage,
|
|
HealthColorPipe,
|
|
ToHealthChecksPipe,
|
|
ToButtonsPipe,
|
|
AppShowHeaderComponent,
|
|
AppShowProgressComponent,
|
|
AppShowStatusComponent,
|
|
AppShowDependenciesComponent,
|
|
AppShowMenuComponent,
|
|
AppShowHealthChecksComponent,
|
|
AppShowAdditionalComponent,
|
|
],
|
|
imports: [
|
|
CommonModule,
|
|
InstallingProgressPipeModule,
|
|
IonicModule,
|
|
RouterModule.forChild(routes),
|
|
EmverPipesModule,
|
|
LaunchablePipeModule,
|
|
UiPipeModule,
|
|
ResponsiveColModule,
|
|
StatusComponentModule,
|
|
SharedPipesModule,
|
|
],
|
|
})
|
|
export class AppShowPageModule {}
|