refs #1766 Introduce vue-virtual-scroll in Mention

This commit is contained in:
AkiraFukushima 2020-10-16 00:59:47 +09:00
parent 2c3e5ed70d
commit 158eb3e881
1 changed files with 18 additions and 16 deletions

View File

@ -2,22 +2,24 @@
<div id="mentions" v-shortkey="shortcutEnabled ? { next: ['j'] } : {}" @shortkey="handleKey"> <div id="mentions" v-shortkey="shortcutEnabled ? { next: ['j'] } : {}" @shortkey="handleKey">
<div class="unread">{{ unread.length > 0 ? unread.length : '' }}</div> <div class="unread">{{ unread.length > 0 ? unread.length : '' }}</div>
<div v-shortkey="{ linux: ['ctrl', 'r'], mac: ['meta', 'r'] }" @shortkey="reload()"></div> <div v-shortkey="{ linux: ['ctrl', 'r'], mac: ['meta', 'r'] }" @shortkey="reload()"></div>
<transition-group name="timeline" tag="div"> <DynamicScroller :items="mentions" :min-item-size="60" class="scroller" page-mode>
<div class="mentions" v-for="message in mentions" :key="message.id"> <template v-slot="{ item, index, active }">
<DynamicScrollerItem :item="item" :active="active" :size-dependencies="[item.url]" :data-index="index">
<notification <notification
:message="message" :message="item"
:filter="filter" :filter="filter"
:focused="message.id === focusedId" :focused="item.id === focusedId"
:overlaid="modalOpened" :overlaid="modalOpened"
v-on:update="updateToot" v-on:update="updateToot"
@focusNext="focusNext" @focusNext="focusNext"
@focusPrev="focusPrev" @focusPrev="focusPrev"
@focusRight="focusSidebar" @focusRight="focusSidebar"
@selectNotification="focusNotification(message)" @selectNotification="focusNotification(item)"
> >
</notification> </notification>
</div> </DynamicScrollerItem>
</transition-group> </template>
</DynamicScroller>
<div class="loading-card" v-loading="lazyLoading" :element-loading-background="backgroundColor"></div> <div class="loading-card" v-loading="lazyLoading" :element-loading-background="backgroundColor"></div>
<div :class="openSideBar ? 'upper-with-side-bar' : 'upper'" v-show="!heading"> <div :class="openSideBar ? 'upper-with-side-bar' : 'upper'" v-show="!heading">
<el-button type="primary" icon="el-icon-arrow-up" @click="upper" circle> </el-button> <el-button type="primary" icon="el-icon-arrow-up" @click="upper" circle> </el-button>