1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/frontend/app/ui/settings/indexing/indexing.settings.component.ts

172 lines
4.8 KiB
TypeScript
Raw Normal View History

2018-05-04 06:23:48 +08:00
import {Component, OnDestroy, OnInit} from '@angular/core';
2018-03-31 03:30:30 +08:00
import {IndexingSettingsService} from './indexing.settings.service';
import {AuthenticationService} from '../../../model/network/authentication.service';
import {NavigationService} from '../../../model/navigation.service';
import {NotificationService} from '../../../model/notification.service';
import {ErrorDTO} from '../../../../../common/entities/Error';
import {IndexingConfig, ReIndexingSensitivity} from '../../../../../common/config/private/IPrivateConfig';
2018-03-31 03:30:30 +08:00
import {SettingsComponent} from '../_abstract/abstract.settings.component';
import {Utils} from '../../../../../common/Utils';
2018-03-31 03:30:30 +08:00
import {I18n} from '@ngx-translate/i18n-polyfill';
import {StatisticDTO} from '../../../../../common/entities/settings/StatisticDTO';
2019-07-28 04:56:12 +08:00
import {ScheduledTasksService} from '../scheduled-tasks.service';
import {DefaultsTasks} from '../../../../../common/entities/task/TaskDTO';
2017-07-26 03:09:37 +08:00
@Component({
2018-05-04 07:17:08 +08:00
selector: 'app-settings-indexing',
2017-07-26 03:09:37 +08:00
templateUrl: './indexing.settings.component.html',
styleUrls: ['./indexing.settings.component.css',
'./../_abstract/abstract.settings.component.css'],
providers: [IndexingSettingsService],
})
2018-05-04 06:23:48 +08:00
export class IndexingSettingsComponent extends SettingsComponent<IndexingConfig, IndexingSettingsService>
implements OnInit, OnDestroy {
2017-07-28 05:10:16 +08:00
2018-05-28 23:51:52 +08:00
types: { key: number; value: string }[] = [];
2019-01-20 00:31:23 +08:00
statistic: StatisticDTO;
constructor(_authService: AuthenticationService,
_navigation: NavigationService,
_settingsService: IndexingSettingsService,
2019-07-28 04:56:12 +08:00
public tasksService: ScheduledTasksService,
2019-01-20 00:31:23 +08:00
notification: NotificationService,
i18n: I18n) {
super(i18n('Indexing'),
_authService,
_navigation,
<any>_settingsService,
notification,
i18n,
s => s.Server.indexing);
}
2019-07-28 04:56:12 +08:00
get Progress() {
return this.tasksService.progress.value[DefaultsTasks[DefaultsTasks.Indexing]];
2019-01-20 00:31:23 +08:00
}
2019-07-28 04:56:12 +08:00
get TimeLeft(): number {
if (this.Progress) {
return (this.Progress.time.current - this.Progress.time.start) / this.Progress.progress * this.Progress.left;
}
2019-01-20 00:31:23 +08:00
}
2019-07-28 04:56:12 +08:00
get TimeElapsed() {
if (this.Progress) {
return (this.Progress.time.current - this.Progress.time.start);
2017-07-26 03:09:37 +08:00
}
2019-07-28 04:56:12 +08:00
}
ngOnDestroy() {
super.ngOnDestroy();
this.tasksService.unsubscribeFromProgress();
}
2017-07-26 03:09:37 +08:00
get excludeFolderList(): string {
return this.settings.excludeFolderList.join(';');
}
set excludeFolderList(value: string) {
this.settings.excludeFolderList = value.split(';');
}
get excludeFileList(): string {
return this.settings.excludeFileList.join(';');
}
set excludeFileList(value: string) {
this.settings.excludeFileList = value.split(';');
}
2017-07-26 03:09:37 +08:00
async ngOnInit() {
2017-07-28 05:10:16 +08:00
super.ngOnInit();
2019-07-28 04:56:12 +08:00
this.tasksService.subscribeToProgress();
2017-07-28 05:10:16 +08:00
this.types = Utils
.enumToArray(ReIndexingSensitivity);
2018-05-28 23:51:52 +08:00
this.types.forEach(v => {
switch (v.value) {
case 'low':
v.value = this.i18n('low');
break;
case 'medium':
v.value = this.i18n('medium');
break;
case 'high':
v.value = this.i18n('high');
break;
}
});
2019-07-21 16:52:34 +08:00
if (this._settingsService.isSupported()) {
this.statistic = await this._settingsService.getStatistic();
}
2017-07-26 03:09:37 +08:00
}
2018-11-24 20:08:34 +08:00
async index(createThumbnails: boolean) {
2017-07-26 03:09:37 +08:00
this.inProgress = true;
2018-03-31 03:30:30 +08:00
this.error = '';
2017-07-26 03:09:37 +08:00
try {
2019-07-28 04:56:12 +08:00
await this.tasksService.start(DefaultsTasks[DefaultsTasks.Indexing], {createThumbnails: !!createThumbnails});
await this.tasksService.forceUpdate();
2019-01-20 00:31:23 +08:00
this.notification.info(this.i18n('Folder indexing started'));
2017-07-26 03:09:37 +08:00
this.inProgress = false;
return true;
} catch (err) {
console.log(err);
if (err.message) {
this.error = (<ErrorDTO>err).message;
}
}
this.inProgress = false;
return false;
}
2017-07-28 05:10:16 +08:00
async cancelIndexing() {
2017-07-26 03:09:37 +08:00
this.inProgress = true;
2018-03-31 03:30:30 +08:00
this.error = '';
2017-07-26 03:09:37 +08:00
try {
2019-07-28 04:56:12 +08:00
await this.tasksService.stop(DefaultsTasks[DefaultsTasks.Indexing]);
await this.tasksService.forceUpdate();
2019-01-20 00:31:23 +08:00
this.notification.info(this.i18n('Folder indexing interrupted'));
2017-07-26 03:09:37 +08:00
this.inProgress = false;
return true;
} catch (err) {
console.log(err);
if (err.message) {
this.error = (<ErrorDTO>err).message;
}
}
this.inProgress = false;
return false;
}
2017-07-28 05:10:16 +08:00
async resetDatabase() {
2017-07-26 03:09:37 +08:00
this.inProgress = true;
2018-03-31 03:30:30 +08:00
this.error = '';
2017-07-26 03:09:37 +08:00
try {
2019-07-28 04:56:12 +08:00
await this.tasksService.start(DefaultsTasks[DefaultsTasks['Database Reset']]);
await this.tasksService.forceUpdate();
2018-03-31 03:30:30 +08:00
this.notification.success(this.i18n('Database reset'), this.i18n('Success'));
2017-07-26 03:09:37 +08:00
this.inProgress = false;
return true;
} catch (err) {
console.log(err);
if (err.message) {
this.error = (<ErrorDTO>err).message;
}
}
this.inProgress = false;
return false;
}
}