Open bruno-gregorio opened 7 months ago
but the new component syntax has the potential to unify how things are done
Unless this syntax is supported by JSX I can't see this happening at all.
And until today I always thought flow is a type checker. TIL.
I don't see the appeal either, but couldn't one react the same way to JSX itself? It's also a special syntax for react that has to be transpiled.
Over time, JSX has proven to quite useful for a variety of scenarios. The React transform requires nothing more than a createElement
-like function, and for other use cases there are many other popular transforms. It's been used in React, React-like, other not-at-all-like React VDOM-based systems, and systems that emit HTML strings, raw DOM elements, and others. Everyone wanted a reasonable template-ish syntax for making HTML-likes in Javascript, and JSX filled that need well.
By contrast, these changes are much more React-specific. component
enforces a very specific signature. hook
goes down the rabbit-hole of "the rules of hooks" as defined by React.
Remember when everyone said Flow was better because it wasn't adding transpiles-to-runtime stuff like enum and namespace to JS? TypeScript remembers 👴
The component syntax's advantage does not lie in its sugar; it's more about giving code semantics and allowing stricter type checks like return type being ReactNode
, parameters being readonly, etc. This benefit can trickle down to other linters like eslint-plugin-react
where they can enforce proper hook calls, etc. (totally understand if TypeScript doesn't want to take on this kind of checking)
In all seriousness though, it doesn't seem that problematic to parse component
as an alias for function
in TSX files only under jsx: preserve
(which would leave component
in the emitted JSX file) or noEmit
, and otherwise skip all the Meta-specific rules that Flow infers on it.
As far as I understand, their component
-to-function
compiler doesn't need any type annotations to do the right thing.
As others have said, React isn't the only user of JSX. Speaking as someone who's built a JSX framework, I could care less about more syntax sugar, JSX encompasses enough. Where it falls short is the limitations of typing, currently we can't do things like specifying "renders" types because JSX only allows one static return type JSX.Element
. However something like #14729 that allowed JSX to get return types from generic function (createElement
, jsx
, h
) would be immensely valuable. If you have this, you can implement "renders" and restricting children types. Two examples of such: recursive checks or tagging components with a "renders" symbol and associated type.
It's unclear what the benefit of component
is, flow could have similarly implemented "renders" types without it.
The biggest advantage IMO is the nicer handling of props. currently:
function MyComponent({ text = "Hello!", onClick }: { text: string, onClick: () => void }) {
return <div onClick={onClick}>{text}</div>;
}
what the component syntax would allow:
component MyComponent(text: string = "Hello!", onClick: () => void) {
return <div onClick={onClick}>{text}</div>;
}
I would like to able to add a plugin to my tsconfig to have this functionality.
🔍 Search Terms
"syntax", "flow", "component", "tsx"
✅ Viability Checklist
⭐ Suggestion
First of all, I'd like to apologize; this request doesn't satisfy the last three viability checks. But I couldn't submit this if I didn't mark them. That said, if someone from the typescript team could at least read this proposal, I would be extremely grateful.
Recently, flow has added a new syntax to write components and hooks. For react devs, that's huge, and as someone who uses (and loves) typescript, I'd love to have something like this on TSX files too.
I understand that there are a few limitations on what can be done in typescript; for example, I don't expect typescript to check the rules of hooks and other react-specific things. I know that things like Solid and Stencil also use JSX.
To be completely blunt: I WANT SUGAR. Most influencers covering this new feature mentioned that it's extremely unlikely that Typescript will implement it. But I decided to try anyway, even if just to understand the reason.
In a more practical sense, here's what I would expect to see in a realist scenario:
component
blocks would be transpiled intofunction
components.hook
blocks would be transpiled into functions.📃 Motivating Example
Here's the post that explains what I'm talking about: https://medium.com/flow-type/announcing-component-syntax-b6c5285660d0
💻 Use Cases