Skip to content

Commit 4ce2491

Browse files
authored
Refactors inline javascript in active_jobs (#3423)
* WIP - Refactors inline javascript in active_jobs * Fixes two bugs * Removes redundant plugin require * Fixes cluster/filter search functionality * Adjusts git string quote marks * Makes active_jobs JS code one file * Simplifies filter & cluster _id setting
1 parent 8a7bf69 commit 4ce2491

File tree

3 files changed

+62
-47
lines changed

3 files changed

+62
-47
lines changed

apps/dashboard/app/javascript/active_jobs.js

+50-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
'use strict';
22

33
import oboe from 'oboe';
4-
import dataTableProcessing from 'datatables.net-plugins/api/processing()';
54
import { cssBadgeForState, capitalizeFirstLetter } from './utils.js'
65

76
window.fetch_table_data = fetch_table_data;
87
window.create_datatable = create_datatable;
98
window.set_cluster_id = set_cluster_id;
109
window.set_filter_id = set_filter_id;
1110

12-
dataTableProcessing(window, jQuery);
13-
1411
var entityMap = {
1512
'&': '&',
1613
'<': '&lt;',
@@ -336,3 +333,53 @@ function set_cluster_id(id) {
336333
function reload_page() {
337334
window.location = '?' + get_request_params();
338335
}
336+
337+
const activeJobsConfig = $('#active_jobs_config')[0].dataset;
338+
339+
var filter_id = activeJobsConfig.filterId;
340+
var cluster_id = activeJobsConfig.clusterId;
341+
342+
if (filter_id == "null") {
343+
filter_id = localStorage.getItem('jobfilter') || activeJobsConfig.defaultFilterId;
344+
}
345+
346+
if (cluster_id == "null") {
347+
cluster_id = localStorage.getItem('jobcluster') || 'all';
348+
}
349+
350+
var performance_tracking_enabled = false;
351+
352+
function report_performance(){
353+
var marks = performance.getEntriesByType('mark');
354+
marks.forEach(function(entry){
355+
console.log(entry.startTime + "," + entry.name);
356+
});
357+
358+
// hack but only one mark for document ready, and rest are draw times
359+
if(marks.length > 1){
360+
console.log("version,documentReady,firstDraw,lastDraw");
361+
console.log(`${activeJobsConfig.oodVersion},${marks[0].startTime},${marks[1].startTime},${marks.slice(-1)[0].startTime}`);
362+
}
363+
}
364+
365+
if (activeJobsConfig.consoleLogPerformanceReport) {
366+
performance_tracking_enabled = true;
367+
performance.mark('document ready - build table and make ajax request for jobs');
368+
}
369+
370+
var table = create_datatable({
371+
drawCallback: function(settings){
372+
// do a performance mark every time we draw the table (which happens when new records are downloaded)
373+
if(performance_tracking_enabled && settings.aoData.length > 0){
374+
performance.mark('draw records - ' + settings.aoData.length);
375+
}
376+
}, base_uri: activeJobsConfig.baseUri});
377+
378+
fetch_table_data(table, {
379+
doneCallback: function(){
380+
// generate report after done fetching records
381+
if(performance_tracking_enabled){
382+
setTimeout(report_performance, 2000);
383+
}
384+
},
385+
base_uri: activeJobsConfig.baseUri});

apps/dashboard/app/javascript/application.js

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ import 'jquery-ujs';
1919
import 'datatables.net';
2020
import 'datatables.net-bs4/js/dataTables.bootstrap4';
2121
import 'datatables.net-select/js/dataTables.select';
22+
import 'datatables.net-plugins/api/processing().mjs';
2223

2324
import Rails from '@rails/ujs';
2425

apps/dashboard/app/views/active_jobs/index.html.erb

+11-44
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
<%= javascript_include_tag 'active_jobs', nonce: true %>
2-
31
<div class="row">
42
<div class="col-md-12">
53
<div class="float-right">
@@ -59,46 +57,15 @@
5957
</div>
6058
</div>
6159

62-
<script>
63-
var filter_id = <%= (@jobfilter ? "'#{@jobfilter}'" : "localStorage.getItem('jobfilter') || '#{default_filter_id}'").html_safe %>;
64-
var cluster_id = <%= (@jobcluster ? "'#{@jobcluster}'" : "localStorage.getItem('jobcluster') || 'all'").html_safe %>;
65-
var performance_tracking_enabled = false;
66-
67-
<% if Configuration.console_log_performance_report? %>
68-
function report_performance(){
69-
var marks = performance.getEntriesByType('mark');
70-
marks.forEach(function(entry){
71-
console.log(entry.startTime + "," + entry.name);
72-
});
73-
74-
// hack but only one mark for document ready, and rest are draw times
75-
if(marks.length > 1){
76-
console.log("version,documentReady,firstDraw,lastDraw");
77-
console.log(`<%= `git describe --always --tags`.strip() %>,${marks[0].startTime},${marks[1].startTime},${marks.slice(-1)[0].startTime}`);
78-
}
79-
}
80-
81-
performance_tracking_enabled = true;
82-
performance.mark('document ready - build table and make ajax request for jobs');
83-
<% end %>
84-
85-
var table = create_datatable({
86-
drawCallback: function(settings){
87-
// do a performance mark every time we draw the table (which happens when new records are downloaded)
88-
if(performance_tracking_enabled && settings.aoData.length > 0){
89-
performance.mark('draw records - ' + settings.aoData.length);
90-
}
91-
},
92-
base_uri: '<%= controller.relative_url_root %>'
93-
});
60+
<div hidden=true
61+
id="active_jobs_config"
62+
data-filter-id=<%= @jobfilter ? "#{@jobfilter}" : "null" %>
63+
data-default-filter-id=<%= default_filter_id %>
64+
data-cluster-id=<%= @jobcluster ? "#{@jobcluster}" : "null" %>
65+
data-console-log-performance-report=<%= Configuration.console_log_performance_report? %>
66+
data-base-uri=<%= controller.relative_url_root %>
67+
data-ood-version=<%= Configuration.ood_version %>
68+
>
69+
</div>
9470

95-
fetch_table_data(table, {
96-
doneCallback: function(){
97-
// generate report after done fetching records
98-
if(performance_tracking_enabled){
99-
setTimeout(report_performance, 2000);
100-
}
101-
},
102-
base_uri: '<%= controller.relative_url_root %>'
103-
});
104-
</script>
71+
<%= javascript_include_tag 'active_jobs', nonce: true %>

0 commit comments

Comments
 (0)