-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add error-view component #493
Conversation
π¦ Changeset detectedLatest commit: 34c8c9c The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
This pull request is being automatically deployed with Vercel (learn more). π Inspect: https://vercel.com/hashicorp/react-components/2nVBRBMT8yMMHtkcfkQzkaRaexXq |
π¦ Canary Packages PublishedLatest commit: 34c8c9c Published 34 packages@hashicorp/[email protected]
@hashicorp/[email protected]
@hashicorp/[email protected]
@hashicorp/[email protected]
@hashicorp/[email protected]
@hashicorp/[email protected]
@hashicorp/[email protected]
@hashicorp/[email protected]
@hashicorp/[email protected]
@hashicorp/[email protected]
@hashicorp/[email protected]
@hashicorp/[email protected]
@hashicorp/[email protected]
@hashicorp/[email protected]
@hashicorp/[email protected]
@hashicorp/[email protected]
@hashicorp/[email protected]
@hashicorp/[email protected]
@hashicorp/[email protected]
@hashicorp/[email protected]
@hashicorp/[email protected]
@hashicorp/[email protected]
@hashicorp/[email protected]
@hashicorp/[email protected]
@hashicorp/[email protected]
@hashicorp/[email protected]
@hashicorp/[email protected]
@hashicorp/[email protected]
@hashicorp/[email protected]
@hashicorp/[email protected]
@hashicorp/[email protected]
@hashicorp/[email protected]
@hashicorp/[email protected]
@hashicorp/[email protected]
|
|
||
A component used to display an error view. For further details on this component, see [docs.mdx](./docs.mdx). These docs can also be viewed through our [Swingset instance](https://react-components.vercel.app). | ||
|
||
## `useErrorPageAnalytics` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Kept this README pretty minimal, to avoid duplicating content in the docs.mdx
file.
statusCode: number | ||
} | ||
|
||
const CONTENT_DICT = { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Went with a very fixed content approach for this component. I think this will satisfy most of our existing use cases, and have provided the useErrorPageAnalytics
in case we need to do something more custom (in terms of either content or styles).
@@ -19,13 +19,19 @@ async function fetchRegistryData(packageName) { | |||
// Otherwise, refetch | |||
try { | |||
const response = await fetch(registryUrl) | |||
// If status is not 200, throw an error | |||
if (response.status !== 200) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ran into an issue here since the package isn't published yet. I think it makes sense here to bail and throw an error if the npm registry URL responds with anything other than a successful response.
@@ -28,18 +28,19 @@ function ReleaseDetails({ packageJson = {} }) { | |||
const [error, registryData] = await response.json() | |||
if (error) { | |||
let msg = `Error fetching registry data for ${name}. ` | |||
msg += `Full error: ${JSON.stringify(error)}` | |||
msg += `error.toString(): ${JSON.stringify(error)}` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Felt this format might be more helpful and transparent for when there are errors.
const isStable = parseInt(z).toString() === z | ||
return isStable | ||
}) | ||
const versions = registryData.versions || {} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
registryData
may not be defined, needed to handle that case.
const forMockRestore = window.analytics | ||
// $TSFixMe loosens window.analytics type to diverge from Segment type | ||
// defined in @hashicorp/platform-types | ||
window.analytics = { track: jest.fn() } as $TSFixMe |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Without the ... as $TSFixMe
I'd end up with TypeScript getting mad that this doesn't match the type defined in https://github.com/hashicorp/web-platform-packages/blob/6062939845d5d841d78afade8225e891cd428aa3/packages/types/index.d.ts#L34. Hopefully this makes sense, but wanted to flag in case anyone has a better workaround.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
π―
@zchsh do you think it'd be acceptable to export additional error views from this package? I'm thinking of the shared versioned docs not found page, which is currently implemented here: https://github.com/hashicorp/waypoint/blob/main/website/pages/404.jsx#L41-L60 An alternative would be to add it to the |
adds versioned error view
Versioned view is being moved into dev-portal, so removing it here
@zchsh FYI, I just moved the versioned error view out of this PR and into dev-portal like we discussed last week! |
Apologies for the delay here - I think this is ready to merge in, so going to do that now, and then run a release off |
ποΈ Asana Task
π Preview Link
Description
This PR adds a
@hashicorp/react-error-view
component.Have tested a canary release of this component in hashicorp/vagrant#12651.
PR Checklist π
Items in this checklist may not may not apply to your PR, but please consider each item carefully.