|
|
|
@ -5,9 +5,11 @@
|
|
|
|
|
* @class BI.GridView |
|
|
|
|
* @extends BI.Widget |
|
|
|
|
*/ |
|
|
|
|
BI.GridView = BI.inherit(BI.Widget, { |
|
|
|
|
_defaultConfig: function () { |
|
|
|
|
return BI.extend(BI.GridView.superclass._defaultConfig.apply(this, arguments), { |
|
|
|
|
import { Widget, shortcut } from "../../core"; |
|
|
|
|
@shortcut() |
|
|
|
|
export default class GridView extends Widget { |
|
|
|
|
_defaultConfig() { |
|
|
|
|
return BI.extend(super._defaultConfig(arguments), { |
|
|
|
|
baseCls: "bi-grid-view", |
|
|
|
|
// width: 400, //必设
|
|
|
|
|
// height: 300, //必设
|
|
|
|
@ -28,50 +30,54 @@ BI.GridView = BI.inherit(BI.Widget, {
|
|
|
|
|
scrollLeft: 0, |
|
|
|
|
scrollTop: 0, |
|
|
|
|
items: [], |
|
|
|
|
itemFormatter: function (item, row, col) { |
|
|
|
|
itemFormatter: (item, row, col)=> { |
|
|
|
|
return item; |
|
|
|
|
}, |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
render: function () { |
|
|
|
|
var self = this, o = this.options; |
|
|
|
|
static xtype = "bi.grid_view"; |
|
|
|
|
static EVENT_SCROLL = "EVENT_SCROLL"; |
|
|
|
|
|
|
|
|
|
render() { |
|
|
|
|
const o = this.options; |
|
|
|
|
const { overflowX, overflowY, el } = this.options; |
|
|
|
|
this.renderedCells = []; |
|
|
|
|
this.renderedKeys = []; |
|
|
|
|
this.renderRange = {}; |
|
|
|
|
this._scrollLock = false; |
|
|
|
|
this._debounceRelease = BI.debounce(function () { |
|
|
|
|
self._scrollLock = false; |
|
|
|
|
this._debounceRelease = BI.debounce(()=> { |
|
|
|
|
this._scrollLock = false; |
|
|
|
|
}, 1000 / 60); |
|
|
|
|
this.container = BI._lazyCreateWidget({ |
|
|
|
|
type: "bi.absolute", |
|
|
|
|
}); |
|
|
|
|
this.element.scroll(function () { |
|
|
|
|
if (self._scrollLock === true) { |
|
|
|
|
this.element.scroll(()=> { |
|
|
|
|
if (this._scrollLock === true) { |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
o.scrollLeft = self.element.scrollLeft(); |
|
|
|
|
o.scrollTop = self.element.scrollTop(); |
|
|
|
|
self._calculateChildrenToRender(); |
|
|
|
|
self.fireEvent(BI.GridView.EVENT_SCROLL, { |
|
|
|
|
o.scrollLeft = this.element.scrollLeft(); |
|
|
|
|
o.scrollTop = this.element.scrollTop(); |
|
|
|
|
this._calculateChildrenToRender(); |
|
|
|
|
this.fireEvent(GridView.EVENT_SCROLL, { |
|
|
|
|
scrollLeft: o.scrollLeft, |
|
|
|
|
scrollTop: o.scrollTop, |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
// 兼容一下
|
|
|
|
|
var scrollable = o.scrollable, scrollx = o.scrollx, scrolly = o.scrolly; |
|
|
|
|
if (o.overflowX === false) { |
|
|
|
|
if (o.overflowY === false) { |
|
|
|
|
let scrollable = o.scrollable, scrollx = o.scrollx, scrolly = o.scrolly; |
|
|
|
|
if (overflowX === false) { |
|
|
|
|
if (overflowY === false) { |
|
|
|
|
scrollable = false; |
|
|
|
|
} else { |
|
|
|
|
scrollable = "y"; |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
if (o.overflowY === false) { |
|
|
|
|
if (overflowY === false) { |
|
|
|
|
scrollable = "x"; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
BI._lazyCreateWidget(o.el, { |
|
|
|
|
BI._lazyCreateWidget(el, { |
|
|
|
|
type: "bi.vertical", |
|
|
|
|
element: this, |
|
|
|
|
scrollable: scrollable, |
|
|
|
@ -79,111 +85,113 @@ BI.GridView = BI.inherit(BI.Widget, {
|
|
|
|
|
scrollx: scrollx, |
|
|
|
|
items: [this.container], |
|
|
|
|
}); |
|
|
|
|
o.items = BI.isFunction(o.items) ? this.__watch(o.items, function (context, newValue) { |
|
|
|
|
self.populate(newValue); |
|
|
|
|
o.items = BI.isFunction(o.items) ? this.__watch(o.items, (context, newValue)=> { |
|
|
|
|
this.populate(newValue); |
|
|
|
|
}) : o.items; |
|
|
|
|
if (o.items.length > 0) { |
|
|
|
|
this._calculateSizeAndPositionData(); |
|
|
|
|
this._populate(); |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// mounted之后绑定事件
|
|
|
|
|
mounted: function () { |
|
|
|
|
var o = this.options; |
|
|
|
|
if (o.scrollLeft !== 0 || o.scrollTop !== 0) { |
|
|
|
|
this.element.scrollTop(o.scrollTop); |
|
|
|
|
this.element.scrollLeft(o.scrollLeft); |
|
|
|
|
mounted() { |
|
|
|
|
const { scrollLeft, scrollTop } = this.options; |
|
|
|
|
if (scrollLeft !== 0 || scrollTop !== 0) { |
|
|
|
|
this.element.scrollTop(scrollTop); |
|
|
|
|
this.element.scrollLeft(scrollLeft); |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
destroyed: function () { |
|
|
|
|
BI.each(this.renderedCells, function(i, cell) { |
|
|
|
|
destroyed() { |
|
|
|
|
BI.each(this.renderedCells, (i, cell)=> { |
|
|
|
|
cell.el._destroy(); |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
_calculateSizeAndPositionData: function () { |
|
|
|
|
var o = this.options; |
|
|
|
|
_calculateSizeAndPositionData() { |
|
|
|
|
const { columnCount, items, rowCount, columnWidthGetter, estimatedColumnSize, rowHeightGetter, estimatedRowSize } = this.options; |
|
|
|
|
this.rowCount = 0; |
|
|
|
|
this.columnCount = 0; |
|
|
|
|
if (BI.isNumber(o.columnCount)) { |
|
|
|
|
this.columnCount = o.columnCount; |
|
|
|
|
} else if (o.items.length > 0) { |
|
|
|
|
this.columnCount = o.items[0].length; |
|
|
|
|
if (BI.isNumber(columnCount)) { |
|
|
|
|
this.columnCount = columnCount; |
|
|
|
|
} else if (items.length > 0) { |
|
|
|
|
this.columnCount = items[0].length; |
|
|
|
|
} |
|
|
|
|
if (BI.isNumber(o.rowCount)) { |
|
|
|
|
this.rowCount = o.rowCount; |
|
|
|
|
if (BI.isNumber(rowCount)) { |
|
|
|
|
this.rowCount = rowCount; |
|
|
|
|
} else { |
|
|
|
|
this.rowCount = o.items.length; |
|
|
|
|
this.rowCount = items.length; |
|
|
|
|
} |
|
|
|
|
this._columnSizeAndPositionManager = new BI.ScalingCellSizeAndPositionManager(this.columnCount, o.columnWidthGetter, o.estimatedColumnSize); |
|
|
|
|
this._rowSizeAndPositionManager = new BI.ScalingCellSizeAndPositionManager(this.rowCount, o.rowHeightGetter, o.estimatedRowSize); |
|
|
|
|
}, |
|
|
|
|
this._columnSizeAndPositionManager = new BI.ScalingCellSizeAndPositionManager(this.columnCount, columnWidthGetter, estimatedColumnSize); |
|
|
|
|
this._rowSizeAndPositionManager = new BI.ScalingCellSizeAndPositionManager(this.rowCount, rowHeightGetter, estimatedRowSize); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
_getOverscanIndices: function (cellCount, overscanCellsCount, startIndex, stopIndex) { |
|
|
|
|
_getOverscanIndices(cellCount, overscanCellsCount, startIndex, stopIndex) { |
|
|
|
|
return { |
|
|
|
|
overscanStartIndex: Math.max(0, startIndex - overscanCellsCount), |
|
|
|
|
overscanStopIndex: Math.min(cellCount - 1, stopIndex + overscanCellsCount), |
|
|
|
|
}; |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
_calculateChildrenToRender() { |
|
|
|
|
const o = this.options; |
|
|
|
|
|
|
|
|
|
_calculateChildrenToRender: function () { |
|
|
|
|
var self = this, o = this.options; |
|
|
|
|
const { itemFormatter, items } = this.options; |
|
|
|
|
|
|
|
|
|
var width = o.width, height = o.height, scrollLeft = BI.clamp(o.scrollLeft, 0, this._getMaxScrollLeft()), |
|
|
|
|
const width = o.width, height = o.height, scrollLeft = BI.clamp(o.scrollLeft, 0, this._getMaxScrollLeft()), |
|
|
|
|
scrollTop = BI.clamp(o.scrollTop, 0, this._getMaxScrollTop()), |
|
|
|
|
overscanColumnCount = o.overscanColumnCount, overscanRowCount = o.overscanRowCount; |
|
|
|
|
|
|
|
|
|
if (height > 0 && width > 0) { |
|
|
|
|
var visibleColumnIndices = this._columnSizeAndPositionManager.getVisibleCellRange(width, scrollLeft); |
|
|
|
|
var visibleRowIndices = this._rowSizeAndPositionManager.getVisibleCellRange(height, scrollTop); |
|
|
|
|
const visibleColumnIndices = this._columnSizeAndPositionManager.getVisibleCellRange(width, scrollLeft); |
|
|
|
|
const visibleRowIndices = this._rowSizeAndPositionManager.getVisibleCellRange(height, scrollTop); |
|
|
|
|
|
|
|
|
|
var renderedCells = [], renderedKeys = {}, renderedWidgets = {}; |
|
|
|
|
const renderedCells = [], renderedKeys = {}, renderedWidgets = {}; |
|
|
|
|
let minX = this._getMaxScrollLeft(), minY = this._getMaxScrollTop(), maxX = 0, maxY = 0; |
|
|
|
|
// 没有可见的单元格就干掉所有渲染过的
|
|
|
|
|
if (!BI.isEmpty(visibleColumnIndices) && !BI.isEmpty(visibleRowIndices)) { |
|
|
|
|
var horizontalOffsetAdjustment = this._columnSizeAndPositionManager.getOffsetAdjustment(width, scrollLeft); |
|
|
|
|
var verticalOffsetAdjustment = this._rowSizeAndPositionManager.getOffsetAdjustment(height, scrollTop); |
|
|
|
|
const horizontalOffsetAdjustment = this._columnSizeAndPositionManager.getOffsetAdjustment(width, scrollLeft); |
|
|
|
|
const verticalOffsetAdjustment = this._rowSizeAndPositionManager.getOffsetAdjustment(height, scrollTop); |
|
|
|
|
|
|
|
|
|
this._renderedColumnStartIndex = visibleColumnIndices.start; |
|
|
|
|
this._renderedColumnStopIndex = visibleColumnIndices.stop; |
|
|
|
|
this._renderedRowStartIndex = visibleRowIndices.start; |
|
|
|
|
this._renderedRowStopIndex = visibleRowIndices.stop; |
|
|
|
|
|
|
|
|
|
var overscanColumnIndices = this._getOverscanIndices(this.columnCount, overscanColumnCount, this._renderedColumnStartIndex, this._renderedColumnStopIndex); |
|
|
|
|
const overscanColumnIndices = this._getOverscanIndices(this.columnCount, overscanColumnCount, this._renderedColumnStartIndex, this._renderedColumnStopIndex); |
|
|
|
|
|
|
|
|
|
var overscanRowIndices = this._getOverscanIndices(this.rowCount, overscanRowCount, this._renderedRowStartIndex, this._renderedRowStopIndex); |
|
|
|
|
const overscanRowIndices = this._getOverscanIndices(this.rowCount, overscanRowCount, this._renderedRowStartIndex, this._renderedRowStopIndex); |
|
|
|
|
|
|
|
|
|
var columnStartIndex = overscanColumnIndices.overscanStartIndex; |
|
|
|
|
var columnStopIndex = overscanColumnIndices.overscanStopIndex; |
|
|
|
|
var rowStartIndex = overscanRowIndices.overscanStartIndex; |
|
|
|
|
var rowStopIndex = overscanRowIndices.overscanStopIndex; |
|
|
|
|
const columnStartIndex = overscanColumnIndices.overscanStartIndex; |
|
|
|
|
const columnStopIndex = overscanColumnIndices.overscanStopIndex; |
|
|
|
|
const rowStartIndex = overscanRowIndices.overscanStartIndex; |
|
|
|
|
const rowStopIndex = overscanRowIndices.overscanStopIndex; |
|
|
|
|
|
|
|
|
|
// 算区间size
|
|
|
|
|
var minRowDatum = this._rowSizeAndPositionManager.getSizeAndPositionOfCell(rowStartIndex); |
|
|
|
|
var minColumnDatum = this._columnSizeAndPositionManager.getSizeAndPositionOfCell(columnStartIndex); |
|
|
|
|
var maxRowDatum = this._rowSizeAndPositionManager.getSizeAndPositionOfCell(rowStopIndex); |
|
|
|
|
var maxColumnDatum = this._columnSizeAndPositionManager.getSizeAndPositionOfCell(columnStopIndex); |
|
|
|
|
var top = minRowDatum.offset + verticalOffsetAdjustment; |
|
|
|
|
var left = minColumnDatum.offset + horizontalOffsetAdjustment; |
|
|
|
|
var bottom = maxRowDatum.offset + verticalOffsetAdjustment + maxRowDatum.size; |
|
|
|
|
var right = maxColumnDatum.offset + horizontalOffsetAdjustment + maxColumnDatum.size; |
|
|
|
|
const minRowDatum = this._rowSizeAndPositionManager.getSizeAndPositionOfCell(rowStartIndex); |
|
|
|
|
const minColumnDatum = this._columnSizeAndPositionManager.getSizeAndPositionOfCell(columnStartIndex); |
|
|
|
|
const maxRowDatum = this._rowSizeAndPositionManager.getSizeAndPositionOfCell(rowStopIndex); |
|
|
|
|
const maxColumnDatum = this._columnSizeAndPositionManager.getSizeAndPositionOfCell(columnStopIndex); |
|
|
|
|
const top = minRowDatum.offset + verticalOffsetAdjustment; |
|
|
|
|
const left = minColumnDatum.offset + horizontalOffsetAdjustment; |
|
|
|
|
const bottom = maxRowDatum.offset + verticalOffsetAdjustment + maxRowDatum.size; |
|
|
|
|
const right = maxColumnDatum.offset + horizontalOffsetAdjustment + maxColumnDatum.size; |
|
|
|
|
// 如果滚动的区间并没有超出渲染的范围
|
|
|
|
|
if (top >= this.renderRange.minY && bottom <= this.renderRange.maxY && left >= this.renderRange.minX && right <= this.renderRange.maxX) { |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
var minX = this._getMaxScrollLeft(), minY = this._getMaxScrollTop(), maxX = 0, maxY = 0; |
|
|
|
|
var count = 0; |
|
|
|
|
for (var rowIndex = rowStartIndex; rowIndex <= rowStopIndex; rowIndex++) { |
|
|
|
|
var rowDatum = this._rowSizeAndPositionManager.getSizeAndPositionOfCell(rowIndex); |
|
|
|
|
let count = 0; |
|
|
|
|
for (let rowIndex = rowStartIndex; rowIndex <= rowStopIndex; rowIndex++) { |
|
|
|
|
const rowDatum = this._rowSizeAndPositionManager.getSizeAndPositionOfCell(rowIndex); |
|
|
|
|
|
|
|
|
|
for (var columnIndex = columnStartIndex; columnIndex <= columnStopIndex; columnIndex++) { |
|
|
|
|
var key = rowIndex + "-" + columnIndex; |
|
|
|
|
var columnDatum = this._columnSizeAndPositionManager.getSizeAndPositionOfCell(columnIndex); |
|
|
|
|
for (let columnIndex = columnStartIndex; columnIndex <= columnStopIndex; columnIndex++) { |
|
|
|
|
const key = rowIndex + "-" + columnIndex; |
|
|
|
|
const columnDatum = this._columnSizeAndPositionManager.getSizeAndPositionOfCell(columnIndex); |
|
|
|
|
|
|
|
|
|
var index = this.renderedKeys[key] && this.renderedKeys[key][2]; |
|
|
|
|
var child; |
|
|
|
|
const index = this.renderedKeys[key] && this.renderedKeys[key][2]; |
|
|
|
|
let child; |
|
|
|
|
if (index >= 0) { |
|
|
|
|
this.renderedCells[index].el.setWidth(columnDatum.size); |
|
|
|
|
this.renderedCells[index].el.setHeight(rowDatum.size); |
|
|
|
@ -193,7 +201,7 @@ BI.GridView = BI.inherit(BI.Widget, {
|
|
|
|
|
child = this.renderedCells[index].el; |
|
|
|
|
renderedCells.push(this.renderedCells[index]); |
|
|
|
|
} else { |
|
|
|
|
var item = o.itemFormatter(o.items[rowIndex][columnIndex], rowIndex, columnIndex); |
|
|
|
|
const item = itemFormatter(items[rowIndex][columnIndex], rowIndex, columnIndex); |
|
|
|
|
child = BI._lazyCreateWidget(BI.extend({ |
|
|
|
|
type: "bi.label", |
|
|
|
|
width: columnDatum.size, |
|
|
|
@ -226,9 +234,9 @@ BI.GridView = BI.inherit(BI.Widget, {
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
// 已存在的, 需要添加的和需要删除的
|
|
|
|
|
var existSet = {}, addSet = {}, deleteArray = []; |
|
|
|
|
BI.each(renderedKeys, function (i, key) { |
|
|
|
|
if (self.renderedKeys[i]) { |
|
|
|
|
const existSet = {}, addSet = {}, deleteArray = []; |
|
|
|
|
BI.each(renderedKeys, (i, key)=> { |
|
|
|
|
if (this.renderedKeys[i]) { |
|
|
|
|
existSet[i] = key; |
|
|
|
|
} else { |
|
|
|
|
addSet[i] = key; |
|
|
|
@ -243,11 +251,11 @@ BI.GridView = BI.inherit(BI.Widget, {
|
|
|
|
|
} |
|
|
|
|
deleteArray.push(key[2]); |
|
|
|
|
}); |
|
|
|
|
BI.each(deleteArray, function (i, index) { |
|
|
|
|
BI.each(deleteArray, (i, index)=> { |
|
|
|
|
// 性能优化,不调用destroy方法防止触发destroy事件
|
|
|
|
|
self.renderedCells[index].el._destroy(); |
|
|
|
|
this.renderedCells[index].el._destroy(); |
|
|
|
|
}); |
|
|
|
|
var addedItems = []; |
|
|
|
|
const addedItems = []; |
|
|
|
|
BI.each(addSet, function (index, key) { |
|
|
|
|
addedItems.push(renderedCells[key[2]]); |
|
|
|
|
}); |
|
|
|
@ -260,13 +268,12 @@ BI.GridView = BI.inherit(BI.Widget, {
|
|
|
|
|
this.renderedKeys = renderedKeys; |
|
|
|
|
this.renderRange = { minX: minX, minY: minY, maxX: maxX, maxY: maxY }; |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
_isOverflowX: function () { |
|
|
|
|
var o = this.options; |
|
|
|
|
_isOverflowX() { |
|
|
|
|
const { scrollable, scrollx, overflowX } = this.options; |
|
|
|
|
// 兼容一下
|
|
|
|
|
var scrollable = o.scrollable, scrollx = o.scrollx; |
|
|
|
|
if (o.overflowX === false) { |
|
|
|
|
if (overflowX === false) { |
|
|
|
|
return false; |
|
|
|
|
} |
|
|
|
|
if (scrollx) { |
|
|
|
@ -276,13 +283,13 @@ BI.GridView = BI.inherit(BI.Widget, {
|
|
|
|
|
return true; |
|
|
|
|
} |
|
|
|
|
return false; |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
_isOverflowY: function () { |
|
|
|
|
var o = this.options; |
|
|
|
|
_isOverflowY() { |
|
|
|
|
const { scrollable, scrolly, overflowX } = this.options; |
|
|
|
|
// 兼容一下
|
|
|
|
|
var scrollable = o.scrollable, scrolly = o.scrolly; |
|
|
|
|
if (o.overflowX === false) { |
|
|
|
|
// var scrollable = o.scrollable, scrolly = o.scrolly;
|
|
|
|
|
if (overflowX === false) { |
|
|
|
|
return false; |
|
|
|
|
} |
|
|
|
|
if (scrolly) { |
|
|
|
@ -292,26 +299,26 @@ BI.GridView = BI.inherit(BI.Widget, {
|
|
|
|
|
return true; |
|
|
|
|
} |
|
|
|
|
return false; |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
_getMaxScrollLeft: function () { |
|
|
|
|
_getMaxScrollLeft() { |
|
|
|
|
return Math.max(0, this._getContainerWidth() - this.options.width + (this._isOverflowX() ? BI.DOM.getScrollWidth() : 0)); |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
_getMaxScrollTop: function () { |
|
|
|
|
_getMaxScrollTop() { |
|
|
|
|
return Math.max(0, this._getContainerHeight() - this.options.height + (this._isOverflowY() ? BI.DOM.getScrollWidth() : 0)); |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
_getContainerWidth: function () { |
|
|
|
|
_getContainerWidth() { |
|
|
|
|
return this.columnCount * this.options.estimatedColumnSize; |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
_getContainerHeight: function () { |
|
|
|
|
_getContainerHeight() { |
|
|
|
|
return this.rowCount * this.options.estimatedRowSize; |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
_populate: function (items) { |
|
|
|
|
var o = this.options; |
|
|
|
|
_populate(items) { |
|
|
|
|
const { scrollTop, scrollLeft } = this.options; |
|
|
|
|
this._reRange(); |
|
|
|
|
if (items && items !== this.options.items) { |
|
|
|
|
this.options.items = items; |
|
|
|
@ -323,14 +330,14 @@ BI.GridView = BI.inherit(BI.Widget, {
|
|
|
|
|
// 元素未挂载时不能设置scrollTop
|
|
|
|
|
this._debounceRelease(); |
|
|
|
|
try { |
|
|
|
|
this.element.scrollTop(o.scrollTop); |
|
|
|
|
this.element.scrollLeft(o.scrollLeft); |
|
|
|
|
this.element.scrollTop(scrollTop); |
|
|
|
|
this.element.scrollLeft(scrollLeft); |
|
|
|
|
} catch (e) { |
|
|
|
|
} |
|
|
|
|
this._calculateChildrenToRender(); |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
setScrollLeft: function (scrollLeft) { |
|
|
|
|
setScrollLeft(scrollLeft) { |
|
|
|
|
if (this.options.scrollLeft === scrollLeft) { |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
@ -339,9 +346,9 @@ BI.GridView = BI.inherit(BI.Widget, {
|
|
|
|
|
this._debounceRelease(); |
|
|
|
|
this.element.scrollLeft(this.options.scrollLeft); |
|
|
|
|
this._calculateChildrenToRender(); |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
setScrollTop: function (scrollTop) { |
|
|
|
|
setScrollTop(scrollTop) { |
|
|
|
|
if (this.options.scrollTop === scrollTop) { |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
@ -350,72 +357,68 @@ BI.GridView = BI.inherit(BI.Widget, {
|
|
|
|
|
this._debounceRelease(); |
|
|
|
|
this.element.scrollTop(this.options.scrollTop); |
|
|
|
|
this._calculateChildrenToRender(); |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
setColumnCount: function (columnCount) { |
|
|
|
|
setColumnCount(columnCount) { |
|
|
|
|
this.options.columnCount = columnCount; |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
setRowCount: function (rowCount) { |
|
|
|
|
setRowCount(rowCount) { |
|
|
|
|
this.options.rowCount = rowCount; |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
setOverflowX: function (b) { |
|
|
|
|
var self = this; |
|
|
|
|
setOverflowX(b) { |
|
|
|
|
if (this.options.overflowX !== !!b) { |
|
|
|
|
this.options.overflowX = !!b; |
|
|
|
|
BI.nextTick(function () { |
|
|
|
|
self.element.css({ overflowX: b ? "auto" : "hidden" }); |
|
|
|
|
BI.nextTick(()=> { |
|
|
|
|
this.element.css({ overflowX: b ? "auto" : "hidden" }); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
setOverflowY: function (b) { |
|
|
|
|
var self = this; |
|
|
|
|
setOverflowY(b) { |
|
|
|
|
if (this.options.overflowY !== !!b) { |
|
|
|
|
this.options.overflowY = !!b; |
|
|
|
|
BI.nextTick(function () { |
|
|
|
|
self.element.css({ overflowY: b ? "auto" : "hidden" }); |
|
|
|
|
BI.nextTick(()=> { |
|
|
|
|
this.element.css({ overflowY: b ? "auto" : "hidden" }); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
getScrollLeft: function () { |
|
|
|
|
getScrollLeft() { |
|
|
|
|
return this.options.scrollLeft; |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
getScrollTop: function () { |
|
|
|
|
} |
|
|
|
|
getScrollTop() { |
|
|
|
|
return this.options.scrollTop; |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
getMaxScrollLeft: function () { |
|
|
|
|
getMaxScrollLeft() { |
|
|
|
|
return this._getMaxScrollLeft(); |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
getMaxScrollTop: function () { |
|
|
|
|
getMaxScrollTop() { |
|
|
|
|
return this._getMaxScrollTop(); |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
setEstimatedColumnSize: function (width) { |
|
|
|
|
setEstimatedColumnSize(width) { |
|
|
|
|
this.options.estimatedColumnSize = width; |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
setEstimatedRowSize: function (height) { |
|
|
|
|
setEstimatedRowSize(height) { |
|
|
|
|
this.options.estimatedRowSize = height; |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
// 重新计算children
|
|
|
|
|
_reRange: function () { |
|
|
|
|
_reRange() { |
|
|
|
|
this.renderRange = {}; |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
_clearChildren: function () { |
|
|
|
|
_clearChildren() { |
|
|
|
|
this.container._children = {}; |
|
|
|
|
this.container.attr("items", []); |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
restore: function () { |
|
|
|
|
BI.each(this.renderedCells, function (i, cell) { |
|
|
|
|
restore() { |
|
|
|
|
BI.each(this.renderedCells, (i, cell)=> { |
|
|
|
|
cell.el._destroy(); |
|
|
|
|
}); |
|
|
|
|
this._clearChildren(); |
|
|
|
@ -423,14 +426,12 @@ BI.GridView = BI.inherit(BI.Widget, {
|
|
|
|
|
this.renderedKeys = []; |
|
|
|
|
this.renderRange = {}; |
|
|
|
|
this._scrollLock = false; |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
populate: function (items) { |
|
|
|
|
populate(items) { |
|
|
|
|
if (items && items !== this.options.items) { |
|
|
|
|
this.restore(); |
|
|
|
|
} |
|
|
|
|
this._populate(items); |
|
|
|
|
}, |
|
|
|
|
}); |
|
|
|
|
BI.GridView.EVENT_SCROLL = "EVENT_SCROLL"; |
|
|
|
|
BI.shortcut("bi.grid_view", BI.GridView); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|