|
@@ -12,20 +12,13 @@ module.exports = async (dbName, dsn="mongodb://localhost:27017/") => {
|
|
const Savable = mm(db).Savable
|
|
const Savable = mm(db).Savable
|
|
const slice = mm(db).sliceSavable
|
|
const slice = mm(db).sliceSavable
|
|
|
|
|
|
- function getModels(id){
|
|
|
|
|
|
+ async function getModels(id){
|
|
const SlicedSavable = slice([id, 'user'])
|
|
const SlicedSavable = slice([id, 'user'])
|
|
|
|
|
|
class User extends SlicedSavable {
|
|
class User extends SlicedSavable {
|
|
constructor(...params){
|
|
constructor(...params){
|
|
super(...params)
|
|
super(...params)
|
|
-
|
|
|
|
- if (this.moneyEvents instanceof Array)
|
|
|
|
- return
|
|
|
|
-
|
|
|
|
- if (this.moneyEvents instanceof SlicedSavable)
|
|
|
|
- this.moneyEvents = [this.moneyEvents];
|
|
|
|
-
|
|
|
|
- this.moneyEvents = [];
|
|
|
|
|
|
+ this.moneyEvents = this.moneyEvents instanceof Array ? this.moneyEvents : (this.moneyEvents ? [this.moneyEvents] : [])
|
|
}
|
|
}
|
|
|
|
|
|
static get relations(){
|
|
static get relations(){
|
|
@@ -39,14 +32,7 @@ module.exports = async (dbName, dsn="mongodb://localhost:27017/") => {
|
|
class Event extends SlicedSavable {
|
|
class Event extends SlicedSavable {
|
|
constructor(...params){
|
|
constructor(...params){
|
|
super(...params)
|
|
super(...params)
|
|
-
|
|
|
|
- if (this.moneyEvents instanceof Array)
|
|
|
|
- return
|
|
|
|
-
|
|
|
|
- if (this.moneyEvents instanceof SlicedSavable)
|
|
|
|
- this.moneyEvents = [this.moneyEvents];
|
|
|
|
-
|
|
|
|
- this.moneyEvents = [];
|
|
|
|
|
|
+ this.moneyEvents = this.moneyEvents instanceof Array ? this.moneyEvents : (this.moneyEvents ? [this.moneyEvents] : [])
|
|
}
|
|
}
|
|
|
|
|
|
get owner(){
|
|
get owner(){
|
|
@@ -102,8 +88,10 @@ module.exports = async (dbName, dsn="mongodb://localhost:27017/") => {
|
|
}
|
|
}
|
|
SlicedSavable.addClass(EventMoney)
|
|
SlicedSavable.addClass(EventMoney)
|
|
|
|
|
|
|
|
+ const thisUser = await Savable.m.User.findOne({_id: ObjectID(id)})
|
|
|
|
+
|
|
return {
|
|
return {
|
|
- SlicedSavable, User, Event, EventMoney
|
|
|
|
|
|
+ SlicedSavable, User, Event, EventMoney, thisUser
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|