You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
399 lines
14 KiB
399 lines
14 KiB
<style>
|
|
/* just because */
|
|
body {
|
|
/* fallback */
|
|
background-color: #2F2727;
|
|
background-image: url(images/radial_bg.png);
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
|
|
/* Safari 4-5, Chrome 1-9 */ /* Can't specify a percentage size? Laaaaaame. */
|
|
background: -webkit-gradient(radial, center center, 0, center center, 460, from(#1a82f7), to(#2F2727));
|
|
/* Safari 5.1+, Chrome 10+ */
|
|
background: -webkit-radial-gradient(circle, #1a82f7, #2F2727);
|
|
/* Firefox 3.6+ */
|
|
background: -moz-radial-gradient(circle, #1a82f7, #2F2727);
|
|
/* IE 10 */
|
|
background: -ms-radial-gradient(circle, #1a82f7, #2F2727);
|
|
}
|
|
</style>
|
|
<script type="text/javascript">
|
|
|
|
//js settings
|
|
var url = '{$url}';
|
|
var skills = []; //current window divs
|
|
var parents = []; //list of parents normally there should be only 2
|
|
var hidden_parent = '';
|
|
var duration_value = 500;
|
|
|
|
|
|
//Block settings see the SkillVisualizer Class
|
|
var offset_x = {$skill_visualizer->offset_x};
|
|
var offset_y = {$skill_visualizer->offset_y};
|
|
var space_between_blocks_x = {$skill_visualizer->space_between_blocks_x};
|
|
var space_between_blocks_y = {$skill_visualizer->space_between_blocks_y};
|
|
var center_x = {$skill_visualizer->center_x};
|
|
var block_size = {$skill_visualizer->block_size};
|
|
|
|
//Setting the parent by default
|
|
var parents = ['block_1'];
|
|
|
|
jsPlumb.bind("ready", function() {
|
|
|
|
//Open dialog
|
|
$("#dialog-form").dialog({
|
|
autoOpen: false,
|
|
modal : true,
|
|
width : 550,
|
|
height : 450,
|
|
});
|
|
|
|
//Filling skills select
|
|
/*
|
|
$.getJSON("{$url}&a=get_skills&parent_id="+parents[0], {},
|
|
function(data) {
|
|
$.each(data, function(n, parent) {
|
|
// add a new option with the JSON-specified value and text
|
|
$("<option />").attr("value", parent.id).text(parent.name).appendTo("#parent_id");
|
|
});
|
|
}
|
|
);*/
|
|
|
|
//Filling gradebook select
|
|
$.getJSON("{$url}&a=get_gradebooks", {},
|
|
function(data) {
|
|
$.each(data, function(n, gradebook) {
|
|
// add a new option with the JSON-specified value and text
|
|
$("<option />").attr("value", gradebook.id).text(gradebook.name).appendTo("#gradebook_id");
|
|
});
|
|
}
|
|
);
|
|
|
|
//Add button
|
|
|
|
$("#add_item_link").click(function() {
|
|
$("#name").attr('value', '');
|
|
$("#description").attr('value', '');
|
|
$("#parent_id option:selected").removeAttr('selected');
|
|
$("#gradebook_id option:selected").removeAttr('selected');
|
|
$("#dialog-form").dialog("open");
|
|
|
|
//Filling skills select
|
|
var my_id = 1;
|
|
|
|
if (parents.length > 1) {
|
|
my_id = parents[1].split('_')[1];
|
|
}
|
|
//Remove all options
|
|
$("#parent_id").find('option').remove();
|
|
|
|
$.getJSON("{$url}&a=get_skills&id="+my_id, {},
|
|
function(data) {
|
|
$.each(data, function(n, parent) {
|
|
// add a new option with the JSON-specified value and text
|
|
$("<option />").attr("value", parent.id).text(parent.name).appendTo("#parent_id");
|
|
});
|
|
}
|
|
);
|
|
});
|
|
|
|
var name = $( "#name" ),
|
|
description = $( "#description" ),
|
|
allFields = $( [] ).add( name ).add( description ), tips = $(".validateTips");
|
|
|
|
//Add button process
|
|
|
|
$("#dialog-form").dialog({
|
|
buttons: {
|
|
"Add" : function() {
|
|
var bValid = true;
|
|
bValid = bValid && checkLength( name, "name", 1, 255 );
|
|
|
|
if (bValid) {
|
|
var params = $("#add_item").serialize();
|
|
|
|
$.ajax({
|
|
url: url+'&a=add&'+params,
|
|
success:function(data) {
|
|
//new window
|
|
parent_id = $("#parent_id option:selected").attr('value');
|
|
|
|
//Great stuff
|
|
open_block('block_'+parent_id, 0);
|
|
|
|
$("#dialog-form").dialog("close");
|
|
}
|
|
});
|
|
}
|
|
},
|
|
},
|
|
close: function() {
|
|
$("#name").attr('value', '');
|
|
$("#description").attr('value', '');
|
|
}
|
|
});
|
|
|
|
//Clicking a box skill (we use live instead of bind because we're creating divs on the fly )
|
|
$(".open_block").live('click', function() {
|
|
var id = $(this).attr('id');
|
|
|
|
//if is root
|
|
if (parents[0] == id) {
|
|
parents = [id];
|
|
}
|
|
|
|
if (parents[1] != id) {
|
|
if (parents.length == 2 ) {
|
|
hidden_parent = parents[0];
|
|
//console.log('deleting: '+parents[0]);
|
|
//removing father
|
|
for (var i = 0; i < skills.length; i++) {
|
|
if ( skills[i].element == parents[0] ) {
|
|
//console.log('deleting :'+ skills[i].element + ' here ');
|
|
jsPlumb.deleteEndpoint(skills[i].endp);
|
|
$("#"+skills[i].element).remove();
|
|
}
|
|
}
|
|
parents.splice(0,1);
|
|
parents.push(id);
|
|
}
|
|
|
|
if ($(this).hasClass('first_window')) {
|
|
//show the hidden_parent
|
|
//if (hidden_parent != '') {
|
|
parents = [hidden_parent, id];
|
|
// console.log(parents);
|
|
open_parent(hidden_parent, id);
|
|
//}
|
|
}
|
|
if (jQuery.inArray(id, parents) == -1) {
|
|
parents.push(id);
|
|
}
|
|
open_block(id, 0);
|
|
}
|
|
|
|
//Setting class
|
|
cleanclass($(this));
|
|
$(this).addClass('second_window');
|
|
|
|
parent_div = $("#"+parents[0]);
|
|
cleanclass(parent_div);
|
|
parent_div.addClass('first_window');
|
|
|
|
parent_div = $("#"+parents[1]);
|
|
cleanclass(parent_div);
|
|
parent_div.addClass('second_window');
|
|
|
|
console.log(parents);
|
|
// console.log(skills);
|
|
console.log('hidden_parent : ' + hidden_parent);
|
|
});
|
|
|
|
//Skill title click
|
|
$(".edit_block").live('click',function() {
|
|
var my_id = $(this).attr('id');
|
|
my_id = my_id.split('_')[2];
|
|
|
|
//Cleaning selected
|
|
$("#parent_id option:selected").removeAttr('selected');
|
|
$("#gradebook_id option:selected").removeAttr('selected');
|
|
|
|
$.ajax({
|
|
url: url+'&a=get_skill_info&id='+my_id,
|
|
success: function(json) {
|
|
var skill = jQuery.parseJSON(json);
|
|
$("#name").attr('value', skill.name);
|
|
$("#id").attr('value', skill.id);
|
|
$("#description").attr('value', skill.description);
|
|
//filling parent_id
|
|
$("#parent_id option[value='"+skill.extra.parent_id+"']").attr('selected', 'selected');
|
|
//filling the gradebook_id
|
|
jQuery.each(skill.gradebooks, function(index, data) {
|
|
$("#gradebook_id option[value='"+data.id+"']").attr('selected', 'selected');
|
|
});
|
|
},
|
|
});
|
|
|
|
$("#gradebook_id").trigger("liszt:updated");
|
|
$("#parent_id").trigger("liszt:updated");
|
|
|
|
$("#dialog-form").dialog("open");
|
|
return false;
|
|
});
|
|
|
|
|
|
//
|
|
$(".window").bind('click', function() {
|
|
var id = $(this).attr('id');
|
|
id = id.split('_')[1];
|
|
//$("#dialog-form").dialog("open");
|
|
});
|
|
|
|
// chrome fix.
|
|
document.onselectstart = function () { return false; };
|
|
|
|
// render mode
|
|
var resetRenderMode = function(desiredMode) {
|
|
var newMode = jsPlumb.setRenderMode(desiredMode);
|
|
jsPlumbDemo.init();
|
|
};
|
|
resetRenderMode(jsPlumb.CANVAS);
|
|
});
|
|
|
|
|
|
;(function() {
|
|
|
|
prepare = function(elId, endpoint) {
|
|
jsPlumbDemo.initHover(elId);
|
|
//jsPlumbDemo.initAnimation(elId);
|
|
var e = jsPlumb.addEndpoint(elId, endpoint);
|
|
jsPlumbDemo.initjulio(e);
|
|
skills.push({
|
|
element: elId, endp:e
|
|
});
|
|
return e;
|
|
},
|
|
|
|
window.jsPlumbDemo = {
|
|
initjulio :function(e) {
|
|
},
|
|
initHover :function(elId) {
|
|
$("#" + elId).click(function() {
|
|
var all = jsPlumb.getConnections({
|
|
source:elId
|
|
});
|
|
});
|
|
/*$("#" + elId).hover(
|
|
function() { $(this).addClass("bigdot-hover"); },
|
|
function() { $(this).removeClass("bigdot-hover"); }
|
|
);*/
|
|
},
|
|
init : function() {
|
|
|
|
jsPlumb.Defaults.DragOptions = { cursor: 'pointer', zIndex:2000 };
|
|
jsPlumb.Defaults.PaintStyle = { strokeStyle:'#666' };
|
|
jsPlumb.Defaults.EndpointStyle = { width:20, height:16, strokeStyle:'#666' };
|
|
jsPlumb.Defaults.Endpoint = "Rectangle";
|
|
jsPlumb.Defaults.Anchors = ["TopCenter", "TopCenter"];
|
|
|
|
jsPlumb.bind("jsPlumbConnection", function(e) {
|
|
//updateConnections(e.connection);
|
|
});
|
|
jsPlumb.bind("jsPlumbConnectionDetached", function(e) {
|
|
//updateConnections(e.connection, true);
|
|
});
|
|
|
|
jsPlumb.Defaults.Overlays = [
|
|
//[ "Arrow", { location:0.5 } ], if you want to add an arrow in the connection
|
|
];
|
|
|
|
jsPlumb.setMouseEventsEnabled(true);
|
|
|
|
{$js}
|
|
|
|
var divsWithWindowClass = jsPlumbDemo.getSelector(".window");
|
|
jsPlumb.draggable(divsWithWindowClass);
|
|
jsPlumbDemo.attachBehaviour();
|
|
}
|
|
};
|
|
})();
|
|
|
|
$(document).ready( function() {
|
|
//When creating a connection see
|
|
//http://jsplumb.org/apidocs/files/jsPlumb-1-3-2-all-js.html#bind
|
|
jsPlumb.bind("jsPlumbConnection", function(conn) {
|
|
//alert("Connection created " + conn.sourceId + " to " + conn.targetId + " ");
|
|
//jsPlumb.detach(conn);
|
|
});
|
|
//When double clicking a connection
|
|
jsPlumb.bind("click", function(conn) {
|
|
if (confirm("Delete connection from " + conn.sourceId + " to " + conn.targetId + "?"))
|
|
jsPlumb.detach(conn);
|
|
});
|
|
|
|
//When double clicking a connection
|
|
jsPlumb.bind("click", function(endpoint) {
|
|
if (confirm("Delete connection from " + conn.sourceId + " to " + conn.targetId + "?"))
|
|
jsPlumb.detach(conn);
|
|
});
|
|
$(".chzn-select").chosen();
|
|
});
|
|
|
|
;(function() {
|
|
|
|
jsPlumbDemo.getSelector = function(spec) {
|
|
return $(spec);
|
|
};
|
|
|
|
jsPlumbDemo.attachBehaviour = function() {
|
|
$(".hide").click(function() {
|
|
jsPlumb.toggle($(this).attr("rel"));
|
|
});
|
|
|
|
$(".drag").click(function() {
|
|
var s = jsPlumb.toggleDraggable($(this).attr("rel"));
|
|
$(this).html(s ? 'disable dragging' : 'enable dragging');
|
|
if (!s) $("#" + $(this).attr("rel")).addClass('drag-locked'); else $("#" + $(this).attr("rel")).removeClass('drag-locked');
|
|
$("#" + $(this).attr("rel")).css("cursor", s ? "pointer" : "default");
|
|
});
|
|
|
|
$(".detach").click(function() {
|
|
jsPlumb.detachAll($(this).attr("rel"));
|
|
});
|
|
|
|
$("#clear").click(function() {
|
|
jsPlumb.detachEverything(); showConnections();
|
|
});
|
|
};
|
|
})();
|
|
|
|
</script>
|
|
<div style="z-index: 1000;position: absolute;">
|
|
<h2>Skills</h2>
|
|
<a s tyle="z-index: 1000"class="a_button gray" id="add_item_link" href="#">{"Add item"|get_lang}</a>
|
|
</div>
|
|
{$html}
|
|
|
|
<div id="dialog-form" style="display:none;z-index=10000;">
|
|
<p class="validateTips"></p>
|
|
<form id="add_item" name="form">
|
|
<input type="hidden" name="id" id="id"/>
|
|
<div class="row">
|
|
<div class="label">
|
|
<label for="name">Name</label>
|
|
</div>
|
|
<div class="formw">
|
|
<input type="text" name="name" id="name" size="40" />
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="label">
|
|
<label for="name">Parent</label>
|
|
</div>
|
|
<div class="formw">
|
|
<select id="parent_id" name="parent_id" />
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="label">
|
|
<label for="name">Gradebook</label>
|
|
</div>
|
|
<div class="formw">
|
|
<select id="gradebook_id" name="gradebook_id[]" multiple="multiple"/>
|
|
</select>
|
|
<span class="help-block">
|
|
Gradebook Description
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="label">
|
|
<label for="name">Description</label>
|
|
</div>
|
|
<div class="formw">
|
|
<textarea name="description" id="description" cols="40" rows="7"></textarea>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div> |