2014-02-17 18:05:39 +01:00
|
|
|
// update the chart with all the textbox values
|
|
|
|
function openDialogCenter(element) {
|
|
|
|
element.dialog("open");
|
|
|
|
var sizeArr = getDimensions( element.parent() );
|
|
|
|
element.dialog({position:[ sizeArr[0], sizeArr[1] ] });
|
|
|
|
|
|
|
|
}
|
|
|
|
function getDimensions(element) {
|
|
|
|
var sizeArr = new Array(2);
|
|
|
|
sizeArr[0] = $(window).width()/2 - element.width()/2;
|
|
|
|
sizeArr[1] = $(window).height()/2 - element.height()/2;
|
|
|
|
return sizeArr;
|
|
|
|
}
|
|
|
|
|
|
|
|
function updateChart(index,
|
2014-03-22 18:21:45 +01:00
|
|
|
postUpdate,
|
|
|
|
width,
|
|
|
|
height,
|
|
|
|
channelId,
|
|
|
|
newOptionsSave) {
|
2014-02-17 18:05:39 +01:00
|
|
|
// default width and height
|
|
|
|
var width = width;
|
|
|
|
var height = height;
|
|
|
|
// get old src
|
|
|
|
|
|
|
|
var iframe = $('#iframe' + index).attr("default_src");
|
|
|
|
|
|
|
|
if (!iframe) {
|
2014-03-22 18:21:45 +01:00
|
|
|
iframe = $('#iframe' + index).attr('src');
|
2014-02-17 18:05:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
src = iframe.split('?')[0];
|
|
|
|
// if not a line chart, a timeslice should be present or set timescale=30
|
|
|
|
if ($('#type_' + index).val() != 'line') {
|
2014-03-22 18:21:45 +01:00
|
|
|
if ($('#timescale_' + index).val().length == 0 && $('#average_' + index).val().length == 0 && $('#median_' + index).val().length == 0 && $('#sum_' + index).val().length == 0) {
|
|
|
|
$('#timescale_' + index).val(30);
|
|
|
|
}
|
2014-02-17 18:05:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// add inputs to array
|
|
|
|
var inputs = [];
|
|
|
|
$('.chart_options' + index).each(function() {
|
2014-03-22 18:21:45 +01:00
|
|
|
var v = $(this).val();
|
|
|
|
var id = $(this).attr('id');
|
|
|
|
var tag = id.split("_")[0];
|
2014-02-17 18:05:39 +01:00
|
|
|
|
2014-03-22 18:21:45 +01:00
|
|
|
if (v.length > 0) { inputs.push([tag, v]); }
|
|
|
|
});
|
2014-02-17 18:05:39 +01:00
|
|
|
|
|
|
|
// create querystring
|
|
|
|
var qs = '';
|
|
|
|
while (inputs.length > 0) {
|
2014-03-22 18:21:45 +01:00
|
|
|
var p = inputs.pop();
|
|
|
|
if (p[0] == 'width') { width = parseInt(p[1]); }
|
|
|
|
if (p[0] == 'height') { height = parseInt(p[1]); }
|
|
|
|
|
|
|
|
// don't add type=line to querystring, it's the default value
|
|
|
|
if (!(p[0] == 'type' && p[1] == 'line')) {
|
|
|
|
qs += '&' + p[0] + '=' + encodeURIComponent(p[1]);
|
|
|
|
}
|
2014-02-17 18:05:39 +01:00
|
|
|
}
|
|
|
|
// if querystring exists, add it to src
|
|
|
|
if (qs.length > 0) { src += '?' + qs.substring(1); }
|
|
|
|
|
|
|
|
// save chart options to database
|
|
|
|
if (postUpdate && index > 0 && newOptionsSave) {
|
2014-03-22 18:21:45 +01:00
|
|
|
$.update("/channels/" + channelId + "/charts/" + index,
|
|
|
|
{
|
|
|
|
newOptions : { options: qs }
|
|
|
|
} );
|
2014-02-17 18:05:39 +01:00
|
|
|
}
|
|
|
|
else if (postUpdate && index > 0) {
|
2014-03-22 18:21:45 +01:00
|
|
|
$.update("/channels/" + channelId + "/charts/" + index,
|
|
|
|
{ options: qs } );
|
2014-02-17 18:05:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// set embed code
|
|
|
|
$('#embed' + index).val('<iframe width="' + width + '" height="' + height + '" style="border: 1px solid #cccccc;" src="' + src + '"></iframe>');
|
|
|
|
|
|
|
|
// set new src
|
|
|
|
$('#iframe' + index).attr('src', src);
|
|
|
|
$('#iframe' + index).attr('width', width);
|
|
|
|
$('#iframe' + index).attr('height', height);
|
|
|
|
}
|
|
|
|
function updateSelectValues() {
|
|
|
|
selectedValue = $(this).val();
|
|
|
|
$(".mutuallyexclusive"+index).each(function () { $(this).val(""); });
|
|
|
|
$(this).val(selectedValue);
|
|
|
|
}
|
|
|
|
|
|
|
|
function setupChartForm(channelIndex) {
|
|
|
|
return function(index, value) {
|
2014-03-22 18:21:45 +01:00
|
|
|
if (value.length > 0) {
|
|
|
|
$('#' + value.split('=')[0] + "_" + channelIndex).val(decodeURIComponent(value.split('=')[1]));
|
|
|
|
}
|
2014-02-17 18:05:39 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function setupColumns(current_user, channel_id)
|
|
|
|
{
|
|
|
|
$( sortColumnSetup(current_user, channel_id) ) ;
|
|
|
|
$( ".column" ).disableSelection();
|
|
|
|
}
|
|
|
|
|
|
|
|
function createWindowsWithData (data, current_user, channel_id, colName) {
|
|
|
|
|
2014-03-22 18:21:45 +01:00
|
|
|
for (var i in data) {
|
|
|
|
//each array element has a single chart object as an associative array with the type as the key
|
|
|
|
// so I need to iterate over a array with size=1 to get a string with the window type
|
|
|
|
for (var type in data[i]) {
|
|
|
|
var wtype = type;
|
|
|
|
}
|
|
|
|
if (data[i].chart_window) window = data[i].chart_window;
|
|
|
|
if (data[i].plugin_window) window = data[i].plugin_window;
|
|
|
|
if (data[i].portlet_window) window = data[i].portlet_window;
|
|
|
|
|
|
|
|
if (window == "undefined")
|
2014-02-17 18:05:39 +01:00
|
|
|
var window = (data[i].portlet_window) ? data[i].portlet_window : data[i].chart_window;
|
2014-03-22 18:21:45 +01:00
|
|
|
colId = window.col;
|
|
|
|
title = window.title;
|
2014-02-17 18:05:39 +01:00
|
|
|
|
2014-03-22 18:21:45 +01:00
|
|
|
var content = window.html;
|
|
|
|
if (data[i].chart_window) {
|
|
|
|
var windowId = window.id;
|
|
|
|
$("body").append("<div id='chartConfig"+windowId+"'></div>");
|
2014-02-17 18:05:39 +01:00
|
|
|
}
|
2014-03-22 18:21:45 +01:00
|
|
|
var portlet = addWindow(colName, colId, window.id, wtype, title, content);
|
|
|
|
portlet.each ( decoratePortlet(current_user) ) ;
|
|
|
|
|
|
|
|
portlet.find( ".ui-toggle" ).click( uiToggleClick );
|
|
|
|
portlet.find( ".ui-view" ).click( uiViewClick (channel_id) );
|
|
|
|
portlet.find( ".ui-edit" ).click( uiEditClick (channel_id) );
|
|
|
|
portlet.find( ".ui-close" ).click( uiCloseClick (channel_id) );
|
|
|
|
}
|
2014-02-17 18:05:39 +01:00
|
|
|
}
|
|
|
|
var createWindows = function (current_user, channel_id, colName) {
|
|
|
|
return function(data) {
|
2014-03-22 18:21:45 +01:00
|
|
|
createWindowsWithData(data, current_user, channel_id, colName);
|
2014-02-17 18:05:39 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function addWindow(colName, colId, windowId, wtype, title, content) {
|
|
|
|
$("#"+colName+"_dialog"+colId).append('<div class="portlet ui-widget ui-widget-content ui-helper-clearfix ui-corner-all" ' +
|
2014-03-22 18:21:45 +01:00
|
|
|
'id="portlet_' + windowId +
|
|
|
|
'"><div class="portlet-header wtype wtype-'+ wtype
|
|
|
|
+ ' ui-widget-header ui-corner-all">' + title +
|
|
|
|
'</div><div class="portlet-content">'+content+'</div>') ;
|
2014-02-17 18:05:39 +01:00
|
|
|
|
|
|
|
if ($("#portlet_"+windowId).length > 1) {
|
2014-03-22 18:21:45 +01:00
|
|
|
throw "Portlet count doesn't match what's expected";
|
2014-02-17 18:05:39 +01:00
|
|
|
} else {
|
2014-03-22 18:21:45 +01:00
|
|
|
return $("#portlet_"+windowId);
|
2014-02-17 18:05:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
var updatePortletPositions = function( current_user, channel_id) {
|
|
|
|
return function() {
|
|
|
|
if (current_user) {
|
2014-03-22 18:21:45 +01:00
|
|
|
var result = $(this).sortable('serialize');
|
|
|
|
colId = $(this).attr('id').charAt($(this).attr('id').length - 1);
|
|
|
|
portletArray = getPortletArray(result);
|
|
|
|
jsonResult = {
|
|
|
|
"col" : colId,
|
|
|
|
"positions" : portletArray
|
|
|
|
} ;
|
|
|
|
|
|
|
|
if (portletArray.length > 0) {
|
|
|
|
$.ajax({
|
|
|
|
type: 'PUT',
|
|
|
|
url: '../channels/' + channel_id + '/windows',
|
|
|
|
data: {_method:'PUT', page : JSON.stringify(jsonResult ) },
|
|
|
|
dataType: 'json'
|
|
|
|
});
|
|
|
|
}
|
2014-02-17 18:05:39 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function sortColumnSetup(current_user, channel_id) {
|
|
|
|
|
|
|
|
$( ".column" ).sortable({
|
2014-03-22 18:21:45 +01:00
|
|
|
opacity: 0.6,
|
|
|
|
helper: function( event ) {
|
|
|
|
return $("<div class='ui-widget-header'>Drop to re-position</div>");
|
|
|
|
},
|
|
|
|
connectWith: ".column",
|
|
|
|
update: updatePortletPositions(current_user, channel_id)
|
|
|
|
});
|
2014-02-17 18:05:39 +01:00
|
|
|
}
|
|
|
|
var decoratePortlet = function (current_user) {
|
|
|
|
return function() {
|
2014-03-22 18:21:45 +01:00
|
|
|
var portletHeader = $(this).find( ".portlet-header") ;
|
|
|
|
portletHeader.append( "<span id='commentBtn' class='ui-view ui-icon ui-icon-comment'></span>");
|
|
|
|
|
|
|
|
thisObject = $(this);
|
|
|
|
if (current_user == "true") {
|
|
|
|
// Use feature Rollout here - needs to be implemented for this user, and this channel needs to belong to this user.
|
|
|
|
thisObject.find('.wtype').prepend( "<span id='minusBtn' class='ui-toggle ui-icon ui-icon-minusthick'></span>");
|
|
|
|
thisObject.find(".wtype-chart_window").append("<span id='pencilBtn' class='ui-edit ui-icon ui-icon-pencil'></span>");
|
|
|
|
thisObject.find(".wtype").append("<span id='closeBtn' class='ui-close ui-icon ui-icon-close'></span>");
|
|
|
|
thisObject.find(".portlet-header").css("cursor","move");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$(".column").sortable({ disabled:true });
|
|
|
|
}
|
|
|
|
return $(this).attr("id");
|
2014-02-17 18:05:39 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
function getPortletArray(data) {
|
|
|
|
|
|
|
|
var resultArray = new Array();
|
|
|
|
var inputArray = data.split("&");
|
|
|
|
|
|
|
|
for (i in inputArray) {
|
|
|
|
|
2014-03-22 18:21:45 +01:00
|
|
|
val = inputArray[i].split("=")[1] ;
|
|
|
|
resultArray.push(val);
|
2014-02-17 18:05:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return resultArray;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
var uiEditClick = function (channel_id) {
|
|
|
|
return function() {
|
2014-03-22 18:21:45 +01:00
|
|
|
var id = $( this ).parents( ".portlet:first" ).attr("id").substring(8);
|
2014-02-17 18:05:39 +01:00
|
|
|
|
2014-03-22 18:21:45 +01:00
|
|
|
var options = "";
|
|
|
|
$("#chartConfig"+id).load("/channels/"+channel_id+"/charts/"+id+"/edit",
|
|
|
|
function() {
|
|
|
|
options = $("#chartOptions"+id).html();
|
2014-02-17 18:05:39 +01:00
|
|
|
|
2014-03-22 18:21:45 +01:00
|
|
|
if (options != "undefined" && options.length >2) {
|
|
|
|
$.each((options.split('&')), setupChartForm( id ));
|
|
|
|
}
|
|
|
|
$("#button"+id).click( function() {
|
|
|
|
updateChart(id, true, 450, 250, channel_id, true);
|
|
|
|
$("#chartConfig"+id).dialog("close");
|
2014-02-17 18:05:39 +01:00
|
|
|
|
2014-03-22 18:21:45 +01:00
|
|
|
});
|
|
|
|
})
|
|
|
|
.dialog({ title:"Chart Options", modal: true, resizable: false, width: 500, dialogClass: "dev-info-dialog" });
|
2014-02-17 18:05:39 +01:00
|
|
|
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
var uiViewClick = function (channel_id) {
|
|
|
|
return function() {
|
2014-03-22 18:21:45 +01:00
|
|
|
var x = $( this ).parents( ".portlet:first" ).find( ".portlet-content" ).offset().left;
|
|
|
|
var y = $( this ).parents( ".portlet:first" ).find( ".portlet-content" ).offset().top;
|
|
|
|
var id = $( this ).parents( ".portlet:first" ).attr("id").substring(8);
|
|
|
|
|
|
|
|
$("body").append('<div id="iframepopup'+id+'" style="display:none">' +
|
|
|
|
'<div id="iframeinner'+id+'"style="font-size:1.2em;overflow:auto;height:115px;background-color:white">' +
|
|
|
|
'</div></div>');
|
|
|
|
|
|
|
|
$.get("/channels/"+channel_id+"/windows/"+id+"/iframe",
|
|
|
|
function(response) {
|
|
|
|
var display = response.replace(/id=\"iframe[0-9]?[0-9]?[0-9]?[0-9]?[0-9]?[0-9]?[0-9]?[0-9]?[0-9]?[0-9]?\"/, "" );
|
|
|
|
$("#iframeinner"+id).text(display);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
$("#iframepopup"+id).dialog({
|
|
|
|
resizable:false,
|
|
|
|
width: "300px",
|
|
|
|
position:[x+200,y-200],
|
|
|
|
title: "Chart Iframe",
|
|
|
|
dialogClass: "dev-info-dialog"
|
|
|
|
});
|
2014-02-17 18:05:39 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
var uiCloseClick = function (channel_id) {
|
|
|
|
return function() {
|
2014-03-22 18:21:45 +01:00
|
|
|
var id = $( this ).parents( ".portlet:first" ).attr("id").substring(8);
|
|
|
|
var portlet = $( this ).parents( ".portlet:first" ) ;
|
|
|
|
$.update("/channels/"+channel_id+"/windows/"+id+"/hide" ,
|
|
|
|
function(response) {
|
|
|
|
portlet.hide("drop", function(){
|
|
|
|
portlet.remove();});
|
|
|
|
}) ;
|
2014-02-17 18:05:39 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function uiToggleClick() {
|
|
|
|
$( this ).toggleClass( "ui-icon-minusthick" ).toggleClass( "ui-icon-plusthick" );
|
|
|
|
$( this ).parents( ".portlet:first" ).find( ".portlet-content" ).toggle();
|
|
|
|
}
|
|
|
|
|