perryrh0dan/taskline

View on GitHub

Showing 32 of 32 total issues

File taskline.ts has 773 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import * as clipboardy from 'clipboardy';

import { Storage } from './storage';
import { LocalStorage } from './local';
import { FirestoreStorage } from './firestore';
Severity: Major
Found in src/taskline.ts - About 1 day to fix

    File renderer.ts has 663 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    import { Signale, SignaleConstructorOptions } from '@perryrh0dan/signale';
    import { addWeeks, isBefore, endOfDay, toDate } from 'date-fns';
    import * as figures from 'figures';
    import ora = require('ora');
    
    
    Severity: Major
    Found in src/renderer.ts - About 1 day to fix

      Renderer has 57 functions (exceeds 20 allowed). Consider refactoring.
      Open

      export class Renderer {
        private static _instance: Renderer;
        private spinner: ora.Ora;
        private signale: any;
        private theme: Theme;
      Severity: Major
      Found in src/renderer.ts - About 1 day to fix

        Taskline has 53 functions (exceeds 20 allowed). Consider refactoring.
        Open

        export class Taskline {
          private storage: Storage;
        
          public constructor() {
            const { storageModule } = Config.instance.get();
        Severity: Major
        Found in src/taskline.ts - About 7 hrs to fix

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

              private displayItemByBoard(item: Item): void {
                const age = this.getAge(item.timestamp);
                let dueDate;
                if (item instanceof Task && item.dueDate !== 0 && !item.isComplete) {
                  dueDate = this.getDueDate(item.dueDate);
            Severity: Minor
            Found in src/renderer.ts - About 2 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 merge has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
            Open

            export const merge = (target: any, ...objects: any): any => {
              for (const object of objects) {
                for (const key in object) {
                  if (object.hasOwnProperty(key)) {
                    // since we're dealing just with JSON this simple check should be enough
            Severity: Minor
            Found in src/utils/utils.ts - About 2 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

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

              public async checkTasks(ids: string): Promise<void> {
                Renderer.instance.startLoading();
            
                let parsedIDs: Array<number>;
                try {
            Severity: Major
            Found in src/taskline.ts and 2 other locations - About 2 hrs to fix
            src/taskline.ts on lines 588..618
            src/taskline.ts on lines 620..650

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

            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 3 locations. Consider refactoring.
            Open

              public async beginTasks(ids: string): Promise<void> {
                Renderer.instance.startLoading();
            
                let parsedIDs: Array<number>;
            
            
            Severity: Major
            Found in src/taskline.ts and 2 other locations - About 2 hrs to fix
            src/taskline.ts on lines 557..586
            src/taskline.ts on lines 620..650

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

            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 3 locations. Consider refactoring.
            Open

              public async cancelTasks(ids: string): Promise<void> {
                Renderer.instance.startLoading();
            
                let parsedIDs: Array<number>;
            
            
            Severity: Major
            Found in src/taskline.ts and 2 other locations - About 2 hrs to fix
            src/taskline.ts on lines 557..586
            src/taskline.ts on lines 588..618

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

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

              private async filterByAttributes(attr: Array<string>): Promise<Array<Item>> {
                let data = await this.getData();
            
                if (data.length === 0) {
                  return data;
            Severity: Major
            Found in src/taskline.ts - About 2 hrs to fix

              Function getCollection has 45 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                private async getCollection(path: string): Promise<Array<Item>> {
                  const self = this;
              
                  try {
                    const content = await self._db.collection(path).get();
              Severity: Minor
              Found in src/firestore.ts - About 1 hr 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 configureSignale has 38 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                    private configureSignale(): void {
                      const signaleOptions: SignaleConstructorOptions = {
                        config: {
                          displayLabel: false
                        },
                  Severity: Minor
                  Found in src/renderer.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 createTask has 35 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                      public async createTask(
                        description: string,
                        boards?: string,
                        priority?: string,
                        dueDate?: string
                    Severity: Minor
                    Found in src/taskline.ts - About 1 hr to fix

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

                          private parseJson(data: any): Array<Item> {
                            const items: Array<Item> = new Array<Item>();
                        
                            Object.keys(data).forEach((id: string) => {
                              if (data[id].isTask) {
                        Severity: Minor
                        Found in src/local.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 displayItemByBoard has 31 lines of code (exceeds 25 allowed). Consider refactoring.
                          Open

                            private displayItemByBoard(item: Item): void {
                              const age = this.getAge(item.timestamp);
                              let dueDate;
                              if (item instanceof Task && item.dueDate !== 0 && !item.isComplete) {
                                dueDate = this.getDueDate(item.dueDate);
                          Severity: Minor
                          Found in src/renderer.ts - About 1 hr to fix
                            Severity
                            Category
                            Status
                            Source
                            Language