| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- import { entityKind } from "../entity.js";
- import { DefaultLogger } from "../logger.js";
- import { PgDatabase } from "../pg-core/db.js";
- import { PgDialect } from "../pg-core/dialect.js";
- import { createTableRelationsHelpers, extractTablesRelationalConfig } from "../relations.js";
- import { XataHttpSession } from "./session.js";
- class XataHttpDriver {
- constructor(client, dialect, options = {}) {
- this.client = client;
- this.dialect = dialect;
- this.options = options;
- this.initMappers();
- }
- static [entityKind] = "XataDriver";
- createSession(schema) {
- return new XataHttpSession(this.client, this.dialect, schema, {
- logger: this.options.logger,
- cache: this.options.cache
- });
- }
- initMappers() {
- }
- }
- class XataHttpDatabase extends PgDatabase {
- static [entityKind] = "XataHttpDatabase";
- }
- function drizzle(client, config = {}) {
- const dialect = new PgDialect({ casing: config.casing });
- let logger;
- if (config.logger === true) {
- logger = new DefaultLogger();
- } else if (config.logger !== false) {
- logger = config.logger;
- }
- let schema;
- if (config.schema) {
- const tablesConfig = extractTablesRelationalConfig(config.schema, createTableRelationsHelpers);
- schema = {
- fullSchema: config.schema,
- schema: tablesConfig.tables,
- tableNamesMap: tablesConfig.tableNamesMap
- };
- }
- const driver = new XataHttpDriver(client, dialect, { logger, cache: config.cache });
- const session = driver.createSession(schema);
- const db = new XataHttpDatabase(
- dialect,
- session,
- schema
- );
- db.$client = client;
- db.$cache = config.cache;
- if (db.$cache) {
- db.$cache["invalidate"] = config.cache?.onMutate;
- }
- return db;
- }
- export {
- XataHttpDatabase,
- XataHttpDriver,
- drizzle
- };
- //# sourceMappingURL=driver.js.map
|