FezVrasta/popper.js

View on GitHub

Showing 198 of 310 total issues

Function safePolygon has a Cognitive Complexity of 247 (exceeds 5 allowed). Consider refactoring.
Open

export function safePolygon(options: SafePolygonOptions = {}) {
  const {
    buffer = 0.5,
    blockPointerEvents = false,
    requireIntent = true,
Severity: Minor
Found in packages/react/src/safePolygon.ts - About 5 days 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 useListNavigation has 614 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export function useListNavigation(
  context: FloatingRootContext,
  props: UseListNavigationProps,
): ElementProps {
  const {
Severity: Major
Found in packages/react/src/hooks/useListNavigation.ts - About 3 days to fix

Function HomePage has 602 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function HomePage() {
  const {pageTransitionStatus} = useAppContext();
  const bannerRef = useRef();
  const logoRef = useRef();

Severity: Major
Found in website/pages/index.js - About 3 days to fix

Function FloatingFocusManager has 437 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export function FloatingFocusManager(
  props: FloatingFocusManagerProps,
): JSX.Element {
  const {
    context,
Severity: Major
Found in packages/react/src/components/FloatingFocusManager.tsx - About 2 days to fix

File Layout.js has 874 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import {DocSearch} from '@docsearch/react';
import {
    autoUpdate,
    FloatingFocusManager,
    FloatingPortal,
Severity: Major
Found in website/lib/components/Layout.js - About 2 days to fix

File useListNavigation.ts has 735 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import {
  activeElement,
  contains,
  getDocument,
  isMac,
Severity: Major
Found in packages/react/src/hooks/useListNavigation.ts - About 1 day to fix

Function safePolygon has 317 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export function safePolygon(options: SafePolygonOptions = {}) {
  const {
    buffer = 0.5,
    blockPointerEvents = false,
    requireIntent = true,
Severity: Major
Found in packages/react/src/safePolygon.ts - About 1 day to fix

Function useHover has 306 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export function useHover(
  context: FloatingRootContext,
  props: UseHoverProps = {},
): ElementProps {
  const {
Severity: Major
Found in packages/react/src/hooks/useHover.ts - About 1 day to fix

File index.js has 654 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import {FloatingDelayGroup} from '@floating-ui/react';
import cn from 'classnames';
import Head from 'next/head';
import {useEffect, useRef, useState} from 'react';
import {
Severity: Major
Found in website/pages/index.js - About 1 day to fix

Function useDismiss has 283 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export function useDismiss(
  context: FloatingRootContext,
  props: UseDismissProps = {},
): ElementProps {
  const {
Severity: Major
Found in packages/react/src/hooks/useDismiss.ts - About 1 day to fix

Function onMouseMove has 273 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    return function onMouseMove(event: MouseEvent) {
      function close() {
        clearTimeout(timeoutId);
        onClose();
      }
Severity: Major
Found in packages/react/src/safePolygon.ts - About 1 day to fix

Function getGridNavigatedIndex has a Cognitive Complexity of 67 (exceeds 5 allowed). Consider refactoring.
Open

export function getGridNavigatedIndex(
  elementsRef: React.MutableRefObject<Array<HTMLElement | null>>,
  {
    event,
    orientation,
Severity: Minor
Found in packages/react/src/utils/composite.ts - About 1 day 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 useDismiss has a Cognitive Complexity of 60 (exceeds 5 allowed). Consider refactoring.
Open

export function useDismiss(
  context: FloatingRootContext,
  props: UseDismissProps = {},
): ElementProps {
  const {
Severity: Minor
Found in packages/react/src/hooks/useDismiss.ts - About 1 day 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

File FloatingFocusManager.tsx has 523 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import {
  activeElement,
  contains,
  getDocument,
  getTarget,
Severity: Major
Found in packages/react/src/components/FloatingFocusManager.tsx - About 1 day to fix

File PositioningDemos.js has 506 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import {
  getOverflowAncestors,
  offset,
  shift,
  useFloating,
Severity: Major
Found in website/lib/components/Home/PositioningDemos.js - About 1 day to fix

Function Composite has a Cognitive Complexity of 49 (exceeds 5 allowed). Consider refactoring.
Open

>(function Composite(props, forwardedRef) {
  const {
    render,
    orientation = 'both',
    loop = true,
Severity: Minor
Found in packages/react/src/components/Composite.tsx - About 7 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 PackageSelect has 187 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export function PackageSelect() {
  const {
    packageContext,
    isPackageTooltipTouched,
    setIsPackageTooltipTouched,
Severity: Major
Found in website/lib/components/PackageSelect.js - About 7 hrs to fix

Function useListNavigation has a Cognitive Complexity of 43 (exceeds 5 allowed). Consider refactoring.
Open

export function useListNavigation(
  context: FloatingRootContext,
  props: UseListNavigationProps,
): ElementProps {
  const {
Severity: Minor
Found in packages/react/src/hooks/useListNavigation.ts - About 6 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

File PackageSelect.js has 440 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import {
  Composite,
  CompositeItem,
  FloatingArrow,
  FloatingFocusManager,
Severity: Minor
Found in website/lib/components/PackageSelect.js - About 6 hrs to fix

Function onKeyDown has 161 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    function onKeyDown(event: React.KeyboardEvent) {
      isPointerModalityRef.current = false;
      forceSyncFocus.current = true;

      // If the floating element is animating out, ignore navigation. Otherwise,
Severity: Major
Found in packages/react/src/hooks/useListNavigation.ts - About 6 hrs to fix
Severity
Category
Status
Source
Language