| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282 |
- <template>
- <div
- ref="topRef"
- class="area-wrap"
- :style="{ height: height + 'px' }"
- >
- <div
- v-if="0"
- class="tag-wrap"
- >
- <span
- v-for="(item, index) in appStore.areaList.find(
- (v) => v.id === Number(route.params.id)
- )?.children"
- :key="index"
- class="tag"
- >
- {{ item.name }}
- </span>
- </div>
- <LongList
- v-if="height > 0"
- ref="longListRef"
- class="list"
- :rootMargin="{
- top: 0,
- bottom: 100,
- left: 0,
- right: 0,
- }"
- :status="status"
- @get-list-data="getListData"
- >
- <div
- v-for="(item, index) in liveRoomList"
- :key="index"
- class="item"
- @click="goRoom(item)"
- >
- <div
- v-lazy:background-image="item?.cover_img || item?.users?.[0]?.avatar"
- class="cover"
- >
- <div
- v-if="item?.live"
- class="living-ico"
- >
- 直播中
- </div>
- <div
- v-if="
- item?.cdn === SwitchEnum.yes ||
- [
- LiveRoomTypeEnum.tencent_css,
- LiveRoomTypeEnum.tencent_css_pk,
- ].includes(item.type!)
- "
- class="cdn-ico"
- >
- <div class="txt">CDN</div>
- </div>
- <div class="txt">{{ item?.users?.[0]?.username }}</div>
- </div>
- <div class="desc">{{ item?.name }}</div>
- </div>
- </LongList>
- </div>
- </template>
- <script lang="ts" setup>
- import { openToTarget } from 'billd-utils';
- import { onMounted, reactive, ref, watch } from 'vue';
- import { useRoute } from 'vue-router';
- import { fetchLiveRoomList } from '@/api/area';
- import LongList from '@/components/LongList/index.vue';
- import { SwitchEnum } from '@/interface';
- import router, { routerName } from '@/router';
- import { useAppStore } from '@/store/app';
- import { ILiveRoom, LiveRoomTypeEnum } from '@/types/ILiveRoom';
- const liveRoomList = ref<ILiveRoom[]>([]);
- const appStore = useAppStore();
- const route = useRoute();
- const status = ref<'loading' | 'nonedata' | 'allLoaded' | 'normal'>('loading');
- const longListRef = ref<InstanceType<typeof LongList>>();
- const topRef = ref<HTMLDivElement>();
- const height = ref(-1);
- const loading = ref(false);
- const hasMore = ref(true);
- const pageParams = reactive({
- nowPage: 0,
- pageSize: 50,
- });
- watch(
- () => route.params.id,
- (newVal) => {
- if (!newVal) return;
- liveRoomList.value = [];
- pageParams.nowPage = 0;
- getData();
- }
- );
- function handleStatus() {
- if (loading.value) {
- status.value = 'loading';
- } else if (hasMore.value) {
- status.value = 'normal';
- } else {
- status.value = 'allLoaded';
- }
- if (!liveRoomList.value?.length) {
- status.value = 'nonedata';
- }
- }
- function goRoom(item: ILiveRoom) {
- if (!item.live) {
- window.$message.info('该直播间没在直播~');
- return;
- }
- const url = router.resolve({
- name: routerName.pull,
- params: { roomId: item.id },
- });
- openToTarget(url.href);
- }
- onMounted(() => {
- if (topRef.value) {
- height.value =
- document.documentElement.clientHeight -
- topRef.value.getBoundingClientRect().top;
- }
- getData();
- });
- function getListData() {
- if (!hasMore.value) return;
- getData();
- }
- async function getData() {
- try {
- if (loading.value) return;
- loading.value = true;
- status.value = 'loading';
- pageParams.nowPage += 1;
- const res = await fetchLiveRoomList({
- id: Number(route.params.id),
- live_room_is_show: SwitchEnum.yes,
- nowPage: pageParams.nowPage,
- pageSize: pageParams.pageSize,
- });
- if (res.code === 200) {
- liveRoomList.value.push(...res.data.rows);
- hasMore.value = res.data.hasMore;
- }
- } catch (error) {
- pageParams.nowPage -= 1;
- console.log(error);
- }
- loading.value = false;
- status.value = 'normal';
- handleStatus();
- }
- </script>
- <style lang="scss" scoped>
- .area-wrap {
- box-sizing: border-box;
- padding-top: $header-height;
- width: 100vw;
- background-color: #f1f2f3;
- .tag-wrap {
- .tag {
- display: inline-block;
- margin-right: 10px;
- padding: 2px 10px;
- font-size: 12px;
- border-radius: 10px;
- color: $theme-color-gold;
- border: 1px solid rgba($color: #999, $alpha: 0.3);
- }
- }
- .list {
- padding-top: 20px;
- display: flex;
- align-content: flex-start;
- flex-wrap: wrap;
- justify-content: space-between;
- .item {
- display: inline-block;
- margin-right: 25px;
- margin-bottom: 12px;
- width: 300px;
- cursor: pointer;
- .cover {
- position: relative;
- overflow: hidden;
- width: 100%;
- height: 150px;
- border-radius: 8px;
- @extend %containBg;
- .living-ico {
- position: absolute;
- top: 0px;
- left: 0px;
- z-index: 10;
- padding: 0 10px;
- height: 20px;
- border-radius: 8px 0 10px;
- background-color: $theme-color-gold;
- color: white;
- text-align: center;
- font-size: 12px;
- line-height: 20px;
- }
- .cdn-ico {
- position: absolute;
- top: -10px;
- right: -10px;
- z-index: 2;
- width: 70px;
- height: 28px;
- background-color: #f87c48;
- color: white;
- transform: rotate(45deg);
- transform-origin: bottom;
- .txt {
- margin-left: 18px;
- background-image: initial !important;
- font-size: 13px;
- }
- }
- .txt {
- position: absolute;
- bottom: 0;
- left: 0;
- box-sizing: border-box;
- padding: 4px 8px;
- width: 100%;
- border-radius: 0 0 4px 4px;
- background-image: linear-gradient(
- -180deg,
- rgba(0, 0, 0, 0),
- rgba(0, 0, 0, 0.6)
- );
- color: white;
- text-align: initial;
- font-size: 13px;
- @extend %singleEllipsis;
- }
- }
- .desc {
- margin-top: 4px;
- font-size: 14px;
- @extend %singleEllipsis;
- }
- }
- .null {
- width: 100%;
- text-align: center;
- }
- }
- .paging-wrap {
- display: flex;
- align-items: center;
- justify-content: center;
- margin-bottom: 20px;
- }
- }
- </style>
|