Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: sitescripts/filterhits/static/query.js

Issue 4615801646612480: Issue 395 - Filter hits statistics backend (Closed)
Patch Set: Addressed further comments from Sebastian. Created April 2, 2015, 10:13 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sitescripts/filterhits/static/query.html ('k') | sitescripts/filterhits/test/__init__.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sitescripts/filterhits/static/query.js
diff --git a/sitescripts/filterhits/static/query.js b/sitescripts/filterhits/static/query.js
new file mode 100644
index 0000000000000000000000000000000000000000..040999d7f8941115666b2389a5b75c45f55da754
--- /dev/null
+++ b/sitescripts/filterhits/static/query.js
@@ -0,0 +1,39 @@
+(function () {
+ var table = $("#results").dataTable({
+ serverSide: true,
+ bFilter: false,
+ "columns": [
+ { data: "filter" },
+ { data: "domain" },
+ { data: "frequency" }
+ ],
+ order: [[2, "desc"]],
+ fnServerData: function (source, data, callback, settings) {
+ var sort = settings.aaSorting[0];
+ $.ajax({
+ dataType: "json",
+ type: "GET",
+ url: "/query",
+ data: {
+ echo: settings.iDraw,
+ skip: settings._iDisplayStart,
+ take: settings._iDisplayLength,
+ filter: $("#filter").val(),
+ domain: $("#domain").val(),
+ order: sort[1],
+ order_by: ["filter", "domain", "frequency"][sort[0]]
+ },
+ success: function(data, status, jqxhr) {
+ callback({
+ draw: data.echo,
+ recordsTotal: data.total,
+ recordsFiltered: data.total,
+ data: data.results
+ }, status, jqxhr);
+ }
+ });
+ }
+ });
+
+ $("#filter, #domain").on("input", function () { table.fnDraw(); });
+}());
« no previous file with comments | « sitescripts/filterhits/static/query.html ('k') | sitescripts/filterhits/test/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld