|
|
|
|
|
var chart_data = {}; |
|
var temp_chart_title; |
|
|
|
var currentChart = null; |
|
var currentSettings = null; |
|
|
|
function extractDate(dateString) { |
|
var matches, match; |
|
var dateTimeRegExp = /[0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2}/; |
|
var dateRegExp = /[0-9]{4}-[0-9]{2}-[0-9]{2}/; |
|
|
|
matches = dateTimeRegExp.exec(dateString); |
|
if (matches !== null && matches.length > 0) { |
|
match = matches[0]; |
|
return new Date(match.substr(0, 4), match.substr(5, 2), match.substr(8, 2), match.substr(11, 2), match.substr(14, 2), match.substr(17, 2)); |
|
} else { |
|
matches = dateRegExp.exec(dateString); |
|
if (matches !== null && matches.length > 0) { |
|
match = matches[0]; |
|
return new Date(match.substr(0, 4), match.substr(5, 2), match.substr(8, 2)); |
|
} |
|
} |
|
return null; |
|
} |
|
|
|
function PMA_queryChart(data, columnNames, settings) { |
|
if ($('#querychart').length === 0) { |
|
return; |
|
} |
|
|
|
var jqPlotSettings = { |
|
title : { |
|
text : settings.title, |
|
escapeHtml: true |
|
}, |
|
grid : { |
|
drawBorder : false, |
|
shadow : false, |
|
background : 'rgba(0,0,0,0)' |
|
}, |
|
legend : { |
|
show : true, |
|
placement : 'outsideGrid', |
|
location : 'e' |
|
}, |
|
axes : { |
|
xaxis : { |
|
|
|
|
|
|
|
label : escapeHtml(settings.xaxisLabel) |
|
}, |
|
yaxis : { |
|
label : settings.yaxisLabel |
|
} |
|
}, |
|
stackSeries : settings.stackSeries |
|
}; |
|
|
|
|
|
var factory = new JQPlotChartFactory(); |
|
var chart = factory.createChart(settings.type, "querychart"); |
|
|
|
|
|
var dataTable = new DataTable(); |
|
if (settings.type == 'timeline') { |
|
dataTable.addColumn(ColumnType.DATE, columnNames[settings.mainAxis]); |
|
} else if (settings.type == 'scatter') { |
|
dataTable.addColumn(ColumnType.NUMBER, columnNames[settings.mainAxis]); |
|
} else { |
|
dataTable.addColumn(ColumnType.STRING, columnNames[settings.mainAxis]); |
|
} |
|
$.each(settings.selectedSeries, function (index, element) { |
|
dataTable.addColumn(ColumnType.NUMBER, columnNames[element]); |
|
}); |
|
|
|
|
|
var columnsToExtract = [ settings.mainAxis ]; |
|
$.each(settings.selectedSeries, function (index, element) { |
|
columnsToExtract.push(element); |
|
}); |
|
var values = [], newRow, row, col; |
|
for (var i = 0; i < data.length; i++) { |
|
row = data[i]; |
|
newRow = []; |
|
for (var j = 0; j < columnsToExtract.length; j++) { |
|
col = columnNames[columnsToExtract[j]]; |
|
if (j === 0) { |
|
if (settings.type == 'timeline') { |
|
newRow.push(extractDate(row[col])); |
|
} else if (settings.type == 'scatter') { |
|
newRow.push(parseFloat(row[col])); |
|
} else { |
|
newRow.push(row[col]); |
|
} |
|
} else { |
|
newRow.push(parseFloat(row[col])); |
|
} |
|
} |
|
values.push(newRow); |
|
} |
|
dataTable.setData(values); |
|
|
|
|
|
chart.draw(dataTable, jqPlotSettings); |
|
return chart; |
|
} |
|
|
|
function drawChart() { |
|
currentSettings.width = $('#resizer').width() - 20; |
|
currentSettings.height = $('#resizer').height() - 20; |
|
|
|
|
|
if (currentChart !== null) { |
|
currentChart.destroy(); |
|
} |
|
|
|
var columnNames = []; |
|
$('select[name="chartXAxis"] option').each(function () { |
|
columnNames.push($(this).text()); |
|
}); |
|
try { |
|
currentChart = PMA_queryChart(chart_data, columnNames, currentSettings); |
|
} catch (err) { |
|
PMA_ajaxShowMessage(err.message, false); |
|
} |
|
} |
|
|
|
function getSelectedSeries() { |
|
var val = $('select[name="chartSeries"]').val() || []; |
|
var ret = []; |
|
$.each(val, function (i, v) { |
|
ret.push(parseInt(v, 10)); |
|
}); |
|
return ret; |
|
} |
|
|
|
|
|
|
|
|
|
AJAX.registerTeardown('tbl_chart.js', function () { |
|
$('input[name="chartType"]').unbind('click'); |
|
$('input[name="barStacked"]').unbind('click'); |
|
$('input[name="chartTitle"]').unbind('focus').unbind('keyup').unbind('blur'); |
|
$('select[name="chartXAxis"]').unbind('change'); |
|
$('select[name="chartSeries"]').unbind('change'); |
|
$('input[name="xaxis_label"]').unbind('keyup'); |
|
$('input[name="yaxis_label"]').unbind('keyup'); |
|
$('#resizer').unbind('resizestop'); |
|
}); |
|
|
|
AJAX.registerOnload('tbl_chart.js', function () { |
|
|
|
|
|
$('#resizer').resizable({ |
|
minHeight: 240, |
|
minWidth: 300 |
|
}) |
|
.width($('#div_view_options').width() - 50); |
|
|
|
$('#resizer').bind('resizestop', function (event, ui) { |
|
|
|
$('#querychart').height($('#resizer').height() * 0.96); |
|
$('#querychart').width($('#resizer').width() * 0.96); |
|
currentChart.redraw({ |
|
resetAxes : true |
|
}); |
|
}); |
|
|
|
currentSettings = { |
|
type : 'line', |
|
width : $('#resizer').width() - 20, |
|
height : $('#resizer').height() - 20, |
|
xaxisLabel : $('input[name="xaxis_label"]').val(), |
|
yaxisLabel : $('input[name="yaxis_label"]').val(), |
|
title : $('input[name="chartTitle"]').val(), |
|
stackSeries : false, |
|
mainAxis : parseInt($('select[name="chartXAxis"]').val(), 10), |
|
selectedSeries : getSelectedSeries() |
|
}; |
|
|
|
|
|
$('input[name="chartType"]').click(function () { |
|
var type = currentSettings.type = $(this).val(); |
|
if (type == 'bar' || type == 'column' || type == 'area') { |
|
$('span.barStacked').show(); |
|
} else { |
|
$('input[name="barStacked"]').attr('checked', false); |
|
$.extend(true, currentSettings, {stackSeries : false}); |
|
$('span.barStacked').hide(); |
|
} |
|
drawChart(); |
|
}); |
|
|
|
|
|
$('input[name="barStacked"]').click(function () { |
|
if ($(this).is(':checked')) { |
|
$.extend(true, currentSettings, {stackSeries : true}); |
|
} else { |
|
$.extend(true, currentSettings, {stackSeries : false}); |
|
} |
|
drawChart(); |
|
}); |
|
|
|
|
|
$('input[name="chartTitle"]') |
|
.focus(function () { |
|
temp_chart_title = $(this).val(); |
|
}) |
|
.keyup(function () { |
|
var title = $(this).val(); |
|
if (title.length === 0) { |
|
title = ' '; |
|
} |
|
currentSettings.title = $('input[name="chartTitle"]').val(); |
|
drawChart(); |
|
}) |
|
.blur(function () { |
|
if ($(this).val() != temp_chart_title) { |
|
drawChart(); |
|
} |
|
}); |
|
|
|
var dateTimeCols = []; |
|
var vals = $('input[name="dateTimeCols"]').val().split(' '); |
|
$.each(vals, function (i, v) { |
|
dateTimeCols.push(parseInt(v, 10)); |
|
}); |
|
|
|
var numericCols = []; |
|
var vals = $('input[name="numericCols"]').val().split(' '); |
|
$.each(vals, function (i, v) { |
|
numericCols.push(parseInt(v, 10)); |
|
}); |
|
|
|
|
|
$('select[name="chartXAxis"]').change(function () { |
|
currentSettings.mainAxis = parseInt($(this).val(), 10); |
|
if (dateTimeCols.indexOf(currentSettings.mainAxis) != -1) { |
|
$('span.span_timeline').show(); |
|
} else { |
|
$('span.span_timeline').hide(); |
|
if (currentSettings.type == 'timeline') { |
|
$('input#radio_line').prop('checked', true); |
|
currentSettings.type = 'line'; |
|
} |
|
} |
|
if (numericCols.indexOf(currentSettings.mainAxis) != -1) { |
|
$('span.span_scatter').show(); |
|
} else { |
|
$('span.span_scatter').hide(); |
|
if (currentSettings.type == 'scatter') { |
|
$('input#radio_line').prop('checked', true); |
|
currentSettings.type = 'line'; |
|
} |
|
} |
|
var xaxis_title = $(this).children('option:selected').text(); |
|
$('input[name="xaxis_label"]').val(xaxis_title); |
|
currentSettings.xaxisLabel = xaxis_title; |
|
drawChart(); |
|
}); |
|
|
|
|
|
$('select[name="chartSeries"]').change(function () { |
|
currentSettings.selectedSeries = getSelectedSeries(); |
|
var yaxis_title; |
|
if (currentSettings.selectedSeries.length == 1) { |
|
$('span.span_pie').show(); |
|
yaxis_title = $(this).children('option:selected').text(); |
|
} else { |
|
$('span.span_pie').hide(); |
|
if (currentSettings.type == 'pie') { |
|
$('input#radio_line').prop('checked', true); |
|
currentSettings.type = 'line'; |
|
} |
|
yaxis_title = PMA_messages.strYValues; |
|
} |
|
$('input[name="yaxis_label"]').val(yaxis_title); |
|
currentSettings.yaxisLabel = yaxis_title; |
|
drawChart(); |
|
}); |
|
|
|
|
|
$('input[name="xaxis_label"]').keyup(function () { |
|
currentSettings.xaxisLabel = $(this).val(); |
|
drawChart(); |
|
}); |
|
$('input[name="yaxis_label"]').keyup(function () { |
|
currentSettings.yaxisLabel = $(this).val(); |
|
drawChart(); |
|
}); |
|
|
|
$("#tblchartform").submit(); |
|
}); |
|
|
|
|
|
|
|
|
|
|
|
$("#tblchartform").live('submit', function (event) { |
|
if (!checkFormElementInRange(this, 'session_max_rows', PMA_messages.strNotValidRowNumber, 1) || |
|
!checkFormElementInRange(this, 'pos', PMA_messages.strNotValidRowNumber, 0 - 1) |
|
) { |
|
return false; |
|
} |
|
|
|
var $form = $(this); |
|
if (codemirror_editor) { |
|
$form[0].elements['sql_query'].value = codemirror_editor.getValue(); |
|
} |
|
if (!checkSqlQuery($form[0])) { |
|
return false; |
|
} |
|
|
|
$('.error').remove(); |
|
var $msgbox = PMA_ajaxShowMessage(); |
|
PMA_prepareForAjaxRequest($form); |
|
|
|
$.post($form.attr('action'), $form.serialize(), function (data) { |
|
if (data.success === true) { |
|
$('.success').fadeOut(); |
|
if (typeof data.chartData != 'undefined') { |
|
chart_data = jQuery.parseJSON(data.chartData); |
|
drawChart(); |
|
$('div#querychart').height($('div#resizer').height() * 0.96); |
|
$('div#querychart').width($('div#resizer').width() * 0.96); |
|
currentChart.redraw({ |
|
resetAxes : true |
|
}); |
|
$('#querychart').show(); |
|
} |
|
} else { |
|
PMA_ajaxRemoveMessage($msgbox); |
|
PMA_ajaxShowMessage(data.error, false); |
|
} |
|
PMA_ajaxRemoveMessage($msgbox); |
|
}, "json"); |
|
|
|
return false; |
|
}); |
|
|