{"version":3,"sources":["context.js","AppContext.js","App.js","serviceWorker.js","index.js"],"names":["AuthContext","createContext","isLoggedIn","user","token","login","logout","AppContext","initialState","headerTitle","field2","reducer","state","action","type","walletBalance","payload","AppProvider","_ref","children","dispatch","useReducer","React","createElement","Provider","value","useAppContext","useContext","App","loggedIn","setLoggedIn","useState","setUser","Login","lazy","LinkVerification","DefaultLayout","Fragment","localStorage","setItem","Object","keys","forEach","key","userId","getItem","clear","Suspense","fallback","BrowserRouter","Switch","Route","exact","path","name","render","props","SnackbarProvider","Boolean","window","location","hostname","match","ReactDOM","StrictMode","document","getElementById","navigator","serviceWorker","ready","then","registration","unregister","catch","error","console","message"],"mappings":"kGAAA,6CACO,MAAMA,EAAcC,wBAAc,CACrCC,YAAY,EACZC,KAAK,GACLC,MAAO,KACPC,MAAOA,OACPC,OAAQA,U,gCCNZ,wFAEA,MAAMC,EAAaN,0BAEbO,EAAe,CACnBC,YAAa,YACbC,OAAQ,IAGV,SAASC,EAAQC,EAAOC,GACtB,OAAQA,EAAOC,MACb,IAAK,iBACH,MAAO,IAAKF,EAAOG,cAAeF,EAAOG,SAE3C,QACE,OAAOJ,GAIN,SAASK,EAAWC,GAAgB,IAAf,SAAEC,GAAUD,EACtC,MAAON,EAAOQ,GAAYC,qBAAWV,EAASH,GAE9C,OACEc,IAAAC,cAAChB,EAAWiB,SAAQ,CAACC,MAAO,CAAEb,QAAOQ,aAClCD,GAKA,SAASO,IACd,OAAOC,qBAAWpB,K,gNC8BLqB,MAtDf,WACE,MAAOC,EAAUC,GAAeC,oBAAS,IAElC5B,EAAM6B,GAAWD,mBAAS,IAsB3BE,EAAQX,IAAMY,KAAK,IAAM,6EACzBC,EAAmBb,IAAMY,KAAK,IAAM,4EACpCE,EAAgBd,IAAMY,KAAK,IAAM,6EAGvC,OAFuBZ,IAAMY,KAAK,IAAM,gCAGtCZ,IAAAC,cAACD,IAAMe,SAAQ,KACbf,IAAAC,cAACvB,IAAYwB,SAAQ,CAACC,MAAO,CAAEvB,WAAY2B,EAAU1B,KAAMA,EAAME,MAzBtDF,KACb2B,GAAY,GACZE,EAAQ7B,GACRmC,aAAaC,QAAQ,cAAc,GAC/BpC,IACSqC,OAAOC,KAAKtC,GAClBuC,SAAQ,SAAUC,GACrBL,aAAaC,QAAQI,EAAKxC,EAAKwC,QAkB8CrC,OAdpEA,KACb,IAAIsC,EAAQN,aAAaO,QAAQ,UACjCf,GAAY,GAAQE,EAAQ,IAAKM,aAAaQ,QAC9CR,aAAaC,QAAQ,UAAWK,MAY5BtB,IAAAC,cAACD,IAAMyB,SAAQ,CAACC,SATA1B,IAAAC,cAAA,WAAK,eAUnBD,IAAAC,cAAC0B,IAAa,KACZ3B,IAAAC,cAAC2B,IAAM,KACL5B,IAAAC,cAAC4B,IAAK,CAACC,OAAK,EAACC,KAAK,SAASC,KAAK,aAAaC,OAAQC,GAASlC,IAAAC,cAACU,EAAUuB,KACzElC,IAAAC,cAAC4B,IAAK,CAACC,OAAK,EAACC,KAAK,oBAAoBC,KAAK,oBAAoBC,OAAQC,GAASlC,IAAAC,cAACY,EAAqBqB,KAEtGlC,IAAAC,cAACN,IAAW,KACZK,IAAAC,cAACkC,IAAgB,KACfnC,IAAAC,cAAC4B,IAAK,CAACE,KAAK,IAAIC,KAAK,YAAYC,OAAQC,GAASlC,IAAAC,cAACa,EAAkBoB,aCnCjEE,QACW,cAA7BC,OAAOC,SAASC,UAEe,UAA7BF,OAAOC,SAASC,UAEhBF,OAAOC,SAASC,SAASC,MACvB,2DCZNC,IAASR,OACPjC,IAAAC,cAACD,IAAM0C,WAAU,KACf1C,IAAAC,cAACK,EAAG,OAENqC,SAASC,eAAe,SDyHpB,kBAAmBC,WACrBA,UAAUC,cAAcC,MACrBC,KAAKC,IACJA,EAAaC,eAEdC,MAAMC,IACLC,QAAQD,MAAMA,EAAME,a","file":"static/js/main.ee4629a7.chunk.js","sourcesContent":["import { createContext } from 'react';\r\nexport const AuthContext = createContext({\r\n isLoggedIn: false,\r\n user:{},\r\n token: null,\r\n login: () => {},\r\n logout: () => {},\r\n // showMessageBoxSuccess: () => {},\r\n // showMessageBoxFail: () => {},\r\n});\r\n\r\n","import React, { createContext, useContext, useReducer } from 'react';\r\n\r\nconst AppContext = createContext();\r\n\r\nconst initialState = {\r\n headerTitle: 'Dashboard',\r\n field2: '',\r\n};\r\n\r\nfunction reducer(state, action) {\r\n switch (action.type) {\r\n case 'WALLET_BALANCE':\r\n return { ...state, walletBalance: action.payload };\r\n \r\n default:\r\n return state;\r\n }\r\n}\r\n\r\nexport function AppProvider({ children }) {\r\n const [state, dispatch] = useReducer(reducer, initialState);\r\n\r\n return (\r\n \r\n {children}\r\n \r\n );\r\n}\r\n\r\nexport function useAppContext() {\r\n return useContext(AppContext);\r\n}\r\n","import React, { useState, useEffect } from 'react';\r\nimport { Route, Redirect, BrowserRouter, Switch } from 'react-router-dom';\r\nimport './App.css'\r\nimport { AuthContext } from './context';\r\nimport SnackbarProvider from 'react-simple-snackbar'\r\nimport { AppProvider } from './AppContext';\r\nfunction App() { \r\n const [loggedIn, setLoggedIn] = useState(false);\r\n \r\n const [user, setUser] = useState({});\r\n\r\n \r\n\r\n const login = (user) => {\r\n setLoggedIn(true);\r\n setUser(user);\r\n localStorage.setItem(\"isLoggedIn\", true)\r\n if (user) {\r\n var keys = Object.keys(user);\r\n keys.forEach(function (key) {\r\n localStorage.setItem(key, user[key])\r\n });\r\n } \r\n }\r\n const logout = () => { \r\n let userId =localStorage.getItem(\"userid\"); \r\n setLoggedIn(false); setUser({}); localStorage.clear(); \r\n localStorage.setItem(\"userid2\", userId)\r\n }\r\n \r\n const loading = () =>
Loading...
;\r\n const Login = React.lazy(() => import('./components/signin/login/Login'));\r\n const LinkVerification = React.lazy(() => import('./components/signin/resetpassword/LinkVerification'));\r\n const DefaultLayout = React.lazy(() => import('./components/containers/DefaultLayout/DefaultLayout'));\r\n const SessionExpired = React.lazy(() => import('./components/SessionExpired/SessionExpired'));\r\n \r\n return (\r\n \r\n \r\n \r\n \r\n \r\n } />\r\n } />\r\n {/* } /> */}\r\n \r\n \r\n } />\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n );\r\n}\r\n\r\nexport default App;\r\n","// This optional code is used to register a service worker.\r\n// register() is not called by default.\r\n\r\n// This lets the app load faster on subsequent visits in production, and gives\r\n// it offline capabilities. However, it also means that developers (and users)\r\n// will only see deployed updates on subsequent visits to a page, after all the\r\n// existing tabs open on the page have been closed, since previously cached\r\n// resources are updated in the background.\r\n\r\n// To learn more about the benefits of this model and instructions on how to\r\n// opt-in, read https://bit.ly/CRA-PWA\r\n\r\nconst isLocalhost = Boolean(\r\n window.location.hostname === 'localhost' ||\r\n // [::1] is the IPv6 localhost address.\r\n window.location.hostname === '[::1]' ||\r\n // 127.0.0.0/8 are considered localhost for IPv4.\r\n window.location.hostname.match(\r\n /^127(?:\\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}$/\r\n )\r\n);\r\n\r\nexport function register(config) {\r\n if (process.env.NODE_ENV === 'production' && 'serviceWorker' in navigator) {\r\n // The URL constructor is available in all browsers that support SW.\r\n const publicUrl = new URL(process.env.PUBLIC_URL, window.location.href);\r\n if (publicUrl.origin !== window.location.origin) {\r\n // Our service worker won't work if PUBLIC_URL is on a different origin\r\n // from what our page is served on. This might happen if a CDN is used to\r\n // serve assets; see https://github.com/facebook/create-react-app/issues/2374\r\n return;\r\n }\r\n\r\n window.addEventListener('load', () => {\r\n const swUrl = `${process.env.PUBLIC_URL}/service-worker.js`;\r\n\r\n if (isLocalhost) {\r\n // This is running on localhost. Let's check if a service worker still exists or not.\r\n checkValidServiceWorker(swUrl, config);\r\n\r\n // Add some additional logging to localhost, pointing developers to the\r\n // service worker/PWA documentation.\r\n navigator.serviceWorker.ready.then(() => {\r\n console.log(\r\n 'This web app is being served cache-first by a service ' +\r\n 'worker. To learn more, visit https://bit.ly/CRA-PWA'\r\n );\r\n });\r\n } else {\r\n // Is not localhost. Just register service worker\r\n registerValidSW(swUrl, config);\r\n }\r\n });\r\n }\r\n}\r\n\r\nfunction registerValidSW(swUrl, config) {\r\n navigator.serviceWorker\r\n .register(swUrl)\r\n .then(registration => {\r\n registration.onupdatefound = () => {\r\n const installingWorker = registration.installing;\r\n if (installingWorker == null) {\r\n return;\r\n }\r\n installingWorker.onstatechange = () => {\r\n if (installingWorker.state === 'installed') {\r\n if (navigator.serviceWorker.controller) {\r\n // At this point, the updated precached content has been fetched,\r\n // but the previous service worker will still serve the older\r\n // content until all client tabs are closed.\r\n console.log(\r\n 'New content is available and will be used when all ' +\r\n 'tabs for this page are closed. See https://bit.ly/CRA-PWA.'\r\n );\r\n\r\n // Execute callback\r\n if (config && config.onUpdate) {\r\n config.onUpdate(registration);\r\n }\r\n } else {\r\n // At this point, everything has been precached.\r\n // It's the perfect time to display a\r\n // \"Content is cached for offline use.\" message.\r\n console.log('Content is cached for offline use.');\r\n\r\n // Execute callback\r\n if (config && config.onSuccess) {\r\n config.onSuccess(registration);\r\n }\r\n }\r\n }\r\n };\r\n };\r\n })\r\n .catch(error => {\r\n console.error('Error during service worker registration:', error);\r\n });\r\n}\r\n\r\nfunction checkValidServiceWorker(swUrl, config) {\r\n // Check if the service worker can be found. If it can't reload the page.\r\n fetch(swUrl, {\r\n headers: { 'Service-Worker': 'script' },\r\n })\r\n .then(response => {\r\n // Ensure service worker exists, and that we really are getting a JS file.\r\n const contentType = response.headers.get('content-type');\r\n if (\r\n response.status === 404 ||\r\n (contentType != null && contentType.indexOf('javascript') === -1)\r\n ) {\r\n // No service worker found. Probably a different app. Reload the page.\r\n navigator.serviceWorker.ready.then(registration => {\r\n registration.unregister().then(() => {\r\n window.location.reload();\r\n });\r\n });\r\n } else {\r\n // Service worker found. Proceed as normal.\r\n registerValidSW(swUrl, config);\r\n }\r\n })\r\n .catch(() => {\r\n console.log(\r\n 'No internet connection found. App is running in offline mode.'\r\n );\r\n });\r\n}\r\n\r\nexport function unregister() {\r\n if ('serviceWorker' in navigator) {\r\n navigator.serviceWorker.ready\r\n .then(registration => {\r\n registration.unregister();\r\n })\r\n .catch(error => {\r\n console.error(error.message);\r\n });\r\n }\r\n}\r\n","import React from 'react';\r\nimport ReactDOM from 'react-dom';\r\nimport './index.css';\r\nimport App from './App';\r\nimport * as serviceWorker from './serviceWorker';\r\n\r\nReactDOM.render(\r\n \r\n \r\n ,\r\n document.getElementById('root')\r\n);\r\n\r\n// If you want your app to work offline and load faster, you can change\r\n// unregister() to register() below. Note this comes with some pitfalls.\r\n// Learn more about service workers: https://bit.ly/CRA-PWA\r\nserviceWorker.unregister();\r\n"],"sourceRoot":""}