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:
modules
approach rather than component/containerrecompose
, only recent React with hooksemotion
or styled-components
)businessLogic
. 100% of
code in that folder should be covered with unit testsKey components for each redux app are following:
combineReducers
function
from standard redux library.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)
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');
export
declare interface ILoginState {
user: ILoginPayload;
isAuthenticated: boolean;
error: ILoginErrorPayload;
loading: boolean;
}
lenses
to create selectors for both reading and writing valuesset(compose(authLens, loadingLens), false, state)
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 is used to manage side-effects. So if it’s changing store then it’s redux thing, otherwise it should come to saga.
redux-saga-testing
generators
in saga and async/await
everywhere elseUse redux-saga-testing
package to get your saga tested
Use jest to run your unit tests.
date-fns
is an immutable and composable replacement for moment
library.
No! LoDash No! Ramda. Use pure JS as much as possible.
Moment is a date-operations library. It’s replaced with date-fns
NOTE: The sources are presented for informational purposes only.