-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Hide vertically hidden ranged items in groups that are not visible #2062
Changes from 6 commits
f1cb732
f096f27
bcb1789
666a221
1bd62d4
e9bc845
204ddb0
59d98c7
cb55268
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,164 @@ | ||
<html> | ||
<head> | ||
<title>Timeline | A lot of grouped data</title> | ||
|
||
<script src="../../../docs/js/jquery.min.js"></script> | ||
<script src="../../../dist/vis.js"></script> | ||
<link href="../../../dist/vis.css" rel="stylesheet" type="text/css" /> | ||
|
||
<style type="text/css"> | ||
body { | ||
color: #4D4D4D; | ||
font: 10pt arial; | ||
} | ||
</style> | ||
<script src="../../googleAnalytics.js"></script> | ||
</head> | ||
|
||
<body onresize="/*timeline.checkResize();*/"> | ||
<h1>Timeline grouping performance</h1> | ||
|
||
|
||
<button onclick="showVisibleItems()">Show current visible items</button> | ||
<div> | ||
<h2>visible items:</h2> | ||
<h3 id="visibleItemsContainer"></h3> | ||
</div> | ||
|
||
<div id="mytimeline"></div> | ||
<br> | ||
|
||
<script> | ||
function showVisibleItems() { | ||
var a = timeline.getVisibleItems(); | ||
console.log(a); | ||
document.getElementById("visibleItemsContainer").innerHTML = "" | ||
document.getElementById("visibleItemsContainer").innerHTML += a; | ||
}; | ||
|
||
// get selected item count from url parameter | ||
var count = 1000; | ||
|
||
// create groups | ||
var groups = new vis.DataSet([ | ||
{id: 1, content: 'Truck 1'}, | ||
{id: 2, content: 'Truck 2'}, | ||
{id: 3, content: 'Truck 3'}, | ||
{id: 4, content: 'Truck 4'}, | ||
{id: 5, content: 'Truck 5'}, | ||
{id: 6, content: 'Truck 6'}, | ||
{id: 7, content: 'Truck 7'}, | ||
{id: 8, content: 'Truck 8'}, | ||
{id: 9, content: 'Truck 9'}, | ||
{id: 10, content: 'Truck 10'}, | ||
{id: 11, content: 'Truck 11'}, | ||
{id: 12, content: 'Truck 12'}, | ||
{id: 13, content: 'Truck 13'}, | ||
{id: 14, content: 'Truck 14'}, | ||
{id: 15, content: 'Truck 15'}, | ||
{id: 16, content: 'Truck 16'}, | ||
{id: 17, content: 'Truck 17'}, | ||
{id: 18, content: 'Truck 18'}, | ||
{id: 19, content: 'Truck 19'}, | ||
{id: 20, content: 'Truck 20'}, | ||
{id: 21, content: 'Truck 21'}, | ||
{id: 22, content: 'Truck 22'}, | ||
{id: 23, content: 'Truck 23'}, | ||
{id: 24, content: 'Truck 24'}, | ||
{id: 25, content: 'Truck 25'}, | ||
|
||
]); | ||
|
||
// create items | ||
var items = new vis.DataSet(); | ||
|
||
var order = 1; | ||
var truck = 1; | ||
for (var j = 0; j < 25; j++) { | ||
var date = new Date(); | ||
for (var i = 0; i < count/25; i++) { | ||
date.setHours(date.getHours() + 4 * (Math.random() < 0.2)); | ||
var start = new Date(date); | ||
|
||
date.setHours(date.getHours() + 2 + Math.floor(Math.random()*4)); | ||
var end = new Date(date); | ||
|
||
items.add({ | ||
id: order, | ||
group: truck, | ||
start: start, | ||
end: end, | ||
content: 'Order ' + order | ||
}); | ||
|
||
order++; | ||
} | ||
truck++; | ||
} | ||
|
||
// specify options | ||
var options = { | ||
stack: true, | ||
maxHeight: 400, | ||
start: new Date(), | ||
end: new Date(1000*60*60*24 + (new Date()).valueOf()), | ||
editable: true, | ||
margin: { | ||
item: 10, // minimal margin between items | ||
axis: 5 // minimal margin between items and the axis | ||
}, | ||
orientation: 'top' | ||
}; | ||
|
||
|
||
// create a Timeline | ||
var container = document.getElementById('mytimeline'); | ||
timeline = new vis.Timeline(container, null, options); | ||
timeline.setGroups(groups); | ||
timeline.setItems(items); | ||
|
||
// $(document).ready(function(){ | ||
// var left = $('.vis-left>.vis-content'), | ||
// center = $('.vis-center>.vis-content'), | ||
// right = $('.vis-right>.vis-content'); | ||
// left.on('scroll', function() { | ||
// center.scrollTop($(this).scrollTop()); | ||
// right.scrollTop($(this).scrollTop()); | ||
// }); | ||
// center.on('scroll', function() { | ||
// left.scrollTop($(this).scrollTop()); | ||
// right.scrollTop($(this).scrollTop()); | ||
// }); | ||
// right.on('scroll', function() { | ||
// left.scrollTop($(this).scrollTop()); | ||
// center.scrollTop($(this).scrollTop()); | ||
// }); | ||
// }) | ||
|
||
// $('.vis-center>.vis-content').off('scroll').on('scroll', function () { | ||
// $('.vis-left>.vis-content').scrollTop($(this).scrollTop()); | ||
// }); | ||
// $('.vis-center>.vis-content').off('mousewheel').on('mousewheel', function (e) { | ||
// if (e.originalEvent.ctrlKey !== true) { | ||
// var current = $(this).scrollTop(); | ||
// var adjusted = current - (e.originalEvent.wheelDelta / 2); | ||
// $('.vis-left>.vis-content').scrollTop(adjusted); | ||
// $('.vis-center>.vis-content').scrollTop(adjusted); | ||
// } | ||
// }); | ||
</script> | ||
|
||
<style> | ||
/*.vis-right>.vis-content, .vis-center>.vis-content { | ||
overflow-x: hidden; | ||
overflow-y: hidden; | ||
} | ||
.vis-left>.vis-content { | ||
height: 100%; | ||
width: auto; | ||
overflow-x: hidden; | ||
overflow-y: scroll; | ||
}*/ | ||
</style> | ||
</body> | ||
</html> |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,7 @@ function Group (groupId, data, itemSet) { | |
this.subgroupIndex = 0; | ||
this.subgroupOrderer = data && data.subgroupOrder; | ||
this.itemSet = itemSet; | ||
this.isVisible = null; | ||
|
||
this.dom = {}; | ||
this.props = { | ||
|
@@ -180,6 +181,8 @@ Group.prototype.redraw = function(range, margin, restack) { | |
// recalculate the height of the subgroups | ||
this._calculateSubGroupHeights(); | ||
|
||
this.isVisible = this._isGroupVisible(range); | ||
|
||
// reposition visible items vertically | ||
if (typeof this.itemSet.options.order === 'function') { | ||
// a custom order function | ||
|
@@ -219,6 +222,10 @@ Group.prototype.redraw = function(range, margin, restack) { | |
} | ||
} | ||
|
||
if (!this.isVisible && this.height) { | ||
return resized = false; | ||
} | ||
|
||
// recalculate the height of the group | ||
var height = this._calculateHeight(margin); | ||
|
||
|
@@ -265,6 +272,17 @@ Group.prototype._calculateSubGroupHeights = function () { | |
} | ||
}; | ||
|
||
/** | ||
* check if group is visible | ||
* @private | ||
*/ | ||
Group.prototype._isGroupVisible = function (range) { | ||
var isVisible = | ||
(this.top <= range.body.domProps.centerContainer.height - range.body.domProps.scrollTop) | ||
&& (this.top + this.height >= - range.body.domProps.scrollTop); | ||
return isVisible; | ||
} | ||
|
||
/** | ||
* recalculate the height of the group | ||
* @param {{item: {horizontal: number, vertical: number}, axis: number}} margin | ||
|
@@ -475,6 +493,15 @@ Group.prototype.order = function() { | |
Group.prototype._updateVisibleItems = function(orderedItems, oldVisibleItems, range) { | ||
var visibleItems = []; | ||
var visibleItemsLookup = {}; // we keep this to quickly look up if an item already exists in the list without using indexOf on visibleItems | ||
|
||
if (!this.isVisible) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is the problem why examples with no groups are no longer working. Please rethink this lines again. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I solved it by add equals in the I think there should be a calculation of the initial group height and it should not be 0. It should calculate the height as if all the groups' items in the horizontal range are visible initially and then remove them if they aren't in the vertical range. |
||
for (i = 0; i < oldVisibleItems.length; i++) { | ||
item = oldVisibleItems[i]; | ||
if (item.displayed) item.hide(); | ||
} | ||
return visibleItems; | ||
} | ||
|
||
var interval = (range.end - range.start) / 4; | ||
var lowerBound = range.start - interval; | ||
var upperBound = range.end + interval; | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,8 +43,14 @@ RangeItem.prototype.baseClassName = 'vis-item vis-range'; | |
*/ | ||
RangeItem.prototype.isVisible = function(range) { | ||
// determine visibility | ||
return (this.data.start < range.end) && (this.data.end > range.start); | ||
}; | ||
var isVisible = | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The code formatting is broken here. Please check the indent of this function. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I've fixed it |
||
// determine horizontal visibillity | ||
(this.data.start < range.end) && | ||
(this.data.end > range.start) && | ||
// determine vertical visibillity | ||
(this.parent.top < range.body.domProps.centerContainer.height - range.body.domProps.scrollTop) && | ||
(this.parent.top + this.parent.height > - range.body.domProps.scrollTop) | ||
return isVisible;}; | ||
|
||
/** | ||
* Repaint the item | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What about all this comments. Can you remove them?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure, will do
נשלח מה-iPhone שלי
ב-5 בספט׳ 2016, בשעה 14:16, Alexander Wunschik [email protected] כתב/ה: