The idea of this repository is to implement all new concepts and libraries which work great for React.js.
Templates are written in marko.js with predefined template helpers. To see its usage, please refer to layout/application.marko
.
I use webpack-isomorphic-tools to support loading assets in
the server side. You can see the configuration file under config
folder.
Takes a look at templates/todos
, I will have sth like:
createRedialEnhancer({
[FETCH_DATA_HOOK]: ({ store }) => store.dispatch(fetchTodos()),
[UPDATE_HEADER_HOOK]: ({ store }) => store.dispatch(updateLink([
// window.javascriptAssets will be injected to do preload link for optimizing route
{ rel: 'preload', href: window.javascriptAssets['static-page'], as: 'script' },
])),
})
The default require
node statement has been modified by webpack-isomorphic-tools, so I remap it with nodeRequire
under global
. For example, you can use it like as below:
const { ROOT, PUBLIC } = global.nodeRequire('./config/path-helper');
Note: nodeRequire
will resolve the path from project root directory.
To be able to support for asynchronous chunks loading using <link rel='preload' ... />
, I returned the javascript
assets map for all the routes to the client via window.javascriptAssets
.
You can use this to inject assets for the next page to improve performance. This is what I am trying to achieve preload-webpack-plugin.
This will map the hook with the current component and trigger it (Note: This will only be applied to root component).
For now, the best way is to place all logic in the same place with components to make it less painful when scaling the application. Current structure is the combination of ideas from organizing-redux and ducks-modular-redux. Briefly, I will have our reducer, action-types, and actions in the same place with featured components.
Some great ideas from scoped-selectors-for-redux-modules.
You can create a localized scope for selector using globalizeSelectors
.
export const mountPoint = 'todos';
export const selectors = globalizeSelectors({
getTodos: identity, // it will also work with reselect library
}, mountPoint);
Then in main reducer, you can have sth like this, which helps reduce the coupling with React view
/* @flow */
import { combineReducers } from 'redux';
import todosReducer, { mountPoint as todosMountPoint } from './components/todos/logicBundle';
import routingReducer, { mountPoint as routingMountPoint } from './components/routing/logicBundle';
import helmetReducer, { mountPoint as helmetMountPoint } from './components/helmet/logicBundle';
export default combineReducers({
[todosMountPoint]: todosReducer,
[routingMountPoint]: routingReducer,
[helmetMountPoint]: helmetReducer,
});
Sample for logicBundle:
export const mountPoint = "todos";
export const selectors = globalizeSelectors(
{
getTodos: identity
},
mountPoint
);
export const ADD_TODO = "todos/ADD_TODO";
export const REMOVE_TODO = "todos/REMOVE_TODO";
export const COMPLETE_TODO = "todos/COMPLETE_TODO";
export const SET_TODOS = "todos/SET_TODOS";
export const addTodo: AddTodoActionType = createAction(ADD_TODO);
export const removeTodo: RemoveTodoActionType = createAction(REMOVE_TODO);
export const completeTodo: CompleteTodoActionType = createAction(COMPLETE_TODO);
export const setTodos: SetTodosActionType = createAction(SET_TODOS);
export const fetchTodos = () =>
(dispatch: Function): Promise<TodoType[]> =>
fetch(getUrl("/api/v1/todos"))
.then(res => res.json())
.then((res: TodoType[]) => dispatch(setTodos(res)));
export default handleActions(
{
[ADD_TODO]: (state, { payload: text }) => update(state, {
$push: [{ text, complete: false }]
}),
[REMOVE_TODO]: (state, { payload: index }) => update(state, {
$splice: [[index, 1]]
}),
[COMPLETE_TODO]: (state, { payload: index }) => update(state, {
$splice: [
[index, 1],
[index, 0, { ...state[index], complete: !state[index].complete }]
]
}),
[SET_TODOS]: (state, { payload: todos }) => todos
},
[]
);
$ git clone git@github.com:hung-phan/koa-react-isomorphic.git
$ cd koa-react-isomorphic
$ yarn install
$ yarn run watch
$ yarn run dev
$ SERVER_RENDERING=true yarn run watch
$ yarn run dev
$ yarn run flow-watch
$ yarn run flow-stop # to terminate the server
You need to add annotation to the file to enable flowtype (// @flow
)
$ yarn test
$ yarn run watch
$ yarn run debug
$ yarn run build
$ SECRET_KEY=your_env_key yarn start
$ docker-compose build
$ docker-compose up
Access http://localhost:3000
to see the application
Feel free to open an issue on the repo.