-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.js
47 lines (44 loc) · 1.13 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import Realm from 'realm';
import './libs/extensions';
/**
* @typedef OdlRealmConfiguration
* @property {Function} migration
* @property {function} shouldCompactOnLaunch
*/
class DB {
/**
*
* @param {Realm.Configuration | OdlRealmConfiguration } options
*/
constructor (options) {
/* istanbul ignore next */
if (options.migration && !options.onMigration) {
console.warn("Use of deprecated option migration, replace with onMigration")
options.onMigration = options.migration;
}
/* istanbul ignore next */
if (options.shouldCompactOnLaunch && !options.shouldCompact) {
console.warn("Use of deprecated option shouldCompactOnLaunch, use shouldCompact")
options.shouldCompact = options.shouldCompactOnLaunch;
}
this.realmOptions = options;
}
/**
* @static
* @type {Realm}
*/
static db;
open () {
return new Promise((resolve, reject) => {
try {
let db = new Realm(this.realmOptions);
DB.db = db;
resolve(db);
} catch (error) {
/* istanbul ignore next */
reject(error);
}
});
}
}
export default DB;