|
@@ -4,7 +4,7 @@ function init_plugin_hackpoint(){
|
|
default:
|
|
default:
|
|
break;
|
|
break;
|
|
}
|
|
}
|
|
- hackpoint_part_search();
|
|
|
|
|
|
+
|
|
|
|
|
|
$('#parts').sortable_table({
|
|
$('#parts').sortable_table({
|
|
onSort : hackpoint_part_search
|
|
onSort : hackpoint_part_search
|
|
@@ -37,16 +37,43 @@ function hackpoint_part_search(callback){
|
|
|
|
|
|
$('#parts').fill({
|
|
$('#parts').fill({
|
|
action:'hackpoint_part_search',
|
|
action:'hackpoint_part_search',
|
|
- filters : $('#filters').filters(),
|
|
|
|
- sort : $('#parts').sortable_table('get')
|
|
|
|
|
|
+ resource : $('#sketch-editor').attr('data-id'),
|
|
|
|
+ showItems : false
|
|
},function(){
|
|
},function(){
|
|
|
|
+ $('#parts li:not(:eq(0)) [data-stream]').each(function(i,div){
|
|
|
|
+ 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();
|
|
if(callback!=null) callback();
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
|
|
//Ajout ou modification d'élément part
|
|
//Ajout ou modification d'élément part
|
|
-function hackpoint_part_save(){
|
|
|
|
- var data = $('#part-form').toJson();
|
|
|
|
|
|
+function hackpoint_part_save(element){
|
|
|
|
+ var li = $(element).closest('li');
|
|
|
|
+ console.log(li);
|
|
|
|
+ var data = {
|
|
|
|
+ action : 'hackpoint_part_save',
|
|
|
|
+ resource : $('#sketch-editor').attr('data-id'),
|
|
|
|
+ label : li.find('.label').val(),
|
|
|
|
+ brand : li.find('.brand').val(),
|
|
|
|
+ price : li.find('.price').val(),
|
|
|
|
+ url : li.find('.url').val(),
|
|
|
|
+ picture : li.find('.part-image').attr('data-stream')
|
|
|
|
+ }
|
|
$.action(data,function(r){
|
|
$.action(data,function(r){
|
|
|
|
|
|
|
|
|
|
@@ -54,17 +81,135 @@ function hackpoint_part_save(){
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+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);
|
|
|
|
+
|
|
|
|
+ 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(data:'+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(data:image/jpeg;'+reader.result+')');
|
|
|
|
+ image.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
|
|
//Suppression d'élement part
|
|
function hackpoint_part_delete(element){
|
|
function hackpoint_part_delete(element){
|
|
if(!confirm('Êtes vous sûr de vouloir supprimer cet item ?')) return;
|
|
if(!confirm('Êtes vous sûr de vouloir supprimer cet item ?')) return;
|
|
- var line = $(element).closest('tr');
|
|
|
|
|
|
+ var line = $(element).closest('li');
|
|
|
|
+
|
|
|
|
+ if(line.attr('data-id')==''){
|
|
|
|
+ line.css('transform','scale(0)');
|
|
|
|
+ setTimeout(function(){
|
|
|
|
+ line.remove()
|
|
|
|
+ },210);
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
$.action({
|
|
$.action({
|
|
action : 'hackpoint_part_delete',
|
|
action : 'hackpoint_part_delete',
|
|
id : line.attr('data-id')
|
|
id : line.attr('data-id')
|
|
},function(r){
|
|
},function(r){
|
|
- line.remove();
|
|
|
|
- $.message('info','Élement supprimé');
|
|
|
|
|
|
+ line.css('transform','scale(0)');
|
|
|
|
+ setTimeout(function(){
|
|
|
|
+ line.remove()
|
|
|
|
+ },210);
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
|