mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-16 20:37:21 +00:00
24 lines
594 B
TypeScript
24 lines
594 B
TypeScript
import type { KyselyPlugin, UnknownRow } from "kysely";
|
|
|
|
// @todo: add test
|
|
export class KyselyPluginRunner {
|
|
protected plugins: Set<KyselyPlugin>;
|
|
|
|
constructor(plugins: KyselyPlugin[] = []) {
|
|
this.plugins = new Set(plugins);
|
|
}
|
|
|
|
async transformResultRows<T>(rows: T[]): Promise<T[]> {
|
|
let copy = rows;
|
|
for (const plugin of this.plugins) {
|
|
const res = await plugin.transformResult({
|
|
queryId: "1" as any,
|
|
result: { rows: copy as UnknownRow[] },
|
|
});
|
|
copy = res.rows as T[];
|
|
}
|
|
|
|
return copy as T[];
|
|
}
|
|
}
|