jxxghp / MoviePilot-Frontend

MoviePilot前端
MIT License
177 stars 123 forks source link

TorrentRowListView 筛选bug 以及季集选项排序 #158

Closed falling closed 2 months ago

falling commented 2 months ago

修复搜索页筛选显示bug以及过滤选项季集排序。与TorrentCardListView 保持一致。

Help:

  1. TorrentRowListView 和TorrentCardListView 都有个一模一样的sortSeasonFilterOptions 的方法和需求。需要提取到某个utils文件里吗?

  2. TorrentCardListView 如果数据内容多,显示会卡顿。需要优化。奈何能力有限,v-infinite-scroll 死活没法弄成功。大佬找个懂的人看下呗。我没学过前端以及Vue,很头疼。

<div class="grid gap-3 grid-torrent-card items-start">
    <div v-for="(item) in dataList" :key="`${item.torrent_info.page_url}`">
      <TorrentCard :torrent="item" :more="item.more" />
    </div>
  </div>
jxxghp commented 2 months ago
  1. 尝试过多个开源组件,都不太行。
falling commented 2 months ago
  1. 尝试过多个开源组件,都不太行。

那我再研究研究这个v-infinite-scroll。。