Skip to content

Latest commit

 

History

History
314 lines (209 loc) · 7.21 KB

README.md

File metadata and controls

314 lines (209 loc) · 7.21 KB

Counter Example

In this guide, we’ll walk through the process of creating a simple Counter app.

counter

Source Code

You can get source code for counter app from here

git clone https://github.com/almin/almin.git

cd almin/examples/counter
npm install
npm start
# manually open
open http://localhost:8080/

The purpose of counter

  1. Press button and count up!

End.

📝 Notes: Recommendation

1 UseCase = 1 file

UseCase

We start implementing the UseCase.

  1. Press button and count up!

Start to create IncrementalCounterUseCase class.

"use strict";
import {UseCase} from "almin"
export default class IncrementalCounterUseCase extends UseCase {
    // UseCase should implement #execute method
    execute() {
        // Write the UseCase code
    }
}

We want to update counter app state, if the IncrementalCounterUseCase is executed.

Simply, put counter app state to a Store.

Store

Second, We create CounterStore class.

"use strict";
import {Store} from "almin";
export class CounterStore extends Store {
    constructor() {
        super();
        // receive event from UseCase, then update state
    }

    // return state object
    getState() {
        return {
            count: 0 
        }
    }
}

Almin's Store can receive the dispatched event from a UseCase.

💭 Image:

  1. IncrementalCounterUseCase dispatch "increment" event.
  2. CounterStore receive the dispatched "increment" event and update own state.

This pattern is the same Flux architecture.

flux-diagram-white-background

In flux:

  1. dispatch "increment" action via ActionCreator
  2. Store receive "increment" action and update own state

UseCase dispatch -> Store

Return to IncrementalCounterUseCase and add "dispatch increment event"

include, IncrementalCounterUseCase.js

A class inherited UseCase has this.dispatch(payload); method.

payload object must have type property.

{
    "type": "type"
}

is a minimal payload object.

Of course, you can include other property to the payload.

{
    "type": "show",
    "value": "value"
}

So, IncrementalCounterUseCase dispatch "increment" payload.

UseCase -> Store received

Next, We want to add the feature that can received "increment" payload to CounterStore.

A class inherited Store can implement receivePayload method.

"use strict";
import { Store } from "almin";
export class CounterStore extends Store {
    constructor() {
        super();
        // initial state
        this.state = {
            count: 0
        };
    }

    // receive event from UseCase, then update state
    receivePayload(payload) {
        if(payload.type === "increment"){
            this.state.count++;
        }
    }

    // return the state
    getState() {
        return this.state;
    }
}

All that is updating CounterStore's state!

But, We can separate the state and CounterStore as files. It means that we can create CounterState.

Store

  • Observe dispatch events and update state
    • Write state: receivePayload()
    • Read state: getState()

State

  • It is state!

State

We have created CounterState.js.

CounterStates main purpose

  • receive "payload" and return state.

include, CounterState.js

You may have seen the pattern. So, It is reducer in the Redux.

Store -> State: NewState

Finally, we have added some code to CounterStore

  1. Receive dispatched event, then update CounterState
  2. CounterStore#getState return the instance of CounterState

A class inherited Store has this.setState() method that update own state if needed.

include, CounterStore.js

📝 Note: Testing

We can test above classes independently.

View Integration

This example use React.

index.js

We will create index.js is the root of the application.

First, we create Context object that is communicator between Store and UseCase.

import {Context, Dispatcher} from "almin";
import {CounterStore} from "./store/CounterStore";
// a single dispatcher
const dispatcher = new Dispatcher();
// initialize store
const counterStore = new CounterStore();
// create store group
const storeGroup = new StoreGroup({
    // stateName : store
    "counter": counterStore
});
// create context
const appContext = new Context({
    dispatcher,
    store: storeGroup
});

Second, We will pass the appContext to App component and render to DOM.

ReactDOM.render(<App appContext={appContext} />, document.getElementById("js-app"))

Full code of index.js:

include, index.js


App.js

We will create App.js is the root of component aka. Container component.

It receive appContext from index.js and use it.

Full code of App.js:

include, App.js

App's state

Root Component has state that sync to almin's state.

Focus on onChange:

// update component's state with store's state when store is changed
const onChangeHandler = () => {
    this.setState(appContext.getState());
};
appContext.onChange(onChangeHandler);

If CounterStore's state is changed(or emitChange()ed), call onChangeHandler. onChangeHandler do update App component's state.

Counter component

Counter component receive counterState and appContext via this.props..

CounterComponent.propTypes = {
    appContext: React.PropTypes.instanceOf(Context).isRequired,
    counterState: React.PropTypes.instanceOf(CounterState).isRequired
};

Execute UseCase from View

We can execute IncrementalCounterUseCase when Counter's Increment button is clicked.

    incrementCounter() {
        // execute IncrementalCounterUseCase with new count value
        const context = this.props.appContext;
        context.useCase(new IncrementalCounterUseCase()).execute();
    }

Execute IncrementalCounterUseCase and work following:

  1. Execute IncrementalCounterUseCase
  2. CounterStore is updated(create new CounterState)
  3. App Component's state is updated via onChangeHandler
  4. Counter receive new CounterState, refresh view

Full code of Counter.js:

include, Counter.js

End

We have created simple counter app.

Writing the pattern in this guide is the same of Flux pattern.

almin-flux.png

Next: We learn domain model and CQRS pattern while creating TodoMVC app.