event-sdk v0.1.20
Table of Content
Core
Linting
Run event-sdk-format
to run ESLint with Prettier.
Event SDK
This source contains basic Webpack Configuration (Dev + Pro) + ESLint + Prettier
Description
This project is mostly based on CreateReactApp but with some minor changes. This will be the basic tool for all Events and Tools
HOW TO RUN
You just need to call
event-sdk --mode development --file path/to/your/project/index
With --mode is the NODE environment and --file is the entryPoint. You can replace "--file" with "FILENAME="
How to map local module with command script
How to use Redux Module
This redux context is compatible with react-redux 7+. You can attach dynamic reducer to a component ( when it's mounted ). This solution based on Code Splitting ( https://redux.js.org/recipes/code-splitting ). In your component:
import injectReducer from "sdk-redux/withReducer";
import reducer from "PATH_TO_YOUR_REDUCER/reducers/YOUR_REDUCER";
import { createStructuredSelector } from "reselect";
import { compose } from "redux";
export function mapDispatchToProps(dispatch) {
//...
}
const mapStateToProps = createStructuredSelector({
//...
});
const withReducer = injectReducer(MODULE_NAME, reducer);
const withConnect = connect(
mapStateToProps,
mapDispatchToProps
);
export default compose(
withConnect,
withReducer
)(HomePage);
>Note: MODULE_NAME must be unique between your projects.
Reselect
Reselect is a library used for slicing your redux state and providing only the relevant sub-tree to a react component. It has three key features:
- Computational power
- Memoization
- Composability
Imagine an application that shows a list of users. Its redux state tree stores an array of usernames with signatures:
{ id: number, username: string, gender: string, age: number }
.
Let's see how the three features of reselect help.
- Computation: While performing a search operation, reselect will filter the original array and return only matching usernames. Redux state does not have to store a separate array of filtered usernames.
- Memoization: A selector will not compute a new result unless one of its arguments change. That means, if you are repeating the same search once again, reselect will not filter the array over and over. It will just return the previously computed, and subsequently cached, result. Reselect compares the old and the new arguments and then decides whether to compute again or return the cached result.
- Composability: You can combine multiple selectors. For example, one selector can filter usernames according to a search key and another selector can filter the already filtered array according to gender. One more selector can further filter according to age. You combine these selectors by using
createSelector()
https://medium.com/netscape/a-guide-to-create-a-nodejs-command-line-package-c2166ad0452e.
Build OUTPUT
The most standard folder structure is
- src/projects/your-project/index.js
- src/events/your-project/index.js
The build result for this structure will be: build/your-project.js
Tips
Append variables and mixins automatically for every *.scss file
Add *.scss file in src/style/loader/. Every file in this folder will be loaded when run build or dev
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
9 years ago