style: enable react/react-in-jsx-scope lint rule (#1107)

This commit is contained in:
Himself65 2023-02-17 20:09:52 -06:00 committed by GitHub
parent 5f0015f522
commit 6378547a0e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
28 changed files with 34 additions and 51 deletions

View File

@ -35,7 +35,6 @@ module.exports = {
'no-empty': 'off',
'no-func-assign': 'off',
'no-cond-assign': 'off',
'react/react-in-jsx-scope': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-empty-function': 'off',

View File

@ -5,11 +5,11 @@ import { useTranslation } from '@affine/i18n';
import { CloseIcon } from '@blocksuite/icons';
import router from 'next/router';
import { useCallback, useState } from 'react';
import React from 'react';
import { useGlobalState } from '@/store/app';
import { Content, ContentTitle, Header, StyleButton, StyleTips } from './style';
interface EnableWorkspaceModalProps {
open: boolean;
onClose: () => void;

View File

@ -5,7 +5,7 @@ import {
LocalWorkspaceIcon as DefaultLocalWorkspaceIcon,
PublishIcon as DefaultPublishIcon,
} from '@blocksuite/icons';
import React from 'react';
// Here are some icons with special color or size
export const JoinedWorkspaceIcon = () => {

View File

@ -53,39 +53,6 @@
"typescript": "^4.9.5",
"vitest": "^0.28.5"
},
"eslintConfig": {
"root": true,
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": [
"./tsconfig.json"
]
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"prettier/prettier": "warn"
},
"reportUnusedDisableDirectives": true,
"ignorePatterns": [
"package/**/dist/*",
"package/**/.babelrc.js",
"package/**/sync.js",
"src/**/*.test.ts",
"**/webpack.config.js",
"**/scripts/*.js",
"**/node_modules/**",
".github/**",
"**/__tests__/**",
"**/tests/**"
]
},
"pnpm": {
"patchedDependencies": {
"@tauri-apps/api@1.2.0": "patches/@tauri-apps__api@1.2.0.patch",

View File

@ -1,5 +1,5 @@
import { Editor, EditorProps } from '@blocksuite/react/editor';
import React from 'react';
export type BlockSuiteEditorProps = EditorProps;
export const BlockSuiteEditor = (props: BlockSuiteEditorProps) => {
return <Editor {...props} />;

View File

@ -1,6 +1,7 @@
import { ThemeProvider as EmotionThemeProvider } from '@emotion/react';
import emotionStyled from '@emotion/styled';
import type { PropsWithChildren } from 'react';
import React from 'react';
import { AffineTheme } from './types';
export { css, keyframes } from '@emotion/react';

View File

@ -1,10 +1,10 @@
import { Children, cloneElement, forwardRef } from 'react';
import React from 'react';
import { ButtonProps } from './interface';
import { Loading } from './Loading';
import { StyledButton } from './styles';
import { getSize } from './utils';
export const Button = forwardRef<HTMLButtonElement, ButtonProps>(
(
{

View File

@ -6,9 +6,9 @@ import {
HTMLAttributes,
ReactElement,
} from 'react';
import React from 'react';
import { StyledIconButton } from './styles';
const SIZE_SMALL = 'small' as const;
const SIZE_MIDDLE = 'middle' as const;
const SIZE_NORMAL = 'normal' as const;

View File

@ -1,7 +1,8 @@
import React from 'react';
import { styled } from '../../styles';
import { ButtonProps } from './interface';
import { getButtonColors } from './utils';
export const LoadingContainer = styled('div')<Pick<ButtonProps, 'type'>>(
({ theme, type = 'default' }) => {
const { color } = getButtonColors(theme, type, false);

View File

@ -1,9 +1,9 @@
import { Children, cloneElement, forwardRef } from 'react';
import React from 'react';
import { ButtonProps } from './interface';
import { StyledTextButton } from './styles';
import { getSize } from './utils';
export const TextButton = forwardRef<HTMLButtonElement, ButtonProps>(
(
{

View File

@ -1,5 +1,6 @@
import { useTranslation } from '@affine/i18n';
import { useState } from 'react';
import React from 'react';
import { Button } from '../button';
import { Modal, ModalCloseButton, ModalProps } from '../modal';

View File

@ -1,8 +1,8 @@
import { CSSProperties } from 'react';
import React from 'react';
import { EmptySVG } from './EmptySVG';
import { StyledEmptyContainer } from './style';
export type EmptyContentProps = {
imageStyle?: CSSProperties;
description?: string;

View File

@ -1,4 +1,5 @@
import SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon';
import React from 'react';
export const EmptySVG = (props: SvgIconProps) => {
return (

View File

@ -6,9 +6,9 @@ import {
useEffect,
useState,
} from 'react';
import React from 'react';
import { StyledInput } from './style';
type inputProps = {
value?: string;
placeholder?: string;

View File

@ -1,8 +1,8 @@
import { TooltipProps } from '@mui/material';
import React from 'react';
import { Popper, type PopperProps } from '../popper';
import { StyledMenuWrapper } from './styles';
export const Menu = (props: PopperProps & Omit<TooltipProps, 'title'>) => {
const { content, placement = 'bottom-start', children } = props;
return content ? (

View File

@ -5,9 +5,9 @@ import {
PropsWithChildren,
ReactElement,
} from 'react';
import React from 'react';
import { StyledArrow, StyledMenuItem } from './styles';
export type IconMenuProps = PropsWithChildren<{
isDir?: boolean;
icon?: ReactElement;

View File

@ -1,8 +1,8 @@
import { ModalUnstyledOwnProps } from '@mui/base/ModalUnstyled';
import Fade from '@mui/material/Fade';
import React from 'react';
import { StyledBackdrop, StyledModal } from './styles';
const Backdrop = ({
open,
...other

View File

@ -1,5 +1,6 @@
import { CloseIcon } from '@blocksuite/icons';
import { HTMLAttributes } from 'react';
import React from 'react';
import { styled } from '../../styles';
import { IconButton, IconButtonProps } from '../button/IconButton';

View File

@ -1,4 +1,5 @@
import { forwardRef } from 'react';
import React from 'react';
import { styled } from '../../styles';
import { PopperArrowProps } from './interface';

View File

@ -9,6 +9,7 @@ import {
useRef,
useState,
} from 'react';
import React from 'react';
import { styled } from '../../styles';
import { PopperProps, VirtualElement } from './interface';

View File

@ -1,7 +1,7 @@
import { Children, HTMLAttributes, PropsWithChildren, ReactNode } from 'react';
import React from 'react';
import { StyledTable } from './styles';
const childrenHasEllipsis = (children: ReactNode | ReactNode[]): boolean => {
return Children.toArray(children).some(child => {
if (typeof child === 'object' && 'props' in child) {

View File

@ -1,7 +1,7 @@
import { HTMLAttributes, PropsWithChildren } from 'react';
import React from 'react';
import { StyledTableBody } from './styles';
export const TableBody = ({
children,
...props

View File

@ -1,8 +1,8 @@
import { HTMLAttributes, PropsWithChildren } from 'react';
import React from 'react';
import { TableCellProps } from './interface';
import { StyledTableCell } from './styles';
export const TableCell = ({
children,
...props

View File

@ -1,4 +1,5 @@
import { HTMLAttributes, PropsWithChildren } from 'react';
import React from 'react';
import { StyledTableHead } from './styles';

View File

@ -1,7 +1,7 @@
import { HTMLAttributes, PropsWithChildren } from 'react';
import React from 'react';
import { StyledTableRow } from './styles';
export const TableRow = ({
children,
...props

View File

@ -1,9 +1,9 @@
import type { TooltipProps } from '@mui/material';
import React from 'react';
import { styled } from '../../styles';
import { Popper, type PopperProps } from '../popper';
import StyledPopperContainer from '../shared/Container';
const StyledTooltip = styled(StyledPopperContainer)(({ theme }) => {
return {
maxWidth: '320px',

View File

@ -1,3 +1,5 @@
import React from 'react';
// eslint-disable-next-line @typescript-eslint/no-restricted-imports
import { Logger } from '../src';

View File

@ -9,6 +9,13 @@ const pkgPath = path.join(__dirname, '../apps/web/package.json');
const record = fs.readFileSync(pkgPath, 'utf8');
const temp = JSON.parse(record);
loadPage();
declare global {
interface Window {
__editoVersion: unknown;
}
}
test.describe('web console', () => {
test('editor version', async ({ page }) => {
const pkgEditorVersion = temp.dependencies['@blocksuite/editor'];