]> git.openstreetmap.org Git - nominatim-ui.git/blob - src/components/ResultsList.svelte
Merge remote-tracking branch 'upstream/master'
[nominatim-ui.git] / src / components / ResultsList.svelte
1 <script>
2   import { results_store } from '../lib/stores.js';
3   import { formatLabel } from '../lib/helpers.js';
4
5   import DetailsLink from './DetailsLink.svelte';
6   import Welcome from './Welcome.svelte';
7   import MapIcon from './MapIcon.svelte';
8
9   export let reverse_search = false;
10   export let current_result = null;
11
12   let aSearchResults;
13   let iHighlightNum;
14   let sMoreURL;
15
16   results_store.subscribe(data => {
17     if (!data) { return; }
18     aSearchResults = data;
19     iHighlightNum = 0;
20     current_result = aSearchResults[0];
21
22
23     let search_params = new URLSearchParams(window.location.search);
24
25     let aResults = data;
26     // lonvia wrote: https://github.com/osm-search/nominatim-ui/issues/24
27     // I would suggest to remove the guessing and always show the link. Nominatim only returns
28     // one or two results when it believes the result to be a good enough match.
29     // if (aResults.length >= 10) {
30     var aExcludePlaceIds = [];
31     if (search_params.has('exclude_place_ids')) {
32       aExcludePlaceIds = search_params.get('exclude_place_ids').split(',');
33     }
34     for (var i = 0; i < aResults.length; i += 1) {
35       aExcludePlaceIds.push(aResults[i].place_id);
36     }
37     var parsed_url = new URLSearchParams(window.location.search);
38     parsed_url.set('exclude_place_ids', aExcludePlaceIds.join(','));
39     sMoreURL = '?' + parsed_url.toString();
40   });
41
42   function handleClick(e) {
43     let result_el = e.target;
44     if (!result_el.className.match('result')) {
45       result_el = result_el.parentElement;
46     }
47     let pos = Number(result_el.dataset.position);
48
49     current_result = aSearchResults[pos];
50     iHighlightNum = pos;
51   }
52
53 </script>
54
55 {#if aSearchResults && aSearchResults.length > 0}
56   <div id="searchresults">
57
58     {#each aSearchResults as aResult, iResNum}
59       <div class="result" class:highlight={iResNum === iHighlightNum} data-position="{iResNum}" on:click|stopPropagation={handleClick}>
60         <div style="float:right">
61           <MapIcon aPlace={aResult} />
62         </div>
63         <span class="name">{aResult.display_name}</span>
64         <span class="type">{formatLabel(aResult)}</span>
65         <p class="coords">{aResult.lat},{aResult.lon}</p>
66
67         <DetailsLink extra_classes="btn btn-outline-secondary btn-sm" feature={aResult}>details</DetailsLink>
68       </div>
69     {/each}
70
71     {#if sMoreURL && !reverse_search}
72       <div class="more">
73         <a class="btn btn-primary" href="{sMoreURL}">
74           Search for more results
75         </a>
76       </div>
77     {/if}
78   </div>
79 {:else if aSearchResults}
80   {#if reverse_search}
81     <div id="intro" class="sidebar">Search for coordinates or click anywhere on the map.</div>
82   {:else}
83     <div class="noresults">No search results found</div>
84   {/if}
85 {:else}
86   <Welcome/>
87 {/if}
88
89 <style>
90   .result {
91     font-size: 0.8em;
92     margin: 5px;
93     margin-top:0px;
94     padding: 4px 8px;
95     border-radius: 2px;
96     background:#F0F7FF;
97     border: 2px solid #D7E7FF;
98     cursor:pointer;
99     min-height: 5em;
100   }
101
102   .result.highlight {
103     background-color: #D9E7F7;
104     border-color: #9DB9E4;
105   }
106   .result.highlight :global(a) {
107     margin: 10px auto;
108     display: block;
109     max-width: 10em;
110     padding: 1px;
111     background-color: white;
112   }
113   .result .type{
114     color: gray;
115     font-size: 0.8em;
116   }
117   .result :global(a) {
118     display: none;
119   }
120
121   .result .coords {
122     display: none;  
123   }
124
125   .noresults{
126     text-align: center;
127     padding: 1em;
128   }
129
130   .more{
131     text-align:center;
132     margin-top: 1em;
133   }
134
135   .result.highlight :global(a):hover {
136     color: #111;
137   }
138 </style>