Added Rectangle Text for Endpoints
This commit is contained in:
parent
6b2e74f292
commit
5d5e0d3d52
|
@ -13,7 +13,6 @@ function createLineGraph(containerId, raceData){
|
||||||
|
|
||||||
var enhancedLapData = processor.getEnhancedLapDataPerDriver(raceData);
|
var enhancedLapData = processor.getEnhancedLapDataPerDriver(raceData);
|
||||||
|
|
||||||
|
|
||||||
// Configuration
|
// Configuration
|
||||||
var height = 720;
|
var height = 720;
|
||||||
var width = 1080;
|
var width = 1080;
|
||||||
|
@ -21,6 +20,14 @@ function createLineGraph(containerId, raceData){
|
||||||
var rectSize = 10;
|
var rectSize = 10;
|
||||||
var amountClickedLines = 0;
|
var amountClickedLines = 0;
|
||||||
|
|
||||||
|
//ElemTypes of this graph
|
||||||
|
var elemTypes = {
|
||||||
|
line: "line",
|
||||||
|
linepoint: "linepoint",
|
||||||
|
pitstoppoint: "pitstoppoint",
|
||||||
|
endpoint: "endpoint"
|
||||||
|
};
|
||||||
|
|
||||||
// set the dimensions and margins of the graph
|
// set the dimensions and margins of the graph
|
||||||
var margin = {top: 50, right: 100, bottom: 50, left: 100},
|
var margin = {top: 50, right: 100, bottom: 50, left: 100},
|
||||||
width = width - margin.left - margin.right,
|
width = width - margin.left - margin.right,
|
||||||
|
@ -61,6 +68,7 @@ function createLineGraph(containerId, raceData){
|
||||||
.attr("data-line", driverLapData.driver.driverId)// custom data to Specify the line
|
.attr("data-line", driverLapData.driver.driverId)// custom data to Specify the line
|
||||||
.attr("data-opacitychange", 1)
|
.attr("data-opacitychange", 1)
|
||||||
.attr("data-highlighted", 0)
|
.attr("data-highlighted", 0)
|
||||||
|
.attr("data-elemtype", elemTypes.line)
|
||||||
.attr("stroke", getColorValue(driverIndex, enhancedLapData.length) )
|
.attr("stroke", getColorValue(driverIndex, enhancedLapData.length) )
|
||||||
.attr("d", lineDataDefinition);
|
.attr("d", lineDataDefinition);
|
||||||
|
|
||||||
|
@ -72,6 +80,7 @@ function createLineGraph(containerId, raceData){
|
||||||
.attr("data-line", driverLapData.driver.driverId)
|
.attr("data-line", driverLapData.driver.driverId)
|
||||||
.attr("data-opacitychange", 0)
|
.attr("data-opacitychange", 0)
|
||||||
.attr("data-highlighted", 0)
|
.attr("data-highlighted", 0)
|
||||||
|
.attr("data-elemtype", elemTypes.linepoint)
|
||||||
.attr("fill", getColorValue(driverIndex, enhancedLapData.length))
|
.attr("fill", getColorValue(driverIndex, enhancedLapData.length))
|
||||||
.attr("cx", function(d, i) {return x(d.lap) })
|
.attr("cx", function(d, i) {return x(d.lap) })
|
||||||
.attr("cy", function(d, i) { return y(d.position) })
|
.attr("cy", function(d, i) { return y(d.position) })
|
||||||
|
@ -87,10 +96,11 @@ function createLineGraph(containerId, raceData){
|
||||||
svg.selectAll(".pitstoppoint")
|
svg.selectAll(".pitstoppoint")
|
||||||
.data([singleLap])
|
.data([singleLap])
|
||||||
.enter().append("circle") // Uses the enter().append() method
|
.enter().append("circle") // Uses the enter().append() method
|
||||||
.attr("class", "dot pitstopdot") // Assign a class for styling
|
.attr("class", "dot pitstoppoint") // Assign a class for styling
|
||||||
.attr("data-line", driverLapData.driver.driverId)
|
.attr("data-line", driverLapData.driver.driverId)
|
||||||
.attr("data-opacitychange", 1)
|
.attr("data-opacitychange", 1)
|
||||||
.attr("data-highlighted", 0)
|
.attr("data-highlighted", 0)
|
||||||
|
.attr("data-elemtype", elemTypes.pitstoppoint)
|
||||||
.attr("fill", getColorValue(driverIndex, enhancedLapData.length))
|
.attr("fill", getColorValue(driverIndex, enhancedLapData.length))
|
||||||
.attr("cx", function(d, i) {return x(d.lap) })
|
.attr("cx", function(d, i) {return x(d.lap) })
|
||||||
.attr("cy", function(d, i) { return y(d.position) })
|
.attr("cy", function(d, i) { return y(d.position) })
|
||||||
|
@ -112,15 +122,19 @@ function createLineGraph(containerId, raceData){
|
||||||
svg.selectAll(".endpoint")
|
svg.selectAll(".endpoint")
|
||||||
.data([driverLapData.laps[driverLapData.laps.length - 1]])
|
.data([driverLapData.laps[driverLapData.laps.length - 1]])
|
||||||
.enter().append("rect") // Uses the enter().append() method
|
.enter().append("rect") // Uses the enter().append() method
|
||||||
.attr("class", "dot pitstopdot") // Assign a class for styling
|
//.attr("class", "endpoint") // Assign a class for styling
|
||||||
.attr("data-line", driverLapData.driver.driverId)
|
.attr("data-line", driverLapData.driver.driverId)
|
||||||
.attr("data-opacitychange", 1)
|
.attr("data-opacitychange", 1)
|
||||||
.attr("data-highlighted", 0)
|
.attr("data-highlighted", 0)
|
||||||
|
.attr("data-elemtype", elemTypes.endpoint)
|
||||||
.attr("fill", getColorValue(driverIndex, enhancedLapData.length))
|
.attr("fill", getColorValue(driverIndex, enhancedLapData.length))
|
||||||
.attr("x", function(d, i) {return x(d.lap) - rectSize * 1/2 })
|
.attr("x", function(d, i) {return x(d.lap) - rectSize * 1/2 })
|
||||||
.attr("y", function(d, i) { return y(d.position) - rectSize * 1/2 })
|
.attr("y", function(d, i) { return y(d.position) - rectSize * 1/2 })
|
||||||
.attr("height", rectSize)
|
.attr("height", rectSize)
|
||||||
.attr("width", rectSize);
|
.attr("width", rectSize)
|
||||||
|
.on("click", handleClickOnPoint)
|
||||||
|
.on("mouseover", handleMouseOverLinePoint)
|
||||||
|
.on("mouseout", handleMouseOutLinePoint);
|
||||||
|
|
||||||
/* tried with Cross, didn't work, don't know why
|
/* tried with Cross, didn't work, don't know why
|
||||||
svg.selectAll(".endpoint")
|
svg.selectAll(".endpoint")
|
||||||
|
@ -167,7 +181,7 @@ function createLineGraph(containerId, raceData){
|
||||||
.attr("transform", "translate( " + (width) + ", 0 )");
|
.attr("transform", "translate( " + (width) + ", 0 )");
|
||||||
|
|
||||||
function handleClickOnPoint(d,i){
|
function handleClickOnPoint(d,i){
|
||||||
|
console.log(d);
|
||||||
//select elements that are highlightable but are not highlighted
|
//select elements that are highlightable but are not highlighted
|
||||||
d3.selectAll("[data-opacitychange='" + 1 +"'][data-highlighted='" + 0 +"']")
|
d3.selectAll("[data-opacitychange='" + 1 +"'][data-highlighted='" + 0 +"']")
|
||||||
.style("opacity", 0.3);
|
.style("opacity", 0.3);
|
||||||
|
@ -198,22 +212,25 @@ function createLineGraph(containerId, raceData){
|
||||||
}
|
}
|
||||||
|
|
||||||
function handleMouseOverLinePoint(d, i) {
|
function handleMouseOverLinePoint(d, i) {
|
||||||
// Add interactivity
|
var dataType = d3.select(this).attr("data-elemtype");
|
||||||
// Use D3 to select element, change color and size
|
|
||||||
if(!d.pitStop){
|
|
||||||
d3.select(this)
|
|
||||||
.style("opacity", 1);
|
|
||||||
}else{
|
|
||||||
d3.select(this)
|
|
||||||
.attr("r", linePointSize * 2);
|
|
||||||
}
|
|
||||||
|
|
||||||
//depending on Pitstop and lap different Texts
|
//depending on Pitstop and lap different Texts
|
||||||
var textArr = [];
|
var textArr = [];
|
||||||
if(d.pitStop){
|
|
||||||
textArr = getPitStopTextArray(raceData,d);
|
// Add interactivity
|
||||||
}else{
|
// Use D3 to select element, change color and size
|
||||||
|
if(dataType === elemTypes.linepoint){
|
||||||
|
d3.select(this)
|
||||||
|
.style("opacity", 1);
|
||||||
textArr = getLapTextArray(raceData,d);
|
textArr = getLapTextArray(raceData,d);
|
||||||
|
}else if(dataType === elemTypes.pitstoppoint){
|
||||||
|
d3.select(this)
|
||||||
|
.attr("r", linePointSize * 2);
|
||||||
|
textArr = getPitStopTextArray(raceData,d);
|
||||||
|
}else if(dataType === elemTypes.endpoint){
|
||||||
|
d3.select(this)
|
||||||
|
.attr("height", rectSize * 1.3)
|
||||||
|
.attr("width", rectSize * 1.3);
|
||||||
|
textArr = getEndPointTextArray(raceData,d);
|
||||||
}
|
}
|
||||||
|
|
||||||
//Necessary to add Text for each Line
|
//Necessary to add Text for each Line
|
||||||
|
@ -232,22 +249,25 @@ function createLineGraph(containerId, raceData){
|
||||||
}
|
}
|
||||||
|
|
||||||
function handleMouseOutLinePoint(d, i) {
|
function handleMouseOutLinePoint(d, i) {
|
||||||
|
var dataType = d3.select(this).attr("data-elemtype");
|
||||||
|
//depending on Pitstop and lap different Texts
|
||||||
|
var textArr = [];
|
||||||
|
|
||||||
// Use D3 to select element, change color back to normal
|
// Use D3 to select element, change color back to normal
|
||||||
if(!d.pitStop){
|
if(dataType === elemTypes.linepoint){
|
||||||
d3.select(this)
|
d3.select(this)
|
||||||
.attr("r", linePointSize)
|
.attr("r", linePointSize)
|
||||||
.style("opacity", 0);
|
.style("opacity", 0);
|
||||||
}else{
|
textArr = getLapTextArray(raceData,d);
|
||||||
|
}else if(dataType === elemTypes.pitstoppoint){
|
||||||
d3.select(this)
|
d3.select(this)
|
||||||
.attr("r", linePointSize);
|
.attr("r", linePointSize);
|
||||||
}
|
|
||||||
|
|
||||||
//depending on Pitstop and lap different Texts
|
|
||||||
var textArr = [];
|
|
||||||
if(d.pitStop){
|
|
||||||
textArr = getPitStopTextArray(raceData,d);
|
textArr = getPitStopTextArray(raceData,d);
|
||||||
}else{
|
}else if(dataType === elemTypes.endpoint){
|
||||||
textArr = getLapTextArray(raceData,d);
|
d3.select(this)
|
||||||
|
.attr("height", rectSize)
|
||||||
|
.attr("width", rectSize);
|
||||||
|
textArr = getEndPointTextArray(raceData,d);
|
||||||
}
|
}
|
||||||
|
|
||||||
textArr.forEach((text, textIndex)=> {
|
textArr.forEach((text, textIndex)=> {
|
||||||
|
@ -257,7 +277,7 @@ function createLineGraph(containerId, raceData){
|
||||||
}
|
}
|
||||||
|
|
||||||
function getLapTextArray(raceData, d){
|
function getLapTextArray(raceData, d){
|
||||||
var driverText = getDriverCodeById(raceData,d.driverId)
|
var driverText = getDriverCodeById(raceData,d.driverId);
|
||||||
var lapText = "Lap: " + d.lap;
|
var lapText = "Lap: " + d.lap;
|
||||||
var posText = "Pos: " + d.position;
|
var posText = "Pos: " + d.position;
|
||||||
var timeText = "Time: " + d.time;
|
var timeText = "Time: " + d.time;
|
||||||
|
@ -271,6 +291,24 @@ function createLineGraph(containerId, raceData){
|
||||||
return lapTextArr;
|
return lapTextArr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function getEndPointTextArray(raceData, d){
|
||||||
|
var status = "";
|
||||||
|
var endTextArr = getLapTextArray(raceData,d);
|
||||||
|
var allStatus = queries.getStatus();
|
||||||
|
|
||||||
|
for(var key in allStatus){
|
||||||
|
if(key === undefined) continue;
|
||||||
|
if(allStatus[key].statusId === d.finished.statusId){
|
||||||
|
status = allStatus[key].status;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
endTextArr.push("Reason: " + status);
|
||||||
|
|
||||||
|
return endTextArr;
|
||||||
|
}
|
||||||
|
|
||||||
function getDriverCodeFromPosAndLap(raceData, lapNr, pos){
|
function getDriverCodeFromPosAndLap(raceData, lapNr, pos){
|
||||||
var driverCode = "";
|
var driverCode = "";
|
||||||
if(lapNr == 0){
|
if(lapNr == 0){
|
||||||
|
|
Loading…
Reference in New Issue