-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into dependabot/github_actions/superfly/flyctl-ac…
…tions-1.4
- Loading branch information
Showing
13 changed files
with
3,550 additions
and
3,596 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import React from 'react' | ||
import { ErrorBoundary } from 'react-error-boundary' | ||
|
||
type FallbackRenderProps = { | ||
error: Error | ||
resetErrorBoundary: () => void | ||
} | ||
|
||
const FallbackRender = ({ error }: FallbackRenderProps) => { | ||
// eslint-disable-next-line no-console | ||
console.error('Error description: ', error.message) | ||
|
||
return ( | ||
<div role="alert"> | ||
<p className="text-center text-red-500"> | ||
We encountered an internal error. Please try again. | ||
</p> | ||
</div> | ||
) | ||
} | ||
|
||
type CatchErrorBoundaryProps = { | ||
children: React.ReactNode | ||
} | ||
|
||
export const CatchErrorBoundary = ({ children }: CatchErrorBoundaryProps) => { | ||
return ( | ||
<ErrorBoundary fallbackRender={FallbackRender}>{children}</ErrorBoundary> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
import NodeCache from 'node-cache' | ||
|
||
let cache: NodeCache | ||
let expired = {} | ||
|
||
declare global { | ||
var __cache: NodeCache | undefined | ||
var __expired: { [key: string]: boolean } | ||
} | ||
|
||
if (process.env.NODE_ENV === 'production') { | ||
cache = new NodeCache({ deleteOnExpire: false }) | ||
} else { | ||
if (!global.__cache) { | ||
global.__cache = new NodeCache({ deleteOnExpire: false }) | ||
} | ||
cache = global.__cache | ||
if (!global.__expired) { | ||
global.__expired = {} | ||
} | ||
expired = global.__expired | ||
} | ||
|
||
cache.on('expired', (key) => { | ||
expired[key] = true | ||
}) | ||
|
||
const fetchCached = async <T>( | ||
cacheKey: string, | ||
fetcher: () => Promise<T>, | ||
ttl = 60 * 20 | ||
) => { | ||
let response: T | ||
if (cache.has(cacheKey)) { | ||
response = cache.get(cacheKey) | ||
if (expired[cacheKey]) { | ||
;(async () => { | ||
expired[cacheKey] = false | ||
cache.set(cacheKey, await fetcher(), ttl) | ||
})() | ||
} | ||
return response | ||
} | ||
response = await fetcher() | ||
cache.set(cacheKey, response, ttl) | ||
return response | ||
} | ||
|
||
export { cache, fetchCached } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.