import useLayoutStore from '@/layout/useLayoutStore' import request from '@/utils/request' import { addIcons, OhVueIcon } from 'oh-vue-icons' import { computed, defineComponent, onMounted, ref, watch, type CSSProperties } from 'vue' import { FaChevronLeft } from 'oh-vue-icons/icons' import type { CarouselRef } from 'ant-design-vue/es/carousel' import { randomNum } from '@/utils/tool' addIcons(FaChevronLeft) interface Owner { face: string mid: number name: string } interface GameData { _id: string aid: number ctime: number duration: number owner: Owner pic: string rid: string time: string title: string type: string } export default defineComponent(() => { const list = ref([]) const currentIndex = ref(-1) const current = computed(() => { if (currentIndex.value === -1) { return null } else { return list.value[currentIndex.value] } }) watch( () => useLayoutStore().state.current, (val) => { const type = val === 0 ? 'game' : val === 1 ? 'study' : 'entertainment' request('GET', `/api/hotVideo?type=${type}`).then((res) => { list.value = res currentIndex.value = randomNum(0, list.value.length) }) }, { immediate: true } ) onMounted(() => { setInterval(() => { currentIndex.value = currentIndex.value === list.value.length - 1 ? 0 : currentIndex.value + 1 }, 5000) }) return () => (
{
{current.value?.title} {current.value?.owner.name}
{ e.stopPropagation() currentIndex.value = currentIndex.value === 0 ? list.value.length - 1 : currentIndex.value - 1 }} class="absolute hidden bottom-[20px] group-hover:flex items-center justify-center left-[0px] w-[22px] h-[22px] bg-white/30 rounded" >
{ e.stopPropagation() currentIndex.value = currentIndex.value === list.value.length - 1 ? 0 : currentIndex.value + 1 }} class="absolute hidden bottom-[20px] group-hover:flex items-center justify-center right-[0px] rotate-180 w-[22px] h-[22px] bg-white/30 rounded" >
}
) })