A modular platform for Reactive Redux applications
This repository is a modular abstraction to build a Angular web application based on [@ngRx/Store] (https://github.com/ngrx/store) Redux implementation. You can use it to quickly scaffold your Angular web application projects and development environments for these projects.
This seed should clarify how to wire up all the modules of your application, even when we understand that in some cases there must be some changes needed by the structure to fit your needs correctly
Angular-Base makes use of the latest tools to improve your workflow, and enables you to create future ready applications:
- Angular 5 supported
- AOT mode supported
- Lazy Loading routing
- Redux based architecture using @ngrx/Store for a reactive state managment.
- @ngrx/SideEffects to handle Rx Side Effects
- Typescript2 and ES6 transpilation using Typescript2
- Webpack3 for the development/production build toolchain
- Separate build configurations depending on target environment
- Webpack DLL that speed development builds.
- Development & Production server using express and webpack-dev-server
- Hot Reload/Live Reload support for Js & Css using Webpack2 HMR
- Mocha as testing framework
- Chai as assertion library
- Jsdom as Whatwg Dom implementation.
- Nyc for code coverage
- CssModules based
- Code Linting using TsLint
- Css Linting using CssLint
- Baked in best-practices of Angular Style Guide
To get you started, you need to meet the prerequisites, and then follow the installation instructions.
Angular-Base makes use a number of NodeJS tools to initialize and test Angular-Base. You must have node.js 6.0.0 at least, and its package manager (npm) installed. You can get it from nodejs.org.
You can clone our Git repository:
$ git clone https://github.com/atSistemas/Angular-Base.git
This method requires Git to be installed on your computer. You can get it from here.
Setting up Angular-Base is as easy as running:
$ yarn install
This command will install all the required dependencies and start your development server, which takes care of all the changes you make to your code and runs all the awesome stuff that ends with your code automagically transpiled and running on your browser.
Please note that yarn install
is only required on your first start, or in case of updated dependencies.
Once all the dependencies are installed, you can run $ yarn start
to initialize your development server using webpack-dev-server express middleware.
The dev server uses HMR (Hot module replacement) that injects updated modules into the bundle in runtime. It's like LiveReload
Angular-Base is based on Redux paradigm so you can find all the typical entities of an Redux project like reducers , store, actions , etc.
There are four main folders:
server
contains Angular-Base development & production server based in express with custom middlewares like Gzip.
server
enviroment/ //enviroment configuration
lib/ //Universal rendering files
middleware/ //enviroment middleware
routes/ //universal routing
statics/ //definition of statics path
templates/ //universal templates
server //Server
webpack
contains Angular-Base Webpack2 configuration separated by enviroment that allows to use different plugins and loaders in each target enviroment.
webpack
webpack.common.config/ //Common config
webpack.dev.config/ //Development config
webpack.prod.config/ //Production config
webpack.test.config/ //Testing config
webpack.dll.config/ //Dll config
src/base/
contains Angular-Base platform bootstrapping code.
base
actions/ //base actions
components/ //base components
decorators/ //custom decorators like Reduxify
effects/ //side side RxJs effects
imports/ //base imports
models/ //model index
reducers/ //reducer index
shared/ // shared base folder
BaseService //Root HHtp Service
CreateRecuer //Custom reducer creator
ENV //Env handler
Errors //Errors handler
FileSystem //Filesystem manager
JsDomSetup //JsDom Configuration FileSystem
Regenerate // Regenerate indexes
store/ //Store configuration and AppState definition
...
src/app/
is the place where to put your application source code.
Angular-Base uses a "featured based" distribution, so all the necessary code for each page/features is located in its own folder inside containers folder as in src/app/containers/myContainer
A container is an Angular Module who contains other components, Redux entities, functions and store subscriptions. Each container is self-contained and represents a feature like "clients" or "products" and it contains all the necessary stuff.
app/
containers/
myContainer/
actionTypes/
actions/
components/
models/
reducers/
index.ts
...
ActionTypes it's a representation using constants of your possible actions:
export const ActionTypes = createActionTypes([
'USER_CLICK',
'MAIN_CONTAINER',
'MAIN_ERROR',
'MAIN_REQUEST',
'MAIN_SUCCESS',
'LAZY_CONTAINER',
'LOGIN',
]);
Actions are payloads of information witch represent that something happend in your application and send data from your application to your store:
public clickHandler(id: Number): Action {
return {
type: ActionTypes.USER_CLICK,
payload: {
id: id
}
};
}
//Dispatching an action...
this.store.dispatch(this.mainActions.clickHandler(rowId));
Yo can wrap functions or service call into the payload of your actions.
Reducers describe how the state of your application changes in response to a new Action. Angular uses a custom CreateReducer that allows to use separated reducers functions instead of "switch based" reducers.
const click = (state, action) => {
return state.update('mainData', (value) => action.payload);
};
const request = (state, action) => {
return state;
};
const actionHandler: Map<string, any> = new Map<string, any>([
[ActionTypes.CLICK, click],
[ActionTypes.LOGIN, login],
[ActionTypes.MAIN_REQUEST, request],
[ActionTypes.MAIN_SUCCESS, success]
]);
export function MainReducer(state: MainModelInterface = MainModelInterface, action: Action) {
const handler = actionHandler.get(action.type);
return handler ? handler(state, action) : state;
}
Represents your model data using Typescript Interfaces.
export interface MainModelInterface {
id: number;
name: string;
departmentId: number;
...
};
The state of your applicacion is located in the Store using @ngrx/Store, a reactive state container using Rxjs. The Shape of your state and it's configuration its defined in the AppState interface in store/index.ts.
export interface State {
lazy: Lazy;
calculator: Calculator;
weather: Record<Weather>;
router: RouterReducerState<any>;
}
//Allows different plugins and middleware for development or production
export const metaReducers: any[] = (ENV !== 'development') ? [] : [
logger,
storeFreeze
];
export const StoreModuleImport =
StoreModule.forRoot(reducers, {
initialState,
metaReducers
});
if (ENV === 'development') {
baseImports.push(...[
storeDevtools()
]);
}
The store is an Observable so you can subscribe to it using select method:
export class DisplayComponent {
private display$: Observable<number | string> = this.store.select(selectDisplay);
private displaySubscription: Subscription;
constructor(
private store: Store<State>
) { }
ngOnInit() {
this.displaySubscription = this.display$.subscribe(selected => (
this.display = selected
));
}
// Do not forget unsubscribe your subscriptions
ngOnDestroy() {
this.displaySubscription.unsubscribe();
}
}
Angular Async Pipe allows you to unwrap/unsubscribe from an Observer when it returns his lastest value:
@Component({
selector: 'client-name',
template: '<div><code>clientName|async</code>: clientName: {{ clientName | async }}</div>'
})
You can rebuild the file indexes (reducers, models and routes) running $ yarn regenerate
You can generate a complete distribution source ready for production enviroment. It uses Three shaking and AOT mode wichs improves rendering and reduce build sizes.
$ yarn build
will create a minified version for your application, ready for production.
$ yarn start:prod
will run production enviroment of your application serving content from dist directory.
Angular-Base base uses - Jsdom a Javascript implementation of Whatwg Dom and Html Standards using NodeJs.
- Mocha as testing framework
- Chai as assertion library You can write your tests normally using Mocha and Chai for assertions.
In the starter-template, tests are placed in a spec/
directory.
The test runner will run all tests in *.spec.ts
files.
Various tests have already been implemented, so you can find some examples in the source code.
$ yarn test
will perform your unit testing, or npm test:coverage to run your tests and display a code coverage report.
Angular-Base uses Nyc for code coverage and you can generate reports in console or icov/html format.
$ yarn test
will perform your code coverage, generating an html report located in coverage/ folder.
Anyone and everyone is welcome to contribute, however, if you decide to get involved, please take a moment to review the guidelines:
Angular-Base is available under the MIT license.