]> source.dussan.org Git - sonarqube.git/blob
48988ee7a4c237f4778a7cc7c5a277efa7c3c914
[sonarqube.git] /
1 <%
2   containerId = 'pie-chart-widget' + widget.id.to_s
3   chartTitle = widget_properties['chartTitle']
4   filterId = widget_properties['filter'].to_i
5   maxItems = widget_properties['maxItems'].to_i
6   reverseColor = widget_properties['reverseColor']
7
8   filter = MeasureFilter.find_by_id(filterId.to_i)
9   @widget_title = link_to h(filter.name), {:controller => 'measures', :action => 'filter', :id => filter.id, :display => 'list'}
10 %>
11
12 <div class="histogram-widget" id="<%= containerId %>">
13   <!--[if lte IE 8 ]> <h3><%= message('widget.unsupported_browser_warning') -%></h3> <![endif]-->
14
15   <!--[if (gte IE 9)|!(IE)]><!-->
16   <% if chartTitle %>
17   <h3><%= h(chartTitle) -%></h3>
18   <% end %>
19   <!--<![endif]-->
20 </div>
21
22 <!--[if (gte IE 9)|!(IE)]><!-->
23 <script>
24   (function () {
25     var metrics = [
26           '<%= widget_properties['colorMetric'].name -%>',
27           '<%= widget_properties['sizeMetric'].name -%>'
28         ],
29         query = [
30           'filter=<%= filterId -%>',
31           'metrics=' + metrics.join(','),
32           'fields=name,qualifier',
33           'pageSize=<%= maxItems -%>',
34           'page=1',
35           'sort=metric:' + metrics[0],
36           'asc=false'
37         ].join('&'),
38         widget = new SonarWidgets.Widget();
39
40     widget
41       .type('WordCloud')
42       .source(baseUrl + '/measures/search_filter?' + query)
43       .metricsPriority(metrics)
44       .options({
45         baseUrl: baseUrl + '/dashboard/index/',
46         noData: '<%= message('no_data') -%>'
47       })
48       .render('#<%= containerId -%>');
49
50     autoResize(500, function() {
51       widget.update('#<%= containerId -%>');
52     });
53   })();
54 </script>
55 <!--<![endif]-->
56
57
58
59