dashbouquet.github.io

Blue Book of Frontend. React stack

Here is experience we’ve gathered in DashBouquet being frontend developers for 4 years and aiming to build best software for best teams.

Basic stack:

React

Redux

Key components for each redux app are following:

Reducers

Sample:

  createReducer({
    [doLoginInitActionType]:
      (state) => set(loadingLens, true, state),

    [doLoginDoneActionType]:
      (state, payload: ILoginPayload) =>
        compose(
          set(usersLens, payload),
          set(isAuthLens, true),
          set(loadingLens, false)
        )(state),

    [doLoginErrorActionType]:
      (state, payload : ILoginErrorPayload) =>
        compose(
          set(isAuthLens, false),
          set(errorLens, payload),
          set(loadingLens, false)
        )(state)

  }, initialState)

Actions

const createAction = scopedCreator('auth');

export const doLoginInit = createAction('DO_LOGIN_INIT');
export const doLoginDone = createAction('DO_LOGIN_DONE');
export const doLoginError = createAction('DO_LOGIN_ERROR');
export const requestAccess = createAction('REQUEST_ACCESS');

Store structure / Initial Store

export
declare interface ILoginState {
  user: ILoginPayload;
  isAuthenticated: boolean;
  error: ILoginErrorPayload;
  loading: boolean;
}

Selectors

export
const baseKey = 'auth';
export const authLens = lensProp(baseKey);
export const usersLens = lensProp('users');
export const loadingLens = lensProp('loading');
export const errorLens = lensProp('error');

Saga

Saga is used to manage side-effects. So if it’s changing store then it’s redux thing, otherwise it should come to saga.

Other Recommendations

redux-saga-testing

Use redux-saga-testing package to get your saga tested

jest

Use jest to run your unit tests.

date-fns

date-fns is an immutable and composable replacement for moment library.

Not recommended

LoDash and Ramda

No! LoDash No! Ramda. Use pure JS as much as possible.

Moment

Moment is a date-operations library. It’s replaced with date-fns

Helpful Sources

React

Books

NOTE: The sources are presented for informational purposes only.

Tutorials And Articles