]> git.openstreetmap.org Git - rails.git/commitdiff
Consistent JavaScript style
authorJohn Firebaugh <john.firebaugh@gmail.com>
Wed, 12 Jun 2013 18:34:43 +0000 (11:34 -0700)
committerJohn Firebaugh <john.firebaugh@gmail.com>
Thu, 18 Jul 2013 17:45:14 +0000 (10:45 -0700)
app/assets/javascripts/index.js
app/assets/javascripts/leaflet.key.js
app/assets/javascripts/leaflet.layers.js
app/assets/javascripts/leaflet.note.js
app/assets/javascripts/leaflet.share.js

index 39d416ba9019999d770b08e021d825d3c90ccd7f..710095e2d501db51713cbba52eac50aefbf628b7 100644 (file)
@@ -75,12 +75,12 @@ $(document).ready(function () {
     uiPane: uiPane
   }).addTo(map);
 
-  L.control.note({
+  L.OSM.note({
     position: 'topright',
     uiPane: uiPane
   }).addTo(map);
 
-  L.control.share({
+  L.OSM.share({
     getUrl: getShortUrl,
     uiPane: uiPane
   }).addTo(map);
index 4cab964c9e178c0f166609247fef9b8f9dd89472..5756f0c4179b6572a0f1c2bf18e08d228b26bb79 100644 (file)
@@ -1,25 +1,19 @@
-L.OSM.Key = L.Control.extend({
-  onAdd: function (map) {
-    this._map = map;
-    this._initLayout();
-    return this.$container[0];
-  },
-
-  _initLayout: function () {
-    var map = this._map;
+L.OSM.key = function(options) {
+  var control = L.control(options);
 
-    this.$container = $('<div>')
+  control.onAdd = function (map) {
+    var $container = $('<div>')
       .attr('class', 'control-key');
 
-    var link = $('<a>')
+    $('<a>')
       .attr('class', 'control-button')
       .attr('href', '#')
       .attr('title', 'Map Key')
       .html('<span class="icon key"></span>')
-      .appendTo(this.$container);
-  }
-});
+      .appendTo($container);
 
-L.OSM.key = function(options) {
-  return new L.OSM.Key(options);
+    return $container[0];
+  };
+
+  return control;
 };
index 09cf1cf60f2bd3ba4ed6aef08f2eb1734f867b23..bbc84701cfa7a36f405db7e6250e985c1b2d3300 100644 (file)
@@ -1,15 +1,10 @@
-L.OSM.Layers = L.Control.extend({
-  onAdd: function (map) {
-    this._map = map;
-    this._initLayout();
-    return this.$container[0];
-  },
-
-  _initLayout: function () {
-    var map = this._map,
-      layers = this.options.layers;
-
-    this.$container = $('<div>')
+L.OSM.layers = function(options) {
+  var control = L.control(options);
+
+  control.onAdd = function (map) {
+    var layers = options.layers;
+
+    var $container = $('<div>')
       .attr('class', 'control-layers');
 
     var link = $('<a>')
@@ -17,20 +12,21 @@ L.OSM.Layers = L.Control.extend({
       .attr('href', '#')
       .attr('title', 'Layers')
       .html('<span class="icon layers"></span>')
-      .appendTo(this.$container);
+      .on('click', toggle)
+      .appendTo($container);
 
-    if (OSM.STATUS != 'api_offline' && OSM.STATUS != 'database_offline') {
-      this.$ui = $('<div>')
-        .attr('class', 'layers-ui')
-        .appendTo(this.options.uiPane);
+    var $ui = $('<div>')
+      .attr('class', 'layers-ui')
+      .appendTo(options.uiPane);
 
-      $('<h2>')
-        .text(I18n.t('javascripts.map.layers.header'))
-        .appendTo(this.$ui);
+    $('<h2>')
+      .text(I18n.t('javascripts.map.layers.header'))
+      .appendTo($ui);
 
+    if (OSM.STATUS != 'api_offline' && OSM.STATUS != 'database_offline') {
       var overlaySection = $('<section>')
         .addClass('overlay-layers')
-        .appendTo(this.$ui);
+        .appendTo($ui);
 
       $('<p>')
         .text(I18n.t('javascripts.map.layers.overlays'))
@@ -72,7 +68,7 @@ L.OSM.Layers = L.Control.extend({
 
     var baseSection = $('<section>')
       .addClass('base-layers')
-      .appendTo(this.$ui);
+      .appendTo($ui);
 
     $('<p>')
       .text(I18n.t('javascripts.map.layers.base'))
@@ -128,29 +124,27 @@ L.OSM.Layers = L.Control.extend({
       });
     });
 
-    $(link).on('click', $.proxy(this.toggleLayers, this));
-  },
+    function toggle(e) {
+      e.stopPropagation();
+      e.preventDefault();
 
-  toggleLayers: function (e) {
-    e.stopPropagation();
-    e.preventDefault();
+      var controlContainer = $('.leaflet-control-container .leaflet-top.leaflet-right');
 
-    var controlContainer = $('.leaflet-control-container .leaflet-top.leaflet-right');
+      if ($ui.is(':visible')) {
+        $(control.options.uiPane).hide();
+        controlContainer.css({paddingRight: '0'});
+      } else {
+        $(control.options.uiPane).show();
+        controlContainer.css({paddingRight: '230px'});
+      }
 
-    if (this.$ui.is(':visible')) {
-      $(this.options.uiPane).hide();
-      controlContainer.css({paddingRight: '0'});
-    } else {
-      $(this.options.uiPane).show();
-      controlContainer.css({paddingRight: '230px'});
+      $ui.find('.base-layers .leaflet-container').each(function() {
+        $(this).data('map').invalidateSize();
+      });
     }
 
-    this.$ui.find('.base-layers .leaflet-container').each(function() {
-      $(this).data('map').invalidateSize();
-    });
-  }
-});
+    return $container[0];
+  };
 
-L.OSM.layers = function(options) {
-  return new L.OSM.Layers(options);
+  return control;
 };
index 24f18f7ab3f66de38f3351eb146c68fcf1232491..68e09c88deb90a4403479d5b30660f53f04c522a 100644 (file)
@@ -1,39 +1,31 @@
-L.Control.Note = L.Control.extend({
-    options: {
-        position: 'topright',
-        title: 'Notes',
-    },
+L.OSM.note = function (options) {
+  var control = L.control(options);
 
-    onAdd: function (map) {
-        var className = 'control-note',
-            container = L.DomUtil.create('div', className);
+  control.onAdd = function (map) {
+    var $container = $('<div>')
+      .attr('class', 'control-note');
 
-        var link = L.DomUtil.create('a', 'control-button', container);
-        link.innerHTML = "<span class='icon note'></span>";
-        link.href = '#';
-        link.title = this.options.title;
+    $('<a>')
+      .attr('class', 'control-button')
+      .attr('href', '#')
+      .attr('title', 'Notes')
+      .html('<span class="icon note"></span>')
+      .on('click', toggle)
+      .appendTo($container);
 
-        L.DomEvent
-            .on(link, 'click', L.DomEvent.stopPropagation)
-            .on(link, 'click', L.DomEvent.preventDefault)
-            .on(link, 'click', this._toggle, this)
-            .on(link, 'dblclick', L.DomEvent.stopPropagation);
+    function toggle(e) {
+      e.stopPropagation();
+      e.preventDefault();
 
-        this.map = map;
-
-        return container;
-    },
-
-    // TODO: this relies on notesLayer on the map
-    _toggle: function() {
-        if (this.map.hasLayer(this.map.noteLayer)) {
-            this.map.removeLayer(this.map.noteLayer);
-        } else {
-            this.map.addLayer(this.map.noteLayer);
-        }
+      if (map.hasLayer(map.noteLayer)) {
+        map.removeLayer(map.noteLayer);
+      } else {
+        map.addLayer(map.noteLayer);
+      }
     }
-});
 
-L.control.note = function(options) {
-    return new L.Control.Note(options);
+    return $container[0];
+  };
+
+  return control;
 };
index d43f99b1da1b3032696c4912213593b56c59d712..548be3fccbaf4b2378575e105a84f2d381ac4ac2 100644 (file)
@@ -1,60 +1,54 @@
-L.Control.Share = L.Control.extend({
-    options: {
-        position: 'topright',
-        title: 'Share',
-        url: function(map) {
-            return '';
-        }
-    },
-
-    onAdd: function (map) {
-        var className = 'control-share',
-            container = L.DomUtil.create('div', className);
-
-        var link = L.DomUtil.create('a', 'control-button', container);
-        link.innerHTML = "<span class='icon share'></span>";
-        link.href = '#';
-        link.title = this.options.title;
-
-        this._uiPane = this.options.uiPane;
-
-        this._map = map;
-
-        var h2 = L.DomUtil.create('h2', '', this._uiPane);
-        h2.innerHTML = I18n.t('javascripts.share.title');
-
-        this._linkInput = L.DomUtil.create('input', '', this._uiPane);
-
-        L.DomEvent
-            .on(link, 'click', L.DomEvent.stopPropagation)
-            .on(link, 'click', L.DomEvent.preventDefault)
-            .on(link, 'click', this._toggle, this)
-            .on(link, 'dblclick', L.DomEvent.stopPropagation);
-
-        map.on('moveend layeradd layerremove', this._update, this);
-
-        return container;
-    },
-
-    _update: function (e) {
-        var center = this._map.getCenter().wrap();
-        var layers = getMapLayers(this._map);
-        this._linkInput.value = this.options.getUrl(this._map);
-    },
-
-    _toggle: function() {
-        var controlContainer = $('.leaflet-control-container .leaflet-top.leaflet-right');
-
-        if ($(this._uiPane).is(':visible')) {
-            $(this._uiPane).hide();
-            controlContainer.css({paddingRight: '0'});
-        } else {
-            $(this._uiPane).show();
-            controlContainer.css({paddingRight: '200px'});
-        }
+L.OSM.share = function (options) {
+  var control = L.control(options);
+
+  control.onAdd = function (map) {
+    var $container = $('<div>')
+      .attr('class', 'control-share');
+
+    $('<a>')
+      .attr('class', 'control-button')
+      .attr('href', '#')
+      .attr('title', 'Share')
+      .html('<span class="icon share"></span>')
+      .on('click', toggle)
+      .appendTo($container);
+
+    var $ui = $('<div>')
+      .attr('class', 'share-ui')
+      .appendTo(options.uiPane);
+
+    $('<h2>')
+      .text(I18n.t('javascripts.share.title'))
+      .appendTo($ui);
+
+    var $input = $('<input>')
+      .appendTo($ui);
+
+    map.on('moveend layeradd layerremove', update);
+
+    function toggle(e) {
+      e.stopPropagation();
+      e.preventDefault();
+
+      var controlContainer = $('.leaflet-control-container .leaflet-top.leaflet-right');
+
+      if ($ui.is(':visible')) {
+        $(control.options.uiPane).hide();
+        controlContainer.css({paddingRight: '0'});
+      } else {
+        $(control.options.uiPane).show();
+        controlContainer.css({paddingRight: '200px'});
+      }
     }
-});
 
-L.control.share = function(options) {
-    return new L.Control.Share(options);
+    function update() {
+      var center = map.getCenter().wrap();
+      var layers = getMapLayers(map);
+      $input.val(options.getUrl(map));
+    }
+
+    return $container[0];
+  };
+
+  return control;
 };