42 lines
1.3 KiB
JavaScript
42 lines
1.3 KiB
JavaScript
import { entityKind } from "../entity.js";
|
|
import { DefaultLogger } from "../logger.js";
|
|
import {
|
|
createTableRelationsHelpers,
|
|
extractTablesRelationalConfig
|
|
} from "../relations.js";
|
|
import { BaseSQLiteDatabase } from "../sqlite-core/db.js";
|
|
import { SQLiteSyncDialect } from "../sqlite-core/dialect.js";
|
|
import { ExpoSQLiteSession } from "./session.js";
|
|
class ExpoSQLiteDatabase extends BaseSQLiteDatabase {
|
|
static [entityKind] = "ExpoSQLiteDatabase";
|
|
}
|
|
function drizzle(client, config = {}) {
|
|
const dialect = new SQLiteSyncDialect({ 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 session = new ExpoSQLiteSession(client, dialect, schema, { logger });
|
|
const db = new ExpoSQLiteDatabase("sync", dialect, session, schema);
|
|
db.$client = client;
|
|
return db;
|
|
}
|
|
export {
|
|
ExpoSQLiteDatabase,
|
|
drizzle
|
|
};
|
|
//# sourceMappingURL=driver.js.map
|