mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-13 08:12:40 +10:00
* feat: database redist support * feat: rearchitecture of database schemas, migration reset, and #180 * feat: import redists * fix: giantbomb logging bug * feat: partial user platform support + statusMessage -> message * feat: add user platform filters to store view * fix: sanitize svg uploads ... copilot suggested this I feel dirty. * feat: beginnings of platform & redist management * feat: add server side redist patching * fix: update drop-base commit * feat: import of custom platforms & file extensions * fix: redelete platform * fix: remove platform * feat: uninstall commands, new R UI * checkpoint: before migrating to nuxt v4 * update to nuxt 4 * fix: fixes for Nuxt v4 update * fix: remaining type issues * feat: initial feedback to import other kinds of versions * working commit * fix: lint * feat: redist import
95 lines
2.1 KiB
TypeScript
95 lines
2.1 KiB
TypeScript
import type { FilterConditionally } from "./types";
|
|
|
|
interface PriorityTagged<T> {
|
|
object: T;
|
|
priority: number; // Higher takes priority
|
|
addedIndex: number; // Lower takes priority
|
|
}
|
|
|
|
export class PriorityList<T> {
|
|
private source: Array<PriorityTagged<T>> = [];
|
|
private cachedSorted: Array<T> | undefined;
|
|
|
|
push(item: T, priority: number = 0) {
|
|
this.source.push({
|
|
object: item,
|
|
priority,
|
|
addedIndex: this.source.length,
|
|
});
|
|
this.cachedSorted = undefined;
|
|
}
|
|
|
|
pop(index: number = 0) {
|
|
this.cachedSorted = undefined;
|
|
return this.source.splice(index, 1)[0];
|
|
}
|
|
|
|
values() {
|
|
if (this.cachedSorted !== undefined) {
|
|
return this.cachedSorted;
|
|
}
|
|
|
|
const sorted = this.source
|
|
.sort((a, b) => {
|
|
if (a.priority == a.priority) {
|
|
return a.addedIndex - b.addedIndex;
|
|
}
|
|
|
|
return b.priority - a.priority;
|
|
})
|
|
.map((e) => e.object);
|
|
this.cachedSorted = sorted;
|
|
|
|
return this.cachedSorted;
|
|
}
|
|
|
|
find(predicate: (value: T, index: number, obj: T[]) => boolean) {
|
|
return this.source.map((e) => e.object).find(predicate);
|
|
}
|
|
}
|
|
|
|
type IndexableProperty<T> = keyof FilterConditionally<
|
|
T,
|
|
(() => string) | string
|
|
>;
|
|
export class PriorityListIndexed<T> extends PriorityList<T> {
|
|
private indexName: IndexableProperty<T>;
|
|
private indexMap = new Map<string, T>();
|
|
|
|
constructor(indexName: IndexableProperty<T>) {
|
|
super();
|
|
this.indexName = indexName;
|
|
}
|
|
|
|
private getIndex(object: T): string {
|
|
const index = object[this.indexName];
|
|
|
|
if (typeof index === "function") {
|
|
return index();
|
|
}
|
|
|
|
return index as string;
|
|
}
|
|
|
|
override push(item: T, priority?: number): void {
|
|
const index = this.getIndex(item);
|
|
this.indexMap.set(index, item);
|
|
|
|
super.push(item, priority);
|
|
}
|
|
|
|
override pop(position?: number): PriorityTagged<T> {
|
|
const value = super.pop(position);
|
|
if(!value) return undefined!;
|
|
|
|
const index = this.getIndex(value.object);
|
|
this.indexMap.delete(index);
|
|
|
|
return value!;
|
|
}
|
|
|
|
get(index: string) {
|
|
return this.indexMap.get(index);
|
|
}
|
|
}
|