pankod/refine

View on GitHub

Showing 959 of 983 total issues

Function action has a Cognitive Complexity of 27 (exceeds 5 allowed). Consider refactoring.
Open

const action = async ({
  port,
  target,
  domain,
  rewriteUrl,
Severity: Minor
Found in packages/cli/src/commands/proxy/index.ts - About 3 hrs to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function useForm has a Cognitive Complexity of 27 (exceeds 5 allowed). Consider refactoring.
Open

export const useForm = <
  TQueryFnData extends BaseRecord = BaseRecord,
  TError extends HttpError = HttpError,
  TVariables extends FieldValues = FieldValues,
  TContext extends object = {},
Severity: Minor
Found in packages/react-hook-form/src/useForm/index.ts - About 3 hrs to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Identical blocks of code found in 4 locations. Consider refactoring.
Open

    const copyCode = () => {
      inputRef?.current?.select();
      inputRef?.current?.setSelectionRange(0, Number.MAX_SAFE_INTEGER);
      if (typeof navigator !== "undefined") {
        navigator.clipboard.writeText(inputRef?.current?.value ?? "");
Severity: Major
Found in packages/inferencer/src/inferencers/antd/code-viewer.tsx and 3 other locations - About 3 hrs to fix
packages/inferencer/src/inferencers/chakra-ui/code-viewer.tsx on lines 43..53
packages/inferencer/src/inferencers/headless/code-viewer.tsx on lines 100..110
packages/inferencer/src/inferencers/mantine/code-viewer.tsx on lines 33..43

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 113.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Identical blocks of code found in 2 locations. Consider refactoring.
Open

    <AntdLayout.Header style={headerStyles}>
      <Space>
        <Space size="middle">
          {user?.name && <Typography.Text strong>{user.name}</Typography.Text>}
          {user?.avatar && <Avatar src={user?.avatar} alt={user?.name} />}
Severity: Major
Found in packages/antd/src/components/themedLayoutV2/header/index.tsx and 1 other location - About 3 hrs to fix
packages/antd/src/components/themedLayout/header/index.tsx on lines 24..40

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 113.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Identical blocks of code found in 4 locations. Consider refactoring.
Open

    const copyCode = () => {
      inputRef?.current?.select();
      inputRef?.current?.setSelectionRange(0, Number.MAX_SAFE_INTEGER);
      if (typeof navigator !== "undefined") {
        navigator.clipboard.writeText(inputRef?.current?.value ?? "");
packages/inferencer/src/inferencers/antd/code-viewer.tsx on lines 27..37
packages/inferencer/src/inferencers/headless/code-viewer.tsx on lines 100..110
packages/inferencer/src/inferencers/mantine/code-viewer.tsx on lines 33..43

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 113.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Identical blocks of code found in 2 locations. Consider refactoring.
Open

    <AntdLayout.Header
      style={{
        backgroundColor: token.colorBgElevated,
        display: "flex",
        justifyContent: "flex-end",
Severity: Major
Found in packages/antd/src/components/themedLayout/header/index.tsx and 1 other location - About 3 hrs to fix
packages/antd/src/components/themedLayoutV2/header/index.tsx on lines 43..50

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 113.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Identical blocks of code found in 4 locations. Consider refactoring.
Open

    const copyCode = () => {
      inputRef?.current?.select();
      inputRef?.current?.setSelectionRange(0, Number.MAX_SAFE_INTEGER);
      if (typeof navigator !== "undefined") {
        navigator.clipboard.writeText(inputRef?.current?.value ?? "");
packages/inferencer/src/inferencers/antd/code-viewer.tsx on lines 27..37
packages/inferencer/src/inferencers/chakra-ui/code-viewer.tsx on lines 43..53
packages/inferencer/src/inferencers/mantine/code-viewer.tsx on lines 33..43

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 113.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Identical blocks of code found in 4 locations. Consider refactoring.
Open

    const copyCode = () => {
      inputRef?.current?.select();
      inputRef?.current?.setSelectionRange(0, Number.MAX_SAFE_INTEGER);
      if (typeof navigator !== "undefined") {
        navigator.clipboard.writeText(inputRef?.current?.value ?? "");
Severity: Major
Found in packages/inferencer/src/inferencers/mantine/code-viewer.tsx and 3 other locations - About 3 hrs to fix
packages/inferencer/src/inferencers/antd/code-viewer.tsx on lines 27..37
packages/inferencer/src/inferencers/chakra-ui/code-viewer.tsx on lines 43..53
packages/inferencer/src/inferencers/headless/code-viewer.tsx on lines 100..110

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 113.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Function renderRelationFields has 95 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  const renderRelationFields = (field: InferField) => {
    if (field.relation && field.resource) {
      imports.push(
        ["Autocomplete", "@mui/material"],
        ["Controller", "react-hook-form"],
Severity: Major
Found in packages/inferencer/src/inferencers/mui/create.tsx - About 3 hrs to fix

    Function renderRelationFields has 95 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      const renderRelationFields = (field: InferField) => {
        if (field.relation && field.resource) {
          imports.push(
            ["Autocomplete", "@mui/material"],
            ["Controller", "react-hook-form"],
    Severity: Major
    Found in packages/inferencer/src/inferencers/mui/edit.tsx - About 3 hrs to fix

      Function HeaderAuthStatus has 95 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      export const HeaderAuthStatus = () => {
        const [me, setMe] = React.useState<MeResponse | null>(null);
        const [logoutVisible, setLogoutVisible] = React.useState(false);
        const buttonRef = React.useRef<HTMLButtonElement>(null);
        const navigate = useNavigate();
      Severity: Major
      Found in packages/devtools-ui/src/components/header-auth-status.tsx - About 3 hrs to fix

        Function basicInputFields has 94 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          const basicInputFields = (field: InferField) => {
            if (
              field.type === "text" ||
              field.type === "url" ||
              field.type === "email" ||
        Severity: Major
        Found in packages/inferencer/src/inferencers/chakra-ui/edit.tsx - About 3 hrs to fix

          Function Preview has 94 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          const Preview: NextPage = () => {
            const [ready, setReady] = React.useState(false);
            const { code, css, hasQuery, isReady, disableScroll, useTailwind } =
              useCode();
            const [scope, setScope] = React.useState({ ...RefineCommonScope });
          Severity: Major
          Found in packages/live-previews/pages/preview.tsx - About 3 hrs to fix

            Function ConfigSuccessPage has a Cognitive Complexity of 26 (exceeds 5 allowed). Consider refactoring.
            Open

            export const ConfigSuccessPage: React.FC = () => {
              const isTablet = useMediaQuery("(max-width: 1010px)");
              const isMobile = useMediaQuery("(max-width: 650px)");
            
              const getGridTemplateColumns = () => {
            Severity: Minor
            Found in packages/core/src/components/pages/config-success/index.tsx - About 3 hrs to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Function Authenticated has a Cognitive Complexity of 26 (exceeds 5 allowed). Consider refactoring.
            Open

            export function Authenticated({
              redirectOnFail = true,
              appendCurrentPathToQuery = true,
              children,
              fallback: fallbackContent,
            Severity: Minor
            Found in packages/core/src/components/authenticated/index.tsx - About 3 hrs to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Function renderTreeView has 93 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

              const renderTreeView = (tree: ITreeMenu[]) => {
                return tree.map((item) => {
                  const { label, route, name, icon, children } = item;
            
                  const isSelected = item.key === selectedKey;
            Severity: Major
            Found in packages/chakra-ui/src/components/themedLayout/sider/index.tsx - About 3 hrs to fix

              Function RaffleHandler has 93 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

              export const RaffleHandler = () => {
                const [ran, setRan] = React.useState(false);
                const [calendlyURL, setCalendlyURL] = React.useState("");
                const [raffleModal, setRaffleModal] = React.useState(false);
              
              
              Severity: Major
              Found in packages/devtools-ui/src/components/raffle-handler.tsx - About 3 hrs to fix

                Function runTests has 92 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                const runTests = async () => {
                  const examplesToRun = await getProjectsWithE2E();
                
                  if (examplesToRun.length === 0) {
                    return { success: true, empty: true };
                Severity: Major
                Found in .github/workflows/e2e-examples.js - About 3 hrs to fix

                  Function run has 91 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                  export async function run(): Promise<void> {
                    const cli = meow({
                      description: "Codemods for updating refine apps.",
                      help: `
                      Usage
                  Severity: Major
                  Found in packages/codemod/src/index.ts - About 3 hrs to fix

                    Function renderRelationFields has 90 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                      const renderRelationFields = (field: InferField) => {
                        if (field.relation && field.resource) {
                          const validVariableName = getVariableName(field.key, "Data");
                          const variableName = `${validVariableName}?.data`;
                          const variableIsLoading = getVariableName(field.key, "IsLoading");
                    Severity: Major
                    Found in packages/inferencer/src/inferencers/antd/list.tsx - About 3 hrs to fix
                      Severity
                      Category
                      Status
                      Source
                      Language