-
Notifications
You must be signed in to change notification settings - Fork 676
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(@theme-ui/mdx): add TypeScript support #703
Conversation
@@ -48,7 +48,7 @@ export interface IntrinsicSxElements { | |||
em: JSX.IntrinsicElements['em'] & SxProps | |||
strong: JSX.IntrinsicElements['strong'] & SxProps | |||
div: JSX.IntrinsicElements['div'] & SxProps | |||
delete: JSX.IntrinsicElements['div'] & SxProps |
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.
I think this is a MDX thing as is inlineCode
and thematicBreak
.
https://github.com/gatsbyjs/gatsby/blob/master/docs/docs/mdx/customizing-components.md
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.
I guess I'm just a bit confused- in v0.3 (which fixed the issue reported in #401), delete
was renamed to del
.
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.
I didn’t know about #401. I’m as confused as you are or more. Sorry 😄
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.
This looks great, for sure good enough for a first version! 👍 Would you mind also converting the tests in mdx/test/index.js
to TypeScript? 🙏
@mxstbr For sure; will have that up later today. |
So a couple weird things came up during refactoring of the test.
theme-ui/packages/mdx/test/index.js Line 27 in e3a24ce
theme-ui/packages/css/src/types.ts Line 581 in e3a24ce
Looks like this isn't supported in TS: Should we just |
This is hard on TypeScript, but possible. react-hook-form Controller component has a pretty nice Reakit has correctly typed
Andrew Branch from TypeScript team has a nice blogpost on similar approache, which explains why it's heavy on TS and impossible in old language versions: |
It's just my opinion, I'm not part of the team or anything, but A PR to emotion to fix the root cause is a big undertaking. import React, { ElementType } from 'react';
type ThingyOwnProps = { a: number };
type ThingyProps<As extends ElementType | undefined = undefined> =
{ as: As } & (As extends undefined ? ThingyOwnProps : { [key: string]: unknown });
const Thingy = <As extends ElementType | undefined = undefined>(props: ThingyProps<As>) => {
return <div>{JSON.stringify(props, null, 2)}</div>
}
// Type 'string' is not assignable to type 'number'.(2322) <- Good.
const _1 = <Thingy a="hello" />
// No such component or intrinsic element as "fork". Good.
const _2 = <Thingy as="fork" a="hello" />
// Passing a component works and we opt out of typechecking due to "as" prop.
const SimpleComponent = () => <div />;
const _3 = <Thingy as={SimpleComponent} a="hello" />
// Passing a instrinsic element name works and we also opt out of checking.
const _4 = <Thingy as="form" a="hello" /> |
While I think it's best to avoid breaking changes as much as possible, we are planning on bumping to As far as the |
I like that approach @hasparus, it does suck a bit to lose typed props when the On locking down On whether it should be kept this way going forward or made to be stricter, that may warrant seeing how its used in the community and seeing if people are theming React components through |
This blocks TS adoption in @theme-ui/components (Paulie's #692 and my PaulieScanlon#1), and I'd really like to remove Loose idea: How to fix the
|
I think this can be closed, as we merged #1031 with LA1CH3's commit. |
Converting the
@theme-ui/mdx
package to TypeScript as mentioned in #668Couple items of note:
IntrinsicSxElements
interface in@theme-ui/core
to usedel
instead ofdelete
(there exists nodelete
tag in HTML nor is it an aliased tag)tsconfig.json
from@theme-ui/core
@theme-ui/core
and@theme-ui/css
todevDependencies
(leaning on discussion from Adopt TS in theme-ui/color #672 (comment))Interpolation
type forthemed
so if there's any help/suggestions for that, would love any comments.