pixelfed/pixelfed

View on GitHub
resources/assets/js/polyfill.js

Summary

Maintainability
F
4 days
Test Coverage

File polyfill.js has 634 lines of code (exceeds 250 allowed). Consider refactoring.
Open

/* Blob.js
 * A Blob, File, FileReader & URL implementation.
 * 2019-04-19
 *
 * By Eli Grey, http://eligrey.com
Severity: Major
Found in resources/assets/js/polyfill.js - About 1 day to fix

    Function FakeBlobBuilder has 200 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      function FakeBlobBuilder () {
        function isDataView (obj) {
          return obj && DataView.prototype.isPrototypeOf(obj)
        }
        function bufferClone (buf) {
    Severity: Major
    Found in resources/assets/js/polyfill.js - About 1 day to fix

      Function stringDecode has 67 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        function stringDecode (buf) {
          var end = buf.length
          var res = []
      
          var i = 0
      Severity: Major
      Found in resources/assets/js/polyfill.js - About 2 hrs to fix

        Function fixFileAndXHR has 48 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          function fixFileAndXHR () {
            var isIE = !!global.ActiveXObject || (
              '-ms-scroll-limit' in document.documentElement.style &&
              '-ms-ime-align' in document.documentElement.style
            )
        Severity: Minor
        Found in resources/assets/js/polyfill.js - About 1 hr to fix

          Function stringEncode has 46 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

            function stringEncode (string) {
              var pos = 0
              var len = string.length
              var Arr = global.Uint8Array || Array // Use byte array when possible
          
          
          Severity: Minor
          Found in resources/assets/js/polyfill.js - About 1 hr to fix

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

                canvas_proto.toBlob = function(callback, type /*, ...args*/) {
                      if (!type) {
                        type = "image/png";
                    } if (this.mozGetAsFile) {
                        callback(this.mozGetAsFile("canvas", type));
            Severity: Minor
            Found in resources/assets/js/polyfill.js - About 1 hr to fix

              Function decode_base64 has 31 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  , decode_base64 = function(base64) {
                      var
                            len = base64.length
                          , buffer = new Uint8Array(len / 4 * 3 | 0)
                          , i = 0
              Severity: Minor
              Found in resources/assets/js/polyfill.js - About 1 hr to fix

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

                    function Blob (chunks, opts) {
                      chunks = chunks || []
                      opts = opts == null ? {} : opts
                      for (var i = 0, len = chunks.length; i < len; i++) {
                        var chunk = chunks[i]
                Severity: Minor
                Found in resources/assets/js/polyfill.js - About 1 hr to fix

                  Avoid deeply nested control flow statements.
                  Open

                                if (tempCodePoint > 0x7FF && (tempCodePoint < 0xD800 || tempCodePoint > 0xDFFF)) {
                                  codePoint = tempCodePoint
                                }
                  Severity: Major
                  Found in resources/assets/js/polyfill.js - About 45 mins to fix

                    Avoid deeply nested control flow statements.
                    Open

                                if (is_base64) {
                                    blob = new Blob([decode_base64(data)], {type: type});
                                } else {
                                    blob = new Blob([decodeURIComponent(data)], {type: type});
                                }
                    Severity: Major
                    Found in resources/assets/js/polyfill.js - About 45 mins to fix

                      Avoid deeply nested control flow statements.
                      Open

                                    if (tempCodePoint > 0xFFFF && tempCodePoint < 0x110000) {
                                      codePoint = tempCodePoint
                                    }
                      Severity: Major
                      Found in resources/assets/js/polyfill.js - About 45 mins to fix

                        Avoid deeply nested control flow statements.
                        Open

                                      if (tempCodePoint > 0x7F) {
                                        codePoint = tempCodePoint
                                      }
                        Severity: Major
                        Found in resources/assets/js/polyfill.js - About 45 mins to fix

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

                            if (!blob.arrayBuffer) {
                              blob.arrayBuffer = function arrayBuffer() {
                                var fr = new FileReader()
                                fr.readAsArrayBuffer(this)
                                return promisify(fr)
                          Severity: Major
                          Found in resources/assets/js/polyfill.js and 1 other location - About 1 hr to fix
                          resources/assets/js/polyfill.js on lines 673..679

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

                          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

                            if (!blob.text) {
                              blob.text = function text() {
                                var fr = new FileReader()
                                fr.readAsText(this)
                                return promisify(fr)
                          Severity: Major
                          Found in resources/assets/js/polyfill.js and 1 other location - About 1 hr to fix
                          resources/assets/js/polyfill.js on lines 665..671

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

                          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