Skip to content

Commit

Permalink
build: add React18 Support (#2682)
Browse files Browse the repository at this point in the history
* build: add React18 Support

Update packages dependencies to include React v18

* refactor: add PropsWithChildren pros

Add React.PropsWithChildren for compatibility with React v18

* chore: update React version on missing packages

* fix: added newer proptypes types (react 18) (#3)

* refactor(yarn.lock): update yarn.lock file

* chore: update eslint and React versions

* chore: fixing eslint issues

* WIP: Fix react fc typings (#5)

* fix: un-needed React.FC typing with no children

* fix: removing unknown from interface PropsWithChildren as not needed

* fix: types on the rest of the files

* fix(components): radio and button-group React18 fix

* fix: update React app tests

Co-authored-by: Pablo Espinosa <[email protected]>
  • Loading branch information
2 people authored and Niznikr committed Feb 9, 2023
1 parent 154b02c commit 3892591
Show file tree
Hide file tree
Showing 412 changed files with 1,691 additions and 1,428 deletions.
8 changes: 4 additions & 4 deletions .danger/__fixtures__/mock_package/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@
"@twilio-paste/design-tokens": "^8.0.0",
"@twilio-paste/styling-library": "^1.0.0",
"@twilio-paste/types": "^3.1.1",
"react": "^16.8.6 || ^17.0.2",
"react-dom": "^16.8.6 || ^17.0.2"
"react": "^16.8.6 || ^17.0.2 || ^18.0.0",
"react-dom": "^16.8.6 || ^17.0.2 || ^18.0.0"
},
"devDependencies": {
"@twilio-paste/animation-library": "^0.3.7",
"@twilio-paste/color-contrast-utils": "^3.0.0",
"@twilio-paste/design-tokens": "^8.0.0",
"@twilio-paste/styling-library": "^1.0.2",
"@twilio-paste/types": "^3.1.8",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-helmet": "^6.1.0"
}
}
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ module.exports = {
],
settings: {
react: {
version: '17.0.2',
version: 'detect',
},
},
};
2 changes: 1 addition & 1 deletion .github/workflows/on_pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ jobs:
run: yarn lint

tests:
name: Test repository using React 17
name: Test repository using React 18
needs: build
runs-on: ubuntu-latest
steps:
Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -139,16 +139,16 @@
"@storybook/testing-library": "0.0.13",
"@swc/core": "^1.2.160",
"@swc/jest": "^0.2.20",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.4",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.5.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.4.3",
"@twilio-labs/svg-to-react": "^2.1.1",
"@types/browser-sync": "^2.26.1",
"@types/color": "^3.0.0",
"@types/jest": "^24.0.18",
"@types/node": "^18.11.13",
"@types/react": "^17.0.31",
"@types/react": "^18.0.0",
"@types/react-color": "^3.0.6",
"@types/react-github-button": "^0.1.1",
"@types/react-helmet": "^5.0.14",
Expand Down Expand Up @@ -209,8 +209,8 @@
"prettier": "^2.8.1",
"prop-types": "^15.7.2",
"puppeteer-core": "^10.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-ga": "^3.3.0",
"react-helmet": "^6.1.0",
"react-router-dom": "6.2.1",
Expand Down
8 changes: 4 additions & 4 deletions packages/paste-core/components/alert-dialog/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@
"@twilio-paste/types": "^3.1.1",
"@twilio-paste/uid-library": "^0.2.1",
"prop-types": "^15.7.2",
"react": "^16.8.6 || ^17.0.2",
"react-dom": "^16.8.6 || ^17.0.2"
"react": "^16.8.6 || ^17.0.2 || ^18.0.0",
"react-dom": "^16.8.6 || ^17.0.2 || ^18.0.0"
},
"devDependencies": {
"@twilio-paste/anchor": "^9.0.0",
Expand All @@ -73,7 +73,7 @@
"@twilio-paste/types": "^3.1.9",
"@twilio-paste/uid-library": "^0.2.6",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2"
"react": "^18.0.0",
"react-dom": "^18.0.0"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ AlertDialogWithTwoActionsStory.parameters = {
chromatic: {disableSnapshot: true},
};

export const DestructiveAlertDialog: React.FC = () => {
export const DestructiveAlertDialog = (): JSX.Element => {
return (
<AlertDialog
heading="Delete data"
Expand All @@ -75,7 +75,7 @@ DestructiveAlertDialogStory.parameters = {
chromatic: {disableSnapshot: true},
};

export const OpenAlertDialogFromButton: React.FC = () => {
export const OpenAlertDialogFromButton = (): JSX.Element => {
const [isOpen, setIsOpen] = React.useState(false);
const handleOpen = (): void => setIsOpen(true);
const handleClose = (): void => setIsOpen(false);
Expand Down Expand Up @@ -108,7 +108,7 @@ OpenAlertDialogFromButtonStory.parameters = {
chromatic: {disableSnapshot: true},
};

export const OpenAlertDialogFromModal: React.FC = () => {
export const OpenAlertDialogFromModal = (): JSX.Element => {
const [isModalOpen, setIsModalOpen] = React.useState(true);
const [isAlertDialogOpen, setIsAlertDialogOpen] = React.useState(true);
const handleModalOpen = (): void => setIsModalOpen(true);
Expand Down
8 changes: 4 additions & 4 deletions packages/paste-core/components/alert/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@
"@twilio-paste/types": "^3.1.1",
"@twilio-paste/uid-library": "^0.2.1",
"prop-types": "^15.7.2",
"react": "^16.8.6 || ^17.0.2",
"react-dom": "^16.8.6 || ^17.0.2"
"react": "^16.8.6 || ^17.0.2 || ^18.0.0",
"react-dom": "^16.8.6 || ^17.0.2 || ^18.0.0"
},
"devDependencies": {
"@twilio-paste/anchor": "^9.0.0",
Expand All @@ -65,7 +65,7 @@
"@twilio-paste/types": "^3.1.9",
"@twilio-paste/uid-library": "^0.2.6",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2"
"react": "^18.0.0",
"react-dom": "^18.0.0"
}
}
8 changes: 4 additions & 4 deletions packages/paste-core/components/anchor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
"@twilio-paste/types": "^3.1.1",
"@twilio-paste/uid-library": "^0.2.1",
"prop-types": "^15.7.2",
"react": "^16.8.6 || ^17.0.2",
"react-dom": "^16.8.6 || ^17.0.2"
"react": "^16.8.6 || ^17.0.2 || ^18.0.0",
"react-dom": "^16.8.6 || ^17.0.2 || ^18.0.0"
},
"devDependencies": {
"@twilio-paste/animation-library": "^0.3.1",
Expand All @@ -53,7 +53,7 @@
"@twilio-paste/types": "^3.1.9",
"@twilio-paste/uid-library": "^0.2.6",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2"
"react": "^18.0.0",
"react-dom": "^18.0.0"
}
}
8 changes: 4 additions & 4 deletions packages/paste-core/components/avatar/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
"@twilio-paste/types": "^3.1.1",
"@twilio-paste/uid-library": "^0.2.1",
"prop-types": "^15.7.2",
"react": "^16.8.6 || ^17.0.2",
"react-dom": "^16.8.6 || ^17.0.2"
"react": "^16.8.6 || ^17.0.2 || ^18.0.0",
"react-dom": "^16.8.6 || ^17.0.2 || ^18.0.0"
},
"devDependencies": {
"@twilio-paste/animation-library": "^0.3.1",
Expand All @@ -59,7 +59,7 @@
"@twilio-paste/types": "^3.1.9",
"@twilio-paste/uid-library": "^0.2.1",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2"
"react": "^18.0.0",
"react-dom": "^18.0.0"
}
}
7 changes: 6 additions & 1 deletion packages/paste-core/components/avatar/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,12 @@ import type {AvatarProps, AvatarContentProps, ColorVariants, AvatarVariants} fro

const DEFAULT_SIZE = 'sizeIcon70';

const AvatarContents: React.FC<AvatarContentProps> = ({name, size = DEFAULT_SIZE, src, icon: Icon}) => {
const AvatarContents: React.FC<React.PropsWithChildren<AvatarContentProps>> = ({
name,
size = DEFAULT_SIZE,
src,
icon: Icon,
}) => {
const computedTokenNames = getComputedTokenNames(size);
if (src != null) {
return <Box as="img" alt={name} maxWidth="100%" src={src} size={size} title={name} />;
Expand Down
4 changes: 2 additions & 2 deletions packages/paste-core/components/avatar/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export type AvatarProps = React.HTMLAttributes<'div'> &
Pick<BoxProps, 'element'> & {
name: string;
size?: IconSize;
icon?: React.FC<GenericIconProps>;
icon?: React.FC<React.PropsWithChildren<GenericIconProps>>;
src?: string;
color?: ColorVariants;
variant?: AvatarVariants;
Expand All @@ -18,6 +18,6 @@ export type AvatarProps = React.HTMLAttributes<'div'> &
export type AvatarContentProps = {
name: string;
size?: IconSize;
icon?: React.FC<GenericIconProps>;
icon?: React.FC<React.PropsWithChildren<GenericIconProps>>;
src?: string;
};
8 changes: 4 additions & 4 deletions packages/paste-core/components/badge/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
"@twilio-paste/types": "^3.1.1",
"@twilio-paste/uid-library": "^0.2.1",
"prop-types": "^15.7.2",
"react": "^16.8.6 || ^17.0.2",
"react-dom": "^16.8.6 || ^17.0.2"
"react": "^16.8.6 || ^17.0.2 || ^18.0.0",
"react-dom": "^16.8.6 || ^17.0.2 || ^18.0.0"
},
"devDependencies": {
"@twilio-paste/anchor": "^9.0.2",
Expand All @@ -59,7 +59,7 @@
"@twilio-paste/types": "^3.1.9",
"@twilio-paste/uid-library": "^0.2.6",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2"
"react": "^18.0.0",
"react-dom": "^18.0.0"
}
}
5 changes: 2 additions & 3 deletions packages/paste-core/components/badge/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ import type {BadgeProps, BadgeVariants} from './types';
import {useResizeChildIcons} from './hooks';
import {badgeVariantStyles, getBadgeAnchorStyles, getBadgeButtonStyles} from './styles';

export type {BadgeProps};

const handlePropValidation = ({as, href, onClick}: Partial<BadgeProps>): void => {
if (as === 'a') {
if (href === null || href === undefined)
Expand Down Expand Up @@ -95,8 +93,9 @@ Badge.propTypes = {
'default',
'info',
] as BadgeVariants[]).isRequired,
// @ts-expect-error type unions are a little too much for prop types inferred types to handle
as: PropTypes.oneOf(['span', 'button', 'a']).isRequired,
href: PropTypes.string,
onClick: PropTypes.func,
};

export type {BadgeProps} from './types';
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const getStyles = (element = 'BADGE'): {[key: string]: PasteCustomCSS} =>
};
};

const CustomizationWrapper: React.FC<{variant: BadgeVariants; isTestEnvironment: boolean}> = ({
const CustomizationWrapper: React.FC<React.PropsWithChildren<{variant: BadgeVariants; isTestEnvironment: boolean}>> = ({
variant,
isTestEnvironment,
}): React.ReactElement => {
Expand Down
30 changes: 15 additions & 15 deletions packages/paste-core/components/badge/stories/index.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const Wrapper = styled.div(
})
);

export const AllBadges: React.FC = () => (
export const AllBadges = (): JSX.Element => (
<Wrapper>
<Badge as="span" variant="neutral">
Neutral
Expand Down Expand Up @@ -64,7 +64,7 @@ export const AllBadges: React.FC = () => (
</Wrapper>
);

export const NeutralBadge: React.FC = () => (
export const NeutralBadge = (): JSX.Element => (
<>
<Heading as="h2" variant="heading40">
Span
Expand Down Expand Up @@ -121,7 +121,7 @@ export const NeutralBadge: React.FC = () => (
</>
);

export const WarningBadge: React.FC = () => (
export const WarningBadge = (): JSX.Element => (
<>
<Heading as="h2" variant="heading40">
Span
Expand Down Expand Up @@ -174,7 +174,7 @@ export const WarningBadge: React.FC = () => (
</>
);

export const ErrorBadge: React.FC = () => (
export const ErrorBadge = (): JSX.Element => (
<>
<Heading as="h2" variant="heading40">
Span
Expand Down Expand Up @@ -227,7 +227,7 @@ export const ErrorBadge: React.FC = () => (
</>
);

export const SuccessBadge: React.FC = () => (
export const SuccessBadge = (): JSX.Element => (
<>
<Heading as="h2" variant="heading40">
Span
Expand Down Expand Up @@ -284,7 +284,7 @@ export const SuccessBadge: React.FC = () => (
</>
);

export const NewBadge: React.FC = () => (
export const NewBadge = (): JSX.Element => (
<>
<Heading as="h2" variant="heading40">
Span
Expand Down Expand Up @@ -337,7 +337,7 @@ export const NewBadge: React.FC = () => (
</>
);

export const Decorative10Badge: React.FC = () => (
export const Decorative10Badge = (): JSX.Element => (
<>
<Heading as="h2" variant="heading40">
Span
Expand Down Expand Up @@ -390,7 +390,7 @@ export const Decorative10Badge: React.FC = () => (
</>
);

export const Decorative20Badge: React.FC = () => (
export const Decorative20Badge = (): JSX.Element => (
<>
<Heading as="h2" variant="heading40">
Span
Expand Down Expand Up @@ -443,7 +443,7 @@ export const Decorative20Badge: React.FC = () => (
</>
);

export const Decorative30Badge: React.FC = () => (
export const Decorative30Badge = (): JSX.Element => (
<>
<Heading as="h2" variant="heading40">
Span
Expand Down Expand Up @@ -496,7 +496,7 @@ export const Decorative30Badge: React.FC = () => (
</>
);

export const Decorative40Badge: React.FC = () => (
export const Decorative40Badge = (): JSX.Element => (
<>
<Heading as="h2" variant="heading40">
Span
Expand Down Expand Up @@ -549,7 +549,7 @@ export const Decorative40Badge: React.FC = () => (
</>
);

export const NeutralCounterBadge: React.FC = () => (
export const NeutralCounterBadge = (): JSX.Element => (
<>
<Heading as="h2" variant="heading40">
Span
Expand Down Expand Up @@ -596,7 +596,7 @@ export const NeutralCounterBadge: React.FC = () => (
</>
);

export const ErrorCounterBadge: React.FC = () => (
export const ErrorCounterBadge = (): JSX.Element => (
<>
<Heading as="h2" variant="heading40">
Span
Expand Down Expand Up @@ -643,7 +643,7 @@ export const ErrorCounterBadge: React.FC = () => (
</>
);

export const DefaultBadge: React.FC = () => (
export const DefaultBadge = (): JSX.Element => (
<>
<Heading as="h2" variant="heading40">
Span
Expand Down Expand Up @@ -690,7 +690,7 @@ export const DefaultBadge: React.FC = () => (
</>
);

export const InfoBadge: React.FC = () => (
export const InfoBadge = (): JSX.Element => (
<>
<Heading as="h2" variant="heading40">
Span
Expand Down Expand Up @@ -737,7 +737,7 @@ export const InfoBadge: React.FC = () => (
</>
);

export const LongTextBadge: React.FC = () => (
export const LongTextBadge = (): JSX.Element => (
<Wrapper>
<Badge as="a" href="#" variant="neutral">
<InformationIcon decorative />
Expand Down
Loading

0 comments on commit 3892591

Please sign in to comment.