3.1.5 • Published 2 months ago

@vovikilelik/react-lens v3.1.5

Weekly downloads
87
License
LGPL-2.1-or-later
Repository
github
Last release
2 months ago

It is the ReactJS implementation for lens-js. See for more functionality.

Abstract

react-lens is a functional state manager for ReactJS. The whole state is divided into separate models. Each model can be associated with a atom or part of a shared state. All models are inherited from the base model, which already has most of the necessary functions, but you can extend it if necessary.

At its core, the lens-js library is used, which can work on different frameworks in the same way. This means that some of your code can be transferred between frameworks.

Links

Instalation

npm i @vovikilelik/react-lens

Example

The createStore() utility Creates a model. The useLens() hook will create a subscription to changes in the model and guarantee that the component will be redrawn if the model has changed. It is used in the same way as the built-in ReactJS useState().

const store = createStore(0);

const Counter: React.FC = () => {
  const [count, setCount] = useLens(store);

  return (
    <button onClick={() => setCount(count + 1)}>
      { count }
    </button>
  );
}

Overview

react-lens depends of lens-js. See it for more functionality.

Main Futures

  • Global state definition
  • Local (Dynamic) state definition
  • Nested state
  • Dedouncing and throttling
  • Extending
  • Incapsulation
  • Typings

Uses

State Definition Ways

react-lens allows you to create a global and local state. It will depend on your needs.

The global state is well suited for the shared state of the application. Local is suitable for implementing complex components or shared components distributed between your projects.

Global State Definition

To create a global state, the createStore() method is used.

export const store = createStore({ /* Initial data */ });

This method has more functionality, see lens-js

Local State Definition

A local state can be created using the same method - createStore(). However, there is an easier way using hook useLocalStore(). It has the same functionality as the createStore() method.

cont initData = { message: 'Hello!' };

const Component: React.FC = () => {
  const localStore = useLocalStore(initData);
  ...
}

There are other hooks to simplify the development of components. The useStaticLocalStore() hook will not be updated when the data used during creation changes.

const Component: React.FC = () => {
  const localStore = useStaticLocalStore({ message: 'No updating' });
  ...
}

Hook useDerivedStore will monitor the change in the state of the parent component.

const Component: React.FC<{ parentValue: any }> = ({ parentValue }) => {
  const localStore = useDerivedStore(parentValue);
  ...
}

Model Extending

The react-lens models can be extended with two approaches: functional and Object-oriented. These methods are slightly different, but in general they give an equivalent result.

Functional Way

For expansion in the functional approach, the extends() method is used. It is passed either an object that will be transformed into state nodes or a function that will be combined with a common prototype.

const store = createStore({})
  .extends({ message: 'Hello' })
  .extends(node => {
    sayHello: name => `${node.message} ${name}`
  });

store.sayHello('Martin');  // Hello Martin!

Nested Models Definition

The functional method makes it easy to embed child models. However, this is only a convenient conversion. Any nested models can still be accessed using the go() method.

const nested = createStore('Hello!');

const store = createStore({})
  .extends({ nested });

const value1 = store.nested.get();  // Hello!
const value2 = store.go('nested').get();  // Hello!

There is a simplified way to access the data associated with the model. Use view() instead of extends().

const store = createStore({})
  .view({ nested: 'Hello!' });

console.log(store.nested);  // Hello!

store.nested = 'Hey!';
console.log(store.nested);  // Hey!

Object-oriented Way

For expansion in the Object-oriented approach, class notation is used. A custom class can be inherited from Lensclass or one of its heirs, like Store.

/* Create child of one of Lens instance */
class MyCar extends Store {
  public move() { ... }
}

/* Create store with MyCar prototype */
const carState = createStore({ ... }, MyCar);
carState.move();

The same can be done when declaring a local state.

class MyCar extends Store { ... }

const Component: React.FC = () => {
  const localStore = useLocalStore(initData, MyCar);
  localStore.move();
  ...
}

Atoms

react-lens does not use the global scope. This allows you to create as many small states as you want. We recommend using this approach. This will simplify the work with data and improve the performance of the application.

export const options = createStore({ theme: 'white' });
export const auth = createStore({ username: 'Tom' });
...

Async operations

All changes in react-lens are processed asynchronously. That means two things:

  1. Multiple changes are glued together in one cascade and do not lead to multiple updates.
  2. It is safe to work with the state from an asynchronous context. There is no need to use middleware for this.

Catching changes

Automatic catching

react-lens allows you to track changes in models. This happens automatically when you use the useLens() hook.

const Component: React.FC<{ lens: Lens<string> }> = ({ lens }) => {
  const [value, setValue] = useLens(lens);  // Automatic catching and rendering
  ...
}

It is worth noting that the hooks for creating a local state, like useLocalStore(), will not update the component if the state changes. In order for the component to respond to changes, you can use the useLens() hook.

const Component: React.FC = () => {
  const localStore = useLocalStore(initData);

  /* Needs for updating component when localStore changed */
  const [value, setValue] = useLens(localStore);
  ...
}

However, you can manage subscriptions manually using the built-in functions in the model. The useSubscribe() hook will create a subscription to changes in the model.

const Component: React.FC = () => {
  const localStore = useLocalStore(initData);

  const callback = useCallback(() => { /* You reaction on changes */ }, []);
  useSubscribe(localStore, callback);
  ...
}

Catching nested stores

It doesn't really matter how many child models you use. There is one rule - use useLens() where you need to update the component.

const globalStore = createStore({}).view({ nested: 0 });

const Nested: React.FC<{ store: Store<number> }> = ({ store }) => {
  const [value] = useLens(store);  // Use useLens() on any store for catching changes and rerendering
  return <>{value}</>
}

const Global: React.FC = () => (
  <button onClick={() => globalStore.nested = Math.random()}>
    <Text lens={globalStore.nested} />
  </button>
);

Note that it makes no sense for us to update the Global component.

Custom Triggers

In cases where we don't need extra updates, we can set special triggers that will prevent unnecessary updates. This is the functionality of lens-js, see it for more information.

Triggers are specified in the useLens() hook by the second and subsequent arguments like useLens(lens, ...triggers).

A trigger is a listener-like function that returns 3 values: true, false or undefined.

const store = createStore(0);

const evenTrigger: Trigger<number> = (event, node) => node.get() % 2 === 0;

const Component: React.FC = () => {
  const [value] = useLens(store, evenTrigger);  // Will render if store will be even
  return <>{value}</>
}

It is worth noting that useLens() already uses Trigger.object by default. Don't forget to specify it if you need it.

const [value] = useLens(store, Triggers.object, evenTrigger);

Some system triggers have been replaced with their string counterparts: object, path, subtree, strict and all.

const [value] = useLens(store, 'object', evenTrigger);

The order of the tierggers matters. react-lens will stop processing all other triggers as soon as it encounters the first one, which returns true or false. If the trigger returns a certain value, then react-lens will decide what to do. true - to react to changes, false - not to react. The undefined value will not update the component, but will transfer control to the next trigger.

useLens(store, () => { /* called */ }, () => true, () => { /* not called */ });
useLens(store, () => { /* called */ }, () => false, () => { /* not called */ });

All system triggers will return undefined if they failed validation and pass control to the next trigger.

Utils

Some utilities are described in lens-js, see it for more information.

useLensDebounce()

The useLensDebounce() hook allows you to create a bidirectional listener that will update the state with a delay. It works the same way as useLens().

Creating an input field for asynchronous search is simple!

const DebounceInput: React.FC<{ lens: Lens<string> }> = ({ lens }) => {
  const [value, setValue] = useLensDebounce(lens, 1000);

  return <input value={value} onChange={e => setValue(e.target.value)} />
}

const Form: React.FC = () => {
  const localStore = createStore('');

  const doResponse = useCallback(() => fetch(...), []);
  useSubscribe(localStore, doResponse);

  return <DebounceInput lens={localStore} />
}

useLensContext()

useLensContext() may be needed if you are developing hooks related to the external state, which should be integrated into the application in parallel with other models. This will help to better test the application on react-lens.

const AuthorizeContext = createLensContext();
const authorizeStore = createStore({ ... });

const useAuthorize = () => {
  ...
  return useLensContext(authorizeContext, authorizeStore);
}

const Form: React.FC = () => {
  const [auth] = useAuthorize();
  ...
}

/* On prod and dev */
const Production: React.FC = () => {
  ...
  return <Form />;
}

/* Testing */
const Test: React.FC = () => {
  const testStore = createStore({ ... });

  return (
    <AuthorizeContext.Provider value={testStore}>
      <Form />
    </AuthorizeContext.Provider>
  );
}

Creation statefull components

You can create an own class component extending LensComponent<L, P, S>, like React.Component<P, S>, where L is type of Lens node.

export class Counter extends LensComponent {

    public render() {
        const {lens} = this.props;
        const {value} = this.state;
        return <button onClick={ () => lens.set(value + 1) }>{ value }</button>
    }
}

/* uses */
<Counter lens={/* Your counter lens */} />

For more documentation see Wiki documentation.

3.1.5

2 months ago

3.1.3

3 months ago

3.1.4

3 months ago

3.1.2

4 months ago

3.1.1

4 months ago

3.1.0

5 months ago

3.0.4

7 months ago

3.0.3

7 months ago

3.0.10

6 months ago

3.0.2

7 months ago

3.0.11

6 months ago

3.0.1

7 months ago

3.0.8

7 months ago

3.0.7

7 months ago

3.0.6

7 months ago

3.0.5

7 months ago

3.0.0

7 months ago

3.0.0-beta.1

7 months ago

3.0.0-beta.0

7 months ago

2.1.2

7 months ago

2.1.1

7 months ago

2.1.3

7 months ago

3.0.9

6 months ago

2.1.0

7 months ago

2.0.17

9 months ago

2.0.18

8 months ago

2.0.16

11 months ago

2.0.15

1 year ago

2.0.14

1 year ago

2.0.5

2 years ago

2.0.4

2 years ago

2.0.7

1 year ago

2.0.6

2 years ago

2.0.9

1 year ago

2.0.8

1 year ago

2.0.0-beta3

2 years ago

2.0.3-beta3

2 years ago

2.0.1-beta3

2 years ago

2.0.13

1 year ago

2.0.11

1 year ago

2.0.12

1 year ago

2.0.10

1 year ago

2.0.2-beta3

2 years ago

1.6.0

2 years ago

2.0.0-beta2

2 years ago

1.5.3

2 years ago

1.5.2

2 years ago

1.5.1

2 years ago

1.5.0

2 years ago

1.4.1

2 years ago

1.4.0

3 years ago

1.3.8

3 years ago

1.3.7

3 years ago

1.3.6

3 years ago

1.3.5

3 years ago

1.3.4

3 years ago

1.3.3

3 years ago

1.3.2

3 years ago

1.3.1

3 years ago

1.3.0

3 years ago

1.2.1

3 years ago

1.2.0

3 years ago

1.1.9

3 years ago

1.1.8

3 years ago

1.1.7

3 years ago

1.1.6

3 years ago

1.1.5

3 years ago

1.1.4

3 years ago

1.1.3

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago

0.2.1

3 years ago

0.1.1

3 years ago

0.1.0

3 years ago