-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from KevinAst/next3
publish: v2.3.0 Simplified Mainline
- Loading branch information
Showing
8 changed files
with
100 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "eatery-nod-w", | ||
"version": "2.2.0", | ||
"version": "2.3.0", | ||
"description": "A Date Night Restaurant Selector", | ||
"author": "Kevin J. Bridges <[email protected]> (https://wiiBridges.com/)", | ||
"about": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# eatery-nod-w aspects | ||
|
||
The **eatery-nod-w** application uses the following plugin | ||
**Aspects**, _auto-configuring the frameworks in it's run-time | ||
stack_: | ||
|
||
- [**feature-redux**]: for [redux] _(state management)_ | ||
- [**feature-redux-logic**]: for [redux-logic] _(managing business logic and async processes)_ | ||
- [**feature-router**]: for StateRouter _(feature-based navigation using redux state)_ | ||
|
||
|
||
[**feature-redux**]: https://github.com/KevinAst/feature-redux | ||
[redux]: https://redux.js.org/ | ||
|
||
[**feature-redux-logic**]: https://github.com/KevinAst/feature-redux-logic | ||
[redux-logic]: https://github.com/jeffbski/redux-logic | ||
|
||
[**feature-router**]: https://github.com/KevinAst/feature-router |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
import React from 'react'; | ||
import {createReducerAspect} from 'feature-redux'; | ||
import {createLogicAspect} from 'feature-redux-logic'; | ||
import {createRouteAspect} from 'feature-router'; | ||
import SplashScreen from 'util/SplashScreen'; | ||
import configureEateryNodDiagnostics from 'util/configureEateryNodDiagnostics'; | ||
|
||
|
||
//*** | ||
//*** define/configure the aspects representing our app's run-time stack | ||
//*** | ||
|
||
// redux - extending: Feature.reducer | ||
const reducerAspect = createReducerAspect(); | ||
|
||
// redux-logic - extending: Feature.logic | ||
const logicAspect = createLogicAspect(); | ||
|
||
// Feature Routes - extending: Feature.route | ||
const routeAspect = createRouteAspect(); | ||
// ... define fallback screen (used when no routes are in effect) | ||
routeAspect.config.fallbackElm$ = <SplashScreen msg="I'm trying to think but it hurts!"/>; | ||
|
||
|
||
//*** | ||
//*** configure our app's overall diagnostics (non-production code) | ||
//*** | ||
|
||
configureEateryNodDiagnostics(reducerAspect, logicAspect, routeAspect); | ||
|
||
|
||
//*** | ||
//*** promote the aspects representing our app's run-time stack | ||
//*** | ||
|
||
export default [ | ||
reducerAspect, | ||
logicAspect, | ||
routeAspect, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
import 'util/ErrorExtensionPolyfill'; | ||
export {default} from 'app'; // redirect to app.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters