oplik0/cherrydoor

View on GitHub

Showing 650 of 650 total issues

Function resolveAsset has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
Open

function resolveAsset(type, name, warnMissing = true, maybeSelfReference = false) {
    const instance = currentRenderingInstance || currentInstance;
    if (instance) {
            const Component = instance.type;
            // explicit self name has highest priority
Severity: Minor
Found in cherrydoor/static/js/vue-dev.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 patch has 43 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    const patch = (n1, n2, container, anchor = null, parentComponent = null, parentSuspense = null, isSVG = false, slotScopeIds = null, optimized = false) => {
            // patching & not same type, unmount old tree
            if (n1 && !isSameVNodeType(n1, n2)) {
                    anchor = getNextHostNode(n1);
                    unmount(n1, parentComponent, parentSuspense, true);
Severity: Minor
Found in cherrydoor/static/js/vue-dev.js - About 1 hr to fix

    Function exec has 43 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      patchedExec = function exec(str) {
        var re = this;
        var lastIndex, reCopy, match, i;
        var sticky = UNSUPPORTED_Y && re.sticky;
        var flags = regexpFlags.call(re);
    Severity: Minor
    Found in cherrydoor/static/components/VueTimepicker.js - About 1 hr to fix

      Function getCurrentScript has 43 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        function getCurrentScript () {
          var descriptor = Object.getOwnPropertyDescriptor(document, 'currentScript')
          // for chrome
          if (!descriptor && 'currentScript' in document && document.currentScript) {
            return document.currentScript
      Severity: Minor
      Found in cherrydoor/static/components/VueTimepicker.js - About 1 hr to fix

        Function finishComponentSetup has 42 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        function finishComponentSetup(instance, isSSR, skipOptions) {
            const Component = instance.type;
            // template / render function normalization
            if (!instance.render) {
                    // could be set from setup()
        Severity: Minor
        Found in cherrydoor/static/js/vue-dev.js - About 1 hr to fix

          Function traverseNode has 41 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          function traverseNode(node, context) {
              context.currentNode = node;
              // apply transform plugins
              const { nodeTransforms } = context;
              const exitFns = [];
          Severity: Minor
          Found in cherrydoor/static/js/vue-dev.js - About 1 hr to fix

            Function toggleActive has 41 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                toggleActive: function toggleActive() {
                  var _this11 = this;
            
                  if (this.disabled) {
                    return;
            Severity: Minor
            Found in cherrydoor/static/components/VueTimepicker.js - About 1 hr to fix

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

                      install(app) {
                          const router = this;
                          app.component("RouterLink", RouterLink);
                          app.component("RouterView", RouterView);
                          app.config.globalProperties.$router = router;
              Severity: Minor
              Found in cherrydoor/static/js/vue-router.js - About 1 hr to fix

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

                    const unmount = (vnode, parentComponent, parentSuspense, doRemove = false, optimized = false) => {
                            const { type, props, ref, children, dynamicChildren, shapeFlag, patchFlag, dirs } = vnode;
                            // unset ref
                            if (ref != null) {
                                    setRef(ref, null, parentSuspense, vnode, true);
                Severity: Minor
                Found in cherrydoor/static/js/vue-dev.js - About 1 hr to fix

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

                  function injectProp(node, prop, context) {
                      let propsWithInjection;
                      const props = node.type === 13 /* VNODE_CALL */ ? node.props : node.arguments[2];
                      if (props == null || isString(props)) {
                              propsWithInjection = createObjectExpression([prop]);
                  Severity: Minor
                  Found in cherrydoor/static/js/vue-dev.js - About 1 hr to fix

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

                    function cloneVNode(vnode, extraProps, mergeRef = false) {
                        // This is intentionally NOT using spread or extend to avoid the runtime
                        // key enumeration cost.
                        const { props, ref, patchFlag, children } = vnode;
                        const mergedProps = extraProps ? mergeProps(props || {}, extraProps) : props;
                    Severity: Minor
                    Found in cherrydoor/static/js/vue-dev.js - About 1 hr to fix

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

                      /***/ (function(module, exports, __webpack_require__) {
                      
                      "use strict";
                      // `Symbol.prototype.description` getter
                      // https://tc39.github.io/ecma262/#sec-symbol.prototype.description
                      Severity: Minor
                      Found in cherrydoor/static/components/VueTimepicker.js - About 1 hr to fix

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

                        /***/ (function(module, exports, __webpack_require__) {
                        
                        "use strict";
                        
                        var $ = __webpack_require__("23e7");
                        Severity: Minor
                        Found in cherrydoor/static/components/VueTimepicker.js - About 1 hr to fix

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

                          function onBeforeRouteLeave(leaveGuard) {
                              if (!getCurrentInstance()) {
                                  warn(
                                      "getCurrentInstance() returned null. onBeforeRouteLeave() must be called at the top of a setup function"
                                  );
                          Severity: Major
                          Found in cherrydoor/static/js/vue-router.js and 1 other location - About 1 hr to fix
                          cherrydoor/static/js/vue-router.js on lines 1944..1959

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

                          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

                          function onBeforeRouteUpdate(updateGuard) {
                              if (!getCurrentInstance()) {
                                  warn(
                                      "getCurrentInstance() returned null. onBeforeRouteUpdate() must be called at the top of a setup function"
                                  );
                          Severity: Major
                          Found in cherrydoor/static/js/vue-router.js and 1 other location - About 1 hr to fix
                          cherrydoor/static/js/vue-router.js on lines 1921..1936

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

                          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

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

                          function stringifyQuery(query) {
                              let search = "";
                              for (let key in query) {
                                  const value = query[key];
                                  key = encodeQueryKey(key);
                          Severity: Minor
                          Found in cherrydoor/static/js/vue-router.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 traverse has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
                          Open

                          function traverse(value, seen = new Set()) {
                              if (!isObject(value) ||
                                      seen.has(value) ||
                                      value["__v_skip" /* SKIP */]) {
                                      return value;
                          Severity: Minor
                          Found in cherrydoor/static/js/vue-dev.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 shouldSetAsProp has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
                          Open

                          function shouldSetAsProp(el, key, value, isSVG) {
                              if (isSVG) {
                                      // most keys must be set as attribute on svg elements to work
                                      // ...except innerHTML
                                      if (key === 'innerHTML') {
                          Severity: Minor
                          Found in cherrydoor/static/js/vue-dev.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 findProp has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
                          Open

                          function findProp(node, name, dynamicOnly = false, allowEmpty = false) {
                              for (let i = 0; i < node.props.length; i++) {
                                      const p = node.props[i];
                                      if (p.type === 6 /* ATTRIBUTE */) {
                                              if (dynamicOnly)
                          Severity: Minor
                          Found in cherrydoor/static/js/vue-dev.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 patchAttr has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
                          Open

                          function patchAttr(el, key, value, isSVG, instance) {
                              if (isSVG && key.startsWith('xlink:')) {
                                      if (value == null) {
                                              el.removeAttributeNS(xlinkNS, key.slice(6, key.length));
                                      }
                          Severity: Minor
                          Found in cherrydoor/static/js/vue-dev.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

                          Severity
                          Category
                          Status
                          Source
                          Language