privly/privly-applications

View on GitHub
shared/javascripts/viewAdapters/seamless_ttlselect.js

Summary

Maintainability
C
1 day
Test Coverage

Function initMenu has 33 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  SeamlessTTLSelectAdapter.prototype.initMenu = function (isAboveButton, selectedTTLValue, callback) {
    $('#menu').empty();
    this.getTTLOptions()
      .then(function (options) {
        var i;
Severity: Minor
Found in shared/javascripts/viewAdapters/seamless_ttlselect.js - About 1 hr to fix

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

      SeamlessTTLSelectAdapter.prototype.messageExtension = function (message, hasResponse) {
        var messageToSend = JSON.parse(JSON.stringify(message));
        // specify which context to be received
        messageToSend.targetContextId = this.sourceContextId;
        messageToSend.targetResourceId = this.sourceResourceId;
    Severity: Major
    Found in shared/javascripts/viewAdapters/seamless_ttlselect.js and 1 other location - About 3 hrs to fix
    shared/javascripts/viewAdapters/seamless.js on lines 204..211

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

    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

      SeamlessTTLSelectAdapter.prototype.getTTLOptions = function () {
        var promise;
        if (typeof this.application.getTTLOptions === 'function') {
          promise = this.application.getTTLOptions();
        } else {
    Severity: Major
    Found in shared/javascripts/viewAdapters/seamless_ttlselect.js and 1 other location - About 2 hrs to fix
    shared/javascripts/viewAdapters/seamless.js on lines 419..427

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

    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

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

        if (window.location.search.indexOf('?') === 0) {
          var query = privlyParameters.parameterStringToHash(window.location.search.substr(1));
          this.sourceContextId = query.contextid;
          this.sourceResourceId = query.resid;
          this.selfAppId = query.appid;
    Severity: Major
    Found in shared/javascripts/viewAdapters/seamless_ttlselect.js and 1 other location - About 2 hrs to fix
    shared/javascripts/viewAdapters/seamless.js on lines 116..121

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

    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

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

        Privly.message.addListener(function (message, sendResponse) {
          if (message.targetAppId !== self.selfAppId) {
            return;
          }
          return self.onMessageReceived(message, sendResponse);
    Severity: Minor
    Found in shared/javascripts/viewAdapters/seamless_ttlselect.js and 1 other location - About 55 mins to fix
    shared/javascripts/viewAdapters/seamless.js on lines 827..832

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

    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 4 locations. Consider refactoring.
    Open

      SeamlessTTLSelectAdapter.prototype.msgAppReady = function (size) {
        return this.messageExtension({
          action: 'posting/contentScript/TTLSelectReady',
          size: size
        }, true);
    Severity: Major
    Found in shared/javascripts/viewAdapters/seamless_ttlselect.js and 3 other locations - About 40 mins to fix
    shared/javascripts/viewAdapters/seamless.js on lines 291..296
    shared/javascripts/viewAdapters/seamless.js on lines 304..309
    shared/javascripts/viewAdapters/seamless.js on lines 322..327

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

    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