You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
146 lines
4.9 KiB
TypeScript
146 lines
4.9 KiB
TypeScript
import {AfterViewChecked, Component, ElementRef, EventEmitter, Input, OnInit, Output, ViewChild} from "@angular/core";
|
|
import {SortKey} from "../../../../models/SortKey";
|
|
import {MatDialog} from "@angular/material/dialog";
|
|
import {SortDialogComponent} from "./sort-dialog/sort-dialog.component";
|
|
import {ErrorBrokerService} from "../../../../services/error-broker/error-broker.service";
|
|
import {FilterDialogComponent} from "./filter-dialog/filter-dialog.component";
|
|
import {Tag} from "../../../../../api/models/Tag";
|
|
import {clipboard} from "@tauri-apps/api";
|
|
import {TabState} from "../../../../models/TabState";
|
|
import {FilterQueryBuilder} from "../../../../../api/models/FilterQueryBuilder";
|
|
import {SearchFilters} from "../../../../../api/models/SearchFilters";
|
|
import {FilterExpression,} from "../../../../../api/api-types/files";
|
|
import {filterExpressionToString} from "../../../../utils/filter-utils";
|
|
|
|
|
|
@Component({
|
|
selector: "app-file-search",
|
|
templateUrl: "./file-search.component.html",
|
|
styleUrls: ["./file-search.component.scss"]
|
|
})
|
|
export class FileSearchComponent implements AfterViewChecked, OnInit {
|
|
public sortExpression: SortKey[] = [];
|
|
public filters: SearchFilters = new SearchFilters([]);
|
|
|
|
@Input() availableTags: Tag[] = [];
|
|
@Input() contextTags: Tag[] = [];
|
|
@Input() state!: TabState;
|
|
@Input() tagsLoading = false;
|
|
|
|
@Output() searchStartEvent = new EventEmitter<void>();
|
|
@Output() searchEndEvent = new EventEmitter<void>();
|
|
|
|
@ViewChild("tagInputList") inputList!: ElementRef;
|
|
|
|
public contextMenuTag: Tag | undefined;
|
|
public contextMenuFilter: FilterExpression | undefined = undefined;
|
|
public initialFilterInputValue: string | undefined;
|
|
|
|
constructor(
|
|
private errorBroker: ErrorBrokerService,
|
|
public dialog: MatDialog
|
|
) {
|
|
}
|
|
|
|
public async ngOnInit() {
|
|
this.state.filters.subscribe(f => this.filters = f);
|
|
this.state.sortKeys.subscribe(s => this.sortExpression = s);
|
|
await this.searchForFiles();
|
|
}
|
|
|
|
public ngAfterViewChecked(): void {
|
|
this.inputList.nativeElement.scrollLeft = this.inputList.nativeElement.scrollWidth;
|
|
}
|
|
|
|
public async searchForFiles() {
|
|
this.searchStartEvent.emit();
|
|
try {
|
|
await this.state.findFiles();
|
|
} catch (err) {
|
|
this.errorBroker.showError(err);
|
|
}
|
|
this.searchEndEvent.emit();
|
|
}
|
|
|
|
public addFilterExpression(filter: FilterExpression) {
|
|
this.filters.removeFilter(filter);
|
|
this.filters.addFilterExpression(filter);
|
|
|
|
this.state.setTagFilters(this.filters);
|
|
}
|
|
|
|
public addTagFilter(filterString: string) {
|
|
const filter = FilterQueryBuilder.buildFilterFromString(filterString);
|
|
if (filter) {
|
|
this.addFilterExpression({ Query: filter });
|
|
}
|
|
}
|
|
|
|
public getValidSearchTags(): Tag[] {
|
|
return this.availableTags.filter(t => !this.filters.hasFilter({
|
|
Query: FilterQueryBuilder.tag(
|
|
t.getNormalizedOutput(),
|
|
false
|
|
)
|
|
}));
|
|
}
|
|
|
|
public async removeAllSearchTags() {
|
|
this.filters = new SearchFilters([]);
|
|
this.state.setTagFilters(this.filters);
|
|
}
|
|
|
|
public async removeFilterExpression(expr: FilterExpression) {
|
|
this.filters.removeFilter(expr);
|
|
this.state.setTagFilters(this.filters);
|
|
}
|
|
|
|
public openSortDialog() {
|
|
const sortEntries = this.sortExpression.map(
|
|
key => JSON.parse(JSON.stringify(key))).map(
|
|
key => new SortKey(key.sortType, key.sortDirection,
|
|
key.namespaceName
|
|
));
|
|
const openedDialog = this.dialog.open(SortDialogComponent, {
|
|
minWidth: "40vw",
|
|
data: {
|
|
sortEntries,
|
|
},
|
|
disableClose: true,
|
|
});
|
|
openedDialog.afterClosed().subscribe(async (sortExpression) => {
|
|
if (sortExpression) {
|
|
this.sortExpression = sortExpression;
|
|
this.state.setSortKeys(this.sortExpression);
|
|
}
|
|
});
|
|
}
|
|
|
|
public openFilterDialog(): void {
|
|
const filterEntries = this.filters;
|
|
const filterDialog = this.dialog.open(FilterDialogComponent, {
|
|
minWidth: "25vw",
|
|
maxHeight: "80vh",
|
|
data: {
|
|
filterEntries,
|
|
availableTags: this.availableTags,
|
|
},
|
|
disableClose: true,
|
|
});
|
|
filterDialog.afterClosed().subscribe(async (filterExpression) => {
|
|
if (filterExpression !== undefined || filterExpression?.length > 0) {
|
|
this.filters = filterExpression;
|
|
this.state.setTagFilters(this.filters);
|
|
}
|
|
});
|
|
}
|
|
|
|
public async copyToClipboard(text: string) {
|
|
await clipboard.writeText(text);
|
|
}
|
|
|
|
public addFilterToInput(param: FilterExpression): void {
|
|
this.initialFilterInputValue = filterExpressionToString(param);
|
|
}
|
|
}
|