From 8883eacd2a5e2f3f5637a6b71123dfcb2a64c3d5 Mon Sep 17 00:00:00 2001 From: Indrajith K L Date: Thu, 12 Dec 2019 19:31:50 +0530 Subject: :fire: :zap: Major Update * Adds Actions, Redicers and Middlewares * Adds Http Service * Adds Cancel option for Http Service * Adds HOC's for API Loader, Sidebar and Headers * Adds Random key generator for Routes --- src/utils/constants.js | 5 +++++ src/utils/random.key.js | 3 +++ src/utils/utls.js | 0 3 files changed, 8 insertions(+) create mode 100644 src/utils/constants.js create mode 100644 src/utils/random.key.js create mode 100644 src/utils/utls.js (limited to 'src/utils') diff --git a/src/utils/constants.js b/src/utils/constants.js new file mode 100644 index 0000000..a7ae6de --- /dev/null +++ b/src/utils/constants.js @@ -0,0 +1,5 @@ +export const LOGIN_REQUEST = "LOGIN_REQUEST"; +export const LOGIN_SUCCESS = "LOGIN_SUCCESS"; +export const COMMON_REQUEST = "COMMON_REQUEST"; +export const COMMON_SUCCESS = "COMMON_SUCCESS"; +export const COMMON_CANCEL = "COMMON_CANCEL"; \ No newline at end of file diff --git a/src/utils/random.key.js b/src/utils/random.key.js new file mode 100644 index 0000000..50e5293 --- /dev/null +++ b/src/utils/random.key.js @@ -0,0 +1,3 @@ +export const RandomKey = { + generate : ()=> parseInt(Math.random()*Math.pow(10,12),10) +}; \ No newline at end of file diff --git a/src/utils/utls.js b/src/utils/utls.js new file mode 100644 index 0000000..e69de29 -- cgit v1.2.3