1
0
mirror of https://github.com/bpatrik/pigallery2.git synced 2025-04-02 22:15:33 +02:00
pigallery2/src/frontend/app/ui/settings/indexing/indexing.settings.component.html

162 lines
6.9 KiB
HTML
Raw Normal View History

2017-07-25 21:09:37 +02:00
<form #settingsForm="ngForm" class="form-horizontal">
2018-05-13 16:59:57 -04:00
<div class="card mb-4">
2019-12-07 20:40:29 +01:00
<h5 class="card-header">
{{Name}}
2018-05-13 16:59:57 -04:00
</h5>
<div class="card-body">
2017-07-25 21:09:37 +02:00
<div [hidden]="!error" class="alert alert-danger" role="alert"><strong>Error: </strong>{{error}}</div>
2017-07-27 23:10:16 +02:00
<ng-container *ngIf="!simplifiedMode">
2018-05-13 16:59:57 -04:00
<div class="form-group row">
<label class="col-md-2 control-label" for="cachedFolderTimeout" i18n>Index cache timeout [ms]</label>
<div class="col-md-10">
2017-07-27 23:10:16 +02:00
<input type="number" class="form-control" placeholder="36000"
id="cachedFolderTimeout"
min="0"
step="1"
[(ngModel)]="settings.cachedFolderTimeout"
name="cachedFolderTimeout" required>
2018-05-13 16:59:57 -04:00
<small class="form-text text-muted" i18n>If there was no indexing in this time, it reindexes. (skipped if
2018-05-27 13:02:20 -04:00
indexes are in DB and sensitivity is low)
2018-05-13 16:59:57 -04:00
</small>
2017-07-27 23:10:16 +02:00
</div>
</div>
2018-05-13 16:59:57 -04:00
<div class="form-group row">
<label class="col-md-2 control-label" for="folderPreviewSize" i18n>Sub folder preview size</label>
<div class="col-md-10">
2017-07-27 23:10:16 +02:00
<input type="number" class="form-control" placeholder="1"
id="folderPreviewSize"
min="0"
step="1"
[(ngModel)]="settings.folderPreviewSize"
name="folderPreviewSize" required>
2018-05-13 16:59:57 -04:00
<small class="form-text text-muted" i18n>Reads this many photos from sub folders</small>
2017-07-27 23:10:16 +02:00
</div>
</div>
2018-05-13 16:59:57 -04:00
<div class="form-group row">
<label class="col-md-2 control-label" for="reIndexingSensitivity" i18n>Folder reindexing sensitivity</label>
<div class="col-md-10">
2017-07-27 23:10:16 +02:00
<select id="reIndexingSensitivity" class="form-control" [(ngModel)]="settings.reIndexingSensitivity"
name="reIndexingSensitivity" required>
<option *ngFor="let type of types" [ngValue]="type.key">{{type.value}}
</option>
</select>
2018-05-13 16:59:57 -04:00
<small
class="form-text text-muted"
i18n>Set the reindexing sensitivity. High value check the folders for change more often.
2018-05-13 16:59:57 -04:00
</small>
2017-07-27 23:10:16 +02:00
</div>
</div>
<div class="form-group row">
<label class="col-md-2 control-label" for="excludeFolderList" i18n>Exclude Folder List</label>
<div class="col-md-10">
<input type="text" class="form-control" placeholder="/media/images/family/private;private;family/private"
id="excludeFolderList"
[(ngModel)]="excludeFolderList"
name="excludeFolderList" required>
<small class="form-text text-muted">
2019-12-11 17:02:02 +01:00
<ng-container i18n>Folders to exclude from indexing</ng-container>
<br/>
<ng-container
2019-12-11 17:02:02 +01:00
i18n>';' separated strings. If an entry starts with '/' it is treated as an absolute path. If it doesn't
start with '/' but contains a '/', the path is relative to the image directory. If it doesn't contain a
'/', any folder with this name will be excluded.
</ng-container>
</small>
</div>
</div>
<div class="form-group row">
<label class="col-md-2 control-label" for="excludeFileList" i18n>Exclude File List</label>
<div class="col-md-10">
<input type="text" class="form-control" placeholder=".ignore;.pg2ignore"
id="excludeFileList"
[(ngModel)]="excludeFileList"
name="excludeFileList" required>
<small class="form-text text-muted">
2019-12-11 17:02:02 +01:00
<ng-container i18n>Files that mark a folder to be excluded from indexing</ng-container>
<br/>
<ng-container
2019-12-11 17:02:02 +01:00
i18n>';' separated strings. Any folder that contains a file with this name will be excluded from
indexing.
</ng-container>
</small>
</div>
</div>
2017-07-27 23:10:16 +02:00
2018-05-13 16:59:57 -04:00
<button class="btn btn-success float-right"
2017-07-27 23:10:16 +02:00
[disabled]="!settingsForm.form.valid || !changed || inProgress"
(click)="save()" i18n>Save
2017-07-27 23:10:16 +02:00
</button>
2019-02-23 00:29:35 +01:00
<button class="btn btn-secondary float-right"
[disabled]=" !changed || inProgress"
(click)="reset()" i18n>Reset
2017-07-27 23:10:16 +02:00
</button>
<br/>
<hr/>
</ng-container>
2019-12-15 14:40:31 +01:00
<div class="alert alert-secondary" role="alert">
<ng-container i18n>If you add a new folder to your gallery, the site indexes it automatically.</ng-container>&nbsp;
<ng-container i18n>If you would like to trigger indexing manually, click index button.</ng-container>
<br/>
(<ng-container i18n>Note: search only works among the indexed directories</ng-container>)
</div>
2017-07-25 21:09:37 +02:00
2019-07-27 22:56:12 +02:00
<div *ngIf="Progress != null">
2019-12-24 12:22:25 +01:00
<app-settings-job-progress [progress]="Progress"></app-settings-job-progress>
2017-07-25 21:09:37 +02:00
</div>
2019-12-15 14:40:31 +01:00
<button class="btn btn-success ml-0"
*ngIf="Progress == null"
[disabled]="inProgress"
title="Indexes the folders"
i18n-title
(click)="index()">
<ng-container i18n>Index folders now</ng-container>
<span class="oi oi-media-play ml-2"></span>
</button>
<button class="btn btn-secondary ml-0"
*ngIf="Progress != null"
2019-12-29 00:35:41 +01:00
[disabled]="inProgress || Progress.state !== JobProgressStates.running"
2019-12-15 14:40:31 +01:00
(click)="cancelIndexing()" i18n>Cancel converting
</button>
<button class="btn btn-danger ml-2"
[disabled]="inProgress"
(click)="resetDatabase()" i18n>Reset Indexes
</button>
2018-12-09 23:25:39 +01:00
<hr/>
<div class="row statics">
<div class="col-md-4 col-12" i18n>
Statistic:
</div>
<div class="col-md-2 col-6">
<span class="oi oi-folder" title="Folders" i18n-title aria-hidden="true"> </span>
{{_settingsService.statistic.value ? _settingsService.statistic.value.directories : '...'}}
2018-12-09 23:25:39 +01:00
</div>
<div class="col-md-2 col-6">
<span class="oi oi-camera-slr" title="Photos" i18n-title aria-hidden="true"> </span>
{{_settingsService.statistic.value ? _settingsService.statistic.value.photos : '...'}}
2018-12-09 23:25:39 +01:00
</div>
<div class="col-md-2 col-6">
<span class="oi oi-video" title="Videos" i18n-title aria-hidden="true"> </span>
{{_settingsService.statistic.value ? _settingsService.statistic.value.videos : '...'}}
2018-12-09 23:25:39 +01:00
</div>
<div class="col-md-2 col-6">
<span class="oi oi-pie-chart" title="Size" i18n-title aria-hidden="true"> </span>
{{_settingsService.statistic.value ? (_settingsService.statistic.value.diskUsage | fileSize) : '...'}}
2018-12-09 23:25:39 +01:00
</div>
2017-07-25 21:09:37 +02:00
</div>
</div>
</div>
</form>