1
0
mirror of https://github.com/elk-zone/elk synced 2024-12-14 06:38:05 +09:00
elk/components/search/SearchResult.vue

32 lines
931 B
Vue
Raw Normal View History

2022-12-18 06:35:07 +09:00
<script setup lang="ts">
import type { SearchResult } from './types'
2023-01-06 01:48:20 +09:00
defineProps<{
result: SearchResult
active: boolean
}>()
2022-12-18 06:35:07 +09:00
const onActivate = () => {
(document.activeElement as HTMLElement).blur()
}
</script>
<template>
2023-01-06 07:50:14 +09:00
<CommonScrollIntoView
as="RouterLink"
hover:bg-active
:active="active"
:to="result.to" py2 block px2
:aria-selected="active"
:class="{ 'bg-active': active }"
@click="() => onActivate()"
>
2022-12-18 06:35:07 +09:00
<SearchHashtagInfo v-if="result.type === 'hashtag'" :hashtag="result.hashtag" />
2023-01-06 07:50:14 +09:00
<SearchAccountInfo v-else-if="result.type === 'account' && result.account" :account="result.account" />
2023-01-06 01:48:20 +09:00
<StatusCard v-else-if="result.type === 'status' && result.status" :status="result.status" :actions="false" :show-reply-to="false" />
<!-- <div v-else-if="result.type === 'action'" text-center>
2022-12-18 06:35:07 +09:00
{{ result.action!.label }}
2023-01-06 01:48:20 +09:00
</div> -->
</CommonScrollIntoView>
2022-12-18 06:35:07 +09:00
</template>