Files
start-os/frontend/projects/ui/src/app/pages/notifications/notifications.page.ts
Alex Inkin 4f3223d3ad refactor: isolate network toast and login redirect to separate services (#1412)
* refactor: isolate network toast and login redirect to separate services

* chore: remove accidentally committed sketch of a service

* chore: tidying things up

* feat: add `GlobalModule` encapsulating all global subscription services

* remove angular build cache when building deps

* chore: fix more issues found while testing

* chore: fix issues reported by testing

* chore: fix template error

* chore: fix server-info

* chore: fix server-info

* fix: switch to Observable to fix race conditions

* fix embassy name display on load

* update patchdb

* clean up patch data watch

Co-authored-by: Lucy Cifferello <12953208+elvece@users.noreply.github.com>
2022-05-26 16:56:47 -06:00

179 lines
4.7 KiB
TypeScript

import { Component } from '@angular/core'
import { ApiService } from 'src/app/services/api/embassy-api.service'
import {
ServerNotifications,
NotificationLevel,
ServerNotification,
} from 'src/app/services/api/api.types'
import {
AlertController,
LoadingController,
ModalController,
} from '@ionic/angular'
import { ActivatedRoute } from '@angular/router'
import { ErrorToastService } from '@start9labs/shared'
import { BackupReportPage } from 'src/app/modals/backup-report/backup-report.page'
import { PatchDbService } from 'src/app/services/patch-db/patch-db.service'
@Component({
selector: 'notifications',
templateUrl: 'notifications.page.html',
styleUrls: ['notifications.page.scss'],
})
export class NotificationsPage {
loading = true
notifications: ServerNotifications = []
beforeCursor: number
needInfinite = false
fromToast = false
readonly perPage = 40
constructor(
private readonly embassyApi: ApiService,
private readonly alertCtrl: AlertController,
private readonly loadingCtrl: LoadingController,
private readonly modalCtrl: ModalController,
private readonly errToast: ErrorToastService,
private readonly route: ActivatedRoute,
public readonly patch: PatchDbService,
) {}
async ngOnInit() {
this.fromToast = !!this.route.snapshot.queryParamMap.get('toast')
this.notifications = await this.getNotifications()
this.loading = false
}
async doInfinite(e: any) {
const notifications = await this.getNotifications()
this.notifications = this.notifications.concat(notifications)
e.target.complete()
}
async getNotifications(): Promise<ServerNotifications> {
let notifications: ServerNotifications = []
try {
notifications = await this.embassyApi.getNotifications({
before: this.beforeCursor,
limit: this.perPage,
})
this.beforeCursor = notifications[notifications.length - 1]?.id
this.needInfinite = notifications.length >= this.perPage
} catch (e: any) {
this.errToast.present(e)
} finally {
return notifications
}
}
async delete(id: number, index: number): Promise<void> {
const loader = await this.loadingCtrl.create({
spinner: 'lines',
message: 'Deleting...',
cssClass: 'loader',
})
await loader.present()
try {
await this.embassyApi.deleteNotification({ id })
this.notifications.splice(index, 1)
this.beforeCursor = this.notifications[this.notifications.length - 1]?.id
} catch (e: any) {
this.errToast.present(e)
} finally {
loader.dismiss()
}
}
async presentAlertDeleteAll() {
const alert = await this.alertCtrl.create({
backdropDismiss: false,
header: 'Delete All?',
message: 'Are you sure you want to delete all notifications?',
buttons: [
{
text: 'Cancel',
role: 'cancel',
},
{
text: 'Delete',
cssClass: 'enter-click',
handler: () => {
this.deleteAll()
},
},
],
})
await alert.present()
}
async viewBackupReport(notification: ServerNotification<1>) {
const modal = await this.modalCtrl.create({
component: BackupReportPage,
componentProps: {
report: notification.data,
timestamp: notification['created-at'],
},
})
await modal.present()
}
async viewFullMessage(title: string, message: string) {
const alert = await this.alertCtrl.create({
header: title,
message: message,
cssClass: 'wider-alert',
buttons: [
{
text: `OK`,
handler: () => {
alert.dismiss()
},
cssClass: 'enter-click',
},
],
})
await alert.present()
}
truncate(message: string): string {
return message.length <= 240 ? message : '...' + message.substr(-240)
}
getColor({ level }: ServerNotification<number>): string {
switch (level) {
case NotificationLevel.Info:
return 'primary'
case NotificationLevel.Success:
return 'success'
case NotificationLevel.Warning:
return 'warning'
case NotificationLevel.Error:
return 'danger'
default:
return ''
}
}
private async deleteAll(): Promise<void> {
const loader = await this.loadingCtrl.create({
spinner: 'lines',
message: 'Deleting...',
cssClass: 'loader',
})
await loader.present()
try {
await this.embassyApi.deleteAllNotifications({
before: this.notifications[0].id,
})
this.notifications = []
this.beforeCursor = undefined
} catch (e: any) {
this.errToast.present(e)
} finally {
loader.dismiss()
}
}
}