]> git.openstreetmap.org Git - nominatim-ui.git/blob - src/components/DetailsLink.svelte
last update -x ago-, spinner for loading indicator (#83)
[nominatim-ui.git] / src / components / DetailsLink.svelte
1 <script>
2   import { refresh_page } from '../lib/stores.js';
3
4   export let extra_classes = '';
5   export let feature = null;
6
7   let url_params = new URLSearchParams();
8   let href = 'details.html';
9
10   function formatShortOSMType(sType) {
11     if (sType === 'node') return 'N';
12     if (sType === 'way') return 'W';
13     if (sType === 'relation') return 'R';
14     return '';
15   }
16
17   function handleClick() {
18     refresh_page('details', url_params);
19   }
20
21   $: {
22     let new_params = new URLSearchParams();
23
24     if (feature !== null && feature.osm_type) {
25       if (feature.osm_type.length === 1) {
26         new_params.set('osmtype', feature.osm_type);
27       } else {
28         new_params.set('osmtype', formatShortOSMType(feature.osm_type));
29       }
30
31       new_params.set('osmid', feature.osm_id);
32
33       if (feature.class) {
34         new_params.set('class', feature.class);
35       } else if (feature.category) {
36         new_params.set('class', feature.category);
37       }
38     }
39
40     url_params = new_params;
41   }
42
43   $: {
44     let param_str = url_params.toString();
45     href = 'details.html' + (param_str ? '?' : '') + param_str;
46   }
47 </script>
48
49 <a on:click|preventDefault|stopPropagation={handleClick} href={href} class={extra_classes}><slot></slot></a>