Flamov/steamchat-website

View on GitHub

Showing 12 of 20 total issues

Function yearsBehaviour has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
Open

function yearsBehaviour() {
    const totalLength = $archives.$sidebar.$years.length;
    let yearsActive = 0;
    for (let i = 0; i < $archives.$sidebar.$years.length; i++) {
        if ($archives.$sidebar.$years[i].checked === true) {
Severity: Minor
Found in resources/assets/js/modules/archive.js - 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 init has 38 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export function init(element) {
    // Cache element selectors
    $archives = element;
        $archives.$sidebar = $archives.getElementsByClassName('js-sidebar')[0];
            $archives.$sidebar.$search = $archives.$sidebar.getElementsByClassName('js-search')[0];
Severity: Minor
Found in resources/assets/js/modules/archive.js - About 1 hr to fix

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

    function updateFilteringDisplay() {
        const total = $archives.$episodes.length;
        let hiding = 0;
    
        const filterClasses = [
    Severity: Minor
    Found in resources/assets/js/modules/archive.js - 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 updateFilteringDisplay has 35 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    function updateFilteringDisplay() {
        const total = $archives.$episodes.length;
        let hiding = 0;
    
        const filterClasses = [
    Severity: Minor
    Found in resources/assets/js/modules/archive.js - About 1 hr to fix

      Function getEpisode has 35 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

                  getEpisode: function(episode, autoplay) {
                      const self = this;
      
                      // Clear episode data and reset player state
                      this.episodeData = false;
      Severity: Minor
      Found in resources/assets/js/modules/player.js - About 1 hr to fix

        Function yearsBehaviour has 34 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        function yearsBehaviour() {
            const totalLength = $archives.$sidebar.$years.length;
            let yearsActive = 0;
            for (let i = 0; i < $archives.$sidebar.$years.length; i++) {
                if ($archives.$sidebar.$years[i].checked === true) {
        Severity: Minor
        Found in resources/assets/js/modules/archive.js - About 1 hr to fix

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

                      togglePlay: function(target, event) {
                          const self = this;
          
                          if (event !== null) {
                              event.preventDefault();
          Severity: Minor
          Found in resources/assets/js/modules/player.js - About 1 hr to fix

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

            function categoryBehaviour() {
                const selectedCategory = this.value;
            
                if (selectedCategory === 'all') {
                    for (let i = 0; i < $archives.$episodes.length; i++) {
            Severity: Minor
            Found in resources/assets/js/modules/archive.js - 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

            Function createCache has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
            Open

            function createCache() {
                $archives.$sidebar.$years = $archives.$sidebar.getElementsByClassName('js-year');
                $archives.$sidebar.$categories = $archives.$sidebar.getElementsByClassName('js-category');
            
                const filterArray = function(key, attribute) {
            Severity: Minor
            Found in resources/assets/js/modules/archive.js - About 35 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 resetBehaviour has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

            function resetBehaviour(event) {
                if (event !== null) {
                    event.preventDefault();
                }
            
            
            Severity: Minor
            Found in resources/assets/js/modules/archive.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 searchBehaviour has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

            function searchBehaviour() {
                let value = this.value;
            
                // Ignore non-alphanumeric and whitespace characters
                value = value.replace(/[^a-zA-Z0-9]/gi, ' ');
            Severity: Minor
            Found in resources/assets/js/modules/archive.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 getTitle has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

                public function getTitle($short) {
            
                    $type = $this->type;
                    $number = $this->number;
                    $title = $this->title;
            Severity: Minor
            Found in app/Episode.php - 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