Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

init storage engine before ngxs starts #162

Open
pentabarf opened this issue Mar 29, 2021 · 2 comments
Open

init storage engine before ngxs starts #162

pentabarf opened this issue Mar 29, 2021 · 2 comments

Comments

@pentabarf
Copy link

Hello,

I am trying to use the async-storage-plugin together with cordova-sqlite-storage.
The Storage Engine needs to get initialized (open DB etc.)
Where is the right place to do this? AsyncStoragePlugin always wants to access before the DB is available.
I was trying to init the DB with angular APP_INITIALIZER but this gets triggered after Ngxs init routines.

@pentabarf
Copy link
Author

I also tried to use ngxsOnInit hook. but when using AsyncStoragePlugin ngxsOnInit never gets called. But it gets called when i disable AsyncStoragePlugin

@thmclellan
Copy link

thmclellan commented Jul 20, 2021

Maybe too late, but I tried initializing ionic storage (2.x) in the angular APP_INITIALIZER (with blocking to wait until ionic storage was ready). My app.module.ts included:

NgxsModule.forRoot([], { developmentMode }), NgxsAsyncStoragePluginModule.forRoot(CustomStorageService),

And then I loaded all of my states in a child module (core.module.ts):

NgxsModule.forFeature([ AccountState, UserState...])

This has been working on Ionic 4 / Capacitor 2 for iOS, Android, and web.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants