Blame view

app/main/templates/agent.html 5.34 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
<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;
17a768f8   hitier   Enhance agent cha...
21
    opacity: 1.0;
b15e4db5   hitier   Tooltip on mouseo...
22
23
24
25
26
    z-index: 1000;
    text-align: left;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
17a768f8   hitier   Enhance agent cha...
27
28
29
30
31
    padding: 10px;
    border: 1px solid;
    background-color: white;
    color: black;
    /*font: 12px sans-serif;*/
b15e4db5   hitier   Tooltip on mouseo...
32
33
34
35
    max-width: 300px;
  }

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

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


d9f5cfc9   hitier   New agent page dy...
43
{% block more_scripts %}
b15e4db5   hitier   Tooltip on mouseo...
44
45
46
47
48
49
50
51
52
{% 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...
53
      .padding(0.2);
b15e4db5   hitier   Tooltip on mouseo...
54
55
56
57
58
59
60
61
62
63
64

  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 + ")");

b15e4db5   hitier   Tooltip on mouseo...
65
66
67

  // 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...
68
69
70

    // waiting for structure of the form:
    //
17a768f8   hitier   Enhance agent cha...
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
    // {
    // '2014_S1': {'4Q++': None,
    //          'Activité service C2L': None,
    //          'Activité service COMCL': None,
    //          .
    //           ...},
    // '2014_S2': {'4Q++': None,
    //          'Activité service C2L': None,
    //          .
    //          .
    //          .
    // '2021_S2': {'4Q++': None,
    //          .
    //          .
    //          'Test IAS': None,
    //          'cahier des charges DT insu': None,
    //          'ŒIL': None
    //          }
    //   }


22c5ff60   hitier   New stacked_charg...
92
93
94
    var periods = Object.keys(data)
    var first_stacked_charges = Object.values(data)[0]
    var projects = Object.keys(first_stacked_charges)
22c5ff60   hitier   New stacked_charg...
95

22c5ff60   hitier   New stacked_charg...
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
    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",
        ]);

17a768f8   hitier   Enhance agent cha...
129
    var stack_generator = d3.stack().keys(projects)
22c5ff60   hitier   New stacked_charg...
130

17a768f8   hitier   Enhance agent cha...
131
132
133
    // Building a list of dict, with projects as keys, like in the input dat,
    // but with a new key, 'period' wich value is the period string for that line
    // This is need for the d3js stack_generator function
22c5ff60   hitier   New stacked_charg...
134
    var stackable_data = []
17a768f8   hitier   Enhance agent cha...
135
    Object.keys(data).forEach(function (period) {
22c5ff60   hitier   New stacked_charg...
136
      line = data[period];
17a768f8   hitier   Enhance agent cha...
137
      line['period'] = period;
22c5ff60   hitier   New stacked_charg...
138
139
140
141
142
      stackable_data.push(line)
    });

    var stacked_data = stack_generator(stackable_data)

17a768f8   hitier   Enhance agent cha...
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184

    // ----------------
    // Create a tooltip
    // ----------------
    var tooltip = d3.select("#charge_div")
        .append("div")
        .style("opacity", 0)
        .attr("class", "tooltip")

    // // Three function that change the tooltip when user hover / move / leave a cell
    // var mouseover = function (d) {
    //   var subgroupName = d3.select(this.parentNode).datum().key;
    //   // var subgroupValue = d.data[subgroupName];
    //   tooltip
    //       .html("subgroup: " + subgroupName + "<br>" + "Value: " + subgroupValue)
    //       .style("opacity", 1)
    // }

    var mousemove = function (e, d) {
      tooltip
          .style("left", (e.x - 400) + "px")
          .style("top", (e.y - 90) + "px")
    }

    var mouseleave = function (d) {
      tooltip
          .transition()
          .duration(100)
          .style("opacity", 0)
    }

    var mouseover = function (e, d) {
      var project_name = d3.select(this.parentNode).datum().key
      var project_charge = d.data[project_name]
      tooltip.transition()
          .duration(200)
          .style("opacity", 1);
      tooltip
          .html("Project: " + project_name + "<br>" + "Charge: " + project_charge+"%")
          .style("left", (e.x - 400) + "px")
          .style("top", (e.y - 90) + "px");
    }
22c5ff60   hitier   New stacked_charg...
185
186
187
188
189
190
191
192
193
194
195

    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...
196
        .enter().append("rect")
22c5ff60   hitier   New stacked_charg...
197
198
199
        .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...
200
        .attr("width", x.bandwidth())
17a768f8   hitier   Enhance agent cha...
201
202
203
204
        .attr("stroke", "black")
        .on("mouseover", mouseover)
        .on("mousemove", mousemove)
        .on("mouseleave", mouseleave);
b15e4db5   hitier   Tooltip on mouseo...
205
206
  });
</script>
d9f5cfc9   hitier   New agent page dy...
207
{% endblock %}