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 }">
<notification <DynamicScrollerItem :item="item" :active="active" :size-dependencies="[item.url]" :data-index="index">
:message="message" <notification
:filter="filter" :message="item"
:focused="message.id === focusedId" :filter="filter"
:overlaid="modalOpened" :focused="item.id === focusedId"
v-on:update="updateToot" :overlaid="modalOpened"
@focusNext="focusNext" v-on:update="updateToot"
@focusPrev="focusPrev" @focusNext="focusNext"
@focusRight="focusSidebar" @focusPrev="focusPrev"
@selectNotification="focusNotification(message)" @focusRight="focusSidebar"
> @selectNotification="focusNotification(item)"
</notification> >
</div> </notification>
</transition-group> </DynamicScrollerItem>
</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>