瀏覽代碼

Part : pluginisation

Valentin CARRUESCO 5 年之前
父節點
當前提交
06fd8a8314

+ 0 - 165
plugin/hackpoint/action.php

@@ -357,113 +357,7 @@ switch($_['action']){
 
 
 
-	/** PART **/
 
-	case 'hackpoint_part_search':
-		Action::write(function(&$response){
-			global $myUser,$_;
-			require_once(__DIR__.SLASH.'Part.class.php');
-
-			foreach(Part::loadAll(array('state'=>Part::ACTIVE)) as $part){
-			
-				$row = $part->toArray();
-				$row['picture'] = $part->picture(true);
-				$response['rows'][] = $row;
-			}
-		});
-	break;
-	//Récuperation d'une liste de part
-	case 'hackpoint_resource_part_search':
-		Action::write(function(&$response){
-			global $myUser,$_;
-			
-			require_once(__DIR__.SLASH.'Sketch.class.php');
-			require_once(__DIR__.SLASH.'Part.class.php');
-			require_once(__DIR__.SLASH.'Resource.class.php');
-			require_once(__DIR__.SLASH.'ResourcePart.class.php');
-
-			$item = Resource::provide('resource',1);
-			$sketch = $item->join('sketch');
-			if(!$sketch->state && $sketch->creator != $myUser->login) throw new Exception("Permissions insuffisantes",403);
-			
-			foreach(ResourcePart::loadAll(array('resource'=>$_['resource']),  null, null, array('*'),1) as $resourcepart){
-				$part = $resourcepart->join('part');
-				$row = $part->toArray();
-				$row['picture'] = $part->picture(true);
-				$row['id'] = $resourcepart->id;
-				$row['part'] = $part->id;
-				$response['rows'][] = $row;
-			}
-		});
-	break;
-	
-	//Ajout ou modification d'élément part
-	case 'hackpoint_part_save':
-		Action::write(function(&$response){
-			global $myUser,$_;
-
-			require_once(__DIR__.SLASH.'Sketch.class.php');
-			require_once(__DIR__.SLASH.'Part.class.php');
-			require_once(__DIR__.SLASH.'Resource.class.php');
-			require_once(__DIR__.SLASH.'ResourcePart.class.php');
-			
-			$item = Resource::provide('resource',1);
-			$sketch = $item->join('sketch');
-			if($sketch->creator != $myUser->login) throw new Exception("Permissions insuffisantes",403);
-
-
-			$part = Part::provide('part');
-			$part->label = $_['label'];
-			if(isset($_['price'])) $part->price = $_['price'];
-			if(isset($_['link'])) $part->link = $_['link'];
-			if(isset($_['brand'])) $part->brand = $_['brand'];
-
-			$part->state = Part::ACTIVE;
-			$part->save();
-
-			if(isset($_['picture'])){
-				$stream = base64_decode(preg_replace('|.*image/[^;]*;base64,|i','',$_['picture']));
-				$dir = File::dir().'hackpoint'.SLASH.'part'.SLASH.$part->id;
-				if(!file_exists($dir)) mkdir($dir,0755,true);
-				file_put_contents($dir.SLASH.'cover.jpg', $stream);
-			}
-
-			$item =  ResourcePart::provide();
-			$item->part = $part->id;
-			$item->resource = $_['resource'];
-			$item->save();
-			$response = $item->toArray();
-		});
-	break;
-	
-	
-	//Suppression d'élement part
-	case 'hackpoint_resource_part_delete':
-		Action::write(function(&$response){
-			global $myUser,$_;
-			//if(!$myUser->can('hackpoint','delete')) throw new Exception("Permissions insuffisantes",403);
-			require_once(__DIR__.SLASH.'Sketch.class.php');
-			require_once(__DIR__.SLASH.'Resource.class.php');
-			require_once(__DIR__.SLASH.'ResourcePart.class.php');
-			require_once(__DIR__.SLASH.'Part.class.php');
-			$resourcePart = ResourcePart::getById($_['id'],2);
-			$resource = $resourcePart->join('resource');
-			$sketch = $resource->join('sketch');
-			if($sketch->creator!=$myUser->login) throw new Exception("Permissions insuffisantes",403);
-			ResourcePart::deleteById($_['id']);
-			
-		});
-	break;
-	//Suppression d'élement part
-	case 'hackpoint_part_delete':
-		Action::write(function(&$response){
-			global $myUser,$_;
-			if(!$myUser->can('hackpoint','delete')) throw new Exception("Permissions insuffisantes",403);
-			require_once(__DIR__.SLASH.'Part.class.php');
-			Part::deleteById($_['id']);
-			
-		});
-	break;
 
 
 	//Download d'un fichier
@@ -496,65 +390,6 @@ switch($_['action']){
 		});
 	break;
 
-	case 'autocomplete_part':
-
-	    	Action::write(function(&$response){
-	    		require_once(__DIR__.SLASH.'Part.class.php');
-	    		
-	        	global $myUser,$_;
-        		if (!$myUser->connected()) throw new Exception("Error Processing Request", 1);
-        		 new Exception("Vous devez être connecté!");
-
-        		$response['rows'] = array();
-				$data = array("%".$_['keyword']."%",0);
-	        	$parts = Part::staticQuery('SELECT * FROM {{table}} WHERE label LIKE ? AND state=? LIMIT 10',array("%".$_['keyword']."%",Part::ACTIVE),true);
-	        	foreach($parts as $part){
-	                $response['rows'][] = array(
-	                	'name'=>html_entity_decode($part->label, ENT_QUOTES),
-						'id'=>$part->id,
-						'price'=>$part->price,
-						'brand'=>$part->brand,
-						'picture' => $part->picture(true)
-					);
-	        	}
-		        
-	        	if(isset($_['data']) && isset($_['data']['before']) && isset($_['data']['before'])!=''){
-	        		$list = json_decode(html_entity_decode($_['data']['before']),true);
-	        		if(is_array($list)){
-	        			foreach ($list as $key=>$value) {
-	        				if(preg_match('/'.$_['keyword'].'/i', $value))
-	        					array_unshift($response['rows'],array('name'=>$value,'id'=>$key));
-	        			}
-	        		}
-	        	}
-	        });
-	    break;
-
-	    case 'get_part_by_id':
-	    Action::write(function(&$response){
-	        global $myUser,$_;
-        	
-        	require_once(__DIR__.SLASH.'Sketch.class.php');
-        	require_once(__DIR__.SLASH.'Resource.class.php');
-        	require_once(__DIR__.SLASH.'Part.class.php');
-
-
-	        $part = Part::getById($_['id'],1);
-
-	        $part = !$part ? new Part() : Part::getById($_['id']);
-	        	
-	        $row = $part->toArray();
-	        $row['label'] =  html_entity_decode($row['label'], ENT_QUOTES);
-
-	        if(isset($_['before']) && isset($_['before'])!=''){
-        		$list = json_decode(html_entity_decode($_['before']),true);
-        		if(is_array($list)){
-        			if(isset($list[$_['id']])) $row = array('label' => $list[$_['id']], 'id'=>$_['id']);
-        		}
-        	}
-	        $response['part'] = $row;
-	    });
-	    break;
 
 	    case 'hackpoint_resource_git_explore':
 	    	Action::write(function(&$response){

+ 0 - 6
plugin/hackpoint/css/component.css

@@ -1,9 +1,3 @@
-input.data-type-part,.input-group-sm>input.form-control.data-type-part{
-  background-image: url('../img/icon-part.png?v=1');
-  background-repeat:no-repeat;
-  background-position: 10px center;
-  padding-left: 30px;
-}
 
 
 img[data-type="dropimage"]{

+ 1 - 84
plugin/hackpoint/css/main.css

@@ -429,10 +429,7 @@ div.hackpoint-type-image[data-type="dropzone"] > ul > li > i.pointer{
 	.hackpoint.readonly .btn-delete-sketch,
 	.hackpoint.readonly #resources .delete-resource,
 	.hackpoint.readonly .resource-image .fas.fa-times,
-	.hackpoint.readonly .hackpoint-type-image > div,
-	.hackpoint.readonly .resource-part .btn-add-part,
-	.hackpoint.readonly .resource-part .btn-save-part,
-	.hackpoint.readonly .resource-part .btn-delete{
+	.hackpoint.readonly .hackpoint-type-image > div{
 		display:none;
 	}
 
@@ -440,85 +437,5 @@ div.hackpoint-type-image[data-type="dropzone"] > ul > li > i.pointer{
 		outline: none;
 	}
 
-	
-/**/
-
-#parts{
-	margin:0;
-	padding:0;
-}
-
-#parts li{
-	width:15%;
-	min-width: 250px;
-	display: inline-block;
-	padding:0px;
-	margin:5px 5px 5px 0;
-	transition: transform 0.2s ease-in-out;
-}
-#parts li .part{
-	background-color: #2b2f35;
-	border-radius: 3px;
-	padding: 15px;
-	color:#cecece;
-	min-height: 250px;
-	position: relative;
-}
-
 
 
-#sketch-workspace .part .part-image{
-	border:2px dashed #3e4750;
-	height:200px;
-	background: url(../img/default-part.png) center center no-repeat;
-	text-align: center;
-	text-transform: uppercase;
-	font-weight: bold;
-	color:#5e6671;
-	margin-top:10px;
-}
-
-#parts li .part .btn-delete{
-	color:#cecece;
-	position: absolute;
-	bottom: 0;
-	right: 0;
-	opacity:0.4;
-	transition:all 0.2s ease-in-out;
-}
-
-#parts li .part .btn-delete:hover{
-	opacity:0.9;
-}
-
-#parts li .part .price{
-	font-weight: bold;
-}
-
-#parts li .part .link{
-	color:#cecece;
-	position: absolute;
-	bottom: 0;
-	left: 0;
-	padding:5px 10px;
-	opacity:0.4;
-	transition:all 0.2s ease-in-out;
-}
-
-#parts li .part .brand{
-	font-size: 10px;
-	float:right;
-	margin-top: 5px;
-	color:#4c7cad;
-}
-#parts li .part .link:hover{
-	opacity:0.9;
-	transform:  rotate(180deg);
-}
-
-
-.part-list .picture{
-	width: 150px;
-	height: 150px;
-	border-radius: 3px;
-}

+ 4 - 11
plugin/hackpoint/hackpoint.plugin.php

@@ -12,13 +12,7 @@ function hackpoint_menu(&$menuItems){
 		'icon'=> 'fas fa-wrench',
 		'color'=> '#3498db'
 	);
-	$menuItems[] = array(
-		'sort'=>3,
-		'url'=>'index.php?module=hackpoint&page=list.part',
-		'label'=>'Composants',
-		'icon'=> 'fas fa-microchip',
-		'color'=> '#3498db'
-	);
+	
 }
 
 //Cette fonction va generer une page quand on clique sur hackpoint dans menu
@@ -51,7 +45,6 @@ function hackpoint_uninstall($id){
 //Déclaration des sections de droits du plugin
 function hackpoint_section(&$sections){
 	$sections['hackpoint'] = "Gestion des droits sur le plugin hackpoint";
-	// $sections['part'] = "Gestion des droits sur l'entité part";
 }
 
 //cette fonction comprends toutes les actions du plugin qui ne nécessitent pas de vue html
@@ -65,12 +58,12 @@ function hackpoint_menu_setting(&$settingMenu){
 	
 	if(!$myUser->can('hackpoint','configure')) return;
 		
-		$settingMenu[]= array(
+	/*	$settingMenu[]= array(
 			'sort' =>1,
 			'url' => 'setting.php?section=global.hackpoint',
 			'icon' => 'fas fa-angle-right',
 			'label' => 'hackpoint Général'
-		);
+		);*/
 
 	
 }
@@ -337,6 +330,6 @@ Plugin::addHook("action", "hackpoint_action");
 Plugin::addHook("menu_setting", "hackpoint_menu_setting");    
 Plugin::addHook("content_setting", "hackpoint_content_setting");   
 Plugin::addHook("hackpoint_resource_type", "hackpoint_manage_types");   
- Plugin::addHook("rewrite", "hackpoint_dav");
+Plugin::addHook("rewrite", "hackpoint_dav");
 
 ?>

+ 1 - 1
plugin/hackpoint/install.php

@@ -1,6 +1,6 @@
 <?php 
 
-$enablePlugins = array('fr.idleman.hackpoint','fr.idleman.customiser','fr.idleman.document','fr.idleman.notification','fr.idleman.navigation');
+$enablePlugins = array('fr.idleman.hackpoint','fr.idleman.customiser','fr.idleman.part','fr.idleman.document','fr.idleman.notification','fr.idleman.navigation');
 
 $conf->put('core_theme','/plugin/customiser/theme/hackpoint/main.css');
 

+ 0 - 105
plugin/hackpoint/js/component.js

@@ -1,108 +1,3 @@
-function init_components_part(input){
-		if(input.is(":visible")) {
-			var partPicker = input.clone();
-
-			input.before(partPicker);
-			if(input.parent().hasClass("input-group")){
-				input.parent().after(input.detach());
-				input.before('<div id="part-anchor" class="dropdown-anchor"></div>');
-			}
-			input.hide();
-			partPicker.addClass('data-type-part').removeAttr("data-type").removeAttr('name').removeAttr('id').removeAttr('onchange');
-			partPicker.attr('data-source',input.attr('id'));
-		}else{
-			partPicker = $('[data-source="'+input.attr('id')+'"]');
-		}
-
-		
-			
-
-		input.change(function(){
-			partPicker.prop('disabled',true).val('Chargement...');
-			$.action({
-				action : 'get_part_by_id',
-				id : input.val(),
-		
-				before : input.attr('data-before'),
-			},function(r){
-				partPicker.prop('disabled',input.prop('disabled'));
-				if(r.part && r.part.label){
-					partPicker.val(r.part.label);
-				}else{
-					partPicker.val('');
-				}
-			});
-		});
-
-
-		if(input.val() !=''){
-			partPicker.prop('disabled',true).val('Chargement...');
-			$.action({
-				action : 'get_part_by_id',
-				id : input.val(),
-				
-				before : input.attr('data-before'),
-			},function(r){
-				partPicker.prop('disabled',input.prop('disabled'));
-				if(r.part && r.part.label){
-					partPicker.val(r.part.label);
-				}else{
-					partPicker.val('');
-				}
-			});
-		}
-		
-		
-		partPicker.keyup(function(){
-			input.val('');
-		});
-		var parent = input.attr('data-parent');
-		partPicker.autocomplete({
-			action : 'autocomplete_part',
-			data : {
-			
-				before : input.attr('data-before'),
-				parent:function(){ return $(parent).val(); }
-			},
-			skin : function(item){
-				var html = '';
-					name = item.name;
-				/*var re = new RegExp(partPicker.val(),"gi");
-
-				name = item.name.replace(re, function (x) {
-					return '<strong>'+x+'</strong>';
-				});*/
-
-				html += '<div class="part-logo d-inline mr-2"><img src="data:'+item.picture+'" class="avatar-mini avatar-rounded"></div>'; 
-				html += '<div class="user-infos d-inline"><span>'+name+'</span>'; 
-				html += '<div class="clear"></div>';
-				
-				return html;
-			},
-			highlight : function(item){
-						return item;
-			},
-			onClick : function(selected,element){
-				console.log(selected,element);
-				var li = $(element).closest('li');
-				li.attr('data-part',selected.id);
-				li.find('.price input').val(selected.price);
-				li.find('.brand input').val(selected.brand);
-				li.find('.part-image').css('background','url(data:'+selected.picture+') 0% 0% / cover');
-				li.find('.part-image').attr('data-stream','data:'+selected.picture);
-				input.val(selected.id);
-				input.trigger('change');
-			},
-			onBlur : function(selected,element){
-				if(input.attr('data-force')!='false' && input.val()=='') partPicker.val('');
-				if(partPicker.val()=='') {
-					input.val('');
-				}
-				input.trigger('blur');
-			}
-		});
-}
-
 
 
 function init_components_dropimage(input){

+ 1 - 246
plugin/hackpoint/js/main.js

@@ -7,17 +7,11 @@ function init_plugin_hackpoint(){
 				init_components();
 			}
 		break;
-		case 'list.part':
-			hackpoint_part_search();
-		break;
+		
 		default:
 		break;
 	}
 	
-	$('#parts').sortable_table({
-		onSort : hackpoint_part_search
-	});
-	
 	$('#sketchs').sortable_table({
 		onSort : hackpoint_sketch_search
 	});
@@ -82,245 +76,6 @@ modalize : function(options){
 	}
 });
 
-/** PART **/
-	
-
-
-//Récuperation d'une liste de part dans le tableau #parts
-function hackpoint_resource_part_search(callback){
-		
-	$('#parts').fill({
-		action:'hackpoint_resource_part_search',
-		resource : $('#sketch-editor').attr('data-id'),
-		showing : function(li,i){
-			li.css('transform','scale(0)').removeClass('hidden');
-			setTimeout(function(){
-				li.css('transform','scale(1)');
-			},i*200);
-		}
-	},function(){
-		$('#parts li:not(:eq(0))').each(function(i,li){
-			hackpoint_resource_part_upload(li);
-			var div  = $('[data-stream]',li);
-			if($(div).attr('data-stream') =='') return;
-			$(div).css('background','url(data:'+$(div).attr('data-stream')+')')
-		     	.css('background-size','cover');
-		});
-
-		if(callback!=null) callback();
-	});
-}
-
-
-//Récuperation d'une liste de part dans le tableau #parts
-function hackpoint_part_search(callback){
-	
-		
-	$('#parts').fill({
-		action:'hackpoint_part_search',
-		resource : $('#sketch-editor').attr('data-id'),
-	},function(){
-		$('#parts li:not(:eq(0))').each(function(i,li){
-
-			hackpoint_resource_part_upload(li);
-
-			var div  = $('[data-stream]',li);
-
-			if($(div).attr('data-stream') =='') return;
-			$(div).css('background','url(data:'+$(div).attr('data-stream')+')')
-		     	.css('background-size','cover');
-		});
-
-
-		$('#parts li:not(:eq(0))').css('transform','scale(0)').removeClass('hidden')
-
-		$('#parts li:not(:eq(0))').each(function(i,li){
-			var li = $(li);
-			setTimeout(function(){
-				li.css('transform','scale(1)');
-			},i*200);
-		});
-		
-		
-
-		if(callback!=null) callback();
-	});
-}
-
-//Ajout ou modification d'élément part
-function hackpoint_part_save(element){
-	var li = $(element).closest('li');
-	
-	var data = {
-		action : 'hackpoint_part_save',
-		resource : $('#sketch-editor').attr('data-id'),
-		part : li.attr('data-part'),
-		id : li.attr('data-id'),
-		label : li.find('.label').val(),
-		brand : li.find('.brand input').val(),
-		price : li.find('.price input').val(),
-		url : li.find('.url').val(),
-		picture : li.find('.part-image').attr('data-stream')
-	}
-	$.action(data,function(r){
-		
-		li.attr('data-part',r.part);
-		li.attr('data-id',r.id)
-		$.message('success','Enregistré');
-	});
-}
-
-function hackpoint_part_find(element){
-	var li = $(element).closest('li');
-	var label = li.find('.label').val();
-	var brand = li.find('.brand input').val();
-	var url = "https://www.ebay.fr/sch/i.html?_from=R40&_sacat=0&LH_BIN=1&LH_PrefLoc=2&_sop=15";
-	if(null!=brand && brand !='')  label = brand+'+'+label;
-	url += "&_nkw="+label;
-	window.open(url);
-}
-
-function hackpoint_part_add(){
-
-	var tpl = $('#parts li:eq(0)').get(0).outerHTML;
-
-	var data = {
-		price : 1,
-		url : 'http://ebay.com'
-	}
-	var item = $(Mustache.render(tpl,data));
-	item.removeClass('hidden');
-	item.css({
-		transform : 'scale(0)',
-		opacity : 0,
-	});
-	$('#parts li:eq(0)').after(item);
-	
-	item.css({
-		transform : 'scale(1) rotate(0deg)',
-		opacity : 1,
-	});
-
-	init_components(item);
-
-	hackpoint_resource_part_upload(item);
-
-
-
-
-
-}
-
-function hackpoint_resource_part_upload(item){
-	var item = $(item);
-	var image = item.find('.part-image');
-	image.click(function(e){
-		e.preventDefault();
-		e.stopPropagation();
-		var picker = image.next('input[type="file"]');
-		picker.trigger('click');
-		picker.change(function(){
-			var file = picker.get(0).files[0];
-			 var reader  = new FileReader();
-			 reader.addEventListener("load", function () {
-			
-			    image.css('background','url('+reader.result+')')
-			    .attr('data-stream',reader.result)
-		     	.css('background-size','cover');
-			  }, false);
-			reader.readAsDataURL(file);
-		});
-	});
-	image.on('drag dragstart dragend dragover dragenter dragleave drop', function (e) {
-		   e.preventDefault();
-		   e.stopPropagation();
-	})
-	image.on('drop', function (e) {
-		var droppedFiles = e.originalEvent.dataTransfer.files;
-		var reader = new FileReader();
-		   reader.readAsDataURL(droppedFiles[0]);
-		   reader.onload = function () {
-		   
-		     image.css('background','url('+reader.result+')')
-			    .attr('data-stream',reader.result)
-		     	.css('background-size','cover');
-		   };
-		   reader.onerror = function (error) {
-		     console.log('Error: ', error);
-		   };
-
-	});
-		/*
-	var preload = $('<div class="preload progress-bar progress-bar-striped progress-bar-animated"></div>');
-	item.find('.part-image').append(preload);
-	item.find('.part-image').attr('id','part-image-'+$('#parts li').length());
-	item.find('.part-image').upload({
-		allowed : 'jpg,png,jpeg,bmp,svg',
-		size : 0,
-		action : 'hackpoint_part_image_upload',
-		readonly: false,
-		start: function(){
-			preload.show();
-		},
-		success: function(response){
-			if(response.previews.length && response.previews[0].name) {
-				
-			}
-			console.log(response);
-			preload.fadeOut();
-		},
-		complete: function(){
-			preload.fadeOut();
-		}
-	});*/
-}
-
-//Suppression d'élement part
-function hackpoint_resource_part_delete(element){
-	if(!confirm('Êtes vous sûr de vouloir supprimer cet item ?')) return;
-	var line = $(element).closest('li');
-
-	if(line.attr('data-id')==''){
-		line.css('transform','scale(0)');
-		setTimeout(function(){
-			line.remove()
-		},210);
-		return;
-	}
-	$.action({
-		action : 'hackpoint_resource_part_delete',
-		id : line.attr('data-id')
-	},function(r){
-		line.css('transform','scale(0)');
-		setTimeout(function(){
-			line.remove()
-		},210);
-	});
-}
-
-//Suppression d'élement part
-function hackpoint_part_delete(element){
-	if(!confirm('Êtes vous sûr de vouloir supprimer cet item ?')) return;
-	var line = $(element).closest('li');
-
-	if(line.attr('data-id')==''){
-		line.css('transform','scale(0)');
-		setTimeout(function(){
-			line.remove()
-		},210);
-		return;
-	}
-	$.action({
-		action : 'hackpoint_part_delete',
-		id : line.attr('data-id')
-	},function(r){
-		line.css('transform','scale(0)');
-		setTimeout(function(){
-			line.remove()
-		},210);
-	});
-}
-
 
 
 /** SKETCH **/

+ 0 - 0
plugin/hackpoint/Part.class.php → plugin/part/Part.class.php


+ 6 - 6
plugin/hackpoint/types/PartType.class.php → plugin/part/PartType.class.php

@@ -89,11 +89,11 @@ class PartType {
 				<div class="col-md-12">
 					
 
-					<div class="btn btn-dark btn-add-part" onclick="hackpoint_part_add()"><i class="far fa-plus-square pr-1"></i> Ajouter un composant</div>
+					<div class="btn btn-dark btn-add-part" onclick="part_part_add()"><i class="far fa-plus-square pr-1"></i> Ajouter un composant</div>
 
 					
 
-					<ul  id="parts" data-entity-search="hackpoint_resource_part_search">
+					<ul  id="parts" data-entity-search="part_resource_part_search">
 						<li data-id="{{id}}" data-part="{{part}}" class="hidden">
 							<div class="part">
 							  	<input type="text" data-type="part" data-force="false" placeholder="Nom du composant" value="{{label}}" class="form-control label">
@@ -123,10 +123,10 @@ class PartType {
 				              
 				               
 				              
-				                 <a onclick="hackpoint_part_find(this)" title="Chercher sur le net" class="link"><i class="fas fa-globe-americas pointer"></i></a>
-				                 <div class="btn btn-delete" onclick="hackpoint_resource_part_delete(this);"><i class="far fa-trash-alt"></i></div>
+				                 <a onclick="part_part_find(this)" title="Chercher sur le net" class="link"><i class="fas fa-globe-americas pointer"></i></a>
+				                 <div class="btn btn-delete" onclick="part_resource_part_delete(this);"><i class="far fa-trash-alt"></i></div>
 				                 <div class="clear"></div>
-				                 <div class="btn btn-dark w-100 mb-3 btn-save-part" onclick="hackpoint_part_save(this)"><i class="far fa-check-circle"></i>Valider</div>
+				                 <div class="btn btn-dark w-100 mb-3 btn-save-part" onclick="part_part_save(this)"><i class="far fa-check-circle"></i>Valider</div>
 			                 </div>
 						</li>
 					</ul>
@@ -134,7 +134,7 @@ class PartType {
 			</div>
 
 		';
-		$response['javascript'] = 'hackpoint_resource_part_search();';
+		$response['javascript'] = 'part_resource_part_search();';
 		
 
 		return $response;

+ 1 - 1
plugin/hackpoint/ResourcePart.class.php → plugin/part/ResourcePart.class.php

@@ -7,7 +7,7 @@
  */
 class ResourcePart extends Entity{
 	public $id,$part,$resource;
-	protected $TABLE_NAME = 'hackpoint_resource_part';
+	protected $TABLE_NAME = 'part_resource_part';
 	public $fields =
 	array(
 		'id' => 'key',

+ 197 - 0
plugin/part/action.php

@@ -0,0 +1,197 @@
+<?php
+global $_,$conf;
+switch($_['action']){
+		/** PART **/
+
+	case 'part_part_search':
+		Action::write(function(&$response){
+			global $myUser,$_;
+			require_once(__DIR__.SLASH.'Part.class.php');
+
+			foreach(Part::loadAll(array('state'=>Part::ACTIVE)) as $part){
+			
+				$row = $part->toArray();
+				$row['picture'] = $part->picture(true);
+				$response['rows'][] = $row;
+			}
+		});
+	break;
+	//Récuperation d'une liste de part
+	case 'part_resource_part_search':
+		Action::write(function(&$response){
+			global $myUser,$_;
+			
+			require_once(__DIR__.SLASH.'..'.SLASH.'hackpoint'.SLASH.'Sketch.class.php');
+			require_once(__DIR__.SLASH.'Part.class.php');
+			require_once(__DIR__.SLASH.'..'.SLASH.'hackpoint'.SLASH.'Resource.class.php');
+			require_once(__DIR__.SLASH.'ResourcePart.class.php');
+
+			$item = Resource::provide('resource',1);
+			$sketch = $item->join('sketch');
+			if(!$sketch->state && $sketch->creator != $myUser->login) throw new Exception("Permissions insuffisantes",403);
+			
+			foreach(ResourcePart::loadAll(array('resource'=>$_['resource']),  null, null, array('*'),1) as $resourcepart){
+				$part = $resourcepart->join('part');
+				$row = $part->toArray();
+				$row['picture'] = $part->picture(true);
+				$row['id'] = $resourcepart->id;
+				$row['part'] = $part->id;
+				$response['rows'][] = $row;
+			}
+		});
+	break;
+	
+	//Ajout ou modification d'élément part
+	case 'part_part_save':
+		Action::write(function(&$response){
+			global $myUser,$_;
+
+			require_once(__DIR__.SLASH.'..'.SLASH.'hackpoint'.SLASH.'Sketch.class.php');
+			require_once(__DIR__.SLASH.'Part.class.php');
+			require_once(__DIR__.SLASH.'..'.SLASH.'hackpoint'.SLASH.'Resource.class.php');
+			require_once(__DIR__.SLASH.'ResourcePart.class.php');
+			
+			$item = Resource::provide('resource',1);
+			$sketch = $item->join('sketch');
+			if($sketch->creator != $myUser->login) throw new Exception("Permissions insuffisantes",403);
+
+
+			$part = Part::provide('part');
+			$part->label = $_['label'];
+			if(isset($_['price'])) $part->price = $_['price'];
+			if(isset($_['link'])) $part->link = $_['link'];
+			if(isset($_['brand'])) $part->brand = $_['brand'];
+
+			$part->state = Part::ACTIVE;
+			$part->save();
+
+			if(isset($_['picture'])){
+				$stream = base64_decode(preg_replace('|.*image/[^;]*;base64,|i','',$_['picture']));
+				$dir = File::dir().'hackpoint'.SLASH.'part'.SLASH.$part->id;
+				if(!file_exists($dir)) mkdir($dir,0755,true);
+				file_put_contents($dir.SLASH.'cover.jpg', $stream);
+			}
+
+			$item =  ResourcePart::provide();
+			$item->part = $part->id;
+			$item->resource = $_['resource'];
+			$item->save();
+			$response = $item->toArray();
+		});
+	break;
+	
+	
+	//Suppression d'élement part
+	case 'part_resource_part_delete':
+		Action::write(function(&$response){
+			global $myUser,$_;
+			//if(!$myUser->can('hackpoint','delete')) throw new Exception("Permissions insuffisantes",403);
+			require_once(__DIR__.SLASH.'..'.SLASH.'hackpoint'.SLASH.'Sketch.class.php');
+			require_once(__DIR__.SLASH.'..'.SLASH.'hackpoint'.SLASH.'Resource.class.php');
+			require_once(__DIR__.SLASH.'ResourcePart.class.php');
+			require_once(__DIR__.SLASH.'Part.class.php');
+			$resourcePart = ResourcePart::getById($_['id'],2);
+			$resource = $resourcePart->join('resource');
+			$sketch = $resource->join('sketch');
+			if($sketch->creator!=$myUser->login) throw new Exception("Permissions insuffisantes",403);
+			ResourcePart::deleteById($_['id']);
+			
+		});
+	break;
+	//Suppression d'élement part
+	case 'part_part_delete':
+		Action::write(function(&$response){
+			global $myUser,$_;
+			if(!$myUser->can('hackpoint','delete')) throw new Exception("Permissions insuffisantes",403);
+			require_once(__DIR__.SLASH.'Part.class.php');
+			Part::deleteById($_['id']);
+			
+		});
+	break;
+
+
+	
+	case 'autocomplete_part':
+
+	    	Action::write(function(&$response){
+	    		require_once(__DIR__.SLASH.'Part.class.php');
+	    		
+	        	global $myUser,$_;
+        		if (!$myUser->connected()) throw new Exception("Error Processing Request", 1);
+        		 new Exception("Vous devez être connecté!");
+
+        		$response['rows'] = array();
+				$data = array("%".$_['keyword']."%",0);
+	        	$parts = Part::staticQuery('SELECT * FROM {{table}} WHERE label LIKE ? AND state=? LIMIT 10',array("%".$_['keyword']."%",Part::ACTIVE),true);
+	        	foreach($parts as $part){
+	                $response['rows'][] = array(
+	                	'name'=>html_entity_decode($part->label, ENT_QUOTES),
+						'id'=>$part->id,
+						'price'=>$part->price,
+						'brand'=>$part->brand,
+						'picture' => $part->picture(true)
+					);
+	        	}
+		        
+	        	if(isset($_['data']) && isset($_['data']['before']) && isset($_['data']['before'])!=''){
+	        		$list = json_decode(html_entity_decode($_['data']['before']),true);
+	        		if(is_array($list)){
+	        			foreach ($list as $key=>$value) {
+	        				if(preg_match('/'.$_['keyword'].'/i', $value))
+	        					array_unshift($response['rows'],array('name'=>$value,'id'=>$key));
+	        			}
+	        		}
+	        	}
+	        });
+	    break;
+
+	    case 'get_part_by_id':
+	    Action::write(function(&$response){
+	        global $myUser,$_;
+        	
+        	require_once(__DIR__.SLASH.'..'.SLASH.'hackpoint'.SLASH.'Sketch.class.php');
+        	require_once(__DIR__.SLASH.'..'.SLASH.'hackpoint'.SLASH.'Resource.class.php');
+        	require_once(__DIR__.SLASH.'Part.class.php');
+
+
+	        $part = Part::getById($_['id'],1);
+
+	        $part = !$part ? new Part() : Part::getById($_['id']);
+	        	
+	        $row = $part->toArray();
+	        $row['label'] =  html_entity_decode($row['label'], ENT_QUOTES);
+
+	        if(isset($_['before']) && isset($_['before'])!=''){
+        		$list = json_decode(html_entity_decode($_['before']),true);
+        		if(is_array($list)){
+        			if(isset($list[$_['id']])) $row = array('label' => $list[$_['id']], 'id'=>$_['id']);
+        		}
+        	}
+	        $response['part'] = $row;
+	    });
+	    break;
+
+
+	
+	//Sauvegarde des configurations de part
+	case 'part_setting_save':
+		Action::write(function(&$response){
+			global $myUser,$_,$conf;
+			User::check_access('part','configure');
+			foreach(Configuration::setting('part') as $key=>$value){
+				if(!is_array($value)) continue;
+				$allowed[] = $key;
+			}
+			foreach ($_['fields'] as $key => $value) {
+				if(in_array($key, $allowed))
+					$conf->put($key,$value);
+			}
+		});
+	break;
+	
+
+	
+
+
+}
+?>

+ 12 - 0
plugin/part/app.json

@@ -0,0 +1,12 @@
+{
+	"id": "fr.idleman.part",
+	"name": "Composants",
+	"author" : {
+		"name" : "Valentin CARRUESCO"
+	},
+	"version": "1.0",
+	"url": "http://idleman.fr",
+	"licence": {"name": "Copyright","url" : ""},
+	"description": "Gestion des composants",
+	"require" : {}
+}

+ 6 - 0
plugin/part/css/component.css

@@ -0,0 +1,6 @@
+input.data-type-part,.input-group-sm>input.form-control.data-type-part{
+  background-image: url('../img/icon-part.png?v=1');
+  background-repeat:no-repeat;
+  background-position: 10px center;
+  padding-left: 30px;
+}

+ 92 - 0
plugin/part/css/main.css

@@ -0,0 +1,92 @@
+
+/* readonly mode */
+.hackpoint.readonly .resource-part .btn-add-part,
+.hackpoint.readonly .resource-part .btn-save-part,
+.hackpoint.readonly .resource-part .btn-delete{
+	display:none;
+}
+
+
+
+	
+/**/
+
+#parts{
+	margin:0;
+	padding:0;
+}
+
+#parts li{
+	width:15%;
+	min-width: 250px;
+	display: inline-block;
+	padding:0px;
+	margin:5px 5px 5px 0;
+	transition: transform 0.2s ease-in-out;
+}
+#parts li .part{
+	background-color: #2b2f35;
+	border-radius: 3px;
+	padding: 15px;
+	color:#cecece;
+	min-height: 250px;
+	position: relative;
+}
+
+
+
+#sketch-workspace .part .part-image{
+	border:2px dashed #3e4750;
+	height:200px;
+	background: url(../img/default-part.png) center center no-repeat;
+	text-align: center;
+	text-transform: uppercase;
+	font-weight: bold;
+	color:#5e6671;
+	margin-top:10px;
+}
+
+#parts li .part .btn-delete{
+	color:#cecece;
+	position: absolute;
+	bottom: 0;
+	right: 0;
+	opacity:0.4;
+	transition:all 0.2s ease-in-out;
+}
+
+#parts li .part .btn-delete:hover{
+	opacity:0.9;
+}
+
+#parts li .part .price{
+	font-weight: bold;
+}
+
+#parts li .part .link{
+	color:#cecece;
+	position: absolute;
+	bottom: 0;
+	left: 0;
+	padding:5px 10px;
+	opacity:0.4;
+	transition:all 0.2s ease-in-out;
+}
+
+#parts li .part .brand{
+	font-size: 10px;
+	float:right;
+	margin-top: 5px;
+	color:#4c7cad;
+}
+#parts li .part .link:hover{
+	opacity:0.9;
+	transform:  rotate(180deg);
+}
+
+
+.part-list .picture{
+	width: 150px;
+	height: 150px;
+	border-radius: 3px;
+}

+ 0 - 0
plugin/hackpoint/img/default-part.png → plugin/part/img/default-part.png


+ 0 - 0
plugin/hackpoint/img/icon-part.png → plugin/part/img/icon-part.png


+ 105 - 0
plugin/part/js/component.js

@@ -0,0 +1,105 @@
+function init_components_part(input){
+		if(input.is(":visible")) {
+			var partPicker = input.clone();
+
+			input.before(partPicker);
+			if(input.parent().hasClass("input-group")){
+				input.parent().after(input.detach());
+				input.before('<div id="part-anchor" class="dropdown-anchor"></div>');
+			}
+			input.hide();
+			partPicker.addClass('data-type-part').removeAttr("data-type").removeAttr('name').removeAttr('id').removeAttr('onchange');
+			partPicker.attr('data-source',input.attr('id'));
+		}else{
+			partPicker = $('[data-source="'+input.attr('id')+'"]');
+		}
+
+		
+			
+
+		input.change(function(){
+			partPicker.prop('disabled',true).val('Chargement...');
+			$.action({
+				action : 'get_part_by_id',
+				id : input.val(),
+		
+				before : input.attr('data-before'),
+			},function(r){
+				partPicker.prop('disabled',input.prop('disabled'));
+				if(r.part && r.part.label){
+					partPicker.val(r.part.label);
+				}else{
+					partPicker.val('');
+				}
+			});
+		});
+
+
+		if(input.val() !=''){
+			partPicker.prop('disabled',true).val('Chargement...');
+			$.action({
+				action : 'get_part_by_id',
+				id : input.val(),
+				
+				before : input.attr('data-before'),
+			},function(r){
+				partPicker.prop('disabled',input.prop('disabled'));
+				if(r.part && r.part.label){
+					partPicker.val(r.part.label);
+				}else{
+					partPicker.val('');
+				}
+			});
+		}
+		
+		
+		partPicker.keyup(function(){
+			input.val('');
+		});
+		var parent = input.attr('data-parent');
+		partPicker.autocomplete({
+			action : 'autocomplete_part',
+			data : {
+			
+				before : input.attr('data-before'),
+				parent:function(){ return $(parent).val(); }
+			},
+			skin : function(item){
+				var html = '';
+					name = item.name;
+				/*var re = new RegExp(partPicker.val(),"gi");
+
+				name = item.name.replace(re, function (x) {
+					return '<strong>'+x+'</strong>';
+				});*/
+
+				html += '<div class="part-logo d-inline mr-2"><img src="data:'+item.picture+'" class="avatar-mini avatar-rounded"></div>'; 
+				html += '<div class="user-infos d-inline"><span>'+name+'</span>'; 
+				html += '<div class="clear"></div>';
+				
+				return html;
+			},
+			highlight : function(item){
+						return item;
+			},
+			onClick : function(selected,element){
+				console.log(selected,element);
+				var li = $(element).closest('li');
+				li.attr('data-part',selected.id);
+				li.find('.price input').val(selected.price);
+				li.find('.brand input').val(selected.brand);
+				li.find('.part-image').css('background','url(data:'+selected.picture+') 0% 0% / cover');
+				li.find('.part-image').attr('data-stream','data:'+selected.picture);
+				input.val(selected.id);
+				input.trigger('change');
+			},
+			onBlur : function(selected,element){
+				if(input.attr('data-force')!='false' && input.val()=='') partPicker.val('');
+				if(partPicker.val()=='') {
+					input.val('');
+				}
+				input.trigger('blur');
+			}
+		});
+}
+

+ 266 - 0
plugin/part/js/main.js

@@ -0,0 +1,266 @@
+//CHARGEMENT DE LA PAGE
+function init_plugin_part(){
+	switch($.urlParam('page')){
+		case 'list.part':
+			part_part_search();
+		break;
+		default:
+		break;
+	}
+	part_part_search();
+	
+	
+	$('#parts').sortable_table({
+		onSort : part_part_search
+	});
+	
+}
+
+
+//Enregistrement des configurations
+function part_setting_save(){
+	$.action({ 
+		action : 'part_setting_save', 
+		fields :  $('#part-setting-form').toJson() 
+	},function(){ $.message('info','Configuration enregistrée'); });
+}
+
+
+/** PART **/
+	
+
+
+//Récuperation d'une liste de part dans le tableau #parts
+function part_resource_part_search(callback){
+		
+	$('#parts').fill({
+		action:'part_resource_part_search',
+		resource : $('#sketch-editor').attr('data-id'),
+		showing : function(li,i){
+			li.css('transform','scale(0)').removeClass('hidden');
+			setTimeout(function(){
+				li.css('transform','scale(1)');
+			},i*200);
+		}
+	},function(){
+		$('#parts li:not(:eq(0))').each(function(i,li){
+			part_resource_part_upload(li);
+			var div  = $('[data-stream]',li);
+			if($(div).attr('data-stream') =='') return;
+			$(div).css('background','url(data:'+$(div).attr('data-stream')+')')
+		     	.css('background-size','cover');
+		});
+
+		if(callback!=null) callback();
+	});
+}
+
+
+//Récuperation d'une liste de part dans le tableau #parts
+function part_part_search(callback){
+	
+		
+	$('#parts').fill({
+		action:'part_part_search',
+		resource : $('#sketch-editor').attr('data-id'),
+	},function(){
+		$('#parts li:not(:eq(0))').each(function(i,li){
+
+			part_resource_part_upload(li);
+
+			var div  = $('[data-stream]',li);
+
+			if($(div).attr('data-stream') =='') return;
+			$(div).css('background','url(data:'+$(div).attr('data-stream')+')')
+		     	.css('background-size','cover');
+		});
+
+
+		$('#parts li:not(:eq(0))').css('transform','scale(0)').removeClass('hidden')
+
+		$('#parts li:not(:eq(0))').each(function(i,li){
+			var li = $(li);
+			setTimeout(function(){
+				li.css('transform','scale(1)');
+			},i*200);
+		});
+		
+		
+
+		if(callback!=null) callback();
+	});
+}
+
+//Ajout ou modification d'élément part
+function part_part_save(element){
+	var li = $(element).closest('li');
+	
+	var data = {
+		action : 'part_part_save',
+		resource : $('#sketch-editor').attr('data-id'),
+		part : li.attr('data-part'),
+		id : li.attr('data-id'),
+		label : li.find('.label').val(),
+		brand : li.find('.brand input').val(),
+		price : li.find('.price input').val(),
+		url : li.find('.url').val(),
+		picture : li.find('.part-image').attr('data-stream')
+	}
+	$.action(data,function(r){
+		
+		li.attr('data-part',r.part);
+		li.attr('data-id',r.id)
+		$.message('success','Enregistré');
+	});
+}
+
+function part_part_find(element){
+	var li = $(element).closest('li');
+	var label = li.find('.label').val();
+	var brand = li.find('.brand input').val();
+	var url = "https://www.ebay.fr/sch/i.html?_from=R40&_sacat=0&LH_BIN=1&LH_PrefLoc=2&_sop=15";
+	if(null!=brand && brand !='')  label = brand+'+'+label;
+	url += "&_nkw="+label;
+	window.open(url);
+}
+
+function part_part_add(){
+
+	var tpl = $('#parts li:eq(0)').get(0).outerHTML;
+
+	var data = {
+		price : 1,
+		url : 'http://ebay.com'
+	}
+	var item = $(Mustache.render(tpl,data));
+	item.removeClass('hidden');
+	item.css({
+		transform : 'scale(0)',
+		opacity : 0,
+	});
+	$('#parts li:eq(0)').after(item);
+	
+	item.css({
+		transform : 'scale(1) rotate(0deg)',
+		opacity : 1,
+	});
+
+	init_components(item);
+
+	part_resource_part_upload(item);
+
+
+
+
+
+}
+
+function part_resource_part_upload(item){
+	var item = $(item);
+	var image = item.find('.part-image');
+	image.click(function(e){
+		e.preventDefault();
+		e.stopPropagation();
+		var picker = image.next('input[type="file"]');
+		picker.trigger('click');
+		picker.change(function(){
+			var file = picker.get(0).files[0];
+			 var reader  = new FileReader();
+			 reader.addEventListener("load", function () {
+			
+			    image.css('background','url('+reader.result+')')
+			    .attr('data-stream',reader.result)
+		     	.css('background-size','cover');
+			  }, false);
+			reader.readAsDataURL(file);
+		});
+	});
+	image.on('drag dragstart dragend dragover dragenter dragleave drop', function (e) {
+		   e.preventDefault();
+		   e.stopPropagation();
+	})
+	image.on('drop', function (e) {
+		var droppedFiles = e.originalEvent.dataTransfer.files;
+		var reader = new FileReader();
+		   reader.readAsDataURL(droppedFiles[0]);
+		   reader.onload = function () {
+		   
+		     image.css('background','url('+reader.result+')')
+			    .attr('data-stream',reader.result)
+		     	.css('background-size','cover');
+		   };
+		   reader.onerror = function (error) {
+		     console.log('Error: ', error);
+		   };
+
+	});
+		/*
+	var preload = $('<div class="preload progress-bar progress-bar-striped progress-bar-animated"></div>');
+	item.find('.part-image').append(preload);
+	item.find('.part-image').attr('id','part-image-'+$('#parts li').length());
+	item.find('.part-image').upload({
+		allowed : 'jpg,png,jpeg,bmp,svg',
+		size : 0,
+		action : 'part_part_image_upload',
+		readonly: false,
+		start: function(){
+			preload.show();
+		},
+		success: function(response){
+			if(response.previews.length && response.previews[0].name) {
+				
+			}
+			console.log(response);
+			preload.fadeOut();
+		},
+		complete: function(){
+			preload.fadeOut();
+		}
+	});*/
+}
+
+//Suppression d'élement part
+function part_resource_part_delete(element){
+	if(!confirm('Êtes vous sûr de vouloir supprimer cet item ?')) return;
+	var line = $(element).closest('li');
+
+	if(line.attr('data-id')==''){
+		line.css('transform','scale(0)');
+		setTimeout(function(){
+			line.remove()
+		},210);
+		return;
+	}
+	$.action({
+		action : 'part_resource_part_delete',
+		id : line.attr('data-id')
+	},function(r){
+		line.css('transform','scale(0)');
+		setTimeout(function(){
+			line.remove()
+		},210);
+	});
+}
+
+//Suppression d'élement part
+function part_part_delete(element){
+	if(!confirm('Êtes vous sûr de vouloir supprimer cet item ?')) return;
+	var line = $(element).closest('li');
+
+	if(line.attr('data-id')==''){
+		line.css('transform','scale(0)');
+		setTimeout(function(){
+			line.remove()
+		},210);
+		return;
+	}
+	$.action({
+		action : 'part_part_delete',
+		id : line.attr('data-id')
+	},function(r){
+		line.css('transform','scale(0)');
+		setTimeout(function(){
+			line.remove()
+		},210);
+	});
+}

+ 9 - 9
plugin/hackpoint/page.list.part.php → plugin/part/page.list.part.php

@@ -1,21 +1,21 @@
 <?php
 global $myUser;
 if(!$myUser->connected()) throw new Exception("Vous devez être connecté pour accéder à cette fonctionnalité",401);
-if(!$myUser->can('hackpoint','read')) throw new Exception("Vous n'avez pas la permission pour executer cette fonctionnalité",403);
+if(!$myUser->can('part','read')) throw new Exception("Vous n'avez pas la permission pour executer cette fonctionnalité",403);
 require_once(__DIR__.SLASH.'Part.class.php');
 ?>
 
 <div class="row">
     
     <div class="col-md-8">
-        <select id="filters" data-type="filter" data-label="Recherche" data-function="hackpoint_part_search">
+        <select id="filters" data-type="filter" data-label="Recherche" data-function="part_part_search">
             <option value="label"   data-filter-type="text">Libellé</option>
         </select>
     </div>
     
 	<div class="col-md-4">
-		<?php if($myUser->can('hackpoint', 'edit')) : ?>
-		<a href="index.php?module=hackpoint&page=sheet.part" class="btn btn-success right"><i class="fas fa-plus"></i> Ajouter</a>
+		<?php if($myUser->can('part', 'edit')) : ?>
+		<a href="index.php?module=part&page=sheet.part" class="btn btn-success right"><i class="fas fa-plus"></i> Ajouter</a>
 		<?php endif; ?>
 	</div>
 </div>
@@ -23,7 +23,7 @@ require_once(__DIR__.SLASH.'Part.class.php');
 <div class="row">
 	<!-- search results -->
 	<div class="col-xl-12">
-        <ul  id="parts" data-entity-search="hackpoint_part_search">
+        <ul  id="parts" data-entity-search="part_part_search">
                         <li data-id="{{id}}" data-part="{{part}}" class="hidden">
                             <div class="part">
                                 <input type="text" data-type="part" data-force="false" placeholder="Nom du composant" value="{{label}}" class="form-control label">
@@ -53,10 +53,10 @@ require_once(__DIR__.SLASH.'Part.class.php');
                               
                                
                               
-                                 <a onclick="hackpoint_part_find(this)" title="Chercher sur le net" class="link"><i class="fas fa-globe-americas pointer"></i></a>
-                                 <div class="btn btn-delete" onclick="hackpoint_part_delete(this);"><i class="far fa-trash-alt"></i></div>
+                                 <a onclick="part_part_find(this)" title="Chercher sur le net" class="link"><i class="fas fa-globe-americas pointer"></i></a>
+                                 <div class="btn btn-delete" onclick="part_part_delete(this);"><i class="far fa-trash-alt"></i></div>
                                  <div class="clear"></div>
-                                 <div class="btn btn-dark w-100 mb-3 btn-save-part" onclick="hackpoint_part_save(this)"><i class="far fa-check-circle"></i>Valider</div>
+                                 <div class="btn btn-dark w-100 mb-3 btn-save-part" onclick="part_part_save(this)"><i class="far fa-check-circle"></i>Valider</div>
                              </div>
                         </li>
                     </ul>
@@ -65,7 +65,7 @@ require_once(__DIR__.SLASH.'Part.class.php');
          <!-- Pagination -->
        
         <ul class="pagination">
-            <li class="page-item hidden" data-value="{{value}}" title="Voir la page {{label}}" onclick="$(this).parent().find('li').removeClass('active');$(this).addClass('active');hackpoint_part_search();">
+            <li class="page-item hidden" data-value="{{value}}" title="Voir la page {{label}}" onclick="$(this).parent().find('li').removeClass('active');$(this).addClass('active');part_part_search();">
                 <a class="page-link" href="#">{{label}}</a>
             </li>
         </ul>

+ 2 - 2
plugin/hackpoint/page.sheet.part.php → plugin/part/page.sheet.part.php

@@ -5,7 +5,7 @@ require_once(__DIR__.SLASH.'Part.class.php');
 $part = Part::provide();
 ?>
 <div class="hackpoint">
-	<div id="part-form" class="row part-form" data-action="hackpoint_part_save" data-id="<?php echo $part->id; ?>">
+	<div id="part-form" class="row part-form" data-action="part_part_save" data-id="<?php echo $part->id; ?>">
 		<div class="col-md-12">
 			<h3>Part</h3>
 			<label for="label">Libellé</label>
@@ -17,7 +17,7 @@ $part = Part::provide();
 			<label for="brand">Marque</label>
 			<input id="brand" name="brand" class="form-control" placeholder="" value="<?php echo $part->brand; ?>" type="text">
 			<br/>
-			<div onclick="hackpoint_part_save();" class="btn btn-success"><i class="fas fa-check"></i> Enregistrer</div>
+			<div onclick="part_part_save();" class="btn btn-success"><i class="fas fa-check"></i> Enregistrer</div>
 		</div>
 	</div>
 </div>

+ 103 - 0
plugin/part/part.plugin.php

@@ -0,0 +1,103 @@
+<?php
+
+
+//Déclaration d'un item de menu dans le menu principal
+function part_menu(&$menuItems){
+	global $_,$myUser;
+	if(!$myUser->can('part','read')) return;
+	$menuItems[] = array(
+		'sort'=>3,
+		'url'=>'index.php?module=part&page=list.part',
+		'label'=>'Composants',
+		'icon'=> 'fas fa-microchip',
+		'color'=> '#3498db'
+	);
+}
+
+//Cette fonction va generer une page quand on clique sur part dans menu
+function part_page(){
+	global $_,$myUser;
+	if(!isset($_['module']) || $_['module'] !='part') return;
+	$page = !isset($_['page']) ? 'list.part' : $_['page'];
+	$file = __DIR__.SLASH.'page.'.$page.'.php';
+	if(!file_exists($file)) throw new Exception("Page ".$page." inexistante");
+	
+	require_once($file);
+}
+
+//Fonction executée lors de l'activation du plugin
+function part_install($id){
+	if($id != 'fr.idleman.part') return;
+	Entity::install(__DIR__);
+}
+
+//Fonction executée lors de la désactivation du plugin
+function part_uninstall($id){
+	if($id != 'fr.idleman.part') return;
+	Entity::uninstall(__DIR__);
+}
+
+//Déclaration des sections de droits du plugin
+function part_section(&$sections){
+	$sections['part'] = "Gestion des droits sur le plugin part";
+}
+
+//cette fonction comprends toutes les actions du plugin qui ne nécessitent pas de vue html
+function part_action(){
+	require_once(__DIR__.SLASH.'action.php');
+}
+
+//Déclaration du menu de réglages
+function part_menu_setting(&$settingMenu){
+	global $_, $myUser;
+	
+	if(!$myUser->can('part','configure')) return;
+	/*	$settingMenu[]= array(
+		'sort' =>1,
+		'url' => 'setting.php?section=global.part',
+		'icon' => 'fas fa-angle-right',
+		'label' => 'Composants'
+	);*/
+
+}
+
+//Déclaration des pages de réglages
+function part_content_setting(){
+	global $_;
+	if(file_exists(__DIR__.SLASH.'setting.'.$_['section'].'.php'))
+		require_once(__DIR__.SLASH.'setting.'.$_['section'].'.php');
+}
+
+
+//Déclaration des settings de base
+//Types possibles : text,select ( + "values"=> array('1'=>'Val 1'),password,checkbox. Un simple string définit une catégorie.
+Configuration::setting('part',array(
+        "Général",
+        'part_enable' => array("label"=>"Activer","type"=>"checkbox"),
+));
+
+
+ function part_manage_types(&$types){
+ 	$types[] = __DIR__.SLASH.'PartType.class.php';
+ }
+
+
+//Déclation des assets
+Plugin::addCss("/css/main.css"); 
+Plugin::addCss("/css/component.css?v=1",true); 
+
+Plugin::addJs("/js/component.js?v=2",true); 
+Plugin::addJs("/js/main.js"); 
+
+//Mapping hook / fonctions
+Plugin::addHook("install", "part_install");
+Plugin::addHook("uninstall", "part_uninstall"); 
+Plugin::addHook("section", "part_section");
+Plugin::addHook("menu_main", "part_menu"); 
+Plugin::addHook("page", "part_page");  
+Plugin::addHook("action", "part_action");  
+Plugin::addHook("menu_setting", "part_menu_setting");    
+Plugin::addHook("content_setting", "part_content_setting");   
+Plugin::addHook("hackpoint_resource_type", "part_manage_types"); 
+
+?>

+ 23 - 0
plugin/part/setting.global.part.php

@@ -0,0 +1,23 @@
+<?php
+global $myUser,$conf;
+User::check_access('part','configure');
+?>
+
+<div class="row">
+	<div class="col-md-12">
+          <h3><i class="fas fa-wrench"></i> Réglages Part
+                <?php if($myUser->can('part', 'edit')) : ?>
+        <div onclick="part_setting_save();" class="btn btn-success right"><i class="fas fa-check"></i> Enregistrer</div>
+        <?php endif; ?>
+          </h3>
+        <hr/>
+	</div>
+</div>
+<p>Veuillez remplir les informations ci dessous.</p>
+
+<div class="row">
+	<!-- search results -->
+	<div class="col-xl-12">
+		  <?php echo Configuration::html('part'); ?>
+	</div>
+</div>