kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
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.
102 lines
3.1 KiB
102 lines
3.1 KiB
uiComponentsApp.directive('timeline', ['TimelineLoaderService', function(TimelineLoaderService) {
|
|
return {
|
|
restrict: 'A',
|
|
link: function(scope, element, attributes) {
|
|
updateToolbar = function() {
|
|
scope.slider.slider('value', scope.timeline.zoomIndex + 1);
|
|
scope.currentOutlineLevel = Timeline.OUTLINE_LEVELS[scope.timeline.expansionIndex];
|
|
scope.currentScaleName = Timeline.ZOOM_SCALES[scope.timeline.zoomIndex];
|
|
};
|
|
|
|
completeUI = function() {
|
|
// lift the curtain, paper otherwise doesn't show w/ VML.
|
|
scope.underConstruction = false;
|
|
scope.timeline.paper = new Raphael(scope.timeline.paperElement, 640, 480);
|
|
|
|
// perform some zooming. if there is a zoom level stored with the
|
|
// report, zoom to it. otherwise, zoom out. this also constructs
|
|
// timeline graph.
|
|
if (scope.timeline.options.zoom_factor &&
|
|
scope.timeline.options.zoom_factor.length === 1) {
|
|
scope.timeline.zoom(
|
|
scope.timeline.pnum(scope.timeline.options.zoom_factor[0])
|
|
);
|
|
} else {
|
|
scope.timeline.zoomOut();
|
|
}
|
|
|
|
// perform initial outline expansion.
|
|
if (scope.timeline.options.initial_outline_expansion &&
|
|
scope.timeline.options.initial_outline_expansion.length === 1) {
|
|
|
|
scope.timeline.expandTo(
|
|
scope.timeline.pnum(scope.timeline.options.initial_outline_expansion[0])
|
|
);
|
|
}
|
|
|
|
// zooming and initial outline expansion have consequences in the
|
|
// select inputs in the toolbar.
|
|
updateToolbar();
|
|
|
|
scope.timeline.getChart().scroll(function() {
|
|
scope.timeline.adjustTooltip();
|
|
});
|
|
|
|
jQuery(window).scroll(function() {
|
|
scope.timeline.adjustTooltip();
|
|
});
|
|
};
|
|
|
|
flattenTree = function(root) {
|
|
nodes = [];
|
|
|
|
angular.forEach(root.childNodes, function(node){
|
|
node.ancestors = [root];
|
|
if(root.ancestors) node.ancestors = root.ancestors.concat(node.ancestors);
|
|
|
|
nodes.push(node);
|
|
nodes = nodes.concat(flattenTree(node));
|
|
});
|
|
|
|
return nodes;
|
|
};
|
|
|
|
buildTree = function(timeline){
|
|
if (timeline.isGrouping() && timeline.options.grouping_two_enabled) {
|
|
timeline.secondLevelGroupingAdjustments();
|
|
}
|
|
|
|
tree = timeline.getLefthandTree();
|
|
|
|
scope.nodes = flattenTree(tree);
|
|
scope.nodes.unshift(tree);
|
|
|
|
return tree;
|
|
};
|
|
|
|
drawTree = function(tree) {
|
|
timeline = scope.timeline;
|
|
|
|
try {
|
|
window.clearTimeout(timeline.safetyHook);
|
|
|
|
if (tree.containsPlanningElements() || tree.containsProjects()) {
|
|
timeline.adjustForPlanningElements();
|
|
completeUI();
|
|
} else {
|
|
timeline.warn(I18n.t('js.label_no_data'), 'warning');
|
|
}
|
|
} catch (e) {
|
|
timeline.die(e);
|
|
}
|
|
|
|
};
|
|
|
|
// start timeline
|
|
scope.timeline.registerTimelineContainer(element);
|
|
TimelineLoaderService.loadTimelineData(scope.timeline)
|
|
.then(buildTree)
|
|
.then(drawTree);
|
|
}
|
|
};
|
|
}]);
|
|
|