mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
112 lines
2.3 KiB
TypeScript
112 lines
2.3 KiB
TypeScript
import { formatDate } from '@angular/common';
|
|
import { Component, EventEmitter, Input, Output, OnInit, OnDestroy } from '@angular/core';
|
|
import { Subject, Subscription } from 'rxjs';
|
|
import { debounceTime, distinctUntilChanged } from 'rxjs/operators';
|
|
|
|
export interface DateSelection {
|
|
before?: string
|
|
after?: string
|
|
}
|
|
|
|
const LAST_7_DAYS = 0
|
|
const LAST_MONTH = 1
|
|
const LAST_3_MONTHS = 2
|
|
const LAST_YEAR = 3
|
|
|
|
@Component({
|
|
selector: 'app-date-dropdown',
|
|
templateUrl: './date-dropdown.component.html',
|
|
styleUrls: ['./date-dropdown.component.scss']
|
|
})
|
|
export class DateDropdownComponent implements OnInit, OnDestroy {
|
|
|
|
quickFilters = [
|
|
{id: LAST_7_DAYS, name: "Last 7 days"},
|
|
{id: LAST_MONTH, name: "Last month"},
|
|
{id: LAST_3_MONTHS, name: "Last 3 months"},
|
|
{id: LAST_YEAR, name: "Last year"}
|
|
]
|
|
|
|
@Input()
|
|
dateBefore: string
|
|
|
|
@Output()
|
|
dateBeforeChange = new EventEmitter<string>()
|
|
|
|
@Input()
|
|
dateAfter: string
|
|
|
|
@Output()
|
|
dateAfterChange = new EventEmitter<string>()
|
|
|
|
@Input()
|
|
title: string
|
|
|
|
@Output()
|
|
datesSet = new EventEmitter<DateSelection>()
|
|
|
|
private datesSetDebounce$ = new Subject()
|
|
|
|
private sub: Subscription
|
|
|
|
ngOnInit() {
|
|
this.sub = this.datesSetDebounce$.pipe(
|
|
debounceTime(400)
|
|
).subscribe(() => {
|
|
this.onChange()
|
|
})
|
|
}
|
|
|
|
ngOnDestroy() {
|
|
if (this.sub) {
|
|
this.sub.unsubscribe()
|
|
}
|
|
}
|
|
|
|
setDateQuickFilter(qf: number) {
|
|
this.dateBefore = null
|
|
let date = new Date()
|
|
switch (qf) {
|
|
case LAST_7_DAYS:
|
|
date.setDate(date.getDate() - 7)
|
|
break;
|
|
|
|
case LAST_MONTH:
|
|
date.setMonth(date.getMonth() - 1)
|
|
break;
|
|
|
|
case LAST_3_MONTHS:
|
|
date.setMonth(date.getMonth() - 3)
|
|
break
|
|
|
|
case LAST_YEAR:
|
|
date.setFullYear(date.getFullYear() - 1)
|
|
break
|
|
|
|
}
|
|
this.dateAfter = formatDate(date, 'yyyy-MM-dd', "en-us", "UTC")
|
|
this.onChange()
|
|
}
|
|
|
|
onChange() {
|
|
this.dateAfterChange.emit(this.dateAfter)
|
|
this.dateBeforeChange.emit(this.dateBefore)
|
|
this.datesSet.emit({after: this.dateAfter, before: this.dateBefore})
|
|
}
|
|
|
|
onChangeDebounce() {
|
|
this.datesSetDebounce$.next({after: this.dateAfter, before: this.dateBefore})
|
|
}
|
|
|
|
clearBefore() {
|
|
this.dateBefore = null
|
|
this.onChange()
|
|
}
|
|
|
|
clearAfter() {
|
|
this.dateAfter = null
|
|
this.onChange()
|
|
}
|
|
|
|
}
|