mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-09-29 15:30:50 -04:00
104 lines
3.9 KiB
TypeScript
104 lines
3.9 KiB
TypeScript
import {ChangeDetectionStrategy, ChangeDetectorRef, Component, inject} from '@angular/core';
|
|
import {
|
|
DraggableOrderedListComponent,
|
|
IndexUpdateEvent
|
|
} from "../../../reading-list/_components/draggable-ordered-list/draggable-ordered-list.component";
|
|
import {DashboardStreamListItemComponent} from "../dashboard-stream-list-item/dashboard-stream-list-item.component";
|
|
import {DashboardStream} from "../../../_models/dashboard/dashboard-stream";
|
|
import {SmartFilter} from "../../../_models/metadata/v2/smart-filter";
|
|
import {DashboardService} from "../../../_services/dashboard.service";
|
|
import {FilterService} from "../../../_services/filter.service";
|
|
import {forkJoin} from "rxjs";
|
|
import {TranslocoDirective} from "@jsverse/transloco";
|
|
import {FormControl, FormGroup, ReactiveFormsModule} from "@angular/forms";
|
|
import {FilterPipe} from "../../../_pipes/filter.pipe";
|
|
import {Breakpoint, UtilityService} from "../../../shared/_services/utility.service";
|
|
|
|
@Component({
|
|
selector: 'app-customize-dashboard-streams',
|
|
imports: [DraggableOrderedListComponent, DashboardStreamListItemComponent, TranslocoDirective,
|
|
ReactiveFormsModule, FilterPipe],
|
|
templateUrl: './customize-dashboard-streams.component.html',
|
|
styleUrls: ['./customize-dashboard-streams.component.scss'],
|
|
changeDetection: ChangeDetectionStrategy.OnPush
|
|
})
|
|
export class CustomizeDashboardStreamsComponent {
|
|
|
|
private readonly dashboardService = inject(DashboardService);
|
|
private readonly filterService = inject(FilterService);
|
|
private readonly cdRef = inject(ChangeDetectorRef);
|
|
private readonly utilityService = inject(UtilityService);
|
|
|
|
items: DashboardStream[] = [];
|
|
allSmartFilters: SmartFilter[] = [];
|
|
smartFilters: SmartFilter[] = [];
|
|
accessibilityMode: boolean = false;
|
|
listForm: FormGroup = new FormGroup({
|
|
'filterQuery': new FormControl('', [])
|
|
});
|
|
|
|
filterList = (listItem: SmartFilter) => {
|
|
const filterVal = (this.listForm.value.filterQuery || '').toLowerCase();
|
|
return listItem.name.toLowerCase().indexOf(filterVal) >= 0;
|
|
}
|
|
resetFilter() {
|
|
this.listForm.get('filterQuery')?.setValue('');
|
|
this.cdRef.markForCheck();
|
|
}
|
|
|
|
constructor() {
|
|
forkJoin([this.dashboardService.getDashboardStreams(false), this.filterService.getAllFilters()]).subscribe(results => {
|
|
this.items = results[0];
|
|
|
|
// After 100 items, drag and drop is disabled to use virtualization
|
|
if (this.items.length > 100 || this.utilityService.getActiveBreakpoint() <= Breakpoint.Tablet) {
|
|
this.accessibilityMode = true;
|
|
}
|
|
|
|
this.allSmartFilters = results[1];
|
|
this.updateSmartFilters();
|
|
|
|
this.cdRef.markForCheck();
|
|
});
|
|
}
|
|
|
|
updateSmartFilters() {
|
|
const smartFilterStreams = new Set(this.items.filter(d => !d.isProvided).map(d => d.name));
|
|
this.smartFilters = this.allSmartFilters.filter(d => !smartFilterStreams.has(d.name));
|
|
this.cdRef.markForCheck();
|
|
}
|
|
|
|
addFilterToStream(filter: SmartFilter) {
|
|
this.dashboardService.createDashboardStream(filter.id).subscribe(stream => {
|
|
this.smartFilters = this.smartFilters.filter(d => d.name !== filter.name);
|
|
this.items = [...this.items, stream];
|
|
this.cdRef.markForCheck();
|
|
});
|
|
}
|
|
|
|
|
|
orderUpdated(event: IndexUpdateEvent) {
|
|
this.dashboardService.updateDashboardStreamPosition(event.item.name, event.item.id, event.fromPosition, event.toPosition).subscribe();
|
|
}
|
|
|
|
updateVisibility(item: DashboardStream, position: number) {
|
|
this.items[position].visible = !this.items[position].visible;
|
|
this.cdRef.markForCheck();
|
|
this.dashboardService.updateDashboardStream(this.items[position]).subscribe();
|
|
}
|
|
|
|
delete(item: DashboardStream) {
|
|
this.dashboardService.deleteSmartFilterStream(item.id).subscribe({
|
|
next: () => {
|
|
this.items = this.items.filter(d => d.id !== item.id);
|
|
this.updateSmartFilters();
|
|
this.cdRef.markForCheck();
|
|
},
|
|
error: (err) => {
|
|
console.error(err);
|
|
}
|
|
});
|
|
}
|
|
|
|
}
|