Socket
Socket
Sign inDemoInstall

amos-persist

Package Overview
Dependencies
2
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    amos-persist

Hybrid amos with redux.


Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Install size
574 kB
Created
Weekly downloads
 

Readme

Source

amos-persist

Ther persitor plugin for amos.

Table of Contents

Installation

yarn add amos-persist

# or var npm
npm i -S amos-persist

Quick start

  1. Create the store

    import { createStore } from 'amos';
    import { withPersist } from 'amos-persist';
    
    const store = createStore(
      void 0,
      withPersist({
        engine: localStorage,
        key: 'AMOS_STATE_SNAPSHOT',
      }),
    );
    
  2. Hydrate the state with react

    import { PersistGate } from 'amos-persist/react';
    import { Provider } from 'amos-react';
    import { useEffect, useState } from 'react';
    
    const App = () => {
      return (
        <Provider store={store}>
          <PersistGate loading={<Loading />}>
            <MyAwesomeComponent />
          </PersistGate>
        </Provider>
      );
    };
    

API Reference

Initialization

withPersist(options)

Create persist enhancer to load and persist state automatically.

import { StoreEnhancer } from 'amos';

export declare function withPersist(options?: PersistOptions): StoreEnhancer;
PersistOptions
export declare interface PersistOptions {
  /**
   * The key of the state persisted in the engine
   */
  key: string;
  /**
   * The engine of the persist, supports localStorage/sessionStorage
   * in browser, and AsyncStorage in react-native.
   */
  engine: StorageEngine;
  /**
   * determine the box should be persisted/hydrated or not.
   */
  includes?: Array<Box | string> | ((box: Box) => boolean);
  /**
   * determine the box should be persisted/hydrated or not.
   *
   * Please note the `excludes` has priority over `includes`.
   */
  excludes?: Array<Box | string> | ((box: Box) => boolean);
}
StorageEngine
export declare interface StorageEngine {
  getItem(key: string): string | null | Promise<string | null>;
  setItem(key: string): void | Promise<void>;
  removeItem(key: string): void | Promise<void>;
}

Hydrate state

hydrate()

hydrate is a ActionFactory to start hydrate action.

import { ActionFactory } from 'amos';

export declare const hydrate: ActionFactory<[], Promise<void>>;
hydrateStatusBox

The hydrate status, it is a Box.

import { Box } from 'amos';

export declare const hydrateStatusBox: Box<HydrateStautsState>;
HydrateStautsState
export declare interface HydrateStautsState {
  status: 'PENDING' | 'HYDRATING' | 'OK' | 'ERROR';
  error: Error | null;
}

React integration

Please note the following API should be imported from amos-persist/react rather than amos-persist.

PersistGate

A component to hydrate state automatically

import { FC } from 'react';

export declare const PersistGate: FC<PersistGateProps>;
PersistGateProps
import { ReactElement } from 'react';

export declare interface PersistGateProps {
  loading?: ReactElement | null;
  children?: ReactElement | null;
}

License

The MIT License (MIT)

Copyright (c) 2020 acrazing

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

FAQs

Last updated on 04 Aug 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc