Passed
Push — develop ( bfb111...4fd4e2 )
by Xaver
01:12
created

map.js ➔ ... ➔ ?!?.forEach.call   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
cc 1
eloc 2
c 1
b 0
f 1
nc 1
dl 0
loc 3
rs 10
nop 1
1
define(['map/clientlayer', 'map/labellayer', 'map/button', 'leaflet', 'map/activearea'],
2
  function (ClientLayer, LabelLayer, Button, L) {
3
    'use strict';
4
5
    var options = {
6
      worldCopyJump: true,
7
      zoomControl: true,
8
      minZoom: 0
9
    };
10
11
    return function (linkScale, sidebar, buttons) {
12
      var self = this;
13
      var savedView;
14
15
      var map;
16
      var layerControl;
17
      var baseLayers = {};
18
19
      function saveView() {
20
        savedView = {
21
          center: map.getCenter(),
22
          zoom: map.getZoom()
23
        };
24
      }
25
26
      function contextMenuOpenLayerMenu() {
27
        document.querySelector('.leaflet-control-layers').classList.add('leaflet-control-layers-expanded');
28
      }
29
30
      function setActiveArea() {
31
        setTimeout(function () {
32
          map.setActiveArea({
33
            position: 'absolute',
34
            left: sidebar.getWidth() + 'px',
35
            right: 0,
36
            top: 0,
37
            bottom: 0
38
          });
39
        }, 300);
40
      }
41
42
      var el = document.createElement('div');
43
      el.classList.add('map');
44
45
      map = L.map(el, options);
46
      map.setActiveArea({
47
        position: 'absolute',
48
        left: sidebar.getWidth() + 'px',
49
        right: 0,
50
        top: 0,
51
        bottom: 0
52
      });
53
54
      var now = new Date();
55
      config.mapLayers.forEach(function (item, i) {
56
        if ((typeof item.config.start === 'number' && item.config.start <= now.getHours()) || (typeof item.config.end === 'number' && item.config.end > now.getHours())) {
57
          item.config.order = item.config.start * -1;
58
        } else {
59
          item.config.order = i;
60
        }
61
      });
62
63
      config.mapLayers = config.mapLayers.sort(function (a, b) {
64
        return a.config.order - b.config.order;
65
      });
66
67
      var layers = config.mapLayers.map(function (d) {
68
        return {
69
          'name': d.name,
70
          'layer': L.tileLayer(d.url.replace('{retina}', L.Browser.retina ? '@2x' : ''), d.config)
71
        };
72
      });
73
74
      map.addLayer(layers[0].layer);
75
76
      layers.forEach(function (d) {
77
        baseLayers[d.name] = d.layer;
78
      });
79
80
      var button = new Button(map, buttons);
81
82
      map.on('locationfound', button.locationFound);
83
      map.on('locationerror', button.locationError);
84
      map.on('dragend', saveView);
85
      map.on('contextmenu', contextMenuOpenLayerMenu);
86
87
      if (config.geo) {
88
        [].forEach.call(config.geo, function (geo) {
89
          L.geoJSON(geo.json, geo.option).addTo(map);
90
        });
91
      }
92
93
      button.init();
94
95
      layerControl = L.control.layers(baseLayers, [], { position: 'bottomright' });
96
      layerControl.addTo(map);
97
98
      map.zoomControl.setPosition('topright');
99
100
      var clientLayer = new ClientLayer({ minZoom: config.clientZoom });
101
      clientLayer.addTo(map);
102
      clientLayer.setZIndex(5);
103
104
      var labelLayer = new LabelLayer({ minZoom: config.labelZoom });
105
      labelLayer.addTo(map);
106
      labelLayer.setZIndex(6);
107
108
      sidebar.button.addEventListener('visibility', setActiveArea);
109
110
      map.on('zoom', function () {
111
        clientLayer.redraw();
112
        labelLayer.redraw();
113
      });
114
115
      map.on('baselayerchange', function (e) {
116
        map.options.maxZoom = e.layer.options.maxZoom;
117
        clientLayer.options.maxZoom = map.options.maxZoom;
118
        labelLayer.options.maxZoom = map.options.maxZoom;
119
        if (map.getZoom() > map.options.maxZoom) {
120
          map.setZoom(map.options.maxZoom);
121
        }
122
123
        var style = document.querySelector('.css-mode:not([media="not"])');
124
        if (style && e.layer.options.mode !== '' && !style.classList.contains(e.layer.options.mode)) {
125
          style.media = 'not';
126
          labelLayer.updateLayer();
127
        }
128
        if (e.layer.options.mode) {
129
          var newStyle = document.querySelector('.css-mode.' + e.layer.options.mode);
130
          newStyle.media = '';
131
          newStyle.appendChild(document.createTextNode(''));
132
          labelLayer.updateLayer();
133
        }
134
      });
135
136
      map.on('load', function () {
137
        var inputs = document.querySelectorAll('.leaflet-control-layers-selector');
138
        [].forEach.call(inputs, function (input) {
139
          input.setAttribute('role', 'radiogroup');
140
          input.setAttribute('aria-label', input.nextSibling.innerHTML.trim());
141
        });
142
      });
143
144
      var nodeDict = {};
145
      var linkDict = {};
146
      var highlight;
147
148
      function resetMarkerStyles(nodes, links) {
149
        Object.keys(nodes).forEach(function (d) {
150
          nodes[d].resetStyle();
151
        });
152
153
        Object.keys(links).forEach(function (d) {
154
          links[d].resetStyle();
155
        });
156
      }
157
158
      function setView(bounds, zoom) {
159
        map.fitBounds(bounds, { maxZoom: (zoom ? zoom : config.nodeZoom) });
160
      }
161
162
      function goto(m) {
163
        var bounds;
164
165
        if ('getBounds' in m) {
166
          bounds = m.getBounds();
167
        } else {
168
          bounds = L.latLngBounds([m.getLatLng()]);
169
        }
170
171
        setView(bounds);
172
173
        return m;
174
      }
175
176
      function updateView(nopanzoom) {
177
        resetMarkerStyles(nodeDict, linkDict);
178
        var m;
179
180
        if (highlight !== undefined) {
181
          if (highlight.type === 'node' && nodeDict[highlight.o.node_id]) {
182
            m = nodeDict[highlight.o.node_id];
183
            m.setStyle(config.map.highlightNode);
184
          } else if (highlight.type === 'link' && linkDict[highlight.o.id]) {
185
            m = linkDict[highlight.o.id];
186
            m.setStyle(config.map.highlightLink);
187
          }
188
        }
189
190
        if (!nopanzoom) {
191
          if (m) {
192
            goto(m);
193
          } else if (savedView) {
194
            map.setView(savedView.center, savedView.zoom);
195
          } else {
196
            setView(config.fixedCenter);
197
          }
198
        }
199
      }
200
201
      self.setData = function setData(data) {
202
        nodeDict = {};
203
        linkDict = {};
204
205
        clientLayer.setData(data);
206
        labelLayer.setData(data, map, nodeDict, linkDict, linkScale);
207
208
        updateView(true);
209
      };
210
211
      self.resetView = function resetView() {
212
        button.disableTracking();
213
        highlight = undefined;
214
        updateView();
215
      };
216
217
      self.gotoNode = function gotoNode(d) {
218
        button.disableTracking();
219
        highlight = { type: 'node', o: d };
220
        updateView();
221
      };
222
223
      self.gotoLink = function gotoLink(d) {
224
        button.disableTracking();
225
        highlight = { type: 'link', o: d[0] };
226
        updateView();
227
      };
228
229
      self.gotoLocation = function gotoLocation(d) {
230
        button.disableTracking();
231
        map.setView([d.lat, d.lng], d.zoom);
232
      };
233
234
      self.destroy = function destroy() {
235
        button.clearButtons();
236
        sidebar.button.removeEventListener('visibility', setActiveArea);
237
        map.remove();
238
239
        if (el.parentNode) {
240
          el.parentNode.removeChild(el);
241
        }
242
      };
243
244
      self.render = function render(d) {
245
        d.appendChild(el);
246
        map.invalidateSize();
247
      };
248
249
      return self;
250
    };
251
  });
252