elabftw/elabftw

View on GitHub
src/ts/Metadata.class.ts

Summary

Maintainability
F
3 days
Test Coverage

File Metadata.class.ts has 456 lines of code (exceeds 250 allowed). Consider refactoring.
Open

/**
 * @author Nicolas CARPi <nico-git@deltablot.email>
 * @copyright 2012 Nicolas CARPi
 * @see https://www.elabftw.net Official website
 * @license AGPL-3.0
Severity: Minor
Found in src/ts/Metadata.class.ts - About 6 hrs to fix

    Function generateInput has a Cognitive Complexity of 36 (exceeds 5 allowed). Consider refactoring.
    Open

      generateInput(name: string, properties: ExtraFieldProperties): Element {
        // we don't know yet which kind of element it will be
        let element: HTMLInputElement|HTMLSelectElement;
        // generate a unique id for the element so we can associate the label properly
        const uniqid = this.getRandomId();
    Severity: Minor
    Found in src/ts/Metadata.class.ts - About 5 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 generateInput has 124 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      generateInput(name: string, properties: ExtraFieldProperties): Element {
        // we don't know yet which kind of element it will be
        let element: HTMLInputElement|HTMLSelectElement;
        // generate a unique id for the element so we can associate the label properly
        const uniqid = this.getRandomId();
    Severity: Major
    Found in src/ts/Metadata.class.ts - About 4 hrs to fix

      Function edit has 83 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        edit(): Promise<void> {
          return this.read().then(json => {
            this.editor.refresh(json as ValidMetadata);
            // do nothing more if there is no extra_fields in our json
            if (!Object.prototype.hasOwnProperty.call(json, 'extra_fields')) {
      Severity: Major
      Found in src/ts/Metadata.class.ts - About 3 hrs to fix

        Function handleEvent has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
        Open

          handleEvent(event: Event): Promise<Response> | boolean {
            const el = event.target as HTMLFormElement;
            if (el.reportValidity() === false || el.hasAttribute('readonly')) {
              return false;
            }
        Severity: Minor
        Found in src/ts/Metadata.class.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 handleEvent has 38 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          handleEvent(event: Event): Promise<Response> | boolean {
            const el = event.target as HTMLFormElement;
            if (el.reportValidity() === false || el.hasAttribute('readonly')) {
              return false;
            }
        Severity: Minor
        Found in src/ts/Metadata.class.ts - About 1 hr to fix

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

            getGroups(mode: string, json: ValidMetadata) {
              // collect all extra fields, normalize position and group_id, add an element property
              const elements = [];
              for (const [name, properties] of Object.entries(json.extra_fields)) {
                // 0 is a valid position, so don't do something with "|| 9999"
          Severity: Minor
          Found in src/ts/Metadata.class.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 generateViewableElement has 34 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

            generateViewableElement(name: string, properties: ExtraFieldProperties): Element {
              const wrapperDiv = document.createElement('div');
              wrapperDiv.classList.add('d-flex');
              // name + description
              const nameWrapper = document.createElement('div');
          Severity: Minor
          Found in src/ts/Metadata.class.ts - About 1 hr to fix

            Function getGroups has 31 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

              getGroups(mode: string, json: ValidMetadata) {
                // collect all extra fields, normalize position and group_id, add an element property
                const elements = [];
                for (const [name, properties] of Object.entries(json.extra_fields)) {
                  // 0 is a valid position, so don't do something with "|| 9999"
            Severity: Minor
            Found in src/ts/Metadata.class.ts - About 1 hr to fix

              Function buildRadio has 28 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                buildRadio(name: string, properties: ExtraFieldProperties): Element { // eslint-disable-line
                  // a div to hold the different elements so we can return a single Element
                  const element = document.createElement('div');
                  element.dataset.purpose = 'radio-holder';
              
              
              Severity: Minor
              Found in src/ts/Metadata.class.ts - About 1 hr to fix

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

                  generateViewableElement(name: string, properties: ExtraFieldProperties): Element {
                    const wrapperDiv = document.createElement('div');
                    wrapperDiv.classList.add('d-flex');
                    // name + description
                    const nameWrapper = document.createElement('div');
                Severity: Minor
                Found in src/ts/Metadata.class.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

                Avoid too many return statements within this function.
                Open

                    return true;
                Severity: Major
                Found in src/ts/Metadata.class.ts - About 30 mins to fix

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

                          for (const element of groupedArr[group.id].sort((a: ExtraFieldProperties, b: ExtraFieldProperties) => a.position - b.position)) {
                            groupWrapperDiv.append(element.element);
                          }
                  Severity: Minor
                  Found in src/ts/Metadata.class.ts and 1 other location - About 35 mins to fix
                  src/ts/Metadata.class.ts on lines 538..601

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

                  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

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

                            for (const element of groupedArr[group.id].sort((a: ExtraFieldProperties, b: ExtraFieldProperties) => a.position - b.position)) {
                              const listItem = document.createElement('li');
                              listItem.classList.add('list-group-item');
                              const labelDiv = document.createElement('div');
                              labelDiv.classList.add('d-flex', 'justify-content-between');
                  Severity: Minor
                  Found in src/ts/Metadata.class.ts and 1 other location - About 35 mins to fix
                  src/ts/Metadata.class.ts on lines 436..438

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

                  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

                  There are no issues that match your filters.

                  Category
                  Status