You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-11-26 22:41:17 +02:00
Mobile: Support building for web (#10650)
This commit is contained in:
84
packages/app-mobile/utils/database-driver-react-native.ts
Normal file
84
packages/app-mobile/utils/database-driver-react-native.ts
Normal file
@@ -0,0 +1,84 @@
|
||||
const SQLite = require('react-native-sqlite-storage');
|
||||
|
||||
|
||||
export default class DatabaseDriverReactNative {
|
||||
private lastInsertId_: string;
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
|
||||
private db_: any;
|
||||
public constructor() {
|
||||
this.lastInsertId_ = null;
|
||||
}
|
||||
|
||||
public open(options: { name: string }) {
|
||||
// SQLite.DEBUG(true);
|
||||
return new Promise<void>((resolve, reject) => {
|
||||
SQLite.openDatabase(
|
||||
{ name: options.name },
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
|
||||
(db: any) => {
|
||||
this.db_ = db;
|
||||
resolve();
|
||||
},
|
||||
(error: Error) => {
|
||||
reject(error);
|
||||
},
|
||||
);
|
||||
});
|
||||
}
|
||||
|
||||
public sqliteErrorToJsError(error: Error) {
|
||||
return error;
|
||||
}
|
||||
|
||||
public selectOne(sql: string, params: unknown = null) {
|
||||
return new Promise<unknown>((resolve, reject) => {
|
||||
this.db_.executeSql(
|
||||
sql,
|
||||
params,
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
|
||||
(r: any) => {
|
||||
resolve(r.rows.length ? r.rows.item(0) : null);
|
||||
},
|
||||
(error: Error) => {
|
||||
reject(error);
|
||||
},
|
||||
);
|
||||
});
|
||||
}
|
||||
|
||||
public selectAll(sql: string, params: unknown = null) {
|
||||
// eslint-disable-next-line promise/prefer-await-to-then -- Old code before rule was applied
|
||||
return this.exec(sql, params).then(r => {
|
||||
const output = [];
|
||||
for (let i = 0; i < r.rows.length; i++) {
|
||||
output.push(r.rows.item(i));
|
||||
}
|
||||
return output;
|
||||
});
|
||||
}
|
||||
|
||||
public loadExtension(path: string) {
|
||||
throw new Error(`No extension support for ${path} in react-native-sqlite-storage`);
|
||||
}
|
||||
|
||||
public exec(sql: string, params: unknown = null) {
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Partial refactor of old code from before rule was applied
|
||||
return new Promise<any>((resolve, reject) => {
|
||||
this.db_.executeSql(
|
||||
sql,
|
||||
params,
|
||||
(r: { insertId: string }) => {
|
||||
if ('insertId' in r) this.lastInsertId_ = r.insertId;
|
||||
resolve(r);
|
||||
},
|
||||
(error: Error) => {
|
||||
reject(error);
|
||||
},
|
||||
);
|
||||
});
|
||||
}
|
||||
|
||||
public lastInsertId() {
|
||||
return this.lastInsertId_;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user