Skip to content
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

Merged
merged 17 commits into from
Feb 4, 2022
Merged

feat: add error-view component #493

merged 17 commits into from
Feb 4, 2022

Conversation

zchsh
Copy link
Contributor

@zchsh zchsh commented Jan 20, 2022

🎟️ 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.

  • Add Asana and Preview links above.
  • Conduct thorough self-review.
  • Add or update tests as appropriate.
  • Conduct reasonable cross browser testing for both compatibility and responsive behavior (We have a Sauce Labs account for this, if you don't have access, just ask!).
  • Conduct reasonable accessibility review (use the WAS as a guide or an axe browser plugin until we establish more formal checks).
  • Identify (in the description above) and document (add Asana tasks on this board) any technical debt that you're aware of, but are not addressing as part of this PR.

@changeset-bot
Copy link

changeset-bot bot commented Jan 20, 2022

πŸ¦‹ Changeset detected

Latest commit: 34c8c9c

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 1 package
Name Type
@hashicorp/react-error-view Patch

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

@vercel
Copy link

vercel bot commented Jan 20, 2022

This pull request is being automatically deployed with Vercel (learn more).
To see the status of your deployment, click below or on the icon next to each commit.

πŸ” Inspect: https://vercel.com/hashicorp/react-components/2nVBRBMT8yMMHtkcfkQzkaRaexXq
βœ… Preview: https://react-components-git-zsadd-error-view-hashicorp.vercel.app

@zchsh zchsh added the release:canary Triggers a canary release for commits to this pull request label Jan 20, 2022
@github-actions
Copy link
Contributor

github-actions bot commented Jan 20, 2022

πŸ“¦ Canary Packages Published

Latest commit: 34c8c9c

Published 34 packages

@hashicorp/[email protected]

npm install @hashicorp/react-accordion@canary

@hashicorp/[email protected]

npm install @hashicorp/react-alert-banner@canary

@hashicorp/[email protected]

npm install @hashicorp/react-button@canary

@hashicorp/[email protected]

npm install @hashicorp/react-call-to-action@canary

@hashicorp/[email protected]

npm install @hashicorp/react-callouts@canary

@hashicorp/[email protected]

npm install @hashicorp/react-case-study-slider@canary

@hashicorp/[email protected]

npm install @hashicorp/react-code-block@canary

@hashicorp/[email protected]

npm install @hashicorp/react-combobox@canary

@hashicorp/[email protected]

npm install @hashicorp/react-consent-manager@canary

@hashicorp/[email protected]

npm install @hashicorp/react-content@canary

@hashicorp/[email protected]

npm install @hashicorp/react-content-cta@canary

@hashicorp/[email protected]

npm install @hashicorp/react-docs-page@canary

@hashicorp/[email protected]

npm install @hashicorp/react-error-view@canary

@hashicorp/[email protected]

npm install @hashicorp/react-featured-slider@canary

@hashicorp/[email protected]

npm install @hashicorp/react-feedback-form@canary

@hashicorp/[email protected]

npm install @hashicorp/react-glossary-page@canary

@hashicorp/[email protected]

npm install @hashicorp/react-hashi-stack-menu@canary

@hashicorp/[email protected]

npm install @hashicorp/react-hero@canary

@hashicorp/[email protected]

npm install @hashicorp/react-image@canary

@hashicorp/[email protected]

npm install @hashicorp/react-learn-callout@canary

@hashicorp/[email protected]

npm install @hashicorp/react-logo-grid@canary

@hashicorp/[email protected]

npm install @hashicorp/react-markdown-page@canary

@hashicorp/[email protected]

npm install @hashicorp/react-open-api-page@canary

@hashicorp/[email protected]

npm install @hashicorp/react-product-downloads-page@canary

@hashicorp/[email protected]

npm install @hashicorp/react-product-features-list@canary

@hashicorp/[email protected]

npm install @hashicorp/react-search@canary

@hashicorp/[email protected]

npm install @hashicorp/react-stepped-feature-list@canary

@hashicorp/[email protected]

npm install @hashicorp/react-subnav@canary

@hashicorp/[email protected]

npm install @hashicorp/react-tabbed-accordion@canary

@hashicorp/[email protected]

npm install @hashicorp/react-tabs@canary

@hashicorp/[email protected]

npm install @hashicorp/react-text-split@canary

@hashicorp/[email protected]

npm install @hashicorp/react-text-split-with-code@canary

@hashicorp/[email protected]

npm install @hashicorp/react-text-splits@canary

@hashicorp/[email protected]

npm install @hashicorp/react-vertical-text-block-list@canary


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`
Copy link
Contributor Author

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 = {
Copy link
Contributor Author

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) {
Copy link
Contributor Author

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)}`
Copy link
Contributor Author

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 || {}
Copy link
Contributor Author

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
Copy link
Contributor Author

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.

@zchsh zchsh marked this pull request as ready for review January 23, 2022 16:52
@zchsh zchsh requested review from brkalow and dstaley January 23, 2022 16:52
Copy link
Contributor

@brkalow brkalow left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸ’―

@brkalow
Copy link
Contributor

brkalow commented Jan 24, 2022

@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 CONTENT_DICT and add additional props to access it that way, but wanted to get your take before I went down that route. πŸ™

@brkalow brkalow mentioned this pull request Jan 25, 2022
6 tasks
Versioned view is being moved into dev-portal, so removing it here
@brkalow
Copy link
Contributor

brkalow commented Jan 31, 2022

@zchsh FYI, I just moved the versioned error view out of this PR and into dev-portal like we discussed last week!

@zchsh
Copy link
Contributor Author

zchsh commented Feb 4, 2022

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 react-components πŸ‘

@zchsh zchsh merged commit 2ab7135 into main Feb 4, 2022
@zchsh zchsh deleted the zs.add-error-view branch February 4, 2022 15:24
@github-actions github-actions bot mentioned this pull request Feb 4, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
release:canary Triggers a canary release for commits to this pull request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants