mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Fix: handle document notes user format api change (#5751)
This commit is contained in:
parent
907b6d1294
commit
d83bbdc50b
@ -95,12 +95,12 @@ const doc: Document = {
|
|||||||
{
|
{
|
||||||
created: new Date(),
|
created: new Date(),
|
||||||
note: 'note 1',
|
note: 'note 1',
|
||||||
user: 1,
|
user: { id: 1, username: 'user1' },
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
created: new Date(),
|
created: new Date(),
|
||||||
note: 'note 2',
|
note: 'note 2',
|
||||||
user: 2,
|
user: { id: 2, username: 'user2' },
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
custom_fields: [
|
custom_fields: [
|
||||||
|
@ -19,22 +19,32 @@ const notes: DocumentNote[] = [
|
|||||||
{
|
{
|
||||||
id: 23,
|
id: 23,
|
||||||
note: 'Note 23',
|
note: 'Note 23',
|
||||||
user: 1,
|
user: {
|
||||||
|
id: 1,
|
||||||
|
username: 'user1',
|
||||||
|
first_name: 'User1',
|
||||||
|
last_name: 'Lastname1',
|
||||||
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 24,
|
id: 24,
|
||||||
note: 'Note 24',
|
note: 'Note 24',
|
||||||
user: 1,
|
user: {
|
||||||
|
id: 1,
|
||||||
|
username: 'user1',
|
||||||
|
first_name: 'User1',
|
||||||
|
last_name: 'Lastname1',
|
||||||
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 25,
|
id: 25,
|
||||||
note: 'Note 25',
|
note: 'Note 25',
|
||||||
user: 2,
|
user: { id: 2, username: 'user2' },
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 30,
|
id: 30,
|
||||||
note: 'Note 30',
|
note: 'Note 30',
|
||||||
user: 3,
|
user: { id: 3, username: 'user3' },
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
|
||||||
@ -123,11 +133,24 @@ describe('DocumentNotesComponent', () => {
|
|||||||
})
|
})
|
||||||
|
|
||||||
it('should handle note user display in all situations', () => {
|
it('should handle note user display in all situations', () => {
|
||||||
expect(component.displayName({ id: 1, user: 1 })).toEqual(
|
expect(
|
||||||
'User1 Lastname1 (user1)'
|
component.displayName({
|
||||||
)
|
id: 1,
|
||||||
expect(component.displayName({ id: 1, user: 2 })).toEqual('user2')
|
user: {
|
||||||
expect(component.displayName({ id: 1, user: 4 })).toEqual('')
|
id: 1,
|
||||||
|
username: 'user1',
|
||||||
|
first_name: 'User1',
|
||||||
|
last_name: 'Lastname1',
|
||||||
|
},
|
||||||
|
})
|
||||||
|
).toEqual('User1 Lastname1 (user1)')
|
||||||
|
expect(
|
||||||
|
component.displayName({ id: 1, user: { id: 2, username: 'user2' } })
|
||||||
|
).toEqual('user2')
|
||||||
|
expect(component.displayName({ id: 1, user: 2 } as any)).toEqual('user2')
|
||||||
|
expect(
|
||||||
|
component.displayName({ id: 1, user: { id: 4, username: 'user4' } })
|
||||||
|
).toEqual('')
|
||||||
expect(component.displayName({ id: 1 })).toEqual('')
|
expect(component.displayName({ id: 1 })).toEqual('')
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -146,7 +169,9 @@ describe('DocumentNotesComponent', () => {
|
|||||||
expect(addSpy).toHaveBeenCalledWith(12, note)
|
expect(addSpy).toHaveBeenCalledWith(12, note)
|
||||||
expect(toastsSpy).toHaveBeenCalled()
|
expect(toastsSpy).toHaveBeenCalled()
|
||||||
|
|
||||||
addSpy.mockReturnValueOnce(of([...notes, { id: 31, note, user: 1 }]))
|
addSpy.mockReturnValueOnce(
|
||||||
|
of([...notes, { id: 31, note, user: { id: 1 } }])
|
||||||
|
)
|
||||||
addButton.triggerEventHandler('click')
|
addButton.triggerEventHandler('click')
|
||||||
fixture.detectChanges()
|
fixture.detectChanges()
|
||||||
expect(fixture.debugElement.nativeElement.textContent).toContain(note)
|
expect(fixture.debugElement.nativeElement.textContent).toContain(note)
|
||||||
|
@ -84,7 +84,8 @@ export class DocumentNotesComponent extends ComponentWithPermissions {
|
|||||||
|
|
||||||
displayName(note: DocumentNote): string {
|
displayName(note: DocumentNote): string {
|
||||||
if (!note.user) return ''
|
if (!note.user) return ''
|
||||||
const user = this.users?.find((u) => u.id === note.user)
|
const user_id = typeof note.user === 'number' ? note.user : note.user.id
|
||||||
|
const user = this.users?.find((u) => u.id === user_id)
|
||||||
if (!user) return ''
|
if (!user) return ''
|
||||||
const nameComponents = []
|
const nameComponents = []
|
||||||
if (user.first_name) nameComponents.push(user.first_name)
|
if (user.first_name) nameComponents.push(user.first_name)
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
import { ObjectWithId } from './object-with-id'
|
import { ObjectWithId } from './object-with-id'
|
||||||
|
import { User } from './user'
|
||||||
|
|
||||||
export interface DocumentNote extends ObjectWithId {
|
export interface DocumentNote extends ObjectWithId {
|
||||||
created?: Date
|
created?: Date
|
||||||
note?: string
|
note?: string
|
||||||
user?: number // User
|
user?: User
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user