-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathbaseModel.js
36 lines (34 loc) · 983 Bytes
/
baseModel.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
import path from 'path'
const low = require('lowdb')
const lodashId = require('lodash-id')
const FileAsync = require('lowdb/adapters/FileAsync')
const dbFile = path.join(__dirname, '../db/db.json')
const adapter = new FileAsync(dbFile)
let instance = undefined
module.exports = {
init: function (context) {
return new Promise((resolve, reject) => {
if (instance === undefined) {
low(adapter).then(db => {
db._.mixin(lodashId)
instance = db;
resolve(db.get(context))
})
} else {
resolve(instance.get(context))
}
})
},
read: () => {
return new Promise((resolve, reject) => {
if (instance === undefined) {
resolve()
}
else {
instance.read().then(() => {
resolve()
})
}
})
}
}