safetwitch/src/views/SearchPageView.vue

110 lines
3.2 KiB
Vue
Raw Normal View History

2023-04-16 12:37:35 -04:00
<script lang="ts">
2023-06-19 22:17:12 -04:00
import { ref } from 'vue'
2023-04-16 12:37:35 -04:00
import CategoryPreview from '@/components/CategoryPreview.vue'
import ErrorMessage from '@/components/ErrorMessage.vue'
import LoadingScreen from '@/components/LoadingScreen.vue'
import StreamPreviewVue from '@/components/StreamPreview.vue'
import ChannelPreview from '@/components/ChannelPreview.vue'
2023-06-19 22:17:12 -04:00
import { getEndpoint } from '@/mixins'
2023-07-20 13:57:01 -04:00
import type { SearchResult, StreamerData } from '@/types'
2023-06-19 22:17:12 -04:00
2023-04-16 12:37:35 -04:00
export default {
2023-07-20 13:57:01 -04:00
inject: ['protocol'],
setup() {
let data = ref<SearchResult>()
const status = ref<'ok' | 'error'>()
return {
data,
status
}
},
async mounted() {
await getEndpoint('api/search/?query=' + this.$route.query.query)
.catch(() => {
this.status = 'error'
})
.then((data) => {
this.data = data as SearchResult
})
},
methods: {
getStream(channel: StreamerData) {
return {
...channel.stream,
streamer: {
name: channel.username,
pfp: channel.pfp
2023-04-16 12:37:35 -04:00
}
2023-07-20 13:57:01 -04:00
}
2023-04-16 12:37:35 -04:00
}
2023-07-20 13:57:01 -04:00
},
components: {
CategoryPreview,
ErrorMessage,
LoadingScreen,
StreamPreviewVue,
ChannelPreview
}
2023-04-16 12:37:35 -04:00
}
</script>
<template>
2023-07-20 13:57:01 -04:00
<loading-screen v-if="!data && status != 'error'"></loading-screen>
<error-message v-else-if="status == 'error'"></error-message>
2023-04-16 12:37:35 -04:00
2023-07-20 13:57:01 -04:00
<div v-else-if="data" class="p-3 space-y-5">
<div v-if="data.channels.length > 0">
<h1 class="text-white font-bold text-4xl mb-2">
Channels related to "{{ $route.query.query }}"
</h1>
<ul class="flex overflow-x-scroll overflow-y-hidden">
<li
v-for="channel in data.channels"
:key="channel.id"
class="m-2 hover:scale-105 transition-transform"
>
<channel-preview :channel="channel"></channel-preview>
</li>
</ul>
</div>
2023-04-16 12:37:35 -04:00
2023-07-20 13:57:01 -04:00
<div v-if="data.categories.length > 0">
<h1 class="text-white font-bold text-4xl mb-2">
Categories related to "{{ $route.query.query }}"
</h1>
<ul class="flex max-w-[100vw] max-h-[27rem] overflow-x-scroll overflow-y-hidden">
<li
v-for="category in data.categories"
:key="category.name"
class="m-2 hover:scale-105 transition-transform"
>
<category-preview :category-data="category"></category-preview>
</li>
</ul>
</div>
2023-04-16 12:37:35 -04:00
2023-07-20 13:57:01 -04:00
<div v-if="data.relatedChannels.length > 0">
<h1 class="text-white font-bold text-4xl mb-2">
Live channels with the tag "{{ $route.query.query }}"
</h1>
<ul class="flex overflow-x-scroll space-x-5">
<li v-for="channel in data.relatedChannels" :key="channel.id">
<stream-preview-vue :stream="getStream(channel)"></stream-preview-vue>
</li>
</ul>
</div>
2023-04-16 12:37:35 -04:00
2023-07-20 13:57:01 -04:00
<div v-if="data.channelsWithTag.length > 0">
<h1 class="text-white font-bold text-4xl mb-2">
Channels with the tag "{{ $route.query.query }}"
</h1>
<ul class="inline-flex overflow-y-hidden overflow-x-scroll max-w-[100vw] space-x-5">
<li v-for="channel in data.channelsWithTag" :key="channel.id">
<channel-preview :channel="channel"></channel-preview>
</li>
</ul>
2023-04-16 12:37:35 -04:00
</div>
2023-07-20 13:57:01 -04:00
</div>
</template>