]> git.openstreetmap.org Git - nominatim-ui.git/blob - src/lib/helpers.js
when searching for OSM Url, show detail page result page
[nominatim-ui.git] / src / lib / helpers.js
1 import escapeHtml from 'escape-html';
2
3 export function formatOSMType(sType, bExcludeExternal) {
4   if (sType === 'N') return 'node';
5   if (sType === 'W') return 'way';
6   if (sType === 'R') return 'relation';
7
8   if (!bExcludeExternal) return '';
9
10   if (sType === 'T') return 'way';
11   if (sType === 'I') return 'way';
12
13   return '';
14 }
15
16 // https://www.openstreetmap.org/relation/123 => ['R', 123]
17 // w123 => ['W', 123]
18 export function identifyLinkInQuery(query) {
19   if (!query) return undefined;
20   const m = query.match(/\/(relation|way|node)\/(\d+)/) || query.match(/^([nwr])(\d+)$/i);
21   if (!m) return undefined;
22   return [m[1][0].toUpperCase(), Number(m[2])];
23 }
24
25 export function osmLink(aPlace) {
26   if (!aPlace.osm_type) return '';
27   var sOSMType = formatOSMType(aPlace.osm_type, false);
28   if (!sOSMType) return '';
29
30   return '<a href="https://www.openstreetmap.org/' + sOSMType + '/' + aPlace.osm_id + '">' + sOSMType + ' ' + aPlace.osm_id + '</a>';
31 }
32
33 export function formatLabel(aPlace) {
34   if (aPlace.label) return aPlace.label;
35
36   function capitalize(s) {
37     return s && s[0].toUpperCase() + s.slice(1);
38   }
39
40   if (aPlace.type && aPlace.type === 'yes' && aPlace.category) {
41     return capitalize(aPlace.category.replace(/_/g, ' '));
42   }
43   if (aPlace.type) {
44     return capitalize(aPlace.type.replace(/_/g, ' '));
45   }
46   return '';
47 }
48
49 /* en:London_Borough_of_Redbridge => https://en.wikipedia.org/wiki/London_Borough_of_Redbridge */
50 export function wikipediaLink(aPlace) {
51   if (!aPlace.calculated_wikipedia) return '';
52
53   var parts = aPlace.calculated_wikipedia.split(':', 2);
54
55   var sTitle = escapeHtml(aPlace.calculated_wikipedia);
56   var sLanguage = escapeHtml(parts[0]);
57   var sArticle = escapeHtml(parts[1]);
58
59   return '<a href="https://' + sLanguage + '.wikipedia.org/wiki/' + sArticle + '" target="_blank">' + sTitle + '</a>';
60 }
61
62 export function coverageType(aPlace) {
63   return (aPlace.isarea ? 'Polygon' : 'Point');
64 }
65
66 export function isAdminBoundary(aPlace) {
67   return aPlace.category === 'boundary' && aPlace.type === 'administrative';
68 }
69
70 export function formatAddressRank(iRank) {
71   if (iRank < 4) return 'other';
72   if (iRank < 6) return 'country';
73   if (iRank < 8) return 'region';
74   if (iRank < 10) return 'state';
75   if (iRank < 12) return 'state district';
76   if (iRank < 14) return 'county';
77   if (iRank < 16) return 'municipality';
78   if (iRank < 18) return 'city / town / village';
79   if (iRank < 20) return 'city / village district';
80   if (iRank < 22) return 'suburb / hamlet';
81   if (iRank < 24) return 'neighbourhood';
82   if (iRank < 26) return 'city block / square';
83   if (iRank === 26) return 'major street';
84   if (iRank === 27) return 'minory street / path';
85   if (iRank <= 30) return 'house / building';
86   return 'other';
87 }
88
89 export function formatPlaceType(aPlace) {
90   var sOut = aPlace.class + ':' + aPlace.type;
91   if (aPlace.type && aPlace.type === 'administrative' && aPlace.place_type) {
92     sOut = sOut + ' (' + aPlace.place_type + ')';
93   }
94   return escapeHtml(sOut);
95 }
96
97 // Any over 15 are invalid data in OSM anyway
98 export function formatAdminLevel(iLevel) {
99   return (iLevel && iLevel < 15 ? iLevel : '');
100 }
101
102 export function formatDistance(fDistance, bInMeters) {
103   if (bInMeters) {
104     if (fDistance < 1) return '0';
105     var sFormatted = (fDistance >= 1000)
106       ? Math.round(fDistance / 1000, 1) + ' km'
107       : Math.round(fDistance, 0) + ' m';
108
109     return '<abbr class="distance" title="' + fDistance + ' meters">~' + sFormatted + '</abbr>';
110   }
111
112   // spheric distance, http://postgis.net/docs/ST_Distance_Spheroid.html
113   if (fDistance === 0) return '0';
114
115   return '<abbr class="distance" title="spheric distance ' + fDistance + '">~'
116       + (Math.round(fDistance * 1000, 4) / 1000)
117       + '</abbr>';
118 }
119
120 // mark partial tokens (those starting with a space) with a star for readability
121 export function formatKeywordToken(sToken) {
122   return (sToken[0] === ' ' ? '*' : '') + escapeHtml(sToken);
123 }
124
125 export function zoomLevels() {
126   const aZoomLevels = [
127     /*  0 */ 'Continent / Sea',
128     /*  1 */ '',
129     /*  2 */ '',
130     /*  3 */ 'Country',
131     /*  4 */ '',
132     /*  5 */ 'State',
133     /*  6 */ 'Region',
134     /*  7 */ '',
135     /*  8 */ 'County',
136     /*  9 */ '',
137     /* 10 */ 'City',
138     /* 11 */ '',
139     /* 12 */ 'Town / Village',
140     /* 13 */ '',
141     /* 14 */ 'Suburb',
142     /* 15 */ '',
143     /* 16 */ 'Street',
144     /* 17 */ '',
145     /* 18 */ 'Building',
146     /* 19 */ '',
147     /* 20 */ '',
148     /* 21 */ ''
149   ];
150   return aZoomLevels;
151 }