ground-db icon indicating copy to clipboard operation
ground-db copied to clipboard

loadDatabase not working

Open ashish979 opened this issue 7 years ago • 0 comments

Hi @raix

I am using groundDb in an exiting application. Right now I am simply trying to ground Meteor.users:

GroundedUsers = new Ground.Collection("Meteor.users")
GroundedUsers.observeSource(Meteor.users.find())
if Meteor.isCordova && Meteor.status() != 'connected'
  GroundedUsers.loadDatabase()

The above did not work. So, I tried overriding find and findOne method:

Meteor.users.find = (args...) ->
    GroundedUsers.find(args...)
Meteor.users.findOne = (args...) ->
    GroundedUsers.findOne(args...)

Now, Meteor.users.find({_id: Meteor.userId()}).fetch() should return a document but it returns a plain object. I have apply Collection._transform to transform it into a document.

If loadDatabase() would be working, I should not have to do the same.

PS: Above code is written in coffeescript.

Any help would be nice.

Thanks

ashish979 avatar Jan 30 '18 16:01 ashish979