FezVrasta/popper.js

View on GitHub

Showing 305 of 305 total issues

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 PackageSelect has 181 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 size has a Cognitive Complexity of 42 (exceeds 5 allowed). Consider refactoring.
Open

export const size = (
  options: SizeOptions | Derivable<SizeOptions> = {},
): Middleware => ({
  name: 'size',
  options,
Severity: Minor
Found in packages/core/src/middleware/size.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 434 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

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

      {Object.entries({
        initialPlacement,
        middlewareData,
        y,
        x,
Severity: Major
Found in extension/src/views/floating-ui/FloatingUIMiddleware.tsx and 1 other location - About 6 hrs to fix
extension/src/views/fluentui/components/FluentUIMiddleware.tsx on lines 80..106

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 162.

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

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

      {Object.entries({
        strategy,
        coords: {x, y},
        initialPlacement,
        placement,
extension/src/views/floating-ui/FloatingUIMiddleware.tsx on lines 36..62

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 162.

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 useListNavigation has a Cognitive Complexity of 40 (exceeds 5 allowed). Consider refactoring.
Open

export function useListNavigation<RT extends ReferenceType = ReferenceType>(
  context: FloatingContext<RT>,
  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

Function Composite has a Cognitive Complexity of 40 (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 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

Function onKeyDown has 152 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

Function getPolygon has 150 lines of code (exceeds 25 allowed). Consider refactoring.
Open

      function getPolygon([x, y]: Point): Array<Point> {
        switch (side) {
          case 'top': {
            const cursorPointOne: Point = [
              isFloatingWider
Severity: Major
Found in packages/react/src/safePolygon.ts - About 6 hrs to fix

Function Composite has 150 lines of code (exceeds 25 allowed). Consider refactoring.
Open

>(function Composite(props, forwardedRef) {
  const {
    render,
    orientation = 'both',
    loop = true,
Severity: Major
Found in packages/react/src/components/Composite.tsx - About 6 hrs to fix

Function useTypeahead has 148 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export function useTypeahead<RT extends ReferenceType = ReferenceType>(
  context: FloatingContext<RT>,
  props: UseTypeaheadProps,
): ElementProps {
  const {open, dataRef} = context;
Severity: Major
Found in packages/react/src/hooks/useTypeahead.ts - About 5 hrs to fix

Function useFloating has 147 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export function useFloating(
  options: UseFloatingOptions = {},
): UseFloatingReturn {
  const {
    placement = 'bottom',
Severity: Major
Found in packages/react-native/src/useFloating.ts - About 5 hrs to fix

Function ComboboxDemo has 145 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export function ComboboxDemo() {
  const [open, setOpen] = useState(false);
  const [inputValue, setInputValue] = useState('');
  const [activeIndex, setActiveIndex] = useState(null);
  const [padding, setPadding] = useState(25);
Severity: Major
Found in website/lib/components/Home/Combobox.js - About 5 hrs to fix

Function useFloating has 144 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export function useFloating<RT extends ReferenceType = ReferenceType>(
  options: UseFloatingOptions = {},
): UseFloatingReturn<RT> {
  const {
    placement = 'bottom',
Severity: Major
Found in packages/react-dom/src/useFloating.ts - About 5 hrs to fix

Function Placement has 144 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export function Placement() {
  const [placement, setPlacement] = useState('top');

  return (
    <GridItem
Severity: Major
Found in website/lib/components/Home/PositioningDemos.js - About 5 hrs to fix

Function SelectDemo has 141 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export function SelectDemo() {
  const [isOpen, setIsOpen] = useState(false);
  const [activeIndex, setActiveIndex] = useState(null);
  const [selectedIndex, setSelectedIndex] = useState(null);

Severity: Major
Found in website/lib/components/Home/Select.js - About 5 hrs to fix

File tailwind.config.js has 393 lines of code (exceeds 250 allowed). Consider refactoring.
Open

const colors = require('tailwindcss/colors');
const {fontFamily} = require('tailwindcss/defaultTheme');

const GRAY = {
  ...colors.gray,
Severity: Minor
Found in website/tailwind.config.js - About 5 hrs to fix

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

export const Result7 = () => {
  const {refs, floatingStyles} = useFloating({
    placement: 'top',
    middleware: [flip({rootBoundary: 'document'})],
  });
Severity: Major
Found in website/lib/components/Tutorial.js and 1 other location - About 5 hrs to fix
website/lib/components/Tutorial.js on lines 149..170

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 143.

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

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

export const Result8 = () => {
  const {refs, floatingStyles} = useFloating({
    placement: 'top',
    middleware: [flip({rootBoundary: 'document'})],
  });
Severity: Major
Found in website/lib/components/Tutorial.js and 1 other location - About 5 hrs to fix
website/lib/components/Tutorial.js on lines 126..147

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 143.

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

Severity
Category
Status
Source
Language