pankod/refine

View on GitHub

Showing 580 of 800 total issues

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 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 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 serveProxy has 92 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      export const serveProxy = async (app: Express) => {
        let { token, jwt } = await loadAuth();
      
        const authProxy = createProxyMiddleware({
          target: `${AUTH_SERVER_URL}/api/.auth`,
      Severity: Major
      Found in packages/devtools-server/src/serve-proxy.ts - About 3 hrs to fix

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

        export const replaceImports = (content: string): string => {
          const matches = content.matchAll(packageRegex);
        
          const imports = new Set();
        
        
        Severity: Major
        Found in packages/live-previews/src/utils/replace-imports.ts - 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 runTests has 91 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

            const runTests = async () => {
              const examplesToRun = getProjectsWithE2E();
            
              if (examplesToRun.length === 0) {
                return { success: true, empty: true };
            Severity: Major
            Found in .github/workflows/scripts/e2e-examples.js - 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 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 serveProxy has a Cognitive Complexity of 25 (exceeds 5 allowed). Consider refactoring.
                  Open

                  export const serveProxy = async (app: Express) => {
                    let { token, jwt } = await loadAuth();
                  
                    const authProxy = createProxyMiddleware({
                      target: `${AUTH_SERVER_URL}/api/.auth`,
                  Severity: Minor
                  Found in packages/devtools-server/src/serve-proxy.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 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,
                  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 operatorMapper has a Cognitive Complexity of 24 (exceeds 5 allowed). Consider refactoring.
                        Open

                        const operatorMapper = (
                          operator: CrudOperators,
                          value: any,
                        ): { [key: string]: any } => {
                          if (operator === "contains") {
                        Severity: Minor
                        Found in packages/nestjs-query/src/utils/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 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

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

                          export function useResource(
                            args?: UseResourceLegacyProps | UseResourceParam,
                          ): UseResourceReturnType {
                            const { resources } = useContext(ResourceContext);
                          
                          
                          Severity: Major
                          Found in packages/core/src/hooks/resource/useResource/index.ts - About 3 hrs to fix

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

                            export default function transformer(file: FileInfo, api: API, options: any) {
                              const j = api.jscodeshift;
                              const source = j(file.source);
                            
                              const rootElement = source.find(j.JSXElement, {
                            Severity: Major
                            Found in packages/cli/src/transformers/resource.ts - About 3 hrs to fix

                              Function bootstrap has 82 lines of code (exceeds 25 allowed). Consider refactoring.
                              Open

                              const bootstrap = () => {
                                const packageJson = JSON.parse(
                                  readFileSync(`${__dirname}/../package.json`, "utf8"),
                                );
                              
                              
                              Severity: Major
                              Found in packages/create-refine-app/src/index.ts - About 3 hrs to fix
                                Severity
                                Category
                                Status
                                Source
                                Language