Revert "add error reporting component, INTEGRATION ERROR type, and Missing provider error (#3107)" (#3109)

This reverts commit ac2642fedc8be9ea85201d341b3933983ab2ad36.
This commit is contained in:
Jordan Frankfurt 2022-01-12 14:24:23 -06:00 committed by GitHub
parent ac2642fedc
commit 06a8151ede
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 2 additions and 42 deletions

@ -117,9 +117,7 @@ export default function ErrorDialog({ header, error, action, onAction }: ErrorDi
<Rule />
<ErrorColumn>
<Column gap={0.5} ref={setDetails} css={scrollbar}>
<ThemedText.Code>
{error.name}: {error.message}
</ThemedText.Code>
<ThemedText.Code>{error.message}</ThemedText.Code>
</Column>
</ErrorColumn>
<ActionButton onClick={onAction}>{action}</ActionButton>

@ -1,23 +0,0 @@
import { useAtomValue } from 'jotai/utils'
import { providerAtom } from 'lib/state/web3'
import { useEffect } from 'react'
import { EMPTY } from 'widgets-web3-react/empty'
class IntegrationError extends Error {
constructor(message: string) {
super(message)
this.name = 'INTEGRATION ERROR'
}
}
const missingProviderError = new IntegrationError('Missing provider')
export default function ErrorReporter() {
const [connector] = useAtomValue(providerAtom)
useEffect(() => {
if (connector === EMPTY) {
throw missingProviderError
}
}, [connector])
return null
}

@ -8,7 +8,6 @@ import { Provider as EthProvider } from 'widgets-web3-react/types'
import { Provider as DialogProvider } from './Dialog'
import ErrorBoundary, { ErrorHandler } from './Error/ErrorBoundary'
import ErrorReporter from './Error/ErrorReporter'
import Web3Provider from './Web3Provider'
const slideDown = keyframes`
@ -101,7 +100,6 @@ export default function Widget({
<ErrorBoundary onError={onError}>
<AtomProvider>
<Web3Provider provider={provider} jsonRpcEndpoint={jsonRpcEndpoint}>
<ErrorReporter />
{children}
</Web3Provider>
</AtomProvider>

@ -1,11 +0,0 @@
import { WidgetProps } from 'lib/components/Widget'
import { missingProviderError } from 'lib/errors'
import { useEffect } from 'react'
export function useEnsureCorrectProps(props: WidgetProps) {
useEffect(() => {
if (!props.provider) {
throw missingProviderError
}
}, [props])
}

@ -3,7 +3,7 @@ import Widget, { WidgetProps } from './components/Widget'
export type SwapWidgetProps = WidgetProps<typeof Swap>
export function SwapWidget(props: SwapWidgetProps) {
export function SwapWidget({ ...props }: SwapWidgetProps) {
return (
<Widget {...props}>
<Swap {...props} />

@ -1,5 +1,4 @@
import { createMulticall } from '@uniswap/redux-multicall'
import { atom } from 'jotai'
import { atomWithStore } from 'jotai/redux'
import { atomWithDefault } from 'jotai/utils'
import { createStore } from 'redux'
@ -13,7 +12,6 @@ export type Web3ReactState = [Connector, Web3ReactHooks]
export const urlAtom = atomWithDefault<Web3ReactState>(() => EMPTY_CONNECTOR)
export const injectedAtom = atomWithDefault<Web3ReactState>(() => EMPTY_CONNECTOR)
export const providerAtom = atom((get) => get(injectedAtom) || get(urlAtom))
export const multicall = createMulticall()
const multicallStore = createStore(multicall.reducer)