123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452 |
- //CHARGEMENT DE LA PAGE
- function init_plugin_hackpoint(){
- switch($.urlParam('page')){
- default:
- break;
- }
-
-
- $('#parts').sortable_table({
- onSort : hackpoint_part_search
- });
-
- $('#sketchs').sortable_table({
- onSort : hackpoint_sketch_search
- });
- hackpoint_resource_search();
- }
- //Enregistrement des configurations
- function hackpoint_setting_save(){
- $.action({
- action : 'hackpoint_setting_save',
- fields : $('#hackpoint-setting-form').toJson()
- },function(){ $.message('info','Configuration enregistrée'); });
- }
- /** PART **/
-
- //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'),
- showItems : false
- },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();
- });
- }
- //Ajout ou modification d'élément part
- 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){
-
-
- $.message('success','Enregistré');
- });
- }
- 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
- 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 **/
-
- //Récuperation d'une liste de sketch dans le tableau #sketchs
- function hackpoint_sketch_search(callback){
-
-
- $('#sketchs').fill({
- action:'hackpoint_sketch_search',
- filters : $('#filters').filters(),
- sort : $('#sketchs').sortable_table('get')
- },function(){
- if(callback!=null) callback();
- });
- }
- //Ajout ou modification d'élément sketch
- function hackpoint_sketch_save(){
- var data = {
- action : 'hackpoint_sketch_save',
- id : $('#sketch-form').attr('data-id'),
- label : $('#label').val(),
- state : $('#state').prop('checked'),
- comment : $('#comment').val()
- }
- $.action(data);
- }
- //Suppression d'élement sketch
- function hackpoint_sketch_delete(element){
- if(!confirm('Êtes vous sûr de vouloir supprimer cet item ?')) return;
- $.action({
- action : 'hackpoint_sketch_delete',
- id : $('#sketch-form').attr('data-id')
- },function(r){
- window.location = 'index.php?module=hackpoint&success=Sketch supprimé';
- });
- }
- /** RESOURCE **/
-
- //Récuperation d'une liste de resource dans le tableau #resources
- function hackpoint_resource_search(callback,triggered){
- $('#resources').fill({
- action:'hackpoint_resource_search',
- sketch : $('#sketch-form').attr('data-id'),
- showItems : false
- },function(){
- //rend les menu sortables
- $( "#resources" ).sortable({
- axis: "y",
- update: function( event, ui ){
- var sort = [];
- $( "#resources li:visible" ).each(function(i,li){
- li = $(li);
- sort.push(li.attr('data-id'));
- });
- $.action({
- action : 'hackpoint_resource_sort',
- sort : sort
- },function(r){
-
- });
- }
- });
- $( "#resources" ).disableSelection();
- //affiche les menu de façon progressive
- $('#resources li:not(:eq(0))').removeClass('hidden')
- .css('transform','translateX(-120px)');
- $('#resources li:visible').each(function(i,element){
- setTimeout(function(){
- $(element)
- .css('transform','translateX(0px)');
- },150*i);
- });
-
- var trigger = '#resources li:eq(1)';
- if(triggered){
- trigger = triggered;
- }else if($.urlParam('resource')){
- trigger = '#resources li[data-id="'+$.urlParam('resource')+'"]';
- }
-
- $(trigger).trigger('click');
- if(callback!=null) callback();
- });
- }
- function hackpoint_resource_edit(element){
- var line = $(element).closest('li');
- var id = line.attr('data-id');
- $('#resources li:visible').removeClass('active');
- line.addClass('active');
- $.action({
- action : 'hackpoint_resource_edit',
- id : id
- },function(r){
- $('#sketch-editor').html(r.html).attr('data-id',id);
- window.history.replaceState(null, null, "index.php?module=hackpoint&page=sheet.sketch&id="+$('#sketch-form').attr('data-id')+"&resource="+id);
- init_components('#sketch-editor');
- if(r.javascript){
- eval(r.javascript);
- }
- });
- }
- function resource_add_document(files){
- $.action({
- action : 'resource_add_document',
- id: $('#sketch-editor').attr('data-id'),
- files : files
- }, function(r){
-
- $.each(r.files, function(i, file){
- var line = $('#sketch-editor li[data-path="'+file.oldPath+'"]');
- line.attr('data-path', file.relative);
- line.find('a').attr('href', file.url);
- line.find('i.pointer').attr('onclick', 'resource_delete_document(this)');
- line.find('img').attr('src', file.url);
- $('#sketch-editor [data-type="dropzone"] input:not(:visible)').val('');
-
- });
- });
- }
- function resource_delete_document(element){
- if(!confirm("Êtes-vous sûr de vouloir supprimer ce fichier ?")) return;
- var line = $(element).closest('li');
- $.action({
- action : 'resource_delete_document',
- path : line.attr('data-path')
- },function(r){
- line.remove();
- });
- }
- function hackpoint_resource_title_edit(event,element){
- event.stopPropagation();
- event.preventDefault();
- var title = $(element);
- var span = $(element).find('span');
- var input = $(element).find('input');
- span.hide();
- input.show();
- input.focus();
- input.val(span.text());
- input.select();
-
-
- input.blur(function(){
- input.hide();
- span.text(input.val());
- span.show();
- var li = $(this).closest('li');
- $.action({
- action : 'hackpoint_resource_save',
- id : li.attr('data-id'),
- label : input.val()
- },function(r){
-
- });
- });
- console.log(event,'hey!');
- }
- function hackpoint_resource_mirrorify(element,data){
- var editor = CodeMirror.fromTextArea($(element).get(0), data);
- editor.on("blur", function(cm,obj){
- var data = {};
- data.action = 'hackpoint_resource_save_content';
- data.id = $('#sketch-editor').attr('data-id');
- data.content = cm.getValue();
- $('.sketch-preloader').show();
- $.action(data,function(r){
- setTimeout(function(){
- $('.sketch-preloader').fadeOut(200);
- },300);
- });
- });
- editor.on("change", function() {
- var data ={height:800};
- var wrap = editor.getWrapperElement();
- var approp = editor.getScrollInfo().height > data.height ? data.height+"px" : "auto";
- if (wrap.style.height != approp) {
- wrap.style.height = approp;
- editor.refresh();
- }
- });
- }
- //Ajout ou modification d'élément resource
- function hackpoint_resource_save(element){
- var data = {
- action:'hackpoint_resource_save',
- sketch:$('#sketch-form').attr('data-id'),
- type:$(element).attr('data-slug')
- }
- $.action(data,function(r){
- hackpoint_resource_search(null,'#resources li[data-id="'+r.id+'"]');
- });
- }
- //Suppression d'élement resource
- function hackpoint_resource_delete(element,event){
- event.stopPropagation();
- if(!confirm('Êtes vous sûr de vouloir supprimer cet item ?')) return;
- var line = $(element).closest('li');
- $.action({
- action : 'hackpoint_resource_delete',
- id : line.attr('data-id')
- },function(r){
-
- $('#resources li:visible(:eq(0))').removeClass('active');
- $('#sketch-editor').html('');
-
-
- line.remove();
-
- });
- }
|