perryrh0dan/taskline

View on GitHub
src/libs/date.ts

Summary

Maintainability
C
1 day
Test Coverage

Function parseHumanDate has 69 lines of code (exceeds 25 allowed). Consider refactoring.
Open

const parseHumanDate = function (input: string): Date | undefined {
  // const weekday: string = '(mon|fri|sun)(\\b|day)|tue(sday)?|wed(nesday)?|thu(rsday)?|sat(urday)?';
  const periods = ['day', 'week', 'month', 'year'];
  const addFuncs: Array<Function> = [addDays, addWeeks, addMonths, addYears];
  const startFuncs: Array<Function> = [
Severity: Major
Found in src/libs/date.ts - About 2 hrs to fix

    Function parseDate has 44 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    export const parseDate = function (input: string, format: string): Date {
      format = format || 'yyyy-mm-dd HH:MM'; // Default format
      let humanDate: Date | undefined = parseHumanDate(input);
      if (humanDate) {
        // successfully parsed as human date
    Severity: Minor
    Found in src/libs/date.ts - About 1 hr to fix

      Function parseHumanDate has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
      Open

      const parseHumanDate = function (input: string): Date | undefined {
        // const weekday: string = '(mon|fri|sun)(\\b|day)|tue(sday)?|wed(nesday)?|thu(rsday)?|sat(urday)?';
        const periods = ['day', 'week', 'month', 'year'];
        const addFuncs: Array<Function> = [addDays, addWeeks, addMonths, addYears];
        const startFuncs: Array<Function> = [
      Severity: Minor
      Found in src/libs/date.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 getRelativeHumanizedDate has 34 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      export const getRelativeHumanizedDate = function (
        dueDate: Date,
        now?: Date,
      ): string {
        if (!now) now = new Date();
      Severity: Minor
      Found in src/libs/date.ts - About 1 hr to fix

        Function parseDate has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
        Open

        export const parseDate = function (input: string, format: string): Date {
          format = format || 'yyyy-mm-dd HH:MM'; // Default format
          let humanDate: Date | undefined = parseHumanDate(input);
          if (humanDate) {
            // successfully parsed as human date
        Severity: Minor
        Found in src/libs/date.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 getRelativeHumanizedDate has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
        Open

        export const getRelativeHumanizedDate = function (
          dueDate: Date,
          now?: Date,
        ): string {
          if (!now) now = new Date();
        Severity: Minor
        Found in src/libs/date.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

        Avoid too many return statements within this function.
        Open

            return parsedDate;
        Severity: Major
        Found in src/libs/date.ts - About 30 mins to fix

          Avoid too many return statements within this function.
          Open

            return undefined;
          Severity: Major
          Found in src/libs/date.ts - About 30 mins to fix

            There are no issues that match your filters.

            Category
            Status