codevise/pageflow

View on GitHub

Showing 392 of 1,004 total issues

Avoid too many return statements within this function.
Open

      return Promise.resolve('fulfilled');
Severity: Major
Found in package/src/frontend/Consent/index.js - About 30 mins to fix

    Avoid too many return statements within this function.
    Open

          return 'Der Server hat einen internen Fehler gemeldet.';
    Severity: Major
    Found in package/src/editor/models/mixins/failureTracking.js - About 30 mins to fix

      Avoid too many return statements within this function.
      Open

            return 1;
      Severity: Major
      Found in package/src/editor/collections/PagesCollection.js - About 30 mins to fix

        Avoid too many return statements within this function.
        Open

                return Promise.resolve('failed');
        Severity: Major
        Found in package/src/frontend/Consent/index.js - About 30 mins to fix

          Avoid too many return statements within this function.
          Open

              return '';
          Severity: Major
          Found in package/src/editor/models/mixins/failureTracking.js - About 30 mins to fix

            Avoid too many return statements within this function.
            Open

                return result;
            Severity: Major
            Found in entry_types/scrolled/package/src/frontend/VideoPlayer/sources.js - About 30 mins to fix

              Avoid too many return statements within this function.
              Open

                    return -1;
              Severity: Major
              Found in package/src/editor/collections/PagesCollection.js - About 30 mins to fix

                Avoid too many return statements within this function.
                Open

                    return [
                      {
                        type: 'video/mp4',
                        src: videoFile.urls[quality]
                      }
                Severity: Major
                Found in entry_types/scrolled/package/src/frontend/VideoPlayer/sources.js - About 30 mins to fix

                  Avoid too many return statements within this function.
                  Open

                        return 0;
                  Severity: Major
                  Found in package/src/editor/collections/PagesCollection.js - About 30 mins to fix

                    Avoid too many return statements within this function.
                    Open

                          return 'Der Server ist nicht erreichbar.';
                    Severity: Major
                    Found in package/src/editor/models/mixins/failureTracking.js - About 30 mins to fix

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

                      export default function(collectionName, {namespace} = {}) {
                        return function itemsSelector(state) {
                          if (namespace) {
                            if (!state[namespace]) {
                              throw new Error(`Cannot select from unknown namespace ${namespace}.`);

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

                      export const HashAdapter = function() {
                        var counter = 0;
                      
                        this.back = function() {
                          if (counter > 0) {

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

                      function autoTextTrackFile(textTrackFiles, defaultTextTrackFileId, locale, volume) {
                        if (defaultTextTrackFileId) {
                          const defaultTextTrackFile = textTrackFiles.find(textTrackFile =>
                            textTrackFile.permaId == defaultTextTrackFileId
                          );
                      Severity: Minor
                      Found in entry_types/paged/packages/pageflow-paged-react/src/media/selectors.js - 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

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

                      export function IframeEmbed({configuration}) {
                        const {shouldLoad} = useContentElementLifecycle();
                        const {isEditable, isSelected} = useContentElementEditorState();
                        const portraitOrientation = usePortraitOrientation();
                      
                      

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

                      export function withLineBreakNormalization(editor) {
                        const { normalizeNode } = editor;
                      
                        editor.normalizeNode = ([node, path]) => {
                          if (node.text) {

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

                      export function MediaPlayerControls(props) {
                        const playerState = props.playerState;
                        const playerActions = props.playerActions;
                      
                        const {t} = useI18n();
                      Severity: Minor
                      Found in entry_types/scrolled/package/src/frontend/MediaPlayerControls.js - 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

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

                      export default function({
                        tagName,
                        sources,
                        poster = () => {},
                        emulateTextTracksDisplay = false,

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

                        resume: function() {
                          if (this.multiPlayer.paused()) {
                            if (this.disabled || this.backgroundMedia.muted) {
                              return new $.Deferred().resolve().promise();
                            }
                      Severity: Minor
                      Found in entry_types/paged/packages/pageflow-paged/src/frontend/Slideshow/Atmo.js - 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

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

                        getAttributesFromBackdropAttribute() {
                          const backdrop = this.attributes.backdrop || {};
                      
                          if (backdrop.image && backdrop.image.toString().startsWith('#')) {
                            return {
                      Severity: Minor
                      Found in entry_types/scrolled/package/src/editor/models/SectionConfiguration.js - 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

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

                      function motifAreaDisabled([
                        backdropType,
                        backdropImageMotifArea, backdropImageMobileMotifArea, backdropVideoMotifArea,
                        backdropImage, backdropImageMobile, backdropVideo
                      ]) {
                      Severity: Minor
                      Found in entry_types/scrolled/package/src/editor/views/EditSectionView.js - 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

                      Severity
                      Category
                      Status
                      Source
                      Language