Showing 10 of 12 total issues
Function initMap
has 172 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
window.initMap = function () {
class CustomMarker extends google.maps.OverlayView {
constructor (position, map, opts) {
super()
this.position = position
Function initGoogleMaps
has 107 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
const initGoogleMaps = function (id) {
const lightStyle = [
{ featureType: 'all', stylers: [] },
{
featureType: 'road',
Function initItineraryIndex
has 54 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
const initItineraryIndex = function () {
indexItinerariesMapInit('#index-itineraries-map')
clearItineraries()
Function drawPath
has 47 lines of code (exceeds 25 allowed). Consider refactoring. Open
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))
Function wizardNextStep
has 37 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
const wizardNextStep = function () {
// Run validations
if ($('#itinerary_route').val() === '') {
$('#map-error-j').text(i18n.t('javascript.setup_route_first')).show()
return false
Function calculateRoute
has 35 lines of code (exceeds 25 allowed). Consider refactoring. Open
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()
Function setItinerary
has 32 lines of code (exceeds 25 allowed). Consider refactoring. Open
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)
Function initMap
has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring. Open
Open
window.initMap = function () {
class CustomMarker extends google.maps.OverlayView {
constructor (position, map, opts) {
super()
this.position = position
- Read upRead up
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
Open
const createRouteMapInit = function (id) {
const map = icare.initGoogleMaps(id)
const dr = new google.maps.DirectionsRenderer({
map,
Function onAdd
has 27 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
onAdd () {
const me = this
const div = document.createElement('div')
div.style.position = 'absolute'