ginpei/html5-youtube.js

View on GitHub
src/Html5YouTube.ts

Summary

Maintainability
B
6 hrs
Test Coverage

Html5YouTube has 27 functions (exceeds 20 allowed). Consider refactoring.
Confirmed

export default class Html5YouTube extends YouTubeElement {
  public currentSrc = '';
  public played = false;
  public paused = false;
  public ended = false;
Severity: Minor
Found in src/Html5YouTube.ts - About 3 hrs to fix

    Function observePlayerValues has 37 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      protected observePlayerValues () {
        const interval = 100;
        this.tmPlayerValues = window.setInterval(() => {
          const player = this.player;
          if (!player) {
    Severity: Minor
    Found in src/Html5YouTube.ts - About 1 hr to fix

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

          this.tmPlayerValues = window.setInterval(() => {
            const player = this.player;
            if (!player) {
              return;
            }
      Severity: Minor
      Found in src/Html5YouTube.ts - About 1 hr to fix

        Function onStateChange has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Wontfix

          public onStateChange (event: YT.OnStateChangeEvent) {
            this.emit('onStateChange', event);
        
            const state = event.data;
        
        
        Severity: Minor
        Found in src/Html5YouTube.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

        There are no issues that match your filters.

        Category
        Status