aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/redux/reducer.ts
diff options
context:
space:
mode:
authorfragosti <francesco.agosti93@gmail.com>2018-10-04 05:28:07 +0800
committerfragosti <francesco.agosti93@gmail.com>2018-10-04 05:28:07 +0800
commit15f20cc18e45d2971be7274bc3c0be36b02091c8 (patch)
tree470ed51e0d5e50fbb89045803c8b3c0d79413658 /packages/instant/src/redux/reducer.ts
parent700b7068a157a0f9d3d6ce3f61150c2961d81617 (diff)
downloaddexon-sol-tools-15f20cc18e45d2971be7274bc3c0be36b02091c8.tar
dexon-sol-tools-15f20cc18e45d2971be7274bc3c0be36b02091c8.tar.gz
dexon-sol-tools-15f20cc18e45d2971be7274bc3c0be36b02091c8.tar.bz2
dexon-sol-tools-15f20cc18e45d2971be7274bc3c0be36b02091c8.tar.lz
dexon-sol-tools-15f20cc18e45d2971be7274bc3c0be36b02091c8.tar.xz
dexon-sol-tools-15f20cc18e45d2971be7274bc3c0be36b02091c8.tar.zst
dexon-sol-tools-15f20cc18e45d2971be7274bc3c0be36b02091c8.zip
Add redux to 0x instant
Diffstat (limited to 'packages/instant/src/redux/reducer.ts')
-rw-r--r--packages/instant/src/redux/reducer.ts23
1 files changed, 23 insertions, 0 deletions
diff --git a/packages/instant/src/redux/reducer.ts b/packages/instant/src/redux/reducer.ts
new file mode 100644
index 000000000..7efe8aeb0
--- /dev/null
+++ b/packages/instant/src/redux/reducer.ts
@@ -0,0 +1,23 @@
+import * as _ from 'lodash';
+
+import { Action, ActionTypes } from '../types';
+
+export interface State {
+ ethUsdPrice?: string;
+}
+
+export const INITIAL_STATE: State = {
+ ethUsdPrice: undefined,
+};
+
+export function reducer(state: State = INITIAL_STATE, action: Action): State {
+ switch (action.type) {
+ case ActionTypes.UPDATE_ETH_USD_PRICE:
+ return {
+ ...state,
+ ethUsdPrice: action.data,
+ };
+ default:
+ return state;
+ }
+}