mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Merge pull request #852 from paperless-ngx/fix-818
Fix: Older dates do not display on frontend
This commit is contained in:
commit
7ae31def4f
@ -34,6 +34,7 @@ import {
|
|||||||
} from 'rxjs/operators'
|
} from 'rxjs/operators'
|
||||||
import { PaperlessDocumentSuggestions } from 'src/app/data/paperless-document-suggestions'
|
import { PaperlessDocumentSuggestions } from 'src/app/data/paperless-document-suggestions'
|
||||||
import { FILTER_FULLTEXT_MORELIKE } from 'src/app/data/filter-rule-type'
|
import { FILTER_FULLTEXT_MORELIKE } from 'src/app/data/filter-rule-type'
|
||||||
|
import { normalizeDateStr } from 'src/app/utils/date'
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-document-detail',
|
selector: 'app-document-detail',
|
||||||
@ -146,7 +147,7 @@ export class DocumentDetailComponent
|
|||||||
.pipe(takeUntil(this.unsubscribeNotifier))
|
.pipe(takeUntil(this.unsubscribeNotifier))
|
||||||
.subscribe((changes) => {
|
.subscribe((changes) => {
|
||||||
if (this.ogDate) {
|
if (this.ogDate) {
|
||||||
let newDate = new Date(changes['created'])
|
let newDate = new Date(normalizeDateStr(changes['created']))
|
||||||
newDate.setHours(
|
newDate.setHours(
|
||||||
this.ogDate.getHours(),
|
this.ogDate.getHours(),
|
||||||
this.ogDate.getMinutes(),
|
this.ogDate.getMinutes(),
|
||||||
@ -154,7 +155,7 @@ export class DocumentDetailComponent
|
|||||||
this.ogDate.getMilliseconds()
|
this.ogDate.getMilliseconds()
|
||||||
)
|
)
|
||||||
this.documentForm.patchValue(
|
this.documentForm.patchValue(
|
||||||
{ created: this.formatDate(newDate) },
|
{ created: newDate.toISOString() },
|
||||||
{ emitEvent: false }
|
{ emitEvent: false }
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
@ -199,22 +200,22 @@ export class DocumentDetailComponent
|
|||||||
this.updateComponent(doc)
|
this.updateComponent(doc)
|
||||||
}
|
}
|
||||||
|
|
||||||
this.ogDate = new Date(doc.created)
|
this.ogDate = new Date(normalizeDateStr(doc.created.toString()))
|
||||||
|
|
||||||
// Initialize dirtyCheck
|
// Initialize dirtyCheck
|
||||||
this.store = new BehaviorSubject({
|
this.store = new BehaviorSubject({
|
||||||
title: doc.title,
|
title: doc.title,
|
||||||
content: doc.content,
|
content: doc.content,
|
||||||
created: this.formatDate(this.ogDate),
|
created: this.ogDate.toISOString(),
|
||||||
correspondent: doc.correspondent,
|
correspondent: doc.correspondent,
|
||||||
document_type: doc.document_type,
|
document_type: doc.document_type,
|
||||||
archive_serial_number: doc.archive_serial_number,
|
archive_serial_number: doc.archive_serial_number,
|
||||||
tags: [...doc.tags],
|
tags: [...doc.tags],
|
||||||
})
|
})
|
||||||
|
|
||||||
// ensure we're always starting with 24-char ISO8601 string
|
// start with ISO8601 string
|
||||||
this.documentForm.patchValue(
|
this.documentForm.patchValue(
|
||||||
{ created: this.formatDate(this.ogDate) },
|
{ created: this.ogDate.toISOString() },
|
||||||
{ emitEvent: false }
|
{ emitEvent: false }
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -486,8 +487,4 @@ export class DocumentDetailComponent
|
|||||||
this.password = (event.target as HTMLInputElement).value
|
this.password = (event.target as HTMLInputElement).value
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
formatDate(date: Date): string {
|
|
||||||
return date.toISOString().split('.')[0] + 'Z'
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
import { DatePipe } from '@angular/common'
|
import { DatePipe } from '@angular/common'
|
||||||
import { Inject, LOCALE_ID, Pipe, PipeTransform } from '@angular/core'
|
import { Inject, LOCALE_ID, Pipe, PipeTransform } from '@angular/core'
|
||||||
import { SettingsService, SETTINGS_KEYS } from '../services/settings.service'
|
import { SettingsService, SETTINGS_KEYS } from '../services/settings.service'
|
||||||
|
import { normalizeDateStr } from '../utils/date'
|
||||||
|
|
||||||
const FORMAT_TO_ISO_FORMAT = {
|
const FORMAT_TO_ISO_FORMAT = {
|
||||||
longDate: 'y-MM-dd',
|
longDate: 'y-MM-dd',
|
||||||
@ -33,6 +34,7 @@ export class CustomDatePipe implements PipeTransform {
|
|||||||
this.settings.get(SETTINGS_KEYS.DATE_LOCALE) ||
|
this.settings.get(SETTINGS_KEYS.DATE_LOCALE) ||
|
||||||
this.defaultLocale
|
this.defaultLocale
|
||||||
let f = format || this.settings.get(SETTINGS_KEYS.DATE_FORMAT)
|
let f = format || this.settings.get(SETTINGS_KEYS.DATE_FORMAT)
|
||||||
|
if (typeof value == 'string') value = normalizeDateStr(value)
|
||||||
if (l == 'iso-8601') {
|
if (l == 'iso-8601') {
|
||||||
return this.datePipe.transform(value, FORMAT_TO_ISO_FORMAT[f], timezone)
|
return this.datePipe.transform(value, FORMAT_TO_ISO_FORMAT[f], timezone)
|
||||||
} else {
|
} else {
|
||||||
|
5
src-ui/src/app/utils/date.ts
Normal file
5
src-ui/src/app/utils/date.ts
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
// see https://github.com/dateutil/dateutil/issues/878 , JS Date does not
|
||||||
|
// seem to accept these strings as valid dates so we must normalize offset
|
||||||
|
export function normalizeDateStr(dateStr: string): string {
|
||||||
|
return dateStr.replace(/-(\d\d):\d\d:\d\d/gm, `-$1:00`)
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user