123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191 |
- <?php
- /* For licensing terms, see /license.txt */
- /**
- * @package chamilo.admin
- *
- * @todo lib not use. Only the class variables not the functions
- */
- class SkillVisualizer
- {
- public $block_size = 120; //see CSS window class
- public $canvas_x = 1024;
- public $canvas_y = 800;
- public $offset_x = 0;
- public $offset_y = 50;
- public $space_between_blocks_x = 100;
- public $space_between_blocks_y = 150;
- public $center_x = null;
- private $html = '';
- private $type = 'read';
- private $js = '';
- /**
- * SkillVisualizer constructor.
- *
- * @param $skills
- * @param string $type
- */
- public function __construct($skills, $type = 'read')
- {
- $this->skills = $skills;
- $this->type = $type;
- $this->center_x = intval($this->offset_x + $this->canvas_x / 2 - $this->block_size / 2);
- }
- /**
- * @param $skill
- * @param $position
- * @param $class
- */
- public function prepare_skill_box($skill, $position, $class)
- {
- $block_id = $skill['id'];
- $extra_class = 'third_window';
- if ($skill['parent_id'] == 0) {
- $extra_class = 'second_window';
- }
- $this->html .= '<div id="block_'.$block_id.'" class = "open_block window '.$extra_class.' '.$class.'" style = "top:'.$position['y'].'px; left:'.$position['x'].'px;">';
- $content = $skill['name'];
- $content .= '<div class="btn-group">';
- $content .= Display::url(get_lang('Edit'), '#', ['id' => 'edit_block_'.$block_id, 'class' => 'edit_block btn']);
- $content .= Display::url('+', '#', ['id' => 'edit_block_'.$block_id, 'class' => 'edit_block btn']);
- $content .= '</div>';
- $this->html .= $content;
- if ($this->type == 'edit' && $skill['parent_id'] != 0) {
- //$this->html .= Display::url(Display::return_icon('edit.png', get_lang('Edit'), array(), ICON_SIZE_SMALL), '#', array('id'=>'edit_block_'.$block_id,'class'=>'edit_block'));
- //$this->html .= Display::url(Display::return_icon('add.png', get_lang('Add'), array(), ICON_SIZE_SMALL), '#', array('id'=>'edit_block_'.$block_id,'class'=>'edit_block'));
- //$this->html .= Display::url(Display::return_icon('delete.png', get_lang('Delete'), array(), ICON_SIZE_SMALL), '#', array('id=>"edit_block_'.$block_id,'class'=>'edit_block'));
- //$this->html .= Display::url(Display::return_icon('up.png', get_lang('Close'), array(), ICON_SIZE_SMALL), '#', array('id'=>'close_block_'.$block_id,'class'=>'close_block'));
- //$this->html .= Display::url(Display::return_icon('down.png', get_lang('Open'), array(), ICON_SIZE_SMALL), '#', array('id'=>'open_block_'.$block_id,'class'=>'open_block'));
- }
- $this->html .= '</div>';
- }
- /**
- * Displays the HTMl part of jplumb.
- */
- public function display_html()
- {
- echo $this->return_html();
- }
- /**
- * Displays the Javascript part of jplumb.
- */
- public function display_js()
- {
- echo $this->return_js();
- }
- public function return_js()
- {
- return $this->get_js();
- }
- public function return_html()
- {
- if (empty($this->skills)) {
- return '';
- }
- $skill_count = sizeof($this->skills);
- //$corner = 360 / $skill_count;
- $count = 0;
- $brothers = [];
- foreach ($this->skills as &$skill) {
- if (!in_array($skill['parent_id'], [0, 1])) {
- continue;
- }
- $childs = isset($skill['children']) ? count($skill['children']) : 0;
- //$x = round($this->offsetX * sin(deg2rad($corner * $count)));
- //$y = round($this->offsetY * cos(deg2rad($corner * $count)));
- /*if (isset($brothers[$skill['parent_id']])) {
- $brothers[$skill['parent_id']] +=2;
- } else {
- $brothers[$skill['parent_id']] = 1;
- }*/
- $brother_count = $brothers[$skill['id']];
- $my_count = 0;
- $parent_x = 0;
- if ($skill['parent_id'] == 0) {
- //$x = 130*$childs/2;
- //$x = $this->space_between_blocks_x*$childs/2;
- $x = $this->canvas_x / 2 - $this->block_size / 2;
- } else {
- $max = isset($this->skills[$skill['parent_id']]['children']) ? count($this->skills[$skill['parent_id']]['children']) : 0;
- foreach ($this->skills[$skill['parent_id']]['children'] as $id => $sk) {
- if ($skill['id'] == $sk['id']) {
- break;
- }
- $my_count++;
- }
- $parent_x = isset($this->skills[$skill['parent_id']]['x']) ? $this->skills[$skill['parent_id']]['x'] : 0;
- //$x = $my_count*$this->space_between_blocks_x + $parent_x + $this->block_size - ($this->space_between_blocks_x*$max/2) ;
- $x = $my_count * $this->space_between_blocks_x + $parent_x + $this->block_size - ($this->canvas_x / 2);
- }
- $y = $skill['level'] * $this->space_between_blocks_y;
- $skill['x'] = $x;
- $skill['y'] = $y;
- //$skill['description'] = "{$brothers[$skill['parent_id']]} $x - $y";
- //$skill['name'] = $skill['name']." | $x = $my_count * 150 + $parent_x - (150* $max/2) - 10*$childs ";
- $this->add_item($skill, ['x' => $this->offset_x + $x, 'y' => $this->offset_y + $y]);
- }
- return $this->get_html();
- }
- /**
- * Adds a node using jplumb.
- */
- private function add_item($skill, $position)
- {
- $block_id = $skill['id'];
- $end_point = 'readEndpoint';
- $class = 'default_window';
- if ($this->type == 'edit') {
- $class = 'edit_window';
- $end_point = 'editEndpoint';
- } else {
- if ($skill['done_by_user'] == 1) {
- $class = 'done_window';
- $end_point = 'doneEndpoint';
- } else {
- $end_point = 'defaultEndpoint';
- }
- }
- $this->prepare_skill_box($skill, $position, $class);
- if ($skill['parent_id'] == 0) {
- return;
- }
- //default_arrow_color
- $this->js .= 'var e'.$block_id.' = prepare("block_'.$block_id.'", '.$end_point.');'."\n";
- $this->js .= 'var e'.$skill['parent_id'].' = prepare("block_'.$skill['parent_id'].'", '.$end_point.');'."\n";
- $this->js .= 'jsPlumb.connect({source: e'.$block_id.', target:e'.$skill['parent_id'].'});'."\n";
- }
- private function get_html()
- {
- return $this->html;
- }
- private function get_js()
- {
- return $this->js;
- }
- }
|