mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
37 lines
1.1 KiB
TypeScript
37 lines
1.1 KiB
TypeScript
import { Component } from '@angular/core'
|
|
import { SavedViewService } from 'src/app/services/rest/saved-view.service'
|
|
import { SettingsService } from 'src/app/services/settings.service'
|
|
import { ComponentWithPermissions } from '../with-permissions/with-permissions.component'
|
|
import { TourService } from 'ngx-ui-tour-ng-bootstrap'
|
|
|
|
@Component({
|
|
selector: 'pngx-dashboard',
|
|
templateUrl: './dashboard.component.html',
|
|
styleUrls: ['./dashboard.component.scss'],
|
|
})
|
|
export class DashboardComponent extends ComponentWithPermissions {
|
|
constructor(
|
|
public settingsService: SettingsService,
|
|
public savedViewService: SavedViewService,
|
|
private tourService: TourService
|
|
) {
|
|
super()
|
|
}
|
|
|
|
get subtitle() {
|
|
if (this.settingsService.displayName) {
|
|
return $localize`Hello ${this.settingsService.displayName}, welcome to Paperless-ngx`
|
|
} else {
|
|
return $localize`Welcome to Paperless-ngx`
|
|
}
|
|
}
|
|
|
|
completeTour() {
|
|
if (this.tourService.getStatus() !== 0) {
|
|
this.tourService.end() // will call settingsService.completeTour()
|
|
} else {
|
|
this.settingsService.completeTour()
|
|
}
|
|
}
|
|
}
|