2017-11-16 23:57:21 +01:00
|
|
|
"use strict";
|
|
|
|
|
2017-12-11 01:26:27 +01:00
|
|
|
// https://bl.ocks.org/mbostock/3884955
|
|
|
|
function createLineGraph(containerId, raceData){
|
2017-12-16 01:18:24 +01:00
|
|
|
console.log(raceData);
|
|
|
|
|
2017-12-17 23:19:00 +01:00
|
|
|
var height = 720;
|
|
|
|
var width = 1080;
|
2017-12-17 23:00:33 +01:00
|
|
|
var linePointSize = 5;
|
|
|
|
var amountClickedLines = 0;
|
2017-11-16 23:57:21 +01:00
|
|
|
|
2017-12-11 01:26:27 +01:00
|
|
|
// set the dimensions and margins of the graph
|
2017-12-17 10:38:48 +01:00
|
|
|
var margin = {top: 50, right: 100, bottom: 50, left: 100},
|
2017-12-11 01:26:27 +01:00
|
|
|
width = width - margin.left - margin.right,
|
|
|
|
height = height - margin.top - margin.bottom;
|
2017-11-16 23:57:21 +01:00
|
|
|
|
2017-12-11 01:26:27 +01:00
|
|
|
// set the ranges
|
|
|
|
var x = d3.scaleLinear().range([0, width]);
|
|
|
|
var y = d3.scaleLinear().range([height, 0]);
|
2017-11-19 14:57:53 +01:00
|
|
|
|
2017-12-11 01:26:27 +01:00
|
|
|
// defines how the passed in Data, at "svg.append" shall be interpreted
|
|
|
|
var lineDataDefinition = d3.line()
|
|
|
|
.x(function(d) { return x(d.lap); })
|
|
|
|
.y(function(d) { return y(d.position); });
|
2017-11-19 14:57:53 +01:00
|
|
|
|
2017-12-11 01:26:27 +01:00
|
|
|
// append the svg obgect to the body of the page
|
|
|
|
// appends a 'group' element to 'svg'
|
|
|
|
// moves the 'group' element to the top left margin
|
|
|
|
var svg = d3.select(containerId).append("svg")
|
|
|
|
.attr("width", width + margin.left + margin.right)
|
|
|
|
.attr("height", height + margin.top + margin.bottom)
|
|
|
|
.append("g")
|
|
|
|
.attr("transform",
|
|
|
|
"translate(" + margin.left + "," + margin.top + ")");
|
|
|
|
|
|
|
|
// Scale the range of the data
|
|
|
|
x.domain([0, raceData.lapTimes.size]);
|
|
|
|
y.domain([raceData.drivers.length, 1]);
|
|
|
|
|
2017-12-16 01:18:24 +01:00
|
|
|
var enhancedLapData = processor.getEnhancedLapDataPerDriver(raceData);
|
|
|
|
console.log(enhancedLapData);
|
|
|
|
|
2017-12-11 01:26:27 +01:00
|
|
|
// Adds all lines
|
2017-12-16 01:18:24 +01:00
|
|
|
enhancedLapData.forEach((driverLapData, driverIndex) => {
|
2017-12-17 23:19:00 +01:00
|
|
|
//console.log(driverLapData);
|
2017-12-16 01:18:24 +01:00
|
|
|
svg.append("path")
|
|
|
|
.data([driverLapData.laps])
|
|
|
|
.attr("class", "line")
|
2017-12-17 23:19:00 +01:00
|
|
|
.attr("data-line", driverLapData.driver.driverId)// custom data to Specify the line
|
|
|
|
.attr("data-highlightable", 1)
|
|
|
|
.attr("data-highlighted", 0)
|
2017-12-16 01:18:24 +01:00
|
|
|
.attr("stroke", getColorValue(driverIndex, enhancedLapData.length) )
|
2017-12-16 21:54:07 +01:00
|
|
|
.attr("d", lineDataDefinition);
|
2017-12-16 01:18:24 +01:00
|
|
|
|
|
|
|
//Appends a circle for each datapoint
|
|
|
|
svg.selectAll(".linepoint")
|
|
|
|
.data(driverLapData.laps)
|
|
|
|
.enter().append("circle") // Uses the enter().append() method
|
2017-12-17 23:19:00 +01:00
|
|
|
.attr("class", "dot linedot") // Assign a class for styling
|
|
|
|
.attr("data-line", driverLapData.driver.driverId)
|
|
|
|
.attr("data-highlightable", 0)
|
|
|
|
.attr("data-highlighted", 0)
|
2017-12-16 01:18:24 +01:00
|
|
|
.attr("fill", getColorValue(driverIndex, enhancedLapData.length))
|
|
|
|
.attr("cx", function(d, i) {return x(d.lap) })
|
|
|
|
.attr("cy", function(d, i) { return y(d.position) })
|
2017-12-16 21:54:07 +01:00
|
|
|
.attr("r", linePointSize)
|
2017-12-17 23:19:00 +01:00
|
|
|
.on("click", handleClickOnPoint)
|
2017-12-16 01:18:24 +01:00
|
|
|
.on("mouseover", handleMouseOverLinePoint)
|
2017-12-16 21:54:07 +01:00
|
|
|
.on("mouseout", handleMouseOutLinePoint)
|
|
|
|
.style("opacity", 0);
|
|
|
|
|
|
|
|
driverLapData.laps.forEach((singleLap, singleLapIndex)=> {
|
|
|
|
if(singleLap.pitStop){
|
|
|
|
//Appends a circle for each datapoint
|
|
|
|
svg.selectAll(".pitstoppoint")
|
|
|
|
.data([singleLap])
|
|
|
|
.enter().append("circle") // Uses the enter().append() method
|
2017-12-17 23:19:00 +01:00
|
|
|
.attr("class", "dot pitstopdot") // Assign a class for styling
|
|
|
|
.attr("data-line", driverLapData.driver.driverId)
|
|
|
|
.attr("data-highlightable", 1)
|
|
|
|
.attr("data-highlighted", 0)
|
2017-12-16 21:54:07 +01:00
|
|
|
.attr("fill", getColorValue(driverIndex, enhancedLapData.length))
|
|
|
|
.attr("cx", function(d, i) {return x(d.lap) })
|
|
|
|
.attr("cy", function(d, i) { return y(d.position) })
|
|
|
|
.attr("r", linePointSize * 1.2)
|
2017-12-17 23:19:00 +01:00
|
|
|
.on("click", handleClickOnPoint)
|
2017-12-16 21:54:07 +01:00
|
|
|
.on("mouseover", handleMouseOverLinePoint)
|
|
|
|
.on("mouseout", handleMouseOutLinePoint);
|
|
|
|
}
|
|
|
|
});
|
2017-12-16 01:18:24 +01:00
|
|
|
|
2017-12-11 01:26:27 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
// Add the X Axis
|
|
|
|
svg.append("g")
|
|
|
|
.attr("transform", "translate(0," + height + ")")
|
|
|
|
.call(d3.axisBottom(x));
|
|
|
|
|
|
|
|
// Add the Y Axis on both sides
|
|
|
|
svg.append("g")
|
|
|
|
.call(d3.axisLeft(y));
|
|
|
|
svg.append("g")
|
|
|
|
.call(d3.axisRight(y))
|
|
|
|
.attr("transform", "translate( " + (width) + ", 0 )");
|
2017-12-13 00:12:11 +01:00
|
|
|
|
2017-12-17 23:19:00 +01:00
|
|
|
function handleClickOnPoint(d,i){
|
|
|
|
console.log(this);
|
|
|
|
//select elements that are highlightable but are not highlighted
|
|
|
|
d3.selectAll("[data-highlightable='" + 1 +"'][data-highlighted='" + 0 +"']")
|
|
|
|
.style("opacity", 0.3);
|
|
|
|
|
|
|
|
// if clicked on already highlighted line, remove highlight
|
|
|
|
if(this.getAttribute("data-highlighted") == 1){
|
|
|
|
d3.selectAll("[data-line='" + d.driverId +"'][data-highlightable='" + 1 +"']")
|
|
|
|
.attr("data-highlighted", 0)
|
|
|
|
.style("opacity", 0.3);
|
|
|
|
}else{
|
|
|
|
//select elements that belong to line and are highlightable
|
|
|
|
d3.selectAll("[data-line='" + d.driverId +"'][data-highlightable='" + 1 +"']")
|
|
|
|
.attr("data-highlighted", 1)
|
|
|
|
.style("opacity", 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
// if no element highlighted, then everything normal again
|
|
|
|
var highlightedElements = d3.selectAll("[data-highlightable='" + 1 +"'][data-highlighted='" + 1 +"']");
|
|
|
|
console.log(highlightedElements);
|
|
|
|
if(highlightedElements.size() == 0){
|
|
|
|
//select elements that are highlightable but are not highlighted
|
|
|
|
d3.selectAll("[data-highlightable='" + 1 +"'][data-highlighted='" + 0 +"']")
|
|
|
|
.style("opacity", 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-12-16 01:18:24 +01:00
|
|
|
function handleMouseOverLinePoint(d, i) {
|
|
|
|
// Add interactivity
|
|
|
|
// Use D3 to select element, change color and size
|
2017-12-16 21:54:07 +01:00
|
|
|
if(!d.pitStop){
|
|
|
|
d3.select(this)
|
|
|
|
.style("opacity", 1);
|
|
|
|
}else{
|
|
|
|
d3.select(this)
|
|
|
|
.attr("r", linePointSize * 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
//depending on Pitstop and lap different Texts
|
|
|
|
var textArr = [];
|
|
|
|
if(d.pitStop){
|
|
|
|
textArr = getPitStopTextArray(raceData,d);
|
|
|
|
}else{
|
|
|
|
textArr = getLapTextArray(raceData,d);
|
|
|
|
}
|
|
|
|
|
|
|
|
//Necessary to add Text for each Line
|
|
|
|
textArr.forEach((text, textIndex) =>{
|
|
|
|
// Specify where to put label of text
|
|
|
|
svg.append("text")
|
|
|
|
.attr("id", "t" + d.lap + "-" + d.position + "-" + i + "-" + textIndex)// Create an id for text so we can select it later for removing on mouseout
|
|
|
|
.attr("x", function() { return x(d.lap) - 70; })
|
|
|
|
.attr("y", function() { return y(d.position) - 15; })
|
|
|
|
.attr("dy", textIndex + "em")
|
|
|
|
.text(function() {
|
|
|
|
return text; // Value of the text
|
|
|
|
});
|
2017-12-16 01:18:24 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function handleMouseOutLinePoint(d, i) {
|
|
|
|
// Use D3 to select element, change color back to normal
|
2017-12-16 21:54:07 +01:00
|
|
|
if(!d.pitStop){
|
|
|
|
d3.select(this)
|
|
|
|
.attr("r", linePointSize)
|
|
|
|
.style("opacity", 0);
|
|
|
|
}else{
|
|
|
|
d3.select(this)
|
|
|
|
.attr("r", linePointSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
//depending on Pitstop and lap different Texts
|
|
|
|
var textArr = [];
|
|
|
|
if(d.pitStop){
|
|
|
|
textArr = getPitStopTextArray(raceData,d);
|
|
|
|
}else{
|
|
|
|
textArr = getLapTextArray(raceData,d);
|
|
|
|
}
|
|
|
|
|
|
|
|
textArr.forEach((text, textIndex)=> {
|
|
|
|
// Select text by id and then remove
|
|
|
|
d3.select("#t" + d.lap + "-" + d.position + "-" + i + "-" + textIndex).remove(); // Remove text location
|
2017-12-16 01:18:24 +01:00
|
|
|
});
|
2017-12-16 21:54:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function getLapTextArray(raceData, d){
|
|
|
|
var driverText = getDriverCodeById(raceData,d.driverId)
|
|
|
|
var lapText = "Lap: " + d.lap;
|
|
|
|
var posText = "Pos: " + d.position;
|
|
|
|
var timeText = "Time: " + d.time;
|
|
|
|
return [driverText, lapText, posText, timeText];
|
|
|
|
}
|
2017-12-16 01:18:24 +01:00
|
|
|
|
2017-12-16 21:54:07 +01:00
|
|
|
function getPitStopTextArray(raceData, d){
|
|
|
|
var lapTextArr = getLapTextArray(raceData,d);
|
|
|
|
lapTextArr.push("Stop Nr: " + d.pitStop.stop);
|
|
|
|
lapTextArr.push("Duration: " + d.pitStop.duration);
|
|
|
|
return lapTextArr;
|
2017-12-16 01:18:24 +01:00
|
|
|
}
|
2017-12-13 00:12:11 +01:00
|
|
|
|
2017-11-16 23:57:21 +01:00
|
|
|
}
|