0.1.6 • Published 3 years ago

partially-shared-store v0.1.6

Weekly downloads
8
License
ISC
Repository
github
Last release
3 years ago

Partially Shared Store

This package provide tools for an easy implementation of a partially shared store.

Content

  • Install
  • What is a Partially Shared Store?

Install

  npm install partially-shared-store

What is a Partially Shared Store ?

Well, it is exactly what its name describes: a partially shared store. We are not trying to be provocative here, just emphatise that the reason of the understanding underlay in the lack of the context of the word "store". Let us reveal it by explaining word by word:

Store (Redux)

Redux is a library that provide tools for managing a certaing structure of an application. That structure consists in a unique state tree which can be modified from any point on the code through actions. We will not give further details, but let us remark the principes of redux:

  • Single source of truth. Meaning that the state is stored in one single object along the whole app.
  • State is read only. So it can be only change through actions, forcing the developers to follow the flow.
  • Changes are made with pure functions. So all the bussines logic is plain and clear.

The previous three points map one to one with the following concepts, roughtly defined:

  • Store. The manager of the state.
  • Action. The only triggers that can change the state. They contain information that decide how is that change.
  • Reducers. The pure functions with the logic of the change. As input, the current state and the action, as output the new state.

And the flow is:

                 USER              STATE
                   |                 |
                   |             current state
dipatches  action->|                 |
                   |---- action ---->|
                   |                 |<-reducer processes the action
                   |              new state
                   |                 |

This package provide a super set of all these elements for allowing us to work in a redux (generalized) flow.

Shared Store

One of the points of this generalization is that redux store is not restricted to one application or application instance but it can be shared by several of them. To achieve that sharing a server-client model is used, in a not suprising way:

  • The store, as it has to contain the single source of truth, has to be in the server. However, each client has a (partial) copy of it.
  • Each client instance can request for dispaching an action or a list of them.
  • Server decides which actions should be executed.
  • Reducers are executed in each application, including the server.

And the new flow is:

                CLIENT    CLIENT STATE                     SERVER            SERVER STATE
                   |            |                             |                    |
                   |      current state                       |              current state
request an action->|            |                             |                    |
                   | -------------- action request ---------->|                    |
                   |            |                             |<-validate request  |
                   |            |                             |<-plan request      |
                   |            |<-------- action(s) ---------|---- action(s) ---->|
                   |            |<-reducer processes          |                    |<-reducer processes
                   |            |  the action                 |                    |  the action
                   |        new state                         |                new state
                   |            |                             |                    |

From here we can make a couple of observations:

  • New elements have appeared here:
    • Action requests. User do not dispatch an action directly, but requests to server for dispatching a list of them.
    • Validators. Since this is a client-server model, server has the responsability to check if the requests make sense.
    • Planners. They are the map between action requests and the actions themselves. We define them as pure function that have as input the current state and the request and returns a list of actions.
  • This flow generalices the reducer flow. That is, if we make a map one to one among requests and actions, we have exactly the same diagram as redux.

This package provides all those elements which allow to create this flow. A toy example of this implementation can be found in the examples section with the name simple-counter.

Partially Shared Store

Now the state is shared and so there are several clients accessing to the store, it may have sense not to want to share the whole store with all clients. This does not mean that store copies disagree each other but they are incomplete. And, of course, the server must contain the whole state.

In order to accomplish so, we introduce the following definition:

  • Shader. Is a pure function that receives as input the current state, an action, and a client and produces an action. The purpose of that function is to modify the action in order to overshadow the information about the state that it provides.

So, as final diagram, we have:

                CLIENT    CLIENT STATE                     SERVER            SERVER STATE
                   |            |                             |                    |
                   |      current state                       |              current state
request an action->|            |                             |                    |
                   | -------------- action request ---------->|                    |
                   |            |                             |<-validate request  |
                   |            |                             |<-plan request      |
                   |            |                             |---- action(s) ---->|
                   |            |                             |<-shadow action(s)  |<-reducer processes
                   |            |<----- shaded action(s) -----|                    |  the action
                   |            |<-reducer processes          |                new state
                   |            |  the action                 |                    |
                   |        new state                         |                    |
                   |            |                             |                    |

However, nowadays the package does not provide any functionality to implement them yet.

0.1.6

3 years ago

0.1.5

3 years ago

0.1.4

3 years ago

0.1.3

3 years ago

0.1.2

3 years ago

0.1.1

3 years ago

0.1.0

3 years ago