<script>
import { results_store } from '../lib/stores.js';
- import { formatLabel, detailsURL } from '../lib/helpers.js';
+ import { formatLabel } from '../lib/helpers.js';
+ import DetailsLink from './DetailsLink.svelte';
import Welcome from './Welcome.svelte';
import MapIcon from './MapIcon.svelte';
</script>
{#if aSearchResults && aSearchResults.length > 0}
- <div id="searchresults">
+ <div id="searchresults" role="list">
{#each aSearchResults as aResult, iResNum}
- <div class="result" class:highlight={iResNum === iHighlightNum} data-position="{iResNum}" on:click|stopPropagation={handleClick}>
+ <!-- svelte-ignore a11y-no-noninteractive-element-interactions -->
+ <div class="result"
+ class:highlight={iResNum === iHighlightNum}
+ role="listitem"
+ data-position="{iResNum}"
+ on:click|stopPropagation={handleClick}
+ on:keypress|stopPropagation={handleClick}>
<div style="float:right">
<MapIcon aPlace={aResult} />
</div>
<span class="name">{aResult.display_name}</span>
<span class="type">{formatLabel(aResult)}</span>
- <p class="coords">{aResult.lat},{aResult.lon}</p>
+ <p class="coords">{aResult.lat},{aResult.lon}</p>
- <a class="details btn btn-outline-secondary btn-sm" href="{detailsURL(aResult)}">details</a>
+ <DetailsLink extra_classes="btn btn-outline-secondary btn-sm" feature={aResult}>
+ details
+ </DetailsLink>
</div>
{/each}
background-color: #D9E7F7;
border-color: #9DB9E4;
}
- .result.highlight .details {
+ .result.highlight :global(a) {
margin: 10px auto;
display: block;
max-width: 10em;
padding: 1px;
+ background-color: white;
}
.result .type{
color: gray;
font-size: 0.8em;
}
- .result .details {
+ .result :global(a) {
display: none;
}
.result .coords {
- display: none;
+ display: none;
}
.noresults{
margin-top: 1em;
}
- .btn-outline-secondary {
- background-color: white;
- }
-
- .btn-outline-secondary:hover {
+ .result.highlight :global(a):hover {
color: #111;
}
</style>