]> git.openstreetmap.org Git - nominatim-ui.git/blob - src/components/SearchSection.svelte
validate countrycodes, lat, lon fields even when hidden (#109)
[nominatim-ui.git] / src / components / SearchSection.svelte
1 <script>
2   import UrlSubmitForm from '../components/UrlSubmitForm.svelte';
3
4   import { map_store } from '../lib/stores.js';
5   import { get } from 'svelte/store';
6
7   export let bStructuredSearch = false;
8   export let api_request_params = {};
9   let sViewBox;
10   let lat;
11   let lon;
12
13   function map_viewbox_as_string(map) {
14     var bounds = map.getBounds();
15     var west = bounds.getWest();
16     var east = bounds.getEast();
17
18     if ((east - west) >= 360) { // covers more than whole planet
19       west = map.getCenter().lng - 179.999;
20       east = map.getCenter().lng + 179.999;
21     }
22     east = L.latLng(77, east).wrap().lng;
23     west = L.latLng(77, west).wrap().lng;
24
25     return [
26       west.toFixed(5), // left
27       bounds.getNorth().toFixed(5), // top
28       east.toFixed(5), // right
29       bounds.getSouth().toFixed(5) // bottom
30     ].join(',');
31   }
32
33   function set_viewbox(map) {
34     let use_viewbox = document.getElementById('use_viewbox');
35     if (use_viewbox && use_viewbox.checked) {
36       sViewBox = map_viewbox_as_string(map);
37     } else {
38       sViewBox = '';
39     }
40   }
41
42   function update_reverse_link(map) {
43     let center_lat_lng = map.wrapLatLng(map.getCenter());
44     lat = center_lat_lng.lat.toFixed(5);
45     lon = center_lat_lng.lng.toFixed(5);
46   }
47
48   map_store.subscribe(map => {
49     if (!map) { return; }
50
51     map.on('move', function () {
52       set_viewbox(map);
53       update_reverse_link(map);
54     });
55
56     map.on('load', function () {
57       set_viewbox(map);
58       update_reverse_link(map);
59     });
60   });
61
62   function reset_viewbox() {
63     let map = get(map_store);
64     if (map) { set_viewbox(map); }
65   }
66
67   function set_bounded(e) {
68     document.querySelector('input[name=bounded]').value = e.target.checked ? 1 : '';
69   }
70
71   function set_dedupe(e) {
72     document.querySelector('input[name=dedupe]').value = e.target.checked ? 1 : '';
73   }
74
75   function set_api_param(e) {
76     document.querySelector('input[name=' + e.target.dataset.apiParam + ']').value = e.target.value;
77   }
78 </script>
79
80 <ul class="nav nav-tabs">
81   <li class="nav-item">
82     <a class="nav-link" class:active={!bStructuredSearch} data-toggle="tab" href="#simple">Simple</a>
83   </li>
84   <li class="nav-item">
85     <a class="nav-link" class:active={bStructuredSearch} data-toggle="tab" href="#structured">Structured</a>
86   </li>
87 </ul>
88
89 <div class="tab-content py-2">
90   <div class="tab-pane" class:active={!bStructuredSearch} id="simple" role="tabpanel">
91     <UrlSubmitForm page="search">
92       <input id="q"
93              name="q"
94              type="text"
95              class="form-control form-control-sm"
96              placeholder="Search"
97              value="{api_request_params.q || ''}" />
98
99       <button type="submit" class="btn btn-primary btn-sm mx-1">Search</button>
100       <input type="hidden" name="viewbox" value="{sViewBox || ''}" />
101       <input type="hidden" name="dedupe" value="{!api_request_params.dedupe ? '' : 1}" />
102       <input type="hidden" name="bounded" value="{api_request_params.bounded ? 1 : ''}" />
103       <input type="hidden" name="accept-language" value="{api_request_params['accept-language'] || ''}" />
104       <input type="hidden" name="countrycodes" value="{api_request_params.countrycodes || ''}"
105                                                     pattern="^[a-zA-Z]{'{2}'}(,[a-zA-Z]{'{2}'})*$" />
106       <input type="hidden" name="limit" value="{api_request_params.limit || ''}" />
107       <input type="hidden" name="polygon_threshold" value="{api_request_params.polygon_threshold || ''}" />
108     </UrlSubmitForm>
109   </div>
110   <div class="tab-pane" class:active={bStructuredSearch} id="structured" role="tabpanel">
111     <UrlSubmitForm page="search">
112       <input name="street" type="text" class="form-control form-control-sm mr-1"
113              placeholder="House number/Street"
114              value="{api_request_params.street || ''}" />
115       <input name="city" type="text" class="form-control form-control-sm mr-1"
116              placeholder="City"
117              value="{api_request_params.city || ''}" />
118       <input id="county" name="county" type="text" class="form-control form-control-sm mr-1"
119              placeholder="County"
120              value="{api_request_params.county || ''}" />
121       <input name="state" type="text" class="form-control form-control-sm mr-1"
122              placeholder="State"
123              value="{api_request_params.state || ''}" />
124       <input name="country" type="text" class="form-control form-control-sm mr-1"
125              placeholder="Country"
126              value="{api_request_params.country || ''}" />
127       <input name="postalcode" type="text" class="form-control form-control-sm mr-1"
128              placeholder="Postal Code"
129              value="{api_request_params.postalcode || ''}" />
130
131       <button type="submit" class="btn btn-primary btn-sm">Search</button>
132       <input type="hidden" name="viewbox" value="{sViewBox || ''}" />
133       <input type="hidden" name="dedupe" value="{!api_request_params.dedupe ? '' : 1}" />
134       <input type="hidden" name="bounded" value="{api_request_params.bounded ? 1 : ''}" />
135       <input type="hidden" name="accept-language" value="{api_request_params['accept-language'] || ''}" />
136       <input type="hidden" name="countrycodes" value="{api_request_params.countrycodes || ''}"
137                                               pattern="^[a-zA-Z]{'{2}'}(,[a-zA-Z]{'{2}'})*$" />
138       <input type="hidden" name="limit" value="{api_request_params.limit || ''}" />
139       <input type="hidden" name="polygon_threshold" value="{api_request_params.polygon_threshold || ''}" />
140     </UrlSubmitForm>
141   </div>
142 </div> <!-- /tab-content -->
143
144 <!-- Additional options -->
145 <details id="searchAdvancedOptions">
146   <summary><small>Advanced options</small></summary>
147   <ul>
148     <li>
149       <div class="form-check form-check-inline">
150         <label class="form-check-label" for="use_viewbox">apply viewbox</label>
151         <input type="checkbox" class="form-check-input api-param-setting"
152                id="use_viewbox" checked={api_request_params.viewbox} on:change={reset_viewbox}>
153       </div>
154     </li>
155
156     <li>
157       <div class="form-check form-check-inline">
158         <label class="form-check-label" for="option_bounded">bounded to viewbox</label>
159         <input type="checkbox" class="form-check-input api-param-setting"
160                id="option_bounded" checked={!!api_request_params.bounded} on:change={set_bounded}>
161       </div>
162     </li>
163
164     <li>
165       <div class="form-check form-check-inline">
166         <label class="form-check-label" for="option_dedupe">deduplicate results</label>
167         <input type="checkbox" class="form-check-input api-param-setting"
168                id="option_dedupe" checked={!!api_request_params.dedupe} on:change={set_dedupe}>
169       </div>
170     </li>
171
172     <li>
173       <label for="option_limit">Maximum number of results</label>
174       <input type="number" class="form-control form-control-sm d-inline w-auto api-param-setting"
175              data-api-param="limit" id="option_limit" min="1" max="50"
176              value="{api_request_params.limit || ''}"
177              on:change={set_api_param}>
178     </li>
179
180     <li>
181       <label for="option_polygon_threshold">Polygon simplification</label>
182       <input type="number" class="form-control form-control-sm d-inline w-auto api-param-setting"
183              data-api-param="polygon_threshold" id="option_polygon_threshold" min="0.0"  max="1.0" step="0.001"
184              value="{api_request_params.polygon_threshold || ''}"
185              on:change={set_api_param}>
186     </li>
187
188     <li>
189       <label for="accept_lang">Languages</label>
190       <input type="text" placeholder="e.g. en,zh-Hant" class="form-control form-control-sm d-inline w-auto api-param-setting"
191              data-api-param="accept-language" id="accept_lang" size="15"
192              value="{api_request_params['accept-language'] || ''}"
193              on:change={set_api_param}>
194     </li>
195
196     <li>
197       <label for="option_ccode">Country Codes</label>
198       <input type="text" placeholder="e.g. de,gb" class="form-control form-control-sm d-inline w-auto api-param-setting"
199              data-api-param="countrycodes" id="option_ccode" size="15"
200              value="{api_request_params.countrycodes || ''}"
201              pattern="^[a-zA-Z]{'{2}'}(,[a-zA-Z]{'{2}'})*$"
202              on:change={set_api_param}>
203     </li>
204   </ul>
205 </details>
206
207 <style>
208   .nav-tabs {
209     font-size: 0.8em;
210     margin-top: -1em;
211   }
212
213   .nav-link {
214     padding: 0.1rem 1rem;
215   }
216
217   #q {
218     width: 500px;
219     max-width: 100%;
220   }
221
222   #searchAdvancedOptions ul {
223     list-style-type: none;
224     padding: 0;
225     font-size: 0.85rem;
226   }
227
228   #searchAdvancedOptions li {
229     display: inline-block;
230     padding: 4px 10px;
231     border-radius: 5px;
232     border: 1px dotted #ccc;
233     margin-right: 1em;
234   }
235
236   #searchAdvancedOptions label {
237     margin-right: 0.5em;
238   }
239
240 </style>