superdesk/superdesk-client-core

View on GitHub
scripts/core/editor3/reducers/editor3.tsx

Summary

Maintainability
C
1 day
Test Coverage

File editor3.tsx has 371 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import {
    RichUtils,
    EditorState,
    ContentState,
    Modifier,
Severity: Minor
Found in scripts/core/editor3/reducers/editor3.tsx - About 4 hrs to fix

    Function editor3 has 40 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    const editor3 = (state: IEditorStore, action) => {
        switch (action.type) {
        case 'EDITOR_CHANGE_STATE':
            return onChange(state, action.payload.editorState, action.payload.force, false, action.payload.skipOnChange);
        case 'EDITOR_PUSH_STATE':
    Severity: Minor
    Found in scripts/core/editor3/reducers/editor3.tsx - About 1 hr to fix

      Function getAbbreviationText has 26 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      const getAbbreviationText = (block, offset) => {
          const text = block.getText();
          const length = block.getLength();
          let start = offset;
          let end = offset;
      Severity: Minor
      Found in scripts/core/editor3/reducers/editor3.tsx - About 1 hr to fix

        Function onTab has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
        Open

        const onTab = (state: IEditorStore, e) => {
            const {editorState, editorFormat = []} = state;
            const selection = editorState.getSelection() as SelectionState;
            const moreThanOneBlockSelected =
                selection.getStartKey() !== selection.getEndKey();
        Severity: Minor
        Found in scripts/core/editor3/reducers/editor3.tsx - About 55 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 getAbbreviationText has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
        Open

        const getAbbreviationText = (block, offset) => {
            const text = block.getText();
            const length = block.getLength();
            let start = offset;
            let end = offset;
        Severity: Minor
        Found in scripts/core/editor3/reducers/editor3.tsx - About 55 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