Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

⏱ WIP: Async Storage Plugin

License

NotificationsYou must be signed in to change notification settings

ngxs-labs/async-storage-plugin

Repository files navigation


Supports custom storage engine with async access

NPMLicense

📦 Install

To install@ngxs-labs/async-storage-plugin run the following command:

npm install --save @ngxs-labs/async-storage-plugin#orif you use yarnyarn add @ngxs-labs/async-storage-plugin

🔨 Usage

Import the module into your root application module:

import{NgModule}from'@angular/core';import{NgxsModule}from'@ngxs/store';import{NgxsAsyncStoragePluginModule}from'@ngxs-labs/async-storage-plugin';@NgModule({imports:[NgxsModule.forRoot(states),NgxsAsyncStoragePluginModule.forRoot(YOUR_CUSTOM_ENGINE)]})exportclassAppModule{}

Custom Async Storage Engine

You can implement your own async storage engine by providing an engine that implementsAsyncStorageEngine:

exportclassMyAsyncStorageEngineimplementsAsyncStorageEngine{constructor(privatestorage:YourStorage){}length():Observable<number>{// Your logic here}getItem(key:any):Observable<any>{// Your logic here}setItem(key:any,val:any):void{// Your logic here}removeItem(key:any):void{// Your logic here}clear():void{// Your logic here}key(val:number):Observable<string>{// Your logic here}}@NgModule({imports:[NgxsModule.forRoot([]),NgxsAsyncStoragePluginModule.forRoot(MyAsyncStorageEngine)]})exportclassAppModule{}

If your async storage returns aPromise you can wrap calls withfrom(storage.length()) fromrxjs.

Code Samples

Custom Ionic Storage Engine

Here is an example implementation of theAsyncStorageEngine using the Ionic Storage.You can find theStorageService in the integration project.

import{Injectable,NgModule}from'@angular/core';import{IonicStorageModule,Storage}from'@ionic/storage';import{AsyncStorageEngine,NgxsAsyncStoragePluginModule}from'@ngxs-labs/async-storage-plugin';import{NgxsModule}from'@ngxs/store';import{from,Observable}from'rxjs';@Injectable({providedIn:'root'})exportclassStorageServiceimplementsAsyncStorageEngine{constructor(privatestorage:Storage){}length():Observable<number>{returnfrom(this.storage.length());}getItem(key:any):Observable<any>{returnfrom(this.storage.get(key));}setItem(key:any,val:any):void{this.storage.set(key,val);}removeItem(key:any):void{this.storage.remove(key);}clear():void{this.storage.clear();}key(val:number):Observable<string>{returnfrom(this.storage.keys().then(keys=>keys[val]));}}@NgModule({imports:[NgxsModule.forRoot([]),NgxsAsyncStoragePluginModule.forRoot(StorageService),IonicStorageModule.forRoot()]})exportclassAppModule{}

Options and Migrations

This plugin provides the same options and migration settings as theStorage Plugin. SeeOptions andMigrations here.

About

⏱ WIP: Async Storage Plugin

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors6


[8]ページ先頭

©2009-2025 Movatter.jp