summaryrefslogtreecommitdiff
path: root/src/components/jet/shelf/SearchResultShelf.svelte
blob: 9c15d3e856c290e0fe77b0c3bdf5ab85e61eec30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<script lang="ts" context="module">
    import type {
        AppSearchResult,
        Shelf,
        SearchResult,
        AppEventSearchResult,
    } from '@jet-app/app-store/api/models';

    import AppSearchResultItem, {
        isAppSearchResult,
        isAppEventSearchResult,
    } from '~/components/jet/item/SearchResult/AppSearchResultItem.svelte';

    /**
     * All sub-classes of {@linkcode SearchResult} that this component can handle rendering
     */
    type RenderableSearchResult = AppSearchResult | AppEventSearchResult;

    interface SearchResultShelf extends Shelf {
        items: SearchResult[];
    }

    export function isSearchResultShelf(
        shelf: Shelf,
    ): shelf is SearchResultShelf {
        return (
            shelf.contentType === 'searchResult' && Array.isArray(shelf.items)
        );
    }

    export function isRenderableInSearchResultsShelf(
        item: SearchResult,
    ): item is RenderableSearchResult {
        return isAppSearchResult(item) || isAppEventSearchResult(item);
    }
</script>

<script lang="ts">
    import Grid from '~/components/Grid.svelte';
    import ShelfWrapper from '~/components/Shelf/Wrapper.svelte';

    export let shelf: SearchResultShelf;
</script>

<ShelfWrapper {shelf}>
    <Grid gridType="SearchResult" items={shelf.items} let:item>
        <AppSearchResultItem {item} />
    </Grid>
</ShelfWrapper>