{"version":3,"file":"static/js/main.c1135d2d.chunk.js","sources":["helpers/request.js","assets/logo-splash.svg","newPages/Loading/styles.js","newPages/Loading/index.js","newPages/Loading/Loading.jsx","pages/Loading/styles.js","pages/Loading/index.js","pages/Loading/Loading.jsx","routes/Main.jsx","routes/index.js","styles/globalStyle.js","styles/theme.js","App.jsx","index.jsx","styles/colors.js","contexts/AuthProvider.jsx"],"sourceRoot":"","sourcesContent":["/* eslint-disable no-console */\nimport * as axios from 'axios';\nimport * as localForage from 'localforage';\n\nconst { REACT_APP_API_URL,REACT_APP_TEXTRACT_URL,REACT_APP_S3_URL } = process.env;\n\nconst defaultConfig = {\n baseURL: REACT_APP_API_URL,\n headers: {\n 'content-type': 'application/json',\n 'Access-Control-Allow-Origin': '*',\n },\n};\n\nexport const S3_URL = REACT_APP_S3_URL;\n\nexport async function textractAPI(body) {\n let response = {};\n\n try {\n response = await fetch(REACT_APP_TEXTRACT_URL, {\n method: 'POST',\n body: JSON.stringify(body),\n headers: {\n 'Content-Type': 'application/json',\n 'Access-Control-Allow-Origin': '*',\n },\n }).then((res) => {\n if (res.status === 500) {\n throw new Error('Algo deu errado');\n }\n\n return res.json();\n });\n return response;\n \n } catch (e) {\n return {\n message: 'Algo deu errado, tente editar o campo!',\n error: true,\n };\n }\n}\n\nexport const unathenticatedInstance = axios.create(defaultConfig);\nexport const authenticatedInstance = axios.create(defaultConfig);\n\nconst refreshTokenExpiredCallback = async () => {\n console.error('Refresh token expired');\n await localForage.removeItem('AUTH_REFRESH_TOKEN');\n await localForage.removeItem('AUTH_TOKEN');\n window.location.href = '/login?error=expired+token';\n return null;\n};\n\nexport default {\n /**\n * Makes an unauthenticated request\n * @returns {import('axios').AxiosInstance}\n */\n unauthorized() {\n unathenticatedInstance.interceptors.response.use(\n (response) => response,\n async (error) => Promise.reject(error),\n );\n\n return unathenticatedInstance;\n },\n\n /**\n * Makes a authenticated request\n * @returns {import('axios').AxiosInstance}\n */\n async authorized() {\n const authToken = await localForage.getItem('AUTH_TOKEN');\n\n authenticatedInstance.defaults.headers.common.Authorization = `Bearer ${authToken}`;\n authenticatedInstance.interceptors.response.use(\n (response) => response,\n async (error) => {\n // Refresh Token\n if (\n error.response?.status === 401 &&\n error.response?.data?.detail === 'Expired Token'\n ) {\n console.log('Token has expired, trying to renew...');\n\n try {\n const refreshToken = await localForage.getItem(\n 'AUTH_REFRESH_TOKEN',\n );\n\n const { data } = await authenticatedInstance.post(\n '/auth/refresh-token',\n {\n refresh_token: refreshToken,\n },\n );\n\n if (data?.token && !data?.error_code) {\n await localForage.setItem('AUTH_TOKEN', data.token);\n await localForage.setItem(\n 'AUTH_REFRESH_TOKEN',\n data.refresh_token,\n );\n authenticatedInstance.defaults.headers.common.Authorization = `Bearer ${data.token}`;\n console.log('Token sucessfully renewed!');\n\n try {\n const newConfig = {\n ...error.response.config,\n };\n newConfig.headers.Authorization = `Bearer ${data.token}`;\n const newResponse = authenticatedInstance(newConfig);\n return newResponse; // Maybe send Promise.resolve(newResponse);\n } catch (newError) {\n console.error(\n 'Error while making request with the renewed token',\n newError,\n );\n await localForage.removeItem('AUTH_REFRESH_TOKEN');\n await localForage.removeItem('AUTH_TOKEN');\n window.location.href = '/login?error=expired+token';\n return null;\n }\n } else {\n return refreshTokenExpiredCallback();\n }\n } catch (err) {\n return refreshTokenExpiredCallback();\n }\n } else if (error.response?.status === 401) {\n return refreshTokenExpiredCallback();\n }\n\n return Promise.reject(error);\n },\n );\n\n return authenticatedInstance;\n },\n};\n","export default __webpack_public_path__ + \"static/media/logo-splash.c1132881.svg\";","import styled from 'styled-components';\n\nimport colors from '../../styles/colors';\n\nexport const Container = styled.div`\n width: 100%;\n height: 100vh;\n background-color: ${colors.primaryColor};\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n`;\n\nexport const Logo = styled.img`\n width: 25%;\n`;\n","import Loading from './Loading';\n\nexport default Loading;\n","import React from 'react';\n\nimport logo from '../../assets/logo-splash.svg';\nimport { Container, Logo } from './styles';\n\nconst Loading = () => (\n \n \n \n);\n\nexport default Loading;\n","import styled from 'styled-components';\n\nimport colors from '../../styles/colors';\n\nexport const Container = styled.div`\n width: 100%;\n height: 100vh;\n background-color: ${colors.primaryColor};\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n`;\n\nexport const Logo = styled.img`\n width: 25%;\n`;\n","import Loading from './Loading';\n\nexport default Loading;\n","import React from 'react';\n\nimport logo from '../../assets/logo-splash.svg';\nimport { Container, Logo } from './styles';\n\nconst Loading = () => (\n \n \n \n);\n\nexport default Loading;\n","import React, { lazy } from 'react';\r\n\r\nimport { Switch, Route, Redirect } from 'react-router-dom';\r\n\r\nimport { useAuth } from '../contexts/AuthProvider';\r\nimport PageLoading from '../pages/Loading';\r\n\r\nconst LazyRecoveryPassword = lazy(() => import('../pages/RecoveryPassword'));\r\nconst LazyRecoveryPasswordValidation = lazy(() =>\r\n import('../pages/RecoveryPasswordValidation'),\r\n);\r\nconst LazyLogin = lazy(() => import('../newPages/Login'));\r\nconst LazyRegistration = lazy(() => import('../newPages/Registration'));\r\n\r\nconst LazyProtected = lazy(() => import('./Protected'));\r\n\r\nfunction Main() {\r\n const { authenticated } = useAuth();\r\n\r\n if (authenticated === null) {\r\n return ;\r\n }\r\n\r\n if (authenticated === false) {\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 return (\r\n \r\n } />\r\n \r\n \r\n );\r\n}\r\n\r\nexport default Main;\r\n","import Main from './Main';\n\nexport default Main;\n","import { createGlobalStyle } from 'styled-components';\n\nexport default createGlobalStyle`\n * {\n margin: 0;\n padding: 0;\n box-sizing: border-box;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n }\n\n body, input, button {\n font-family: 'Roboto', sans-serif;\n }\n\n a {\n &:hover, &:active {\n color: inherit;\n }\n }\n\n #root {\n margin: 0 auto;\n min-height: 100vh;\n max-width: 500px;\n }\n\n button {\n cursor: pointer;\n }\n\n ::-webkit-scrollbar-track {\n background-color: #F4F4F4;\n }\n\n ::-webkit-scrollbar {\n width: 5px;\n background: #F4F4F4;\n }\n\n ::-webkit-scrollbar-thumb {\n background: #dad7d7;\n border-radius: 5px;\n }\n\n .MuiListItemIcon-root {\n min-width: 40px !important;\n }\n`;\n","import { createMuiTheme } from '@material-ui/core/styles';\n\nimport colors from './colors';\n\nconst theme = createMuiTheme({\n palette: {\n primary: {\n main: colors.primaryColor,\n },\n secondary: {\n main: colors.gray,\n },\n },\n});\n\nexport default theme;\n","import React, { Suspense } from 'react';\n\nimport { ThemeProvider } from '@material-ui/core/styles';\nimport { BrowserRouter } from 'react-router-dom';\nimport { ToastContainer } from 'react-toastify';\n\nimport AuthProvider from './contexts/AuthProvider';\nimport PageLoading from './newPages/Loading';\nimport Routes from './routes';\nimport GlobalStyle from './styles/globalStyle';\nimport theme from './styles/theme';\n\nimport 'react-toastify/dist/ReactToastify.css';\n\nfunction App() {\n return (\n \n \n \n \n }>\n \n \n \n \n \n \n \n \n );\n}\n\nexport default App;\n","import React from 'react';\n\nimport ReactDOM from 'react-dom';\nimport { QueryClient, QueryClientProvider } from 'react-query';\nimport * as Sentry from \"@sentry/react\";\n\nimport App from './App';\n\nSentry.init({\n dsn: \"https://7a4b5d3c3b124b7c92c0fd985dab4c93@o468727.ingest.sentry.io/4505272464375808\",\n integrations: [\n new Sentry.BrowserTracing({\n // Set 'tracePropagationTargets' to control for which URLs distributed tracing should be enabled\n tracePropagationTargets: [\"https://app.gpcgestao.com.br\", \"https://app.v2.gpcgestao.com.br\", \"https://api.gpcgestao.com.br\"],\n }),\n new Sentry.Replay(),\n ],\n // Performance Monitoring\n tracesSampleRate: 0.1, // Capture 100% of the transactions, reduce in production!\n // Session Replay\n replaysSessionSampleRate: 0.05, // This sets the sample rate at 10%. You may want to change it to 100% while in development and then sample at a lower rate in production.\n replaysOnErrorSampleRate: 1.0, // If you're not already sampling the entire session, change the sample rate to 100% when sampling sessions where errors occur.\n});\n\nconst queryClient = new QueryClient();\n\nReactDOM.render(\n \n \n \n \n ,\n document.getElementById('root'),\n);\n","const colors = {\n primaryColor: '#0099FF',\n darkBlue: '#005AC6',\n white: '#FFF',\n black: '#000',\n grayLighter: '#F4F4F4',\n gray: '#707070',\n grayOpacity: 'rgba(0, 0, 0, 0.4)',\n grayStronger: '#B3B3B3',\n grayStrongest: '#999999',\n green: '#08DE00',\n boxShadow: '#00000024',\n buttonShadow: '#383838',\n buttonDisabled: '#B3B3B3',\n red: '#E70000',\n orange: '#F58431',\n};\n\nexport default colors;\n","import React, { useState, useMemo, useEffect, useContext } from 'react';\n\nimport { useRequest } from 'ahooks';\nimport * as localForage from 'localforage';\nimport { useQueryClient } from 'react-query';\nimport { toast } from 'react-toastify';\n\nimport request from '../helpers/request';\n\nconst initialValues = {\n authenticated: null,\n token: null,\n user_id: null,\n};\n\nconst AuthContext = React.createContext(initialValues);\n\nfunction AuthProvider(props) {\n const [authenticated, setAuthenticated] = useState(null);\n const [user, setUser] = useState({});\n const [auth, setAuth] = useState();\n const queryClient = useQueryClient();\n\n const getInitialValue = async () => {\n const token = await localForage.getItem('AUTH_TOKEN');\n const userData = await localForage.getItem('USER');\n\n if (userData?.id && typeof token === 'string' && !!token) {\n setUser(userData);\n setAuthenticated(true);\n return;\n }\n\n setAuthenticated(false);\n };\n\n useEffect(() => {\n getInitialValue();\n }, []);\n\n /** login */\n const { data: response, run: loginRequest } = useRequest(\n async (values) => {\n try {\n const instance = await request.unauthorized();\n return await instance.post('/auth/login', values);\n } catch (err) {\n if (err?.response?.data?.error_code === 'ERR.0.0003') {\n toast.error('Usuário ou senha incorretos');\n } else if (err?.response?.data?.error_code === 'ERR.0.0004') {\n toast.error('Usuário não habilitado');\n } else {\n toast.error('Erro no servidor. Tente novamente mais tarde');\n }\n return null;\n }\n },\n {\n manual: true,\n },\n );\n\n useEffect(() => {\n if (response && response.data && response.status === 200) {\n setAuth(response?.data);\n setUser({ ...response?.data?.user });\n }\n }, [response]);\n\n useEffect(() => {\n if (auth) {\n localForage.setItem('AUTH_REFRESH_TOKEN', auth.refresh_token);\n localForage.setItem('AUTH_TOKEN', auth.token);\n localForage.setItem('USER', user);\n\n setAuthenticated(true);\n }\n }, [auth]);\n\n const logout = async () => {\n localForage.removeItem('USER');\n localForage.removeItem('AUTH_REFRESH_TOKEN');\n localForage.removeItem('AUTH_TOKEN');\n\n queryClient.invalidateQueries();\n\n setAuthenticated(false);\n setUser({});\n };\n\n const updateUser = async (userData) => {\n setUser(userData);\n await localForage.setItem('USER', userData);\n };\n\n /** provider */\n const value = useMemo(\n () => ({\n authenticated,\n user,\n }),\n [authenticated, user],\n );\n\n return (\n \n );\n}\n\nexport const useAuth = () => useContext(AuthContext);\n\nexport default AuthProvider;\n"],"names":["process","REACT_APP_API_URL","defaultConfig","REACT_APP_TEXTRACT_URL","baseURL","headers","S3_URL","REACT_APP_S3_URL","unathenticatedInstance","axios","authenticatedInstance","refreshTokenExpiredCallback","a","console","error","localForage","window","location","href","unauthorized","interceptors","response","use","Promise","reject","authorized","authToken","defaults","common","Authorization","status","data","detail","log","refreshToken","post","refresh_token","token","error_code","newConfig","config","newResponse","Container","styled","div","colors","primaryColor","Logo","img","Loading","src","logo","alt","LazyRecoveryPassword","lazy","LazyRecoveryPasswordValidation","LazyLogin","LazyRegistration","LazyProtected","Main","authenticated","useAuth","path","component","exact","render","to","createGlobalStyle","theme","createMuiTheme","palette","primary","main","secondary","gray","App","ThemeProvider","AuthProvider","className","fallback","position","Sentry","dsn","integrations","tracePropagationTargets","tracesSampleRate","replaysSessionSampleRate","replaysOnErrorSampleRate","queryClient","QueryClient","ReactDOM","StrictMode","client","document","getElementById","darkBlue","white","black","grayLighter","grayOpacity","grayStronger","grayStrongest","green","boxShadow","buttonShadow","buttonDisabled","red","orange","initialValues","user_id","AuthContext","React","createContext","useContext","props","useState","setAuthenticated","user","setUser","auth","setAuth","useQueryClient","getInitialValue","userData","id","useEffect","useRequest","values","request","instance","toast","manual","loginRequest","run","logout","invalidateQueries","updateUser","value","useMemo","Provider","login"],"mappings":"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","debug_id":"a4555147-b2e3-570c-b47d-9349e97d6167"}