pankod/refine

View on GitHub

Showing 750 of 983 total issues

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

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

            const devtoolsInstaller = async () => {
              const corePackage = await getRefineCorePackage();
            
              const isInstalled = await spinner(
                isDevtoolsInstalled,
            Severity: Major
            Found in packages/cli/src/commands/devtools/index.ts - About 3 hrs to fix

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

                const triggerExport = async () => {
                  setIsLoading(true);
              
                  let rawData: BaseRecord[] = [];
              
              
              Severity: Major
              Found in packages/core/src/hooks/export/index.ts - About 3 hrs to fix

                Function Preview has a Cognitive Complexity of 25 (exceeds 5 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: Minor
                Found in packages/live-previews/pages/preview.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 useBreadcrumb has a Cognitive Complexity of 25 (exceeds 5 allowed). Consider refactoring.
                Open

                export const useBreadcrumb = ({
                  meta: metaFromProps = {},
                }: UseBreadcrumbProps = {}): UseBreadcrumbReturnType => {
                  const routerType = useRouterType();
                  const { i18nProvider } = useContext(I18nContext);
                Severity: Minor
                Found in packages/core/src/hooks/breadcrumb/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 ProjectIdFixBanner has 87 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                export const ProjectIdFixBanner = () => {
                  const [projectId, setProjectId] = React.useState<string | null>(null);
                  const [modalVisible, setModalVisible] = React.useState(false);
                  const [status, setStatus] = React.useState<
                    "hidden" | "warning" | "fixing" | "success"
                Severity: Major
                Found in packages/devtools-ui/src/components/project-id-fix-banner.tsx - About 3 hrs to fix

                  Function addRouterProvider has 86 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                  function addRouterProvider(j: JSCodeshift, root: Collection<any>) {
                    const routerProviderImports = root.find(j.ImportDeclaration, {
                      source: {
                        value: "@pankod/refine-react-router",
                      },
                  Severity: Major
                  Found in packages/codemod/src/transformations/refine1-to-refine2.ts - About 3 hrs to fix

                    Function fixUseSelectHasPaginationToPaginationMode has 86 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                    const fixUseSelectHasPaginationToPaginationMode = (
                      j: JSCodeshift,
                      source: Collection,
                    ) => {
                      const useSelectHooks = source.find(j.CallExpression, {
                    Severity: Major
                    Found in packages/codemod/src/transformations/v4/fix-v4-deprecations.ts - About 3 hrs to fix

                      Function LiveComponent has a Cognitive Complexity of 24 (exceeds 5 allowed). Consider refactoring.
                      Open

                      export const LiveComponent: React.FC<LiveComponentProps> = ({
                        fetchError,
                        code,
                        additionalScope,
                        errorComponent: ErrorComponent,
                      Severity: Minor
                      Found in packages/inferencer/src/components/live/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 replaceImports has a Cognitive Complexity of 24 (exceeds 5 allowed). Consider refactoring.
                      Open

                      export const replaceImports = (content: string): string => {
                        const matches = content.matchAll(packageRegex);
                      
                        const imports = new Set();
                      
                      
                      Severity: Minor
                      Found in packages/live-previews/src/utils/replace-imports.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 useMenu has a Cognitive Complexity of 24 (exceeds 5 allowed). Consider refactoring.
                      Open

                      export const useMenu = (
                        { meta, hideOnMissingParameter }: UseMenuProps = {
                          hideOnMissingParameter: true,
                        },
                      ): UseMenuReturnType => {
                      Severity: Minor
                      Found in packages/core/src/hooks/menu/useMenu.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 renderCrud has 85 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                          const renderCrud = () => {
                            switch (action) {
                              case undefined: {
                                return (
                                  <CanAccess
                      Severity: Major
                      Found in packages/remix/src/legacy/routeComponent.tsx - About 3 hrs to fix

                        Function List has 84 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                        export const List: React.FC<ListProps> = (props) => {
                          const {
                            canCreate,
                            children,
                            createButtonProps: createButtonPropsFromProps,
                        Severity: Major
                        Found in packages/mantine/src/components/crud/list/index.tsx - About 3 hrs to fix

                          Function DevtoolsPanel has 84 lines of code (exceeds 25 allowed). Consider refactoring.
                          Open

                              : () => {
                                  const [browser, setBrowser] = React.useState<boolean>(false);
                                  const [visible, setVisible] = React.useState(false);
                                  const [placement] = React.useState<Placement>("bottom");
                                  const { devtoolsUrl, ws } = React.useContext(DevToolsContext);
                          Severity: Major
                          Found in packages/devtools/src/panel.tsx - About 3 hrs to fix

                            Consider simplifying this complex logical expression.
                            Open

                              if (resource) {
                                const {
                                  list,
                                  create,
                                  edit,
                            Severity: Critical
                            Found in packages/react-router-v6/src/legacy/routeProvider.tsx - About 3 hrs to fix

                              Function separateImportsAntD has 83 lines of code (exceeds 25 allowed). Consider refactoring.
                              Open

                              export const separateImportsAntD = (j: JSCodeshift, source: Collection) => {
                                const config = new CodemodConfig(CONFIG_FILE_NAME);
                              
                                separateImports({
                                  j,
                              Severity: Major
                              Found in packages/codemod/src/transformations/v4/separate-imports-antd.ts - About 3 hrs to fix
                                Severity
                                Category
                                Status
                                Source
                                Language