1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/frontend/app/ui/settings/database/database.settings.component.ts
Patrik J. Braun 0d3b8823e4 ui directory refactoring
adding thumbnail loader for faces
2019-03-03 10:30:12 +01:00

42 lines
1.5 KiB
TypeScript

import {Component, OnInit} from '@angular/core';
import {AuthenticationService} from '../../../model/network/authentication.service';
import {DataBaseConfig, DatabaseType} from '../../../../../common/config/private/IPrivateConfig';
import {Utils} from '../../../../../common/Utils';
import {NotificationService} from '../../../model/notification.service';
import {NavigationService} from '../../../model/navigation.service';
import {SettingsComponent} from '../_abstract/abstract.settings.component';
import {DatabaseSettingsService} from './database.settings.service';
import {I18n} from '@ngx-translate/i18n-polyfill';
@Component({
selector: 'app-settings-database',
templateUrl: './database.settings.component.html',
styleUrls: ['./database.settings.component.css',
'./../_abstract/abstract.settings.component.css'],
providers: [DatabaseSettingsService],
})
export class DatabaseSettingsComponent extends SettingsComponent<DataBaseConfig> implements OnInit {
public types: { key: number, value: string }[] = [];
public DatabaseType: any;
constructor(_authService: AuthenticationService,
_navigation: NavigationService,
_settingsService: DatabaseSettingsService,
notification: NotificationService,
i18n: I18n) {
super(i18n('Database'), _authService, _navigation, _settingsService, notification, i18n, s => s.Server.database);
}
ngOnInit() {
super.ngOnInit();
this.types = Utils.enumToArray(DatabaseType);
this.DatabaseType = DatabaseType;
}
}