CrazySquirrel/Utils

View on GitHub
lib/UtilsAnimationEasing.ts

Summary

Maintainability
D
2 days
Test Coverage

File UtilsAnimationEasing.ts has 338 lines of code (exceeds 250 allowed). Consider refactoring.
Open

"use strict";
/**
 * Different time animation functions
 */
export default class Easing {
Severity: Minor
Found in lib/UtilsAnimationEasing.ts - About 4 hrs to fix

Easing has 32 functions (exceeds 20 allowed). Consider refactoring.
Open

export default class Easing {
  public static def = "easeOutQuad";

  public static isValidParams(t: number, b: number, c: number, d: number, s?: number): boolean {
    return (
Severity: Minor
Found in lib/UtilsAnimationEasing.ts - About 4 hrs to fix

Function easeInOutElastic has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
Open

  public static  easeInOutElastic(t: number, b: number, c: number, d: number): number {
    if (Easing.isValidParams(t, b, c, d)) {
      let s = 1.70158;
      let p = 0;
      let a = c;
Severity: Minor
Found in lib/UtilsAnimationEasing.ts - About 1 hr 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 easeInElastic has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
Open

  public static  easeInElastic(t: number, b: number, c: number, d: number): number {
    if (Easing.isValidParams(t, b, c, d)) {
      let s = 1.70158;
      let p = 0;
      let a = c;
Severity: Minor
Found in lib/UtilsAnimationEasing.ts - About 1 hr 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 easeOutElastic has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
Open

  public static easeOutElastic(t: number, b: number, c: number, d: number): number {
    if (Easing.isValidParams(t, b, c, d)) {
      let s = 1.70158;
      let p = 0;
      let a = c;
Severity: Minor
Found in lib/UtilsAnimationEasing.ts - About 1 hr 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 easeInOutElastic has 26 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  public static  easeInOutElastic(t: number, b: number, c: number, d: number): number {
    if (Easing.isValidParams(t, b, c, d)) {
      let s = 1.70158;
      let p = 0;
      let a = c;
Severity: Minor
Found in lib/UtilsAnimationEasing.ts - About 1 hr to fix

Function easeInOutExpo has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

  public static easeInOutExpo(t: number, b: number, c: number, d: number): number {
    if (Easing.isValidParams(t, b, c, d)) {
      if (t === 0) {
        return b;
      }
Severity: Minor
Found in lib/UtilsAnimationEasing.ts - About 45 mins 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 easeOutBounce has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
Open

  public static  easeOutBounce(t: number, b: number, c: number, d: number): number {
    if (Easing.isValidParams(t, b, c, d)) {
      if ((t /= d) < (1 / 2.75)) {
        return c * (7.5625 * t * t) + b;
      } else if (t < (2 / 2.75)) {
Severity: Minor
Found in lib/UtilsAnimationEasing.ts - About 35 mins 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

Avoid too many return statements within this function.
Open

      return NaN;
Severity: Major
Found in lib/UtilsAnimationEasing.ts - About 30 mins to fix

Avoid too many return statements within this function.
Open

      return NaN;
Severity: Major
Found in lib/UtilsAnimationEasing.ts - About 30 mins to fix

Avoid too many return statements within this function.
Open

      return NaN;
Severity: Major
Found in lib/UtilsAnimationEasing.ts - About 30 mins to fix

Function easeInOutBack has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

  public static easeInOutBack(t: number, b: number, c: number, d: number, s: number): number {
    if (Easing.isValidParams(t, b, c, d, s)) {
      if (s === undefined) {
        s = 1.70158;
      }
Severity: Minor
Found in lib/UtilsAnimationEasing.ts - About 25 mins 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

There are no issues that match your filters.

Category
Status