-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #42 from reactjs/sync-2372ecf9
- Loading branch information
Showing
27 changed files
with
1,857 additions
and
7 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,34 @@ | ||
name: "🐛 Report a bug" | ||
description: "Report a problem on the website." | ||
title: "[Bug]: " | ||
labels: ["bug: unconfirmed"] | ||
body: | ||
- type: textarea | ||
attributes: | ||
label: Summary | ||
description: | | ||
A clear and concise summary of what the bug is. | ||
placeholder: | | ||
Example bug report: | ||
When I click the "Submit" button on "Feedback", nothing happens. | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: Page | ||
description: | | ||
What page(s) did you encounter this bug on? | ||
placeholder: | | ||
https://react.dev/ | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Details | ||
description: | | ||
Please provide any additional details about the bug. | ||
placeholder: | | ||
Example details: | ||
The "Submit" button is unresponsive. I've tried refreshing the page and using a different browser, but the issue persists. | ||
validations: | ||
required: false |
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,34 @@ | ||
name: "🤦 Typo or mistake" | ||
description: "Report a typo or mistake in the docs." | ||
title: "[Typo]: " | ||
labels: ["type: typos"] | ||
body: | ||
- type: textarea | ||
attributes: | ||
label: Summary | ||
description: | | ||
A clear and concise summary of what the mistake is. | ||
placeholder: | | ||
Example: | ||
The code example on the "useReducer" page includes an unused variable `nextId`. | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: Page | ||
description: | | ||
What page is the typo on? | ||
placeholder: | | ||
https://react.dev/ | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Details | ||
description: | | ||
Please provide a explanation for why this is a mistake. | ||
placeholder: | | ||
Example mistake: | ||
In the "useReducer" section of the "API Reference" page, the code example under "Writing a reducer function" includes an unused variable `nextId` that should be removed. | ||
validations: | ||
required: false |
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,34 @@ | ||
name: "💡 Suggestions" | ||
description: "Suggest a new page, section, or edit for an existing page." | ||
title: "[Suggestion]: " | ||
labels: ["type: documentation"] | ||
body: | ||
- type: textarea | ||
attributes: | ||
label: Summary | ||
description: | | ||
A clear and concise summary of what we should add. | ||
placeholder: | | ||
Example: | ||
Add a new page for how to use React with TypeScript. | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: Page | ||
description: | | ||
What page is this about? | ||
placeholder: | | ||
https://react.dev/ | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: Details | ||
description: | | ||
Please provide a explanation for what you're suggesting. | ||
placeholder: | | ||
Example: | ||
I think it would be helpful to have a page that explains how to use React with TypeScript. This could include a basic example of a component written in TypeScript, and a link to the TypeScript documentation. | ||
validations: | ||
required: true |
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,116 @@ | ||
name: "📄 Suggest new framework" | ||
description: "I am a framework author applying to be included as a recommended framework." | ||
title: "[Framework]: " | ||
labels: ["type: framework"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
## Apply to be included as a recommended React framework | ||
_This form is for framework authors to apply to be included as a recommended [React framework](https://react.dev/learn/start-a-new-react-project). If you are not a framework author, please contact the authors before submitting._ | ||
Our goal when recommending a framework is to start developers with a React project that solves common problems like code splitting, data fetching, routing, and HTML generation without any extra work later. We believe this will allow users to get started quickly with React, and scale their app to production. | ||
While we understand that many frameworks may want to be featured, this page is not a place to advertise every possible React framework or all frameworks that you can add React to. There are many great frameworks that offer support for React that are not listed in our guides. The frameworks we recommend have invested significantly in the React ecosystem, and collaborated with the React team to be compatible with our [full-stack React architecture vision](https://react.dev/learn/start-a-new-react-project#which-features-make-up-the-react-teams-full-stack-architecture-vision). | ||
To be included, frameworks must meet the following criteria: | ||
- **Free & open-source**: must be open source and free to use. | ||
- **Well maintained**. must be actively maintained, providing bug fixes and improvements. | ||
- **Active community**: must have a sufficiently large and active community to support users. | ||
- **Clear onboarding**: must have clear install steps to install the React version of the framework. | ||
- **Ecosystem compatibility**: must support using the full range of libraries and tools in the React ecosystem. | ||
- **Self-hosting option**: must support an option to self-host applications without losing access to features. | ||
- **Developer experience**. must allow developers to be productive by supporting features like Fast Refresh. | ||
- **User experience**. must provide built-in support for common problems like routing and data-fetching. | ||
- **Compatible with our future vision for React**. React evolves over time, and frameworks that do not align with React’s direction risk isolating their users from the main React ecosystem over time. To be included on this page we must feel confident that the framework is setting its users up for success with React over time. | ||
Please note, we have reviewed most of the popular frameworks available today, so it is unlikely we have not considered your framework already. But if you think we missed something, please complete the application below. | ||
- type: input | ||
attributes: | ||
label: Name | ||
description: | | ||
What is the name of your framework? | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: Homepage | ||
description: | | ||
What is the URL of your homepage? | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: Install instructions | ||
description: | | ||
What is the URL of your getting started guide? | ||
validations: | ||
required: true | ||
- type: dropdown | ||
attributes: | ||
label: Is your framework open source? | ||
description: | | ||
We only recommend free and open source frameworks. | ||
options: | ||
- 'No' | ||
- 'Yes' | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Well maintained | ||
description: | | ||
Please describe how your framework is actively maintained. Include recent releases, bug fixes, and improvements as examples. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Active community | ||
description: | | ||
Please describe your community. Include the size of your community, and links to community resources. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Clear onboarding | ||
description: | | ||
Please describe how a user can install your framework with React. Include links to any relevant documentation. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Ecosystem compatibility | ||
description: | | ||
Please describe any limitations your framework has with the React ecosystem. Include any libraries or tools that are not compatible with your framework. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Self-hosting option | ||
description: | | ||
Please describe how your framework supports self-hosting. Include any limitations to features when self-hosting. Also include whether you require a server to deploy your framework. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Developer Experience | ||
description: | | ||
Please describe how your framework provides a great developer experience. Include any limitations to React features like React DevTools, Chrome DevTools, and Fast Refresh. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: User Experience | ||
description: | | ||
Please describe how your framework helps developers create high quality user experiences by solving common use-cases. Include specifics for how your framework offers built-in support for code-splitting, routing, HTML generation, and data-fetching in a way that avoids client/server waterfalls by default. Include details on how you offer features such as SSG and SSR. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Compatible with our future vision for React | ||
description: | | ||
Please describe how your framework aligns with our future vision for React. Include how your framework will evolve with React over time, and your plans to support future React features like React Server Components. | ||
validations: | ||
required: true |
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,7 @@ | ||
contact_links: | ||
- name: 📃 Bugs in React | ||
url: https://github.com/facebook/react/issues/new/choose | ||
about: This issue tracker is not for bugs in React. Please file React issues here. | ||
- name: 🤔 Questions and Help | ||
url: https://reactjs.org/community/support.html | ||
about: This issue tracker is not for support questions. Please refer to the React community's help and discussion forums. |
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,85 @@ | ||
import {Children, memo} from 'react'; | ||
import InlineCode from './InlineCode'; | ||
import Sandpack from './Sandpack'; | ||
|
||
const ShowRenderedHTML = ` | ||
import { renderToStaticMarkup } from 'react-dom/server'; | ||
import formatHTML from './formatHTML.js'; | ||
export default function ShowRenderedHTML({children}) { | ||
const markup = renderToStaticMarkup( | ||
<html> | ||
<head /> | ||
<body>{children}</body> | ||
</html> | ||
); | ||
return ( | ||
<> | ||
<h1>Rendered HTML:</h1> | ||
<pre> | ||
{formatHTML(markup)} | ||
</pre> | ||
</> | ||
); | ||
}`; | ||
|
||
const formatHTML = ` | ||
import format from 'html-format'; | ||
export default function formatHTML(markup) { | ||
// Cheap tricks to format the HTML readably -- haven't been able to | ||
// find a package that runs in browser and prettifies the HTML if it | ||
// lacks line-breaks. | ||
return format(markup | ||
.replace('<html>', '<html>\\n') | ||
.replace('<head>', '<head>\\n') | ||
.replaceAll(/<\\/script>/g, '<\\/script>\\n') | ||
.replaceAll(/<style([^>]*)\\/>/g, '<style $1/>\\n\\n') | ||
.replaceAll(/<\\/style>/g, '\\n <\\/style>\\n') | ||
.replaceAll(/<link([^>]*)\\/>/g, '<link $1/>\\n') | ||
.replaceAll(/<meta([^/]*)\\/>/g, '<meta $1/>\\n') | ||
.replace('</head>', '</head>\\n') | ||
.replace('<body>', '<body>\\n') | ||
.replace('</body>', '\\n</body>\\n') | ||
.replace('</h1>', '</h1>\\n') | ||
); | ||
} | ||
`; | ||
|
||
const packageJSON = ` | ||
{ | ||
"dependencies": { | ||
"react": "18.3.0-canary-6db7f4209-20231021", | ||
"react-dom": "18.3.0-canary-6db7f4209-20231021", | ||
"react-scripts": "^5.0.0", | ||
"html-format": "^1.1.2" | ||
}, | ||
"main": "/index.js", | ||
"devDependencies": {} | ||
} | ||
`; | ||
|
||
// Intentionally not a React component because <Sandpack> will read | ||
// through its childrens' props. This imitates the output of ``` | ||
// codeblocks in MDX. | ||
function createFile(meta: string, source: string) { | ||
return ( | ||
<pre key={meta}> | ||
<InlineCode meta={meta} className="language-js"> | ||
{source} | ||
</InlineCode> | ||
</pre> | ||
); | ||
} | ||
|
||
export default memo(function SandpackWithHTMLOutput( | ||
props: React.ComponentProps<typeof Sandpack> | ||
) { | ||
const children = [ | ||
...Children.toArray(props.children), | ||
createFile('ShowRenderedHTML.js', ShowRenderedHTML), | ||
createFile('formatHTML.js hidden', formatHTML), | ||
createFile('package.json hidden', packageJSON), | ||
]; | ||
return <Sandpack {...props}>{children}</Sandpack>; | ||
}); |
Oops, something went wrong.