You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ocr-web/src/views/task/aside/TaskList.vue

159 lines
3.0 KiB

<script lang="ts" setup>
import { useInfiniteScroll } from '@vueuse/core'
import { defineProps, onMounted, onUnmounted, reactive, ref, watch } from 'vue'
import ListItem from './ListItem.vue'
import emitter from '@/utils/mitt'
import { useTaskStore } from '@/store/modules/task'
import { filter } from 'lodash'
defineProps({
showFieldList: {
type: Array,
default: () => [],
},
})
const taskStore = useTaskStore()
const data = ref<any[]>([])
const activeId = ref('')
const el = ref<HTMLDivElement | null>(null)
const keyword = ref('')
const canloadMore = ref(true)
const isLoading = ref(false)
const searchId = ref('')
const pagination = reactive({
pageNo: 0,
pageSize: 30,
})
function selectHandler(id: string, index: number) {
taskStore.setActive(index)
}
useInfiniteScroll(
el as any,
() => {
loadMore()
},
{ distance: 10, interval: 1500, canLoadMore: () => canloadMore.value },
)
async function loadMore() {
if (isLoading.value || el.value == null)
return
isLoading.value = true
try {
const more = await fetchList()
data.value.push(...more)
}
finally {
isLoading.value = false
}
}
// 获取左侧列表
async function fetchList() {
try {
pagination.pageNo += 1
const result = await taskStore.fetchApprovalList({
...pagination,
keyword: keyword.value,
userSearchId:searchId.value
})
const { data, pageCount } = result
canloadMore.value = pageCount >= pagination.pageNo
return data || []
}
catch (error) {
canloadMore.value = false
return []
}
}
watch(
() => taskStore.activeId,
(newVal) => {
activeId.value = newVal
},
)
function reset() {
pagination.pageNo = 0
pagination.pageSize = 30
canloadMore.value = true
data.value.length = 0
taskStore.reset()
}
async function search(word: string) {
keyword.value = word
reset()
useInfiniteScroll(
el as any,
() => {
loadMore()
},
{ distance: 10, canLoadMore: () => canloadMore.value },
)
}
onMounted(() => {
emitter.on('refresh', refreshHandler)
emitter.on('filter',async(id)=>{
await reset();
searchId.value = id;
data.value = await fetchList();
})
})
onUnmounted(() => {
emitter.off('refresh', refreshHandler)
})
async function refreshHandler() {
search('')
}
function setStatusName(text) {
const index = taskStore.getCurrentIndex
data.value[index].statshisText = text
}
defineExpose({
search,
setStatusName,
})
</script>
<template>
<n-spin :show="isLoading">
<div ref="el" class="list">
<ListItem
v-for="(item, index) in data"
:key="item.id"
:show-field-list="showFieldList"
:selected="activeId === item.id"
:list-item="item"
@click="selectHandler(item.id, index)"
/>
</div>
</n-spin>
</template>
<style lang="less" scoped>
.list {
height: calc(100vh - 146px);
overflow-y: scroll;
overflow-x: hidden;
scrollbar-width: none;
/* firefox */
-ms-overflow-style: none;
/* IE 10+ */
&::-webkit-scrollbar {
display: none;
}
}
</style>