Fix new queue items not being sorted properly.

This commit is contained in:
Bauke 2022-10-25 14:54:22 +02:00
parent ce7fbfe349
commit 1bf8f519c6
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
1 changed files with 9 additions and 2 deletions

View File

@ -39,10 +39,12 @@ export class Settings {
public async insertQueueItem(text: string, url: string): Promise<void> {
const id = this.newQueueItemId();
const sortIndex = this.newQueueItemSortIndex();
const item: Queue.Item = {
added: new Date(),
id,
sortIndex: id,
sortIndex,
text,
url,
};
@ -52,7 +54,7 @@ export class Settings {
[`qi${id}`]: {
added: item.added.toISOString(),
id,
sortIndex: id,
sortIndex,
text,
url,
},
@ -85,6 +87,11 @@ export class Settings {
return item === undefined ? 1 : item.id + 1;
}
public newQueueItemSortIndex(): number {
const item = this.queue.sort((a, b) => b.sortIndex - a.sortIndex)[0];
return item === undefined ? 1 : item.sortIndex + 1;
}
public nextQueueItem(): Queue.Item | undefined {
return this.queue.sort((a, b) => a.sortIndex - b.sortIndex)[0];
}