BookStackApp/BookStack

View on GitHub
resources/js/wysiwyg/lexical/core/LexicalUpdates.ts

Summary

Maintainability
F
1 wk
Test Coverage

File LexicalUpdates.ts has 848 lines of code (exceeds 250 allowed). Consider refactoring.
Open

/**
 * Copyright (c) Meta Platforms, Inc. and affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
Severity: Major
Found in resources/js/wysiwyg/lexical/core/LexicalUpdates.ts - About 2 days to fix

    Function $commitPendingUpdates has 166 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    export function $commitPendingUpdates(
      editor: LexicalEditor,
      recoveryEditorState?: EditorState,
    ): void {
      const pendingEditorState = editor._pendingEditorState;
    Severity: Major
    Found in resources/js/wysiwyg/lexical/core/LexicalUpdates.ts - About 6 hrs to fix

      Function $commitPendingUpdates has a Cognitive Complexity of 38 (exceeds 5 allowed). Consider refactoring.
      Open

      export function $commitPendingUpdates(
        editor: LexicalEditor,
        recoveryEditorState?: EditorState,
      ): void {
        const pendingEditorState = editor._pendingEditorState;
      Severity: Minor
      Found in resources/js/wysiwyg/lexical/core/LexicalUpdates.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 $beginUpdate has 125 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      function $beginUpdate(
        editor: LexicalEditor,
        updateFn: () => void,
        options?: EditorUpdateOptions,
      ): void {
      Severity: Major
      Found in resources/js/wysiwyg/lexical/core/LexicalUpdates.ts - About 5 hrs to fix

        Function $beginUpdate has a Cognitive Complexity of 33 (exceeds 5 allowed). Consider refactoring.
        Open

        function $beginUpdate(
          editor: LexicalEditor,
          updateFn: () => void,
          options?: EditorUpdateOptions,
        ): void {
        Severity: Minor
        Found in resources/js/wysiwyg/lexical/core/LexicalUpdates.ts - About 4 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 $applyAllTransforms has a Cognitive Complexity of 27 (exceeds 5 allowed). Consider refactoring.
        Open

        function $applyAllTransforms(
          editorState: EditorState,
          editor: LexicalEditor,
        ): void {
          const dirtyLeaves = editor._dirtyLeaves;
        Severity: Minor
        Found in resources/js/wysiwyg/lexical/core/LexicalUpdates.ts - About 3 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 triggerCommandListeners has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
        Open

        export function triggerCommandListeners<
          TCommand extends LexicalCommand<unknown>,
        >(
          editor: LexicalEditor,
          type: TCommand,
        Severity: Minor
        Found in resources/js/wysiwyg/lexical/core/LexicalUpdates.ts - About 3 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 processNestedUpdates has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
        Open

        function processNestedUpdates(
          editor: LexicalEditor,
          initialSkipTransforms?: boolean,
        ): boolean {
          const queuedUpdates = editor._updates;
        Severity: Minor
        Found in resources/js/wysiwyg/lexical/core/LexicalUpdates.ts - About 3 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 $applyAllTransforms has 65 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        function $applyAllTransforms(
          editorState: EditorState,
          editor: LexicalEditor,
        ): void {
          const dirtyLeaves = editor._dirtyLeaves;
        Severity: Major
        Found in resources/js/wysiwyg/lexical/core/LexicalUpdates.ts - About 2 hrs to fix

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

          export function parseEditorState(
            serializedEditorState: SerializedEditorState,
            editor: LexicalEditor,
            updateFn: void | (() => void),
          ): EditorState {
          Severity: Minor
          Found in resources/js/wysiwyg/lexical/core/LexicalUpdates.ts - About 1 hr to fix

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

            function collectBuildInformation(): string {
              let compatibleEditors = 0;
              const incompatibleEditors = new Set<string>();
              const thisVersion = LexicalEditor.version;
              if (typeof window !== 'undefined') {
            Severity: Minor
            Found in resources/js/wysiwyg/lexical/core/LexicalUpdates.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 processNestedUpdates has 33 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

            function processNestedUpdates(
              editor: LexicalEditor,
              initialSkipTransforms?: boolean,
            ): boolean {
              const queuedUpdates = editor._updates;
            Severity: Minor
            Found in resources/js/wysiwyg/lexical/core/LexicalUpdates.ts - About 1 hr to fix

              Function collectBuildInformation has 30 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

              function collectBuildInformation(): string {
                let compatibleEditors = 0;
                const incompatibleEditors = new Set<string>();
                const thisVersion = LexicalEditor.version;
                if (typeof window !== 'undefined') {
              Severity: Minor
              Found in resources/js/wysiwyg/lexical/core/LexicalUpdates.ts - About 1 hr to fix

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

                export function triggerCommandListeners<
                  TCommand extends LexicalCommand<unknown>,
                >(
                  editor: LexicalEditor,
                  type: TCommand,
                Severity: Minor
                Found in resources/js/wysiwyg/lexical/core/LexicalUpdates.ts - About 1 hr to fix

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

                  function $parseSerializedNodeImpl<
                    SerializedNode extends InternalSerializedNode,
                  >(
                    serializedNode: SerializedNode,
                    registeredNodes: RegisteredNodes,
                  Severity: Minor
                  Found in resources/js/wysiwyg/lexical/core/LexicalUpdates.ts - About 1 hr to fix

                    Avoid deeply nested control flow statements.
                    Open

                              for (let j = 0; j < listenersLength; j++) {
                                if (listeners[j](payload, editor) === true) {
                                  return true;
                                }
                              }
                    Severity: Major
                    Found in resources/js/wysiwyg/lexical/core/LexicalUpdates.ts - About 45 mins to fix

                      Function triggerMutationListeners has 5 arguments (exceeds 4 allowed). Consider refactoring.
                      Open

                        editor: LexicalEditor,
                        mutatedNodes: MutatedNodes,
                        updateTags: Set<string>,
                        dirtyLeaves: Set<string>,
                        prevEditorState: EditorState,
                      Severity: Minor
                      Found in resources/js/wysiwyg/lexical/core/LexicalUpdates.ts - About 35 mins to fix

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

                        function $parseSerializedNodeImpl<
                          SerializedNode extends InternalSerializedNode,
                        >(
                          serializedNode: SerializedNode,
                          registeredNodes: RegisteredNodes,
                        Severity: Minor
                        Found in resources/js/wysiwyg/lexical/core/LexicalUpdates.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

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

                        export function getActiveEditor(): LexicalEditor {
                          if (activeEditor === null) {
                            invariant(
                              false,
                              'Unable to find an active editor. ' +
                        Severity: Major
                        Found in resources/js/wysiwyg/lexical/core/LexicalUpdates.ts and 1 other location - About 1 hr to fix
                        resources/js/wysiwyg/lexical/core/LexicalUpdates.ts on lines 94..107

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

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

                        export function getActiveEditorState(): EditorState {
                          if (activeEditorState === null) {
                            invariant(
                              false,
                              'Unable to find an active editor state. ' +
                        Severity: Major
                        Found in resources/js/wysiwyg/lexical/core/LexicalUpdates.ts and 1 other location - About 1 hr to fix
                        resources/js/wysiwyg/lexical/core/LexicalUpdates.ts on lines 109..121

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

                        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

                            if (
                              $isTextNode(node) &&
                              node.isAttached() &&
                              node.isSimpleText() &&
                              !node.isUnmergeable()
                        Severity: Minor
                        Found in resources/js/wysiwyg/lexical/core/LexicalUpdates.ts and 1 other location - About 55 mins to fix
                        resources/js/wysiwyg/lexical/core/LexicalUpdates.ts on lines 258..265

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

                        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

                                if (
                                  $isTextNode(node) &&
                                  node.isAttached() &&
                                  node.isSimpleText() &&
                                  !node.isUnmergeable()
                        Severity: Minor
                        Found in resources/js/wysiwyg/lexical/core/LexicalUpdates.ts and 1 other location - About 55 mins to fix
                        resources/js/wysiwyg/lexical/core/LexicalUpdates.ts on lines 211..218

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

                        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