bring back startup alerts

This commit is contained in:
Matt Hill
2021-07-14 22:46:30 -06:00
committed by Aiden McClelland
parent 48632271d5
commit 301a19d644
61 changed files with 329 additions and 291 deletions

View File

@@ -1,6 +1,6 @@
import { Component } from '@angular/core'
import { SplitPaneTracker } from 'src/app/services/split-pane.service'
import { PatchDbModel } from 'src/app/services/patch-db/patch-db.service'
import { PatchDbService } from 'src/app/services/patch-db/patch-db.service'
import { combineLatest, Subscription } from 'rxjs'
@Component({
@@ -17,7 +17,7 @@ export class BadgeMenuComponent {
constructor (
private readonly splitPane: SplitPaneTracker,
private readonly patch: PatchDbModel,
private readonly patch: PatchDbService,
) { }
ngOnInit () {

View File

@@ -1,7 +1,7 @@
import { Component, Input, OnInit } from '@angular/core'
import { BehaviorSubject, from, Subject } from 'rxjs'
import { takeUntil, tap } from 'rxjs/operators'
import { Breakages } from 'src/app/services/api/api-types'
import { Breakages } from 'src/app/services/api/api.types'
import { markAsLoadingDuring$ } from 'src/app/services/loader.service'
import { capitalizeFirstLetter, isEmptyObject } from 'src/app/util/misc.util'
import { Loadable } from '../loadable'

View File

@@ -1,8 +1,9 @@
<div class="slide-content">
<div style="margin-top: 25px;">
<div style="margin: 15px; display: flex; justify-content: center; align-items: center;">
<ion-label [color]="params.titleColor" style="font-size: xx-large; font-weight: bold;">
{{ params.title }}
<ion-label [color]="params.titleColor">
<h1>{{ params.title }}</h1>
<h2>{{ params.headline }}</h2>
</ion-label>
</div>
<div *ngFor="let note of params.notes | keyvalue : asIsOrder">

View File

@@ -12,6 +12,7 @@ export class NotesComponent implements OnInit, Loadable {
notes: { [version: string]: string }
title: string
titleColor: string
headline: string
}
loading$ = new BehaviorSubject(false)

View File

@@ -1,8 +1,8 @@
import { Injectable } from '@angular/core'
import { PackageDataEntry } from 'src/app/services/patch-db/data-model'
import { Breakages } from 'src/app/services/api/api-types'
import { Breakages } from 'src/app/services/api/api.types'
import { exists } from 'src/app/util/misc.util'
import { ApiService } from '../../services/api/api.service'
import { ApiService } from '../../services/api/embassy/embassy-api.service'
import { InstallWizardComponent, SlideDefinition, TopbarParams } from './install-wizard.component'
@Injectable({ providedIn: 'root' })
@@ -12,7 +12,10 @@ export class WizardBaker {
) { }
install (values: {
id: string, title: string, version: string, installAlert?: string
id: string
title: string
version: string
installAlert?: string
}): InstallWizardComponent['params'] {
const { id, title, version, installAlert } = values
@@ -53,7 +56,10 @@ export class WizardBaker {
}
update (values: {
id: string, title: string, version: string, installAlert?: string
id: string
title: string
version: string
installAlert?: string
}): InstallWizardComponent['params'] {
const { id, title, version, installAlert } = values
@@ -111,9 +117,11 @@ export class WizardBaker {
}
updateOS (values: {
version: string, releaseNotes: { [version: string]: string }
version: string
releaseNotes: { [version: string]: string }
headline: string
}): InstallWizardComponent['params'] {
const { version, releaseNotes } = values
const { version, releaseNotes, headline } = values
const action = 'update'
const title = 'EmbassyOS'
@@ -127,6 +135,7 @@ export class WizardBaker {
notes: releaseNotes,
title: 'Release Notes',
titleColor: 'dark',
headline,
},
},
bottomBar: {
@@ -153,7 +162,10 @@ export class WizardBaker {
}
downgrade (values: {
id: string, title: string, version: string, installAlert?: string
id: string
title: string
version: string
installAlert?: string
}): InstallWizardComponent['params'] {
const { id, title, version, installAlert } = values
@@ -205,7 +217,10 @@ export class WizardBaker {
}
uninstall (values: {
id: string, title: string, version: string, uninstallAlert?: string
id: string
title: string
version: string
uninstallAlert?: string
}): InstallWizardComponent['params'] {
const { id, title, version, uninstallAlert } = values
@@ -253,7 +268,10 @@ export class WizardBaker {
}
stop (values: {
breakages: Breakages, id: string, title: string, version: string
id: string
title: string
version: string
breakages: Breakages
}): InstallWizardComponent['params'] {
const { breakages, title, version } = values
@@ -277,7 +295,10 @@ export class WizardBaker {
return { toolbar, slideDefinitions }
}
configure (values: { breakages: Breakages, pkg: PackageDataEntry }): InstallWizardComponent['params'] {
configure (values: {
pkg: PackageDataEntry
breakages: Breakages
}): InstallWizardComponent['params'] {
const { breakages, pkg } = values
const { title, version } = pkg.manifest
const action = 'configure'