screenFront/src/components/data-view/index.vue

480 lines
14 KiB
Vue
Raw Normal View History

2023-05-12 08:41:33 +00:00
<template>
<div class="zd-scroll-board" :ref="ref">
<div class="header" v-if="header.length && mergedConfig" :style="`background-color: ${mergedConfig.headerBGC};`">
<div class="header-item" v-for="(headerItem, i) in header" :key="`${headerItem}${i}`" :style="`
height: ${mergedConfig.headerHeight}px;
line-height: ${mergedConfig.headerHeight}px;
width: ${widths[i]}px;
`" :align="aligns[i]" v-html="headerItem" />
</div>
<div v-if="mergedConfig" class="rows"
:style="`height: ${height - (header.length ? mergedConfig.headerHeight : 0)}px;`">
<div class="row-item" v-for="(row, ri) in rows" :key="`${row.toString()}${row.scroll}`" :style="`
height: ${heights[ri]}px; line-height: ${heights[ri]}px;
background-color: ${mergedConfig[row.rowIndex % 2 === 0 ? 'evenRowBGC' : 'oddRowBGC']};`">
<div class="ceil" :class="{'ceil-wrap':wraps[ci]}" v-for="(ceil, ci) in row.ceils" :key="`${ceil}${ri}${ci}`"
2024-03-12 09:03:49 +00:00
:style="`width: ${widths[ci]}px;justify-content:${wraps[ci]?align_hash[aligns[ci]]:''}`" :align="aligns[ci]" v-html="ceil"
2023-05-12 08:41:33 +00:00
@click="emitEvent('click', ri, ci, row, ceil)" @mouseenter="handleHover(true, ri, ci, row, ceil)"
@mouseleave="handleHover(false)" />
</div>
</div>
</div>
</template>
<script>
import autoResize from '@jiaminghi/data-view/lib/mixin/autoResize'
import { deepMerge } from '@jiaminghi/charts/lib/util/index'
import { deepClone } from '@jiaminghi/c-render/lib/plugin/util'
export default {
name: 'ZdScrollBoard',
mixins: [autoResize],
props: {
config: {
type: Object,
default: () => ({})
}
},
data() {
return {
ref: 'scroll-board',
2024-03-12 09:03:49 +00:00
align_hash: {
left: 'flex-start',
center: 'center',
right: 'flex-end',
justify: 'space-between'
},
2023-05-12 08:41:33 +00:00
defaultConfig: {
/**
* @description Board header
* @type {Array<String>}
* @default header = []
* @example header = ['column1', 'column2', 'column3']
*/
header: [],
/**
* @description Board data
* @type {Array<Array>}
* @default data = []
*/
data: [],
/**
* @description Row num
* @type {Number}
* @default rowNum = 5
*/
rowNum: 5,
/**
* @description Header background color
* @type {String}
* @default headerBGC = '#00BAFF'
*/
headerBGC: '#00BAFF',
/**
* @description Odd row background color
* @type {String}
* @default oddRowBGC = '#003B51'
*/
oddRowBGC: '#003B51',
/**
* @description Even row background color
* @type {String}
* @default evenRowBGC = '#003B51'
*/
evenRowBGC: '#0A2732',
/**
* @description Scroll wait time
* @type {Number}
* @default waitTime = 2000
*/
waitTime: 2000,
/**
* @description Header height
* @type {Number}
* @default headerHeight = 35
*/
headerHeight: 35,
/**
* @description Column width
* @type {Array<Number>}
* @default columnWidth = []
*/
columnWidth: [],
/**
* @description Column align
* @type {Array<String>}
* @default align = []
* @example align = ['left', 'center', 'right']
*/
align: [],
/**
* @description Show index
* @type {Boolean}
* @default index = false
*/
index: false,
/**
* @description index Header
* @type {String}
* @default indexHeader = '#'
*/
indexHeader: '#',
/**
* @description Carousel type
* @type {String}
* @default carousel = 'single'
* @example carousel = 'single' | 'page'
*/
carousel: 'single',
/**
* @description Pause scroll when mouse hovered
* @type {Boolean}
* @default hoverPause = true
* @example hoverPause = true | false
*/
hoverPause: true
},
mergedConfig: null,
header: [],
rowsData: [],
rows: [],
widths: [],
heights: [],
avgHeight: 0,
aligns: [],
//是否换行
wraps: [],
animationIndex: 0,
animationHandler: '',
updater: 0,
needCalc: false
}
},
watch: {
// config () {
// console.log("更新了数据");
// const { stopAnimation, calcData } = this
// stopAnimation()
// this.animationIndex = 0
// calcData()
// }
config: {
handler(newValue, oldValue) {
const { stopAnimation, calcData } = this
stopAnimation()
this.animationIndex = 0
calcData()
},
deep: true
}
},
methods: {
handleHover(enter, ri, ci, row, ceil) {
const { mergedConfig, emitEvent, stopAnimation, animation } = this
if (enter) { emitEvent('mouseover', ri, ci, row, ceil) } else {
this.$emit('mouseend')
}
if (!mergedConfig.hoverPause) return
if (enter) {
stopAnimation()
} else {
animation(true)
}
},
afterAutoResizeMixinInit() {
const { calcData } = this
calcData()
},
onResize() {
const { mergedConfig, calcWidths, calcHeights } = this
if (!mergedConfig) return
calcWidths()
calcHeights()
},
calcData() {
const { mergeConfig, calcHeaderData, calcRowsData } = this
mergeConfig()
calcHeaderData()
calcRowsData()
const { calcWidths, calcHeights, calcAligns } = this
calcWidths()
calcHeights()
calcAligns()
const { animation } = this
animation(true)
},
mergeConfig() {
let { config, defaultConfig } = this
this.mergedConfig = deepMerge(deepClone(defaultConfig, true), config || {})
},
calcHeaderData() {
let { header, index, indexHeader } = this.mergedConfig
if (!header.length) {
this.header = []
return
}
header = [...header]
if (index) header.unshift(indexHeader)
this.header = header
},
calcRowsData() {
let { data, index, headerBGC, rowNum } = this.mergedConfig
if (index) {
data = data.map((row, i) => {
row = [...row]
const indexTag = `<span class="index" style="background-color: ${headerBGC};">${i + 1}</span>`
row.unshift(indexTag)
return row
})
}
data = data.map((ceils, i) => ({ ceils, rowIndex: i }))
const rowLength = data.length
if (rowLength > rowNum && rowLength < 2 * rowNum) {
data = [...data, ...data]
}
data = data.map((d, i) => ({ ...d, scroll: i }))
this.rowsData = data
this.rows = data
},
calcWidths() {
const { width, mergedConfig, rowsData } = this
const { columnWidth, header } = mergedConfig
const usedWidth = columnWidth.reduce((all, w) => all + w, 0)
let columnNum = 0
if (rowsData[0]) {
columnNum = rowsData[0].ceils.length
} else if (header.length) {
columnNum = header.length
}
const avgWidth = (width - usedWidth) / (columnNum - columnWidth.length)
const widths = new Array(columnNum).fill(avgWidth)
this.widths = deepMerge(widths, columnWidth)
},
calcHeights(onresize = false) {
const { height, mergedConfig, header } = this
const { headerHeight, rowNum, data } = mergedConfig
let allHeight = height
if (header.length) allHeight -= headerHeight
const avgHeight = allHeight / rowNum
this.avgHeight = avgHeight
if (!onresize) this.heights = new Array(data.length).fill(avgHeight)
},
calcAligns() {
const { header, mergedConfig } = this
const columnNum = header.length
let aligns = new Array(columnNum).fill('left')
let wraps = new Array(columnNum).fill(false)
const { align,wrap } = mergedConfig
this.aligns = deepMerge(aligns, align)
this.wraps = deepMerge(wraps, wrap)
},
async animation(start = false) {
const { needCalc, calcHeights, calcRowsData } = this
if (needCalc) {
calcRowsData()
calcHeights()
this.needCalc = false
}
let { avgHeight, animationIndex, mergedConfig, rowsData, animation, updater } = this
const { waitTime, carousel, rowNum } = mergedConfig
const rowLength = rowsData.length
if (rowNum >= rowLength) return
if (start) {
await new Promise(resolve => setTimeout(resolve, waitTime))
if (updater !== this.updater) return
}
const animationNum = carousel === 'single' ? 1 : rowNum
let rows = rowsData.slice(animationIndex)
rows.push(...rowsData.slice(0, animationIndex))
this.rows = rows.slice(0, carousel === 'page' ? rowNum * 2 : rowNum + 1)
this.heights = new Array(rowLength).fill(avgHeight)
await new Promise(resolve => setTimeout(resolve, 300))
if (updater !== this.updater) return
this.heights.splice(0, animationNum, ...new Array(animationNum).fill(0))
animationIndex += animationNum
const back = animationIndex - rowLength
if (back >= 0) animationIndex = back
this.animationIndex = animationIndex
this.animationHandler = setTimeout(animation, waitTime - 300)
},
stopAnimation() {
const { animationHandler, updater } = this
this.updater = (updater + 1) % 999999
if (!animationHandler) return
clearTimeout(animationHandler)
},
emitEvent(type, ri, ci, row, ceil) {
const { ceils, rowIndex } = row
this.$emit(type, {
row: ceils,
ceil,
rowIndex,
columnIndex: ci
})
},
updateRows(rows, config, animationIndex) {
const { mergedConfig, animationHandler, animation } = this
this.mergedConfig = {
...mergedConfig,
data: [...rows],
...config
}
this.needCalc = true
if (typeof animationIndex === 'number') this.animationIndex = animationIndex
if (!animationHandler) animation(true)
}
},
destroyed() {
const { stopAnimation } = this
stopAnimation()
}
}
</script>
<style scoped>
.zd-scroll-board {
position: relative;
width: 100%;
height: 100%;
color: #fff;
}
.zd-scroll-board .text {
padding: 0 10px;
box-sizing: border-box;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.zd-scroll-board .header {
display: flex;
flex-direction: row;
font-size: 15px;
}
.zd-scroll-board .header .header-item {
padding: 0 10px;
box-sizing: border-box;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
transition: all 0.3s;
}
.zd-scroll-board .rows {
overflow: hidden;
}
.zd-scroll-board .rows .row-item {
display: flex;
font-size: 14px;
transition: all 0.3s;
}
.zd-scroll-board .rows .ceil {
padding: 0 10px;
box-sizing: border-box;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.zd-scroll-board .rows .ceil-wrap {
display: flex;
line-height: normal;
white-space: normal;
flex-wrap: wrap;
align-items: center;
}
.zd-scroll-board .rows .index {
border-radius: 3px;
padding: 0px 3px;
}
</style>