Blame view

app/main/templates/agent.html 4.27 KB
d9f5cfc9   hitier   New agent page dy...
1
{% extends "base_page.html" %}
04e2a90d   hitier   Show agent charge...
2
3

{% block more_heads %}
b15e4db5   hitier   Tooltip on mouseo...
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<style type="text/css">
  #charge_div {
    background-color: #fAfAfA;
    border: 1pt solid black;
    display: inline-block;
  }

  rect.bar:hover {
    fill: dimgrey;
  }

  rect.bar {
    fill: rgb(127, 127, 159);
  }

  .tooltip {
    position: absolute;
    opacity: 0.8;
    z-index: 1000;
    text-align: left;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    padding: 8px;
    color: #fff;
    background-color: #000;
    font: 12px sans-serif;
    max-width: 300px;
  }

</style>
04e2a90d   hitier   Show agent charge...
35
36
{% endblock %}

d9f5cfc9   hitier   New agent page dy...
37
{% block content %}
b15e4db5   hitier   Tooltip on mouseo...
38
<div id="charge_div"></div>
d9f5cfc9   hitier   New agent page dy...
39
{% endblock %}
04e2a90d   hitier   Show agent charge...
40
41


d9f5cfc9   hitier   New agent page dy...
42
{% block more_scripts %}
b15e4db5   hitier   Tooltip on mouseo...
43
44
45
46
47
48
49
50
51
{% include 'd3js-includes.html' %}
<script>

  const margin = {top: 40, right: 40, bottom: 90, left: 120},
      width = 900 - margin.left - margin.right,
      height = 500 - margin.top - margin.bottom;

  const x = d3.scaleBand()
      .range([0, width])
73359858   hitier   Fix non empty cha...
52
      .padding(0.2);
b15e4db5   hitier   Tooltip on mouseo...
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69

  const y = d3.scaleLinear()
      .range([height, 0]);

  const svg = d3.select("#charge_div").append("svg")
      .attr("id", "svg")
      .attr("width", width + margin.left + margin.right)
      .attr("height", height + margin.top + margin.bottom)
      .append("g")
      .attr("transform", "translate(" + margin.left + "," + margin.top + ")");

  const div = d3.select("body").append("div")
      .attr("class", "tooltip")
      .style("opacity", 0);

  // On demande à D3JS de charger notre fichier
  d3.json("{{url_for('main.charge_agent', agent_id=agent.id)}}").then(data => {
22c5ff60   hitier   New stacked_charg...
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149

    // waiting for structure of the form:
    //
    var periods = Object.keys(data)
    var first_stacked_charges = Object.values(data)[0]
    var projects = Object.keys(first_stacked_charges)
    console.log(projects)

    // periods = data
    var x = d3.scaleBand()
        .domain(periods)
        .range([0, width])
        .padding(0.2)

    svg.append('g')
        .attr('transform', 'translate(20, ' + height + ')')
        .call(d3.axisBottom(x).tickSizeOuter(0));

    var y = d3.scaleLinear()
        .domain([0, 100])
        .range([height, 0])

    svg.append('g')
        .attr('transform', 'translate(20, 0)')
        .call(d3.axisLeft(y))

    var color = d3.scaleOrdinal()
        .domain(projects)
        .range(['#e41a1c', '#377eb8', '#4daf4a',
          "#800000",
          "#FFFF00",
          "#808000",
          "#00FF00",
          "#008000",
          "#00FFFF",
          "#008080",
          "#0000FF",
          "#000080",
          "#FF00FF",
          "#800080",
        ]);

    var stack_generator = d3.stack()
        .keys(projects)

    var stackable_data = []
    Object.keys(data).forEach( function (period){
      line = data[period];
      line['period']=period;
      stackable_data.push(line)
    });

    var stacked_data = stack_generator(stackable_data)

    // var sel = d3.select("#demo2")
    //     .select('g')
    //     .selectAll('g.series')
    //     .data(stackedSeries)
    //     .join('g')
    //     .classed('series', true)
    //     .style('fill', (d) => colorScale(d.key));
    //
    // sel.selectAll('rect')
    //     .data((d) => d)
    //     .join('rect')
    //     .attr('width', 40)
    //     .attr('y', (d) => yScale(d[1]))
    //     .attr('x', (d) => xScale(d.data.month) - 20)
    //     .attr('height', (d) => yScale(d[0]) - yScale(d[1]));

    svg.append('g')
        .selectAll('g')
        .data(stacked_data)
        .enter().append('g')
        .attr("fill", function (d) {
          return color(d.key);
        })
        .selectAll("rect")
        // enter a second time = loop subgroup per subgroup to add all rectangles
        .data(d => d)
b15e4db5   hitier   Tooltip on mouseo...
150
        .enter().append("rect")
22c5ff60   hitier   New stacked_charg...
151
152
153
        .attr("x", d => x(d.data.period) + 20)
        .attr("y", d => y(d[1]))
        .attr("height", d => y(d[0]) - y(d[1]))
b15e4db5   hitier   Tooltip on mouseo...
154
        .attr("width", x.bandwidth())
22c5ff60   hitier   New stacked_charg...
155

b15e4db5   hitier   Tooltip on mouseo...
156
        .on("mouseover", function (e, d) {
22c5ff60   hitier   New stacked_charg...
157
          console.log(d)
b15e4db5   hitier   Tooltip on mouseo...
158
159
160
          div.transition()
              .duration(200)
              .style("opacity", .9);
22c5ff60   hitier   New stacked_charg...
161
          div.html("Charge: " + d)
b15e4db5   hitier   Tooltip on mouseo...
162
163
164
165
166
167
168
169
170
171
              .style("left", (e.x + 10) + "px")
              .style("top", (e.y - 50) + "px");
        })
        .on("mouseout", function (d) {
          div.transition()
              .duration(500)
              .style("opacity", 0);
        });
  });
</script>
d9f5cfc9   hitier   New agent page dy...
172
{% endblock %}