mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
85 lines
2.0 KiB
Vue
85 lines
2.0 KiB
Vue
<template>
|
|
<div class="navbar-feeds">
|
|
<TabControl ref="tabControl" :tabs="tabs" more-link="https://t.bilibili.com/">
|
|
<template #more-link>
|
|
所有动态
|
|
<VIcon icon="feeds" :size="18"></VIcon>
|
|
</template>
|
|
</TabControl>
|
|
</div>
|
|
</template>
|
|
<script lang="ts">
|
|
import { TabControl, VIcon } from '@/ui'
|
|
import { FeedsCardType, feedsCardTypes } from '@/components/feeds/api'
|
|
import { getNotifyCountByType } from '@/components/feeds/notify'
|
|
import { popperMixin } from '../mixins'
|
|
import { tabs } from './tabs/tabs'
|
|
|
|
export default Vue.extend({
|
|
components: {
|
|
TabControl,
|
|
VIcon,
|
|
},
|
|
mixins: [popperMixin],
|
|
data() {
|
|
return {
|
|
tabs,
|
|
}
|
|
},
|
|
mounted() {
|
|
this.refreshNotifyCount()
|
|
// setInterval(() => this.refreshNotifyCount(), updateInterval)
|
|
},
|
|
methods: {
|
|
popupShow() {
|
|
this.item.notifyCount = 0
|
|
},
|
|
async refreshNotifyCount() {
|
|
// const totalJson = await getFeeds(navbarFeedsTypeList)
|
|
// this.item.notifyCount = lodash.get(totalJson, 'data.update_num', 0)
|
|
const { tabControl } = this.$refs
|
|
tabs.forEach(async tab => {
|
|
if (tabControl.selectedTab === tab) {
|
|
return
|
|
}
|
|
if (tab.name === 'live') {
|
|
return
|
|
}
|
|
const feedsCardType = feedsCardTypes[tab.name] as FeedsCardType
|
|
if (!feedsCardType.apiType) {
|
|
return
|
|
}
|
|
const count = await getNotifyCountByType(feedsCardType.apiType)
|
|
tab.count = count
|
|
console.log(tab)
|
|
})
|
|
},
|
|
},
|
|
})
|
|
</script>
|
|
<style lang="scss">
|
|
@import '../popup';
|
|
|
|
.navbar-feeds {
|
|
width: 380px;
|
|
@include navbar-popup-height();
|
|
line-height: normal;
|
|
white-space: nowrap;
|
|
box-sizing: border-box;
|
|
padding: 4px 4px 0 4px;
|
|
font-size: 12px;
|
|
.be-tab-control {
|
|
height: 100%;
|
|
padding-top: 8px;
|
|
box-sizing: border-box;
|
|
.default-header {
|
|
.default-tabs {
|
|
.default-tab:not(:last-child) {
|
|
margin-right: 16px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|