mirror of
https://github.com/VisActor/VTable
synced 2024-11-22 01:52:03 +00:00
fix: fix highlight logic in InvertHighlightPlugin
This commit is contained in:
parent
023da0bad6
commit
a2f99ca64e
@ -18,7 +18,7 @@ const generatePersons = count => {
|
||||
};
|
||||
|
||||
export function createTable() {
|
||||
const records = generatePersons(5);
|
||||
const records = generatePersons(20);
|
||||
const columns: VTable.ColumnsDefine = [
|
||||
{
|
||||
field: 'image',
|
||||
@ -76,7 +76,10 @@ export function createTable() {
|
||||
records,
|
||||
columns,
|
||||
theme: VTable.themes.DARK,
|
||||
heightMode: 'adaptive'
|
||||
// heightMode: 'adaptive',
|
||||
select: {
|
||||
disableSelect: true
|
||||
}
|
||||
};
|
||||
const tableInstance = new VTable.ListTable(option);
|
||||
window.tableInstance = tableInstance;
|
||||
@ -86,14 +89,32 @@ export function createTable() {
|
||||
});
|
||||
|
||||
const highlightPlugin = new VTable.InvertHighlightPlugin(tableInstance);
|
||||
highlightPlugin.setInvertHighlightRange({
|
||||
start: {
|
||||
col: 0,
|
||||
row: 6
|
||||
},
|
||||
end: {
|
||||
col: 6,
|
||||
row: 6
|
||||
// highlightPlugin.setInvertHighlightRange({
|
||||
// start: {
|
||||
// col: 0,
|
||||
// row: 6
|
||||
// },
|
||||
// end: {
|
||||
// col: 6,
|
||||
// row: 6
|
||||
// }
|
||||
// });
|
||||
|
||||
tableInstance.on('click_cell', event => {
|
||||
const { col, row } = event;
|
||||
if (tableInstance.isHeader(col, row)) {
|
||||
highlightPlugin.setInvertHighlightRange(undefined);
|
||||
} else {
|
||||
highlightPlugin.setInvertHighlightRange({
|
||||
start: {
|
||||
col: 0,
|
||||
row
|
||||
},
|
||||
end: {
|
||||
col: tableInstance.colCount - 1,
|
||||
row
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
|
@ -72,7 +72,14 @@ export class InvertHighlightPlugin {
|
||||
}
|
||||
cell.attachShadow(cell.shadowRoot);
|
||||
const shadowGroup = cell.shadowRoot;
|
||||
if (range && !shadowGroup.firstChild && !cellInRange(range, cell.col, cell.row)) {
|
||||
if (!range) {
|
||||
// no highlight
|
||||
shadowGroup.removeAllChild();
|
||||
} else if (cellInRange(range, cell.col, cell.row)) {
|
||||
// inside highlight
|
||||
shadowGroup.removeAllChild();
|
||||
} else if (!shadowGroup.firstChild) {
|
||||
// outside highlight
|
||||
const shadowRect = createRect({
|
||||
x: 0,
|
||||
y: 0,
|
||||
@ -83,8 +90,6 @@ export class InvertHighlightPlugin {
|
||||
});
|
||||
shadowRect.name = 'shadow-rect';
|
||||
shadowGroup.appendChild(shadowRect);
|
||||
} else {
|
||||
shadowGroup.removeAllChild();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user