mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-22 21:31:32 +03:00
style: enable react/react-in-jsx-scope
lint rule (#1107)
This commit is contained in:
parent
5f0015f522
commit
6378547a0e
@ -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',
|
||||
|
@ -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;
|
||||
|
@ -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 = () => {
|
||||
|
33
package.json
33
package.json
@ -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",
|
||||
|
@ -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} />;
|
||||
|
@ -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';
|
||||
|
@ -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>(
|
||||
(
|
||||
{
|
||||
|
@ -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;
|
||||
|
@ -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);
|
||||
|
@ -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>(
|
||||
(
|
||||
{
|
||||
|
@ -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';
|
||||
|
@ -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;
|
||||
|
@ -1,4 +1,5 @@
|
||||
import SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon';
|
||||
import React from 'react';
|
||||
|
||||
export const EmptySVG = (props: SvgIconProps) => {
|
||||
return (
|
||||
|
@ -6,9 +6,9 @@ import {
|
||||
useEffect,
|
||||
useState,
|
||||
} from 'react';
|
||||
import React from 'react';
|
||||
|
||||
import { StyledInput } from './style';
|
||||
|
||||
type inputProps = {
|
||||
value?: string;
|
||||
placeholder?: string;
|
||||
|
@ -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 ? (
|
||||
|
@ -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;
|
||||
|
@ -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
|
||||
|
@ -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';
|
||||
|
@ -1,4 +1,5 @@
|
||||
import { forwardRef } from 'react';
|
||||
import React from 'react';
|
||||
|
||||
import { styled } from '../../styles';
|
||||
import { PopperArrowProps } from './interface';
|
||||
|
@ -9,6 +9,7 @@ import {
|
||||
useRef,
|
||||
useState,
|
||||
} from 'react';
|
||||
import React from 'react';
|
||||
|
||||
import { styled } from '../../styles';
|
||||
import { PopperProps, VirtualElement } from './interface';
|
||||
|
@ -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) {
|
||||
|
@ -1,7 +1,7 @@
|
||||
import { HTMLAttributes, PropsWithChildren } from 'react';
|
||||
import React from 'react';
|
||||
|
||||
import { StyledTableBody } from './styles';
|
||||
|
||||
export const TableBody = ({
|
||||
children,
|
||||
...props
|
||||
|
@ -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
|
||||
|
@ -1,4 +1,5 @@
|
||||
import { HTMLAttributes, PropsWithChildren } from 'react';
|
||||
import React from 'react';
|
||||
|
||||
import { StyledTableHead } from './styles';
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
import { HTMLAttributes, PropsWithChildren } from 'react';
|
||||
import React from 'react';
|
||||
|
||||
import { StyledTableRow } from './styles';
|
||||
|
||||
export const TableRow = ({
|
||||
children,
|
||||
...props
|
||||
|
@ -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',
|
||||
|
@ -1,3 +1,5 @@
|
||||
import React from 'react';
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-restricted-imports
|
||||
import { Logger } from '../src';
|
||||
|
||||
|
@ -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'];
|
||||
|
Loading…
Reference in New Issue
Block a user