]> git.openstreetmap.org Git - nominatim-ui.git/blob - src/handlebar_helpers.js
detailpage: add warning if too many child address lines
[nominatim-ui.git] / src / handlebar_helpers.js
1 function formatOSMType(sType, bExcludeExternal)
2 {
3     if (sType == 'N') return 'node';
4     if (sType == 'W') return 'way';
5     if (sType == 'R') return 'relation';
6
7     if (!bExcludeExternal) return '';
8
9     if (sType == 'T') return 'way';
10     if (sType == 'I') return 'way';
11
12     return '';
13 }
14
15 Handlebars.registerHelper({
16     isaddresses_unused: function(aAddressLine) {
17         return ((aAddressLine.isaddress && aAddressLine.isaddress == 'f') ? 'notused' : '');
18     },
19     // { osm_type: 'R', osm_id: 12345 }
20     // <a href="//www.openstreetmap.org/relation/12345">relation 12345</a
21     osmLink: function(aPlace) {
22         if (!aPlace.osm_type) return '';
23         var sOSMType = formatOSMType(aPlace.osm_type, false);
24         if (!sOSMType) return '';
25
26         return new Handlebars.SafeString(
27             '<a href="//www.openstreetmap.org/' + sOSMType + '/' + aPlace.osm_id + '">' + sOSMType + ' ' + aPlace.osm_id + '</a>'
28         );
29     },
30     /* en:London_Borough_of_Redbridge => https://en.wikipedia.org/wiki/London_Borough_of_Redbridge */
31     wikipediaLink: function(aPlace) {
32         if (! aPlace.wikipedia) return '';
33
34         var parts = aPlace.wikipedia.split(':', 2);
35
36         var sTitle = Handlebars.escapeExpression(aPlace.wikipedia),
37             sLanguage = Handlebars.escapeExpression(parts[0]),
38             sArticle = Handlebars.escapeExpression(parts[1]);
39
40         return new Handlebars.SafeString(
41             '<a href="https://' + sLanguage + '.wikipedia.org/wiki/' + sArticle + '" target="_blank">' + sTitle + '</a>'
42         );
43     },
44     // { osm_type: 'R', osm_id: 12345 }
45     // <a href="//www.openstreetmap.org/relation/12345">relation 12345</a
46     detailsLink: function(aFeature, sTitle) {
47         if (!aFeature) return '';
48         if (!aFeature.place_id) return '';
49
50         sTitle = 'details >';
51         var sTitle = Handlebars.escapeExpression(sTitle);
52
53         return new Handlebars.SafeString(
54             '<a href="details.html?place_id=' + aFeature.place_id + '">' + (sTitle ? sTitle : aFeature.place_id ) + '</a>'
55         );
56     },
57     coverageType: function(aPlace) {
58         return (aPlace.isarea === 't' ? 'Polygon' : 'Point');
59     },
60     // fDistance is in meters
61     formatDistance: function(fDistanceMeters) {
62         if (fDistanceMeters < 1) return '0';
63
64         var formatted = (fDistanceMeters >= 1000) ?
65             Math.round(fDistanceMeters/1000, 1) + ' km' :
66             Math.round(fDistanceMeters, 0) + ' m';
67
68         return new Handlebars.SafeString(
69             '<abbr class="distance" title="' + fDistanceMeters + '">~' + formatted + '</abbr>'
70         );
71     },
72     // mark partial tokens (those starting with a space) with a star for readability
73     formatKeywordToken: function(sToken) {
74         return (sToken[0] == ' ' ? '*' : '') + Handlebars.escapeExpression(sToken);
75     },
76     // Any over 15 are invalid data in OSM anyway
77     formatAdminLevel: function(iLevel) {
78         return (iLevel < 15 ? iLevel : '');
79     },
80     formatMapIcon: function(sIcon) {
81         if (!sIcon) return;
82         
83         var url = sIcon.match(/png$/) ? Nominatim_Config.Images_Base_Url + '/' + sIcon : Nominatim_Config.Images_Base_Url + 'nominatim/images/mapicons/' + sIcon + '.n.32.png';
84
85         return new Handlebars.SafeString(
86             '<img class="mapicon" src="' + url + '" alt="' + sIcon + '"/>'
87         );
88     },
89     formatLabel: function(aPlace) {
90         if (aPlace.label) return aPlace.label;
91
92         function capitalize(s)
93         {
94             return s && s[0].toUpperCase() + s.slice(1);
95         }
96
97         if (aPlace.type && aPlace.type === 'yes') {
98             return capitalize(aPlace.class.replace(/_/g, ' '));
99         } else {
100             return capitalize(aPlace.type.replace(/_/g, ' '));
101         }
102     },
103     tooManyParentLinesWarning: function(aPlace) {
104         if (!aPlace.parentof_lines) return;
105
106         var c = 0;
107         for (var type in aPlace.parentof_lines) {
108             c = c + type.length+1;
109         }
110         if (c < 500) return;
111
112         return new Handlebars.SafeString(
113             '<p>There are more child objects which are not shown.</p>'
114         );
115     },
116     zoomLevels: function(iSelectedZoom) {
117         var aZoomLevels = [
118             /*  0 */ 'Continent / Sea',
119             /*  1 */ '',
120             /*  2 */ '',
121             /*  3 */ 'Country',
122             /*  4 */ '',
123             /*  5 */ 'State',
124             /*  6 */ 'Region',
125             /*  7 */ '',
126             /*  8 */ 'County',
127             /*  9 */ '',
128             /* 10 */ 'City',
129             /* 11 */ '',
130             /* 12 */ 'Town / Village',
131             /* 13 */ '',
132             /* 14 */ 'Suburb',
133             /* 15 */ '',
134             /* 16 */ 'Street',
135             /* 17 */ '',
136             /* 18 */ 'Building',
137             /* 19 */ '',
138             /* 20 */ '',
139             /* 21 */ ''
140         ];
141
142         var select = $('<select>');
143         var option = jQuery('<option>', { value: '', text: '--'});
144         if (typeof(iSelectedZoom) === 'undefined') option.attr('selected', 'selected');
145         option.appendTo(select);
146
147         jQuery.each(aZoomLevels, function(i, title) {
148             var option = jQuery('<option>', { value: i, text: i + ' ' + title });
149             if (i == iSelectedZoom) option.attr('selected', 'selected');
150             option.appendTo(select);
151         });
152         return new Handlebars.SafeString(select.html());
153     }
154 });