Showing 10 of 12 total issues

Function initMap has 172 lines of code (exceeds 25 allowed). Consider refactoring.
Open

window.initMap = function () {
  class CustomMarker extends google.maps.OverlayView {
    constructor (position, map, opts) {
      super()
      this.position = position
Severity: Major
Found in app/javascript/src/maps.js - About 6 hrs to fix

    Function initGoogleMaps has 107 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      const initGoogleMaps = function (id) {
        const lightStyle = [
          { featureType: 'all', stylers: [] },
          {
            featureType: 'road',
    Severity: Major
    Found in app/javascript/src/maps.js - About 4 hrs to fix

      Function initItineraryIndex has 54 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      const initItineraryIndex = function () {
        indexItinerariesMapInit('#index-itineraries-map')
      
        clearItineraries()
      
      
      Severity: Major
      Found in app/javascript/src/maps-search.js - About 2 hrs to fix

        Function drawPath has 47 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        const drawPath = function (itinerary, strokeColor, strokeOpacity) {
          if (strokeColor == null) { strokeColor = '#0000FF' }
          if (strokeOpacity == null) { strokeOpacity = 0.45 }
          icare.latLngBounds.extend(new google.maps.LatLng(itinerary.start_location.lat, itinerary.start_location.lng))
          icare.latLngBounds.extend(new google.maps.LatLng(itinerary.end_location.lat, itinerary.end_location.lng))
        Severity: Minor
        Found in app/javascript/src/maps-search.js - About 1 hr to fix

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

          const wizardNextStep = function () {
            // Run validations
            if ($('#itinerary_route').val() === '') {
              $('#map-error-j').text(i18n.t('javascript.setup_route_first')).show()
              return false
          Severity: Minor
          Found in app/javascript/src/maps-new.js - About 1 hr to fix

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

            const calculateRoute = function (dr, ds) {
              if (($('#itinerary_start_address').val() === '') || ($('#itinerary_end_address').val() === '')) { return }
              $('#itineraries-spinner-j').show()
              $('#map-error-j').hide()
              $('#map-result-j').hide()
            Severity: Minor
            Found in app/javascript/src/maps-new.js - About 1 hr to fix

              Function setItinerary has 32 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

              const setItinerary = function (route) {
                // NOTE server side is limited to 2.500 requests per day, so we create routes on client
              
                // Set visible fields at first
                $('.itinerary-from-j').text(route.legs[0].start_address)
              Severity: Minor
              Found in app/javascript/src/maps-new.js - About 1 hr to fix

                Function initMap has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
                Open

                window.initMap = function () {
                  class CustomMarker extends google.maps.OverlayView {
                    constructor (position, map, opts) {
                      super()
                      this.position = position
                Severity: Minor
                Found in app/javascript/src/maps.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 createRouteMapInit has 31 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                const createRouteMapInit = function (id) {
                  const map = icare.initGoogleMaps(id)
                
                  const dr = new google.maps.DirectionsRenderer({
                    map,
                Severity: Minor
                Found in app/javascript/src/maps-new.js - About 1 hr to fix

                  Function onAdd has 27 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                      onAdd () {
                        const me = this
                        const div = document.createElement('div')
                        div.style.position = 'absolute'
                  
                  
                  Severity: Minor
                  Found in app/javascript/src/maps.js - About 1 hr to fix
                    Severity
                    Category
                    Status
                    Source
                    Language