Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16845 | Rev 16905 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
15139 stevensc 1
<?php
1 www 2
$acl            = $this->viewModel()->getRoot()->getVariable('acl');
3
$currentUser    = $this->currentUserHelper();
4
 
5
$roleName = $currentUser->getUserTypeId();
6
 
7
 
8
 
9
$routeDatatable = $this->url('microlearning/content/capsules');
10
 
11
$allowAdd       = $acl->isAllowed($roleName, 'microlearning/content/capsules/add') ? 1 : 0;
12
$allowEdit      = $acl->isAllowed($roleName, 'microlearning/content/capsules/edit') ? 1 : 0;
13
$allowDelete    = $acl->isAllowed($roleName, 'microlearning/content/capsules/delete') ? 1 : 0;
14
$allowUsers     = $acl->isAllowed($roleName, 'microlearning/content/capsules/users') ? 1 : 0;
15
 
16
 
17
 
16822 efrain 18
$this->headLink()->setStylesheet($this->basePath('assets/vendors/nelberth-editor/style.css'));
19
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/nprogress/nprogress.css'));
20
$this->inlineScript()->appendFile($this->basePath('assets/vendors/nprogress/nprogress.js'));
1 www 21
 
16822 efrain 22
$this->inlineScript()->appendFile($this->basePath('assets/vendors/ckeditor/ckeditor.js'));
1 www 23
 
24
 
16822 efrain 25
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/bootstrap-fileinput/css/fileinput.min.css'));
26
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/bootstrap-fileinput/themes/explorer-fas/theme.css'));
1 www 27
 
16843 efrain 28
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/js/plugins/piexif.js'));
29
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/js/plugins/sortable.js'));
16822 efrain 30
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/js/fileinput.js'));
31
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/js/locales/es.js'));
32
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/themes/fas/theme.js'));
33
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/themes/explorer-fas/theme.js'));
1 www 34
 
35
 
16822 efrain 36
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-validation/jquery.validate.js'));
37
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-validation/additional-methods.js'));
38
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-validation/localization/messages_es.js'));
1 www 39
 
16822 efrain 40
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/datatables.net-bs5/dataTables.bootstrap5.css'));
41
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/datatables.net-bs5-responsive/responsive.bootstrap5.css'));
1 www 42
 
16822 efrain 43
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net/jquery.dataTables.js'));
44
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5/dataTables.bootstrap5.js'));
45
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5-responsive/dataTables.responsive.min.js'));
46
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5-responsive/responsive.bootstrap5.min.js'));
1 www 47
 
48
 
16822 efrain 49
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/bootstrap4-toggle/css/bootstrap4-toggle.min.css'));
50
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap4-toggle/js/bootstrap4-toggle.min.js'));
1 www 51
 
52
 
53
 
54
 
55
 
16822 efrain 56
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-input-number/input-number-format.jquery.js'));
57
 
58
 
1 www 59
$this->headStyle()->captureStart();
60
echo <<<CSS
61
 
62
 
63
#gridTableUsers {
64
    display: flex;
65
    flex-flow: column;
66
    width: 100%;
67
}
68
 
69
#gridTableUsers thead {
70
    flex: 0 0 auto;
71
}
72
 
73
#gridTableUsers tbody {
74
    flex: 1 1 auto;
75
    display: block;
76
    overflow-y: auto;
77
    overflow-x: hidden;
78
}
79
 
80
#gridTableUsers tr {
81
    width: 100%;
82
    display: table;
83
    table-layout: fixed;
84
}
6903 nelberth 85
.imagen-contaner{
86
	border:1px solid rgb(200,200,200);
87
	border-radius:5px;
6917 nelberth 88
	padding:10px;
89
	display:flex;
90
	flex-flow:column;
91
	align-items:center;
6903 nelberth 92
}
1 www 93
CSS;
94
$this->headStyle()->captureEnd();
95
 
96
$this->headLink()->captureStart();
97
 
98
$this->inlineScript()->captureStart();
99
echo <<<JS
100
    jQuery( document ).ready(function( $ ) {
101
 
102
        $.validator.setDefaults({
103
            debug: true,
104
            highlight: function(element) {
105
                $(element).addClass('is-invalid');
106
            },
107
            unhighlight: function(element) {
108
                $(element).removeClass('is-invalid');
109
            },
110
            errorElement: 'span',
111
            errorClass: 'error invalid-feedback',
112
            errorPlacement: function(error, element) {
113
                if(element.parent('.btn-file').length) {
114
                    error.insertAfter(element.parent().parent());
115
                } else if(element.parent('.toggle').length) {
116
                    error.insertAfter(element.parent().parent());
117
                } else {
118
                    error.insertAfter(element.parent());
119
                }
120
            }
121
        });
122
 
123
 
124
        $.fn.showFormErrorValidator = function(fieldname, errors) {
125
            var field = $(fieldname);
126
            if(field) {
127
                $(field).addClass('is-invalid');
128
 
129
 
130
                var error = $('<span id="' + fieldname +'-error" class="error invalid-feedback">' + errors + '</div>');
131
                if(element.parent('.btn-file').length) {
132
                    error.insertAfter(element.parent().parent());
133
                } else if(element.parent('.toggle').length) {
134
                    error.insertAfter(element.parent().parent());
135
                } else {
136
                    error.insertAfter(element.parent());
137
                }
138
            }
139
        };
140
 
141
 
142
 
143
        var allowEdit   = $allowEdit;
144
        var allowDelete = $allowDelete;
145
        var allowUsers  = $allowUsers;
146
 
147
 
148
        var gridTable = $('#gridTable').dataTable( {
149
            'processing': true,
150
            'serverSide': true,
151
            'searching': true,
152
            'order': [[ 0, 'asc' ]],
153
            'ordering':  true,
154
            'ordenable' : true,
155
            'responsive': true,
156
            'select' : false,
157
        	'paging': true,
158
            'pagingType': 'simple_numbers',
159
 
160
    		'ajax': {
161
    			'url' : '$routeDatatable',
162
    			'type' : 'get',
163
                'data': function ( d ) {
164
                    d.topic_uuid = $('#form-filter #topic_uuid').val();
165
 
166
                },
167
                'beforeSend': function (request) {
168
                  NProgress.start();
169
                },
170
                'dataFilter': function(response) {
171
                    var response = jQuery.parseJSON( response );
172
 
173
                    var json                = {};
174
                    json.recordsTotal       = 0;
175
                    json.recordsFiltered    = 0;
176
                    json.data               = [];
177
 
178
                    if(response.success) {
179
                        $('#form-capsule-add').attr('action', response.data.link_add );
180
 
181
                        json.recordsTotal       = response.data.total;
182
                        json.recordsFiltered    = response.data.total;
183
                        json.data               = response.data.items;
184
                    } else {
185
                        $.fn.showError(response.data)
186
                    }
187
 
188
                    return JSON.stringify( json );
189
                }
190
    		},
191
            'language' : {
192
                'sProcessing':     'LABEL_DATATABLE_SPROCESSING',
193
                'sLengthMenu':     'LABEL_DATATABLE_SLENGTHMENU',
194
                'sZeroRecords':    'LABEL_DATATABLE_SZERORECORDS',
195
                'sEmptyTable':     'LABEL_DATATABLE_SEMPTYTABLE',
196
                'sInfo':           'LABEL_DATATABLE_SINFO',
197
                'sInfoEmpty':      'LABEL_DATATABLE_SINFOEMPTY',
198
                'sInfoFiltered':   'LABEL_DATATABLE_SINFOFILTERED',
199
                'sInfoPostFix':    '',
200
                'sSearch':         'LABEL_DATATABLE_SSEARCH',
201
                'sUrl':            '',
202
                'sInfoThousands':  ',',
203
                'sLoadingRecords': 'LABEL_DATATABLE_SLOADINGRECORDS',
204
                'oPaginate': {
205
                    'sFirst':    'LABEL_DATATABLE_SFIRST',
206
                    'sLast':     'LABEL_DATATABLE_SLAST',
207
                    'sNext':     'LABEL_DATATABLE_SNEXT',
208
                    'sPrevious': 'LABEL_DATATABLE_SPREVIOUS'
209
                },
210
                'oAria': {
211
                    'sSortAscending':  ': LABEL_DATATABLE_SSORTASCENDING',
212
                    'sSortDescending': ':LABEL_DATATABLE_SSORTDESCENDING'
213
                },
214
            },
215
            'drawCallback': function( settings ) {
216
                NProgress.done();
16822 efrain 217
 
1 www 218
            },
219
            'aoColumns': [
220
                { 'mDataProp': 'name' },
221
                { 'mDataProp': 'details' },
222
                { 'mDataProp': 'images' },
223
                { 'mDataProp': 'actions' },
224
    	    ],
225
            'columnDefs': [
226
                {
227
                    'targets': 0,
228
                    'className' : 'text-vertical-middle',
229
                },
230
                {
231
                    'targets': -3,
232
                    'orderable': false,
233
                    'render' : function ( data, type, row ) {
234
                        var s = '';
235
                        s += 'LABEL_STATUS: ' + data['status']  + '<br/>';
236
 
237
                         if(allowUsers && row['actions']['link_total_users']  ) {
238
                            s += 'LABEL_TOTAL_USERS: ' + data['total_users']  + ' <button class="btn btn-view-total-users" data-href="' + row['actions']['link_total_users'] + '" data-toggle="tooltip" title="LABEL_VIEW"><i class="fa fa-external-link"></i></button> <br>';
239
                         } else {
240
                            s += 'LABEL_TOTAL_USERS: ' + data['total_users']  + '<br/>';
241
                         }
242
                         if(allowUsers && row['actions']['link_total_users_actives']  ) {
243
                            s += 'LABEL_TOTAL_USERS_ACTIVE: ' + data['total_users_active']  + ' <button class="btn btn-view-total-users" data-href="' + row['actions']['link_total_users_actives'] + '" data-toggle="tooltip" title="LABEL_VIEW"><i class="fa fa-external-link"></i></button> <br>';
244
                         } else {
245
                            s += 'LABEL_TOTAL_USERS_ACTIVE: ' + data['total_users_active']  + '<br/>';
246
                         }
247
 
248
                        return s;
249
                    }
250
                },
251
                {
252
                    'targets': -2,
253
                    'orderable': false,
254
                    'render' : function ( data, type, row ) {
255
                        s = '';
256
 
6903 nelberth 257
						if( data['marketplace'] )  {
258
                            s = s + '&nbsp; <img class="btn-view-image-marketplace" data-href="' + data['marketplace'] + '" data-toggle="tooltip" src="'+data['marketplace']+'" title="LABEL_VIEW" style="width: 40px; object-fit: cover; height: 40px;" /> '
1 www 259
                        }  else {
260
                            s = s + '';
261
                        }
6903 nelberth 262
 
263
                        if( data['image'] )  {
264
                            s = s + '&nbsp; <img class="btn-view-image-app" data-href="' + data['image'] + '" data-toggle="tooltip" src="'+data['image']+'" title="LABEL_VIEW" style="width: 40px; object-fit: cover; height: 40px;" /> '
1 www 265
                        }  else {
266
                            s = s + '';
267
                        }
268
 
269
 
270
 
6903 nelberth 271
 
272
 
1 www 273
                        return s;
274
                    }
275
                },
276
 
277
 
278
                {
279
                    'targets': -1,
280
                    'orderable': false,
281
                    'render' : function ( data, type, row ) {
282
                        s = '';
283
 
284
                        if(allowEdit && data['link_edit']  ) {
285
                            s = s + '<button class="btn btn-info btn-sm btn-edit" data-href="' + data['link_edit']+ '" data-toggle="tooltip" title="LABEL_EDIT"><i class="fa fa-pencil"></i> LABEL_EDIT </button>&nbsp;';
286
                        }
287
                        if(allowDelete && data['link_delete']  ) {
288
                            s = s + '<button class="btn btn-danger btn-sm btn-delete" data-href="' + data['link_delete']+ '" data-toggle="tooltip" title="LABEL_DELETE"><i class="fa fa-trash"></i> LABEL_DELETE </button>&nbsp;';
289
                        }
290
 
291
                        return s;
292
                    }
293
                }
294
              ],
295
        });
296
 
297
 
6823 nelberth 298
        var seleccionarCampo;
1 www 299
    var validatorAdd = $('#form-capsule-add').validate({
300
        debug: true,
301
        onclick: false,
302
        onkeyup: false,
303
        ignore: [],
304
        rules: {
305
            'name': {
306
                required: true,
307
                maxlength: 128,
308
            },
309
            'description': {
310
                updateCkeditor:function() {
311
                        CKEDITOR.instances.description_add.updateElement();
312
                },
313
                required: true
314
            },
315
           'file': {
316
                required: true,
317
            },
318
            'order' : {
319
                required: true,
320
                digits: true,
321
                min: 1,
322
                max: 250
323
            },
324
           'marketplace': {
6861 nelberth 325
                required: true,
1 www 326
            },
327
            'status' : {
328
                required: true,
329
            },
330
            'privacy' : {
331
                required: true,
332
            },
333
            'type' : {
334
                required: true,
335
            },
336
            'cost' : {
337
                required: function() {
338
                    return $('#form-capsule-add #type').val() == 's';
339
                },
340
                'number' : true,
341
                'min' : 0
342
            }
343
        },
344
        submitHandler: function(form)
345
        {
346
            var formdata = false;
347
            if (window.FormData){
348
                formdata = new FormData(form); //form[0]);
349
            }
350
 
6948 nelberth 351
            $('#boton_recortar').prop('disabled', true);
6859 nelberth 352
			NProgress.start();
1 www 353
            $.ajax({
354
                'dataType'  : 'json',
355
                'accept'    : 'application/json',
356
                'method'    : 'post',
357
                'url'       :  $('#form-capsule-add').attr('action'),
358
                'data'      :  formdata,
359
                'processData': false,
360
                'contentType': false,
361
            }).done(function(response) {
362
                if(response['success']) {
363
                    $.fn.showSuccess(response['data']);
6932 nelberth 364
                       console.log(response)
6703 nelberth 365
                    $('body, html').animate({scrollTop: '0px'}, 300);
366
					$('#content1').css('display','block');
367
                    $('.contenido').html('');
368
            		seleccionarCampo.css('display','none');
7000 nelberth 369
					$('#titleTypeImage').html('LABEL_IMAGE_MARKETPLACE')
6997 nelberth 370
					$('.marketplaceImg').attr('src', '')
6946 nelberth 371
					fileToggle=true;
1 www 372
                    gridTable.api().ajax.reload(null, false);
373
                } else {
374
                    validatorAdd.resetForm();
375
                    if(jQuery.type(response['data']) == 'string') {
376
                        $.fn.showError(response['data']);
377
                    } else  {
378
                        $.each(response['data'], function( fieldname, errors ) {
379
                            $.fn.showFormErrorValidator('#form-capsule-add #' + fieldname, errors);
380
                        });
381
                    }
382
                }
383
            }).fail(function( jqXHR, textStatus, errorThrown) {
6936 nelberth 384
				console.log(jqXHR)
1 www 385
                $.fn.showError(textStatus);
386
            }).always(function() {
6949 nelberth 387
				$('#boton_recortar').prop('disabled', false);
1 www 388
                NProgress.done();
389
            });
390
            return false;
391
        },
392
        invalidHandler: function(form, validator) {
393
 
394
        }
395
    });
396
 
397
    var validatorEdit  = $('#form-capsule-edit').validate({
398
        debug: true,
399
        onclick: false,
400
        onkeyup: false,
401
        ignore: [],
402
        rules: {
403
              'name': {
404
                required: true,
405
                maxlength: 128,
406
            },
407
            'description': {
408
                updateCkeditor:function() {
409
                        CKEDITOR.instances.description_edit.updateElement();
410
                },
411
                required: true
412
            },
413
           'file': {
6990 nelberth 414
                required: true,
1 www 415
            },
416
            'order' : {
417
                required: true,
418
                digits: true,
419
                min: 1,
420
                max: 250
421
            },
422
           'marketplace': {
6990 nelberth 423
                required: true,
1 www 424
            },
425
            'status' : {
426
                required: true,
427
            },
428
            'privacy' : {
429
                required: true,
430
            },
431
            'type' : {
432
                required: true,
433
            },
434
            'cost' : {
435
                required: function() {
436
                    return $('#form-capsule-edit #type').val() == 's';
437
                },
438
                'number' : true,
439
                'min' : 0
440
            }
441
        },
442
        submitHandler: function(form)
443
        {
444
            var formdata = false;
445
            if (window.FormData){
446
                formdata = new FormData(form); //form[0]);
447
            }
448
 
6992 nelberth 449
			$('#boton_recortar').prop('disabled', true);
450
			NProgress.start();
1 www 451
            $.ajax({
452
                'dataType'  : 'json',
453
                'accept'    : 'application/json',
454
                'method'    : 'post',
455
                'url'       :  $('#form-capsule-edit').attr('action'),
456
                'data'      :  formdata,
457
                'processData': false,
458
                'contentType': false,
459
            }).done(function(response) {
460
                if(response['success']) {
461
                    $.fn.showSuccess(response['data']);
6993 nelberth 462
					console.log(response)
6990 nelberth 463
					$('body, html').animate({scrollTop: '0px'}, 300);
464
					$('#content1').css('display','block');
465
                    $('.contenido').html('');
466
            		seleccionarCampo.css('display','none');
7000 nelberth 467
					$('#titleTypeImage').html('LABEL_IMAGE_MARKETPLACE')
6997 nelberth 468
					$('.marketplaceImg').attr('src', '')
6990 nelberth 469
					fileToggle=true;
6996 nelberth 470
					imagenEdit='';
1 www 471
                    gridTable.api().ajax.reload(null, false);
472
                } else {
473
                    validatorAdd.resetForm();
474
                    if(jQuery.type(response['data']) == 'string') {
475
                        $.fn.showError(response['data']);
476
                    } else  {
477
                        $.each(response['data'], function( fieldname, errors ) {
478
                            $.fn.showFormErrorValidator('#form-capsule-edit #' + fieldname, errors);
479
                        });
480
                    }
481
                }
482
            }).fail(function( jqXHR, textStatus, errorThrown) {
6993 nelberth 483
				console.log(jqXHR)
1 www 484
                $.fn.showError(textStatus);
485
            }).always(function() {
6996 nelberth 486
 
6992 nelberth 487
				$('#boton_recortar').prop('disabled', false);
1 www 488
                NProgress.done();
489
            });
490
            return false;
491
        },
492
        invalidHandler: function(form, validator) {
493
 
494
        }
495
    });
496
 
497
 
498
 
499
        $('body').on('click', '.btn-view-image-marketplace', function(e) {
500
            e.preventDefault();
501
 
502
            $('#image-marketplace').attr('src', $(this).data('href'));
503
            $('#modalAppMarkeplate').modal('show');
504
            return false;
505
        });
506
 
507
        $('body').on('click', '.btn-view-image-app', function(e) {
508
            e.preventDefault();
509
 
510
            $('#image-app').attr('src', $(this).data('href'));
511
            $('#modalImageApp').modal('show');
512
            return false;
513
        });
514
 
515
        $('#form-capsule-add #order').inputNumberFormat({decimal: 0});
516
 
517
 
518
 
519
 
520
        $('body').on('click', 'button.btn-add', function(e) {
521
            e.preventDefault();
522
 
523
            $('#form-capsule-add #name').val('');
524
            $('#form-capsule-add #order').val('1');
525
 
526
            $('#form-capsule-add #privacy').val('');
527
            $('#form-capsule-add #status').val('');
528
            $('#form-capsule-add #cost').val('');
529
            $('#form-capsule-add #form-row-cost').hide();
530
 
531
            CKEDITOR.instances.description_add.setData('');
532
            validatorAdd.resetForm();
533
 
6694 nelberth 534
            $('body, html').animate({scrollTop: '0px'}, 300);
535
		    $('#content1').css('display','none');
536
            seleccionarCampo= $('#modalCapsuleAdd');
537
            seleccionarCampo.css('display','block')
538
		    iniciarEditor(seleccionarCampo)
1 www 539
            return false;
540
        });
541
 
542
 
543
        $('#form-capsule-edit #order').inputNumberFormat({decimal: 0});
544
 
6859 nelberth 545
 
1 www 546
 
6991 nelberth 547
 
1 www 548
 
549
        $('body').on('click', 'button.btn-edit', function(e) {
550
            e.preventDefault();
7045 nelberth 551
			NProgress.start();
1 www 552
            var url = $(this).data('href');
553
            $.ajax({
554
                'dataType'  : 'json',
555
                'accept'    : 'application/json',
556
                'method'    : 'get',
557
                'url'       :  url,
558
            }).done(function(response) {
559
                if(response['success']) {
6980 nelberth 560
					console.log(response)
1 www 561
                    $('#form-capsule-edit').attr('action',url);
562
                    $('#form-capsule-edit #name').val(response['data']['name']);
563
                    $('#form-capsule-edit #order').val(response['data']['order']);
564
                    $('#form-capsule-edit #privacy').val(response['data']['privacy']);
565
                    $('#form-capsule-edit #type').val(response['data']['type']);
566
                    $('#form-capsule-edit #status').val(response['data']['status']);
567
 
568
                    if('s' == response['data']['type']) {
569
                        $('#form-capsule-edit #form-row-cost').show();
570
                        $('#form-capsule-edit #cost').val(response['data']['cost']);
571
                    } else {
572
                        $('#form-capsule-edit #form-row-cost').hide();
573
                        $('#form-capsule-edit #cost').val('');
574
                    }
575
 
576
                    CKEDITOR.instances.description_edit.setData(response['data']['description']);
577
                    validatorEdit.resetForm();
6979 nelberth 578
					 fileToggle=true;
6975 nelberth 579
					$('body, html').animate({scrollTop: '0px'}, 300);
580
					$('#content1').css('display','none');
581
                    seleccionarCampo= $('#modalCapsuleEdit');
582
                    seleccionarCampo.css('display','block')
6984 nelberth 583
					imagenEdit=response['data']['image'];
6975 nelberth 584
		            iniciarEditor(seleccionarCampo,response['data']['marketplace'])
15027 stevensc 585
 
1 www 586
                } else {
587
                    validatorEdit.resetForm();
588
                    if(jQuery.type(response['data']) == 'string') {
589
                        $.fn.showError(response['data']);
590
                    } else  {
591
                        $.each(response['data'], function( fieldname, errors ) {
592
                            $.fn.showFormErrorValidator('#form-capsule-edit #' + fieldname, errors);
593
                        });
594
                    }
595
                }
596
            }).fail(function( jqXHR, textStatus, errorThrown) {
597
                $.fn.showError(textStatus);
598
            }).always(function() {
599
                NProgress.done();
600
            });
601
        });
602
 
6886 nelberth 603
 
1 www 604
 
605
 
8290 stevensc 606
        CKEDITOR.replace('description_add', {
607
			toolbar: [
608
                    { name: 'editing', items: ['Scayt'] },
609
                    { name: 'links', items: ['Link', 'Unlink'] },
610
                    { name: 'paragraph', items: ['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', 'Blockquote'] },
611
                    { name: 'basicstyles', items: ['Bold', 'Italic', 'Strike', 'RemoveFormat'] },
612
                    '/',
613
                    { name: 'insert', items: ['Image', 'Table', 'HorizontalRule', 'SpecialChar'] },
614
                    { name: 'styles', items: ['Styles', 'Format'] },
615
                    { name: 'tools', items: ['Maximize'] }
616
                ],
617
                removePlugins: 'elementspath,Anchor',
618
                heigth: 100
619
		});
620
        CKEDITOR.replace('description_edit', {
621
			toolbar: [
622
                    { name: 'editing', items: ['Scayt'] },
623
                    { name: 'links', items: ['Link', 'Unlink'] },
624
                    { name: 'paragraph', items: ['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', 'Blockquote'] },
625
                    { name: 'basicstyles', items: ['Bold', 'Italic', 'Strike', 'RemoveFormat'] },
626
                    '/',
627
                    { name: 'insert', items: ['Image', 'Table', 'HorizontalRule', 'SpecialChar'] },
628
                    { name: 'styles', items: ['Styles', 'Format'] },
629
                    { name: 'tools', items: ['Maximize'] }
630
                ],
631
                removePlugins: 'elementspath,Anchor',
632
                heigth: 100
633
		});
1 www 634
 
635
        $('#form-capsule-add #type').change(function(e) {
636
            e.preventDefault();
637
 
638
            if('s' == $(this).val()) {
639
                $('#form-capsule-add #form-row-cost').show();
640
            } else {
641
                $('#form-capsule-add #cost').val(0);
642
                $('#form-capsule-add #form-row-cost').hide();
643
            }
644
 
645
        });
646
 
647
        $('#form-capsule-edit #type').change(function(e) {
648
            e.preventDefault();
649
 
650
            if('s' == $(this).val()) {
651
                $('#form-capsule-edit #form-row-cost').show();
652
            } else {
653
                $('#form-capsule-edit #cost').val(0);
654
                $('#form-capsule-edit #form-row-cost').hide();
655
            }
656
 
657
        });
658
 
659
        $('#form-capsule-add #order').inputNumberFormat({decimal: 0});
660
        $('#form-capsule-add #cost').inputNumberFormat({decimal: 2});
661
 
662
        $('#form-filter #topic_uuid').change(function(e) {
663
            e.preventDefault();
664
 
665
            gridTable.api().ajax.reload(null, false);
666
 
667
        });
668
 
669
 
670
 
671
 
672
 
673
    $('body').on('click', 'button.btn-view-total-users', function(e) {
674
        e.preventDefault();
675
 
676
        var href = $(this).data('href');
677
        NProgress.start();
678
        $.ajax({
679
            'dataType'  : 'json',
680
            'accept'    : 'application/json',
681
            'method'    : 'get',
682
            'url'       : href,
683
        }).done(function(response) {
684
            if(response['success']) {
685
 
686
                $('#table-users-topic').val(response['data']['topic']);
687
      			$('#table-users-capsule').val(response['data']['capsule']);
688
 
689
                $('#gridTableUsers tbody').empty();
690
 
691
                $.each(response['data']['items'], function(index, item) {
692
 
693
                    console.log(item);
694
 
695
                    var s = '<tr>';
696
                    s = s + '<td>' + item['first_name'] + '</td>';
697
                    s = s + '<td>' + item['last_name'] + '</td>';
698
                    s = s + '<td>' + item['email'] + '</td>';
699
 
700
                    s = s + '<td>';
701
                    if(item['details']['access']) {
702
                        s = s + 'LABEL_ACCESS : ' + item['details']['access'] + '<br>';
703
                    }
704
                    if(item['details']['paid_from']) {
705
                        s = s + 'LABEL_PAID_FROM : ' + item['details']['paid_from'] + '<br>';
706
                    }
707
                    if(item['details']['paid_to']) {
708
                        s = s + 'LABEL_PAID_TO : ' + item['details']['paid_to'] + '<br>';
709
                    }
710
 
711
                    s = s + '</td>';
712
                    s = s + '</tr>';
713
 
714
                    $('#gridTableUsers tbody').append(s);
715
 
716
 
717
                });
718
 
719
                $('#notificationUsersModal').modal('show');
720
 
721
            } else {
722
                $.fn.showError(response['data']);
723
 
724
            }
725
        }).fail(function( jqXHR, textStatus, errorThrown) {
726
            $.fn.showError(textStatus);
727
        }).always(function() {
728
 
729
            NProgress.done();
730
        });
731
        return false;
732
 
733
    });
734
    $('body').on('click', 'button.btn-refresh', function(e) {
735
        e.preventDefault();
736
        gridTable.api().ajax.reload(null, false);
737
    });
16822 efrain 738
 
739
    $('body').on('click', 'button.btn-delete', function(e) {
740
        e.preventDefault();
741
        var action = $(this).data('href');
742
 
743
 
744
          swal.fire({
745
            title: 'LABEL_ARE_YOU_SURE',
746
            icon: 'question',
747
            cancelButtonText: 'LABEL_NO',
748
            showCancelButton: true,
749
            confirmButtonText: 'LABEL_YES'
750
          }).then((result) => {
751
            if (result.isConfirmed) {
752
 
753
                    NProgress.start();
754
                    $.ajax({
755
                        'dataType'  : 'json',
756
                        'accept'    : 'application/json',
757
                        'method'    : 'post',
758
                        'url'       :  action,
759
                    }).done(function(response) {
760
                        if(response['success']) {
761
                            $.fn.showSuccess(response['data']);
762
                            gridTable.api().ajax.reload(null, false);
763
                        } else {
764
                            $.fn.showError(response['data']);
765
                        }
766
                    }).fail(function( jqXHR, textStatus, errorThrown) {
767
                        $.fn.showError(textStatus);
768
                    }).always(function() {
769
                        NProgress.done();
770
                    });
771
                }
772
           });
773
        });
6682 nelberth 774
       	/*Script del editor (Aqui comienza el cielo y la tierra) */
6863 nelberth 775
 
776
		var fileToggle=true;
6886 nelberth 777
		$('body').on('click', '#ir_atras', function(e) {
778
            e.preventDefault();
779
			if(fileToggle){
6985 nelberth 780
				imagenEdit='';
6886 nelberth 781
            	$('body, html').animate({scrollTop: '0px'}, 300);
782
				$('#content1').css('display','block');
783
           		seleccionarCampo.css('display','none');
784
            	$('.contenido').html('');
6997 nelberth 785
				$('.marketplaceImg').attr('src', '')
6886 nelberth 786
			}else{
7000 nelberth 787
				$('#titleTypeImage').html('LABEL_IMAGE_MARKETPLACE')
6997 nelberth 788
				$('.marketplaceImg').attr('src', '')
6964 nelberth 789
				fileToggle=true;
6890 nelberth 790
				iniciarEditor(seleccionarCampo,imagenServidorNoticia,false)
6964 nelberth 791
 
6886 nelberth 792
			}
793
            return false;
794
        });
6984 nelberth 795
		var imagenEdit='';
6682 nelberth 796
		var imagenServidorNoticia;
797
		var scroll_altura,viente;
798
		var nombre_user = $(".perfil_u_nombre").text();
799
		var primer_nombre = nombre_user.split(" ")[0];
11027 nelberth 800
		var nuevoHtmlImagen='<div class="articulo_noticia animated fadeIn"> <div class="pasos"> <div class="titulo_pasos animated fadeInDown delay-04 fast">LABEL_STEP_1</div><div class="paso_opcion"> <div class="responsing_cut"> <div class="icon_cut"><span class="fa fa-scissors"></span></div><div class="contenido_cut"> <div class="animated fadeInRight delay-04 fast"> <div> <div class="titulo_cut"> <div>LABEL_CUT</div><div class="fa fa-times" id="cerrar_cut_modal"></div></div><div class="opcion_editor recortar10"> <div class="recortar_texto">LABEL_CUT</div><div id="blockCelda"><span class="fa fa-unlock"></span></div></div></div></div></div></div><div class="responsing_text"> <div class="icon_text"><span class="fa fa-text-width"></span></div><div class="contenido_text"> <div class="animated fadeInRight delay-04 fast"> <div class="texto"> <div class="titulo_text"> <div>LABEL_TEXT</div><div class="fa fa-times" id="cerrar_text_modal"></div></div><div class="fonts mb-20"><select name="fuentes" id="selectFuente" class="select-custom mr-2"><option value="arial" selected>LABEL_FONT_ARIAL</option><option value="calibri">LABEL_FONT_CALIBRI</option><option value="forte">LABEL_FONT_FORTE</option><option value="impact">LABEL_FONT_IMPACT</option><option value="jokerman">LABEL_FONT_JOKERMAN</option><option value="mv boli">LABEL_FONT_MV_BOLI</option><option value="times new roman">LABEL_FONT_TIMES_NEW_ROMAN</option><option value="verdana">LABEL_FONT_VERDANA</option><option value="vivaldi">LABEL_FONT_VIVALDI</option></select><input type="number" class="" data-tooltip="Tamaño de la letra" name="" id="font-size" max="500" min="1" step="1" value="48"/></div><div class="fonts mb-20"> <div class="font" id="negritas" data-tooltip="Negritas"><i class="fa fa-bold" aria-hidden="true"></i></div><div class="font" id="italic" data-tooltip="Letra Cursiva"><i class="fa fa-italic" aria-hidden="true"></i></div><div class="color_letra font"><label>A</label><input type="color" class="" data-tooltip="Color de la letra" name="" id="color" value="#ffffff"/></div><div class="font fa" data-tooltip="Sombra de la letra" id="shadow">S</div><div class="font" id="rectangulo" data-tooltip="Fondo de la letra"> <div class="rectangulo">F</div></div></div><div class="color_fondo_cuadro mb-20 flex-column" style="display:none"> <div class="w-100 d-flex justify-content-between border-bottom"><label for="colorrect" class="font-weight-normal d-flex align-items-center" style="margin:0 !important">LABEL_COLOR_BACKGROUND: </label><input type="color" name="" id="colorrect" value="#000000" style="width:30px" data-tooltip="Color del fondo" class="mr-2"/></div><div class="d-flex flex-column"><label for="opacidad" class="font-weight-normal mt-2">LABEL_BACKGROUND_TRANSPARENCY</label><input type="range" id="opacidad" max="100" min="1" step="1" value="100" ></div></div><input id="texto_input" type="text" name="texto" placeholder="LABEL_ADD_TEXT_HERE"/> </div></div></div></div><div class="responsing_filtros"> <div class="icon_filter"><span class="fa fa-eyedropper"></span></div><div class="contenido_filter"> <div class="titulo_filtro mb-20"> <div>LABEL_FILTERS</div><div class="fa fa-times" id="cerrar_filter_modal"></div></div><div class="fonts mb-20"> <select name="filtros" id="selectFiltro" class="select-custom"><option class="opcion_editor" value="normal">LABEL_FILTER_NORMAL</option><option class="opcion_editor" value=".5,1.3,1.31,1.33,1.38">LABEL_FILTER_NIGHT</option><option class="opcion_editor" value=".7,1.1,1.64,1.66,1.50">LABEL_FILTER_SAINT_ANA</option><option class="opcion_editor" value=".75,1,1.66,1.60,1.51">LABEL_FILTER_CREAM</option><option class="opcion_editor" value=".7,1.2,1.49,1.49,1.6">LABEL_FILTER_MAGIC</option><option class="opcion_editor" value=".7,1.2,1.60,1.66,1.58">LABEL_FILTER_RELIEF</option><option class="opcion_editor" value=".9,.9,1.45,1.54,1.54">LABEL_FILTER_LIGHT</option><option class="opcion_editor" value="1,1.5,1,1,1">LABEL_FILTER_SATURATION</option><option class="opcion_editor" value=".9,1.3,1,1,1">LABEL_FILTER_RETOUCH</option><option class="opcion_editor" value=".8,1,1.6,1.45,1.49">LABEL_FILTER_ORANGE</option><option class="opcion_editor" value=".8,.75,1.60,1.66,1.58">LABEL_FILTER_WIND</option><option class="opcion_editor" value=".8,.9,1.66,1.43,1.28">LABEL_FILTER_DESERT</option><option class="opcion_editor" value=".85,.75,1.47,1.66,1.54">LABEL_FILTER_FOREST</option><option class="opcion_editor" value=".8,.8,1.71,1.64,1.58">LABEL_FILTER_TOWN</option><option class="opcion_editor" value=".8,1.2,1.24,.99,1">LABEL_FILTER_PINK</option><option class="opcion_editor" value=".9,1.1,1.33,1.19,.91">LABEL_FILTER_HISTORY</option><option class="opcion_editor" value="1,1,gris">LABEL_FILTER_GRAY</option><option class="opcion_editor" value=".8,1.5,gris">LABEL_FILTER_OLD_PICTURE</option><option class="opcion_editor" value=".9,1.2,26,-12,0,2">LABEL_FILTER_CHARMING</option><option class="opcion_editor" value="1.1,1.4,40,12,-6,2">LABEL_FILTER_EMOTION</option><option class="opcion_editor" value=".9,1.32,56,47,17,2">LABEL_FILTER_BEIGE</option><option class="opcion_editor" value=".87,1.19,55,37,23,2">LABEL_FILTER_FINE</option><option class="opcion_editor" value="1.2,.9,67,13,-23,2">LABEL_FILTER_LORD</option><option class="opcion_editor" value="1.2,1.2,35,7,18,2">LABEL_FILTER_70S</option><option class="opcion_editor" value=".92,1.23,-11,11,11,2">LABEL_FILTER_TREE</option><option class="opcion_editor" value=" 1,1.4,-3,-1,-12,2">LABEL_FILTER_SUMMER</option><option class="opcion_editor" value=".85,1.26,-15,2,-1,2">LABEL_FILTER_COLD_WEATHER</option><option class="opcion_editor" value="1,1.4,5,12,1,2">LABEL_FILTER_ANGELS</option><option class="opcion_editor" value=".9,1.2,43,-17,-55,2">LABEL_FILTER_HOT</option><option class="opcion_editor" value="1,1.29,29,26,17,2">LABEL_FILTER_FALL</option><option class="opcion_editor" value=".85,1.3,43,25,-11,2">LABEL_FILTER_MARCH</option><option class="opcion_editor" value=".8,1.25,31,41,12,2">LABEL_FILTER_PEAR</option><option class="opcion_editor" value="1,1.36,4,5,1,2">LABEL_FILTER_COMMON</option><option class="opcion_editor" value=".9,1.3,37,-25,1,2">LABEL_FILTER_GOLD</option><option class="opcion_editor" value="1.1,1.3,-47,-42,-30,2">LABEL_FILTER_GOTHIC</option><option class="opcion_editor" value="1,1.4,-5,42,11,2">LABEL_FILTER_FORESTRY</option><option class="opcion_editor" value=".9,1.2,-5,-7,4,2">LABEL_FILTER_MOON</option><option class="opcion_editor" value="1.1,1.3,-1,-1,26,2">LABEL_FILTER_PARTY</option> </select> </div></div></div><div class="volver"><span class="icon-undo"></span>LABEL_START_OVER</div><div class="paso_1 paso animated bounceInDown delay-04 fast">1</div><div class="paso_2 a1 animated bounceInDown delay-06 fast">2</div><div class="paso_2 b1 animated bounceInDown delay-08 fast">3</div></div></div><div class="editor_imagenes"> <div class="fondo_oscuro"></div><div class="editor_imagenes2 "> <div> <div class="canvas_imagen"> <div class="canvas recortar"> <div class="canvas_subir d-flex flex-column" id="imagen_noticia"><div>LABEL_DRAG_IMAGE_HERE_OR </div><label class="font-weight-normal mt-2" style="font-size:0.6em"for="imagen_noticia_file"> LABEL_UPLOAD_FILE_IMAGE <div class="ml-2 btn btn-primary btn-sm">LABEL_SELECT_IMAGE</div></label> <input style="display:none" type="file" id="imagen_noticia_file" accept="image/x-png,image/jpeg"></div></div></div><div class="botones_dimenciones"> <div class="scale"> <div class="dimenciones"> <div id="ancho">1240px</div><div>x</div><div id="alto">720px</div></div><div class="porciento"> <div id="menos_scale"><span class="icon-minus fa fa-minus"></span></div><div class="ps"> <ul class="cantidades_scale"> <li data-scale="2" class="as">200%</li><li data-scale="1" class="as">100%</li><li data-scale="0.75" class="as">75%</li><li data-scale="0.5" class="as">50%</li><li data-scale="0.25" class="as">25%</li></ul> <div id="porciento_scale">50%</div></div><div id="mas_scale"><span class="icon-plus fa fa-plus"></span></div></div></div><div class="botones"><button class="boton_normal" id="ir_atras">LABEL_GO_BACK</button><button class="boton_normal" id="boton_recortar">LABEL_DATATABLE_SNEXT</button></div></div></div><div class="modificar animated fadeInRight delay-04 fast escalar"> <div> <div class="titulo_recortar"><span class="icon-ungroup fa fa-scissors mb-20"></span>LABEL_CUT</div><div class="opcion_editor recortar10"> <div class="recortar_texto">LABEL_CUT</div><div id="blockCelda"><span class="fa fa-unlock"></span></div></div></div><div class="texto"> <div class="mb-20"> <div class="titulo_texto "><span class="icon-plus fa fa-text-width"></span>LABEL_TEXT</div></div><div class="fonts mb-20"> <select name="fuentes" id="selectFuente" class="select-custom mr-2"> <option value="arial" selected>LABEL_FONT_ARIAL</option> <option value="calibri">LABEL_FONT_CALIBRI</option> <option value="forte">LABEL_FONT_FORTE</option> <option value="impact">LABEL_FONT_IMPACT</option> <option value="jokerman">LABEL_FONT_JOKERMAN</option> <option value="mv boli">LABEL_FONT_MV_BOLI</option> <option value="times new roman">LABEL_FONT_TIMES_NEW_ROMAN</option> <option value="verdana">LABEL_FONT_VERDANA</option> <option value="vivaldi">LABEL_FONT_VIVALDI</option> </select> <input type="number" class="" data-tooltip="Tamaño de la letra" name="" id="font-size" max="500" min="1" step="1" value="48"/> </div><div class="fonts mb-20"> <div class="font" id="negritas" data-tooltip="Negritas"><i class="fa fa-bold" aria-hidden="true"></i></div><div class="font" id="italic" data-tooltip="Letra Cursiva"><i class="fa fa-italic" aria-hidden="true"></i></div><div class="color_letra font"><label>A</label><input type="color" class="" data-tooltip="Color de la letra" name="" id="color" value="#ffffff"/></div><div class="font fa" data-tooltip="Sombra de la letra" id="shadow">S</div><div class="font" id="rectangulo" data-tooltip="Fondo de la letra"> <div class="rectangulo">F</div></div></div><div class="color_fondo_cuadro mb-20 flex-column" style="display:none"> <div class="w-100 d-flex justify-content-between border-bottom"><label for="colorrect" class="font-weight-normal d-flex align-items-center" style="margin:0 !important">LABEL_COLOR_BACKGROUND: </label><input type="color" name="" id="colorrect" value="#000000" style="width:30px" data-tooltip="Color del fondo" class="mr-2"/></div><div class="d-flex flex-column"><label for="opacidad" class="font-weight-normal mt-2">LABEL_BACKGROUND_TRANSPARENCY</label><input type="range" id="opacidad" max="100" min="1" step="1" value="100" ></div></div><input id="texto_input" type="text" name="texto" placeholder="LABEL_ADD_TEXT_HERE"/> <div class="mb-20"> <div class="titulo_filtro"><span class="icon-eyedropper fa fa-eyedropper"></span>LABEL_FILTERS</div></div><div class="fonts mb-20"> <select name="filtros" id="selectFiltro" class="select-custom selectFiltro"><option class="opcion_editor" value="normal" >LABEL_FILTER_NORMAL</option><option class="opcion_editor" value=".5,1.3,1.31,1.33,1.38">LABEL_FILTER_NIGHT</option><option class="opcion_editor" value=".7,1.1,1.64,1.66,1.50">LABEL_FILTER_SAINT_ANA</option><option class="opcion_editor" value=".75,1,1.66,1.60,1.51">LABEL_FILTER_CREAM</option><option class="opcion_editor" value=".7,1.2,1.49,1.49,1.6">LABEL_FILTER_MAGIC</option><option class="opcion_editor" value=".7,1.2,1.60,1.66,1.58">LABEL_FILTER_RELIEF</option><option class="opcion_editor" value=".9,.9,1.45,1.54,1.54">LABEL_FILTER_LIGHT</option><option class="opcion_editor" value="1,1.5,1,1,1">LABEL_FILTER_SATURATION</option><option class="opcion_editor" value=".9,1.3,1,1,1">LABEL_FILTER_RETOUCH</option><option class="opcion_editor" value=".8,1,1.6,1.45,1.49">LABEL_FILTER_ORANGE</option><option class="opcion_editor" value=".8,.75,1.60,1.66,1.58">LABEL_FILTER_WIND</option><option class="opcion_editor" value=".8,.9,1.66,1.43,1.28">LABEL_FILTER_DESERT</option><option class="opcion_editor" value=".85,.75,1.47,1.66,1.54">LABEL_FILTER_FOREST</option><option class="opcion_editor" value=".8,.8,1.71,1.64,1.58">LABEL_FILTER_TOWN</option><option class="opcion_editor" value=".8,1.2,1.24,.99,1">LABEL_FILTER_PINK</option><option class="opcion_editor" value=".9,1.1,1.33,1.19,.91">LABEL_FILTER_HISTORY</option><option class="opcion_editor" value="1,1,gris">LABEL_FILTER_GRAY</option><option class="opcion_editor" value=".8,1.5,gris">LABEL_FILTER_OLD_PICTURE</option><option class="opcion_editor" value=".9,1.2,26,-12,0,2">LABEL_FILTER_CHARMING</option><option class="opcion_editor" value="1.1,1.4,40,12,-6,2">LABEL_FILTER_EMOTION</option><option class="opcion_editor" value=".9,1.32,56,47,17,2">LABEL_FILTER_BEIGE</option><option class="opcion_editor" value=".87,1.19,55,37,23,2">LABEL_FILTER_FINE</option><option class="opcion_editor" value="1.2,.9,67,13,-23,2">LABEL_FILTER_LORD</option><option class="opcion_editor" value="1.2,1.2,35,7,18,2">LABEL_FILTER_70S</option><option class="opcion_editor" value=".92,1.23,-11,11,11,2">LABEL_FILTER_TREE</option><option class="opcion_editor" value=" 1,1.4,-3,-1,-12,2">LABEL_FILTER_SUMMER</option><option class="opcion_editor" value=".85,1.26,-15,2,-1,2">LABEL_FILTER_COLD_WEATHER</option><option class="opcion_editor" value="1,1.4,5,12,1,2">LABEL_FILTER_ANGELS</option><option class="opcion_editor" value=".9,1.2,43,-17,-55,2">LABEL_FILTER_HOT</option><option class="opcion_editor" value="1,1.29,29,26,17,2">LABEL_FILTER_FALL</option><option class="opcion_editor" value=".85,1.3,43,25,-11,2">LABEL_FILTER_MARCH</option><option class="opcion_editor" value=".8,1.25,31,41,12,2">LABEL_FILTER_PEAR</option><option class="opcion_editor" value="1,1.36,4,5,1,2">LABEL_FILTER_COMMON</option><option class="opcion_editor" value=".9,1.3,37,-25,1,2">LABEL_FILTER_GOLD</option><option class="opcion_editor" value="1.1,1.3,-47,-42,-30,2">LABEL_FILTER_GOTHIC</option><option class="opcion_editor" value="1,1.4,-5,42,11,2">LABEL_FILTER_FORESTRY</option><option class="opcion_editor" value=".9,1.2,-5,-7,4,2">LABEL_FILTER_MOON</option><option class="opcion_editor" value="1.1,1.3,-1,-1,26,2">LABEL_FILTER_PARTY</option> </select> </div></div></div></div></div></div><dav class="fixed_noticia"></dav><dav class="cuadro_noticias animated bounceInUp delay-04" id="cuadro_noticias"> <dav class="relative"> <div class="titulo_topico">LABEL_TITLE_TOPIC</div><canvas class="imagen_noticias" id="imagen_noticias" width="320" height="480"></canvas> </dav> <div class="progreso d-flex align-items-center justify-content-between"><progress value="0" max="100"></progress><span class="ml-2">0.0%</span></div></dav>'
801
 
6966 nelberth 802
		var pw=420,ph=320;
6682 nelberth 803
		$(document).on("click", ".info_noticia", function(e){
804
			imagenServidorNoticia = elemento.toDataURL("image/jpeg", 1.0);
6863 nelberth 805
			if(fileToggle){
6864 nelberth 806
				e.preventDefault();
6863 nelberth 807
				setTimeout(function(){
6972 nelberth 808
 
6997 nelberth 809
					$('.marketplaceImg').attr('src', imagenServidorNoticia)
7000 nelberth 810
					$('#titleTypeImage').html('LABEL_IMAGE')
6863 nelberth 811
					fileToggle=false;
6984 nelberth 812
					if(imagenEdit==""){
813
						iniciarEditor(seleccionarCampo)
814
					}else{
815
						iniciarEditor(seleccionarCampo,imagenEdit)
816
					}
6925 nelberth 817
 
6863 nelberth 818
				},$('.marketplace').val(imagenServidorNoticia.split(',')[1]));
819
			}else{
820
				$('.file').val(imagenServidorNoticia.split(',')[1]);
6946 nelberth 821
 
6863 nelberth 822
			}
823
 
6682 nelberth 824
			console.log($('.file').val())
6874 nelberth 825
			console.log($('.marketplace').val())
6682 nelberth 826
			$(".c1").addClass("paso");
1 www 827
 
6682 nelberth 828
 
829
		})
8582 nelberth 830
		var edit;
6889 nelberth 831
		function iniciarEditor(campo, image='',load=true){
6682 nelberth 832
		 cortar=false;
833
		recorte_listo=false;
834
		texto="";
835
		seis=true;
836
		color="#ffffff";
837
		texto_listo=false,siete=false;
838
		uno=true;
839
		size=48;
840
		cinco=true;
11038 nelberth 841
		blockCelda=false;
6952 nelberth 842
		if(fileToggle){
6970 nelberth 843
			pw=420; ph=320;
844
			recorte=ph/pw;
6952 nelberth 845
		}else{
6970 nelberth 846
			pw=320; ph=480;
847
			recorte=ph/pw;
6952 nelberth 848
		}
849
 
6926 nelberth 850
		xf=pw,yf =ph;
6682 nelberth 851
		negritas=false, bold="";
852
		shadow = true, nueve=true;
853
		italic=false, ita="";
854
		rectangulo=false, diez=false;
855
     	fontfamily="Arial";
856
     	r=0,g=0,b=0,a=1;
857
		window.clearInterval(editorNoticia);
858
		setTimeout(function(){
6959 nelberth 859
			if(fileToggle){
860
				$('#imagen_noticias').css({
861
					'height': '320px',
862
    				'width': '420px',
863
				})
6999 nelberth 864
				$('.cuadro_noticias').addClass('tienda')
6959 nelberth 865
 
6965 nelberth 866
			}else{
867
				$('#imagen_noticias').css({
868
					'height': '480px',
869
    				'width': '320px',
870
				})
6999 nelberth 871
				$('.cuadro_noticias').removeClass('tienda')
6959 nelberth 872
			}
6971 nelberth 873
			console.log(ph+'  '+pw)
6682 nelberth 874
			scroll_altura=$(".articulo_noticia").offset().top-110;
875
			anchoFondoOscuro = $(".articulo_noticia").width();
876
			altoFondoOscuro = $(".editor_imagenes").height();
877
 
6889 nelberth 878
		},navegacion(nuevoHtmlImagen,campo,image,load));
6682 nelberth 879
 
880
		}
881
 
882
		$(document).on("click", ".volver", function(){
883
		var nombre_user = $(".perfil_u_nombre").text();
884
		var primer_nombre = nombre_user.split(" ")[0];
885
		 cortar=false;
886
		cinco=true;
887
		recorte_listo=false;
888
		texto="";
889
		seis=true;
890
		color="#ffffff";
891
		texto_listo=false,siete=false;
892
		uno=true;
893
		size=48;
6960 nelberth 894
		if(fileToggle){
895
			pw=420, ph=320;
6967 nelberth 896
			recorte=ph/pw
6960 nelberth 897
		}else{
898
			pw=320, ph=480;
6967 nelberth 899
			recorte=ph/pw
6960 nelberth 900
		}
6926 nelberth 901
		xf=pw,yf =ph;
11038 nelberth 902
		blockCelda=false;
6682 nelberth 903
		negritas=false, bold="";
904
		shadow = true, nueve=true;
905
		italic=false, ita="";
906
		rectangulo=false, diez=false;
907
     	fontfamily="Arial";
908
     	r=0,g=0,b=0,a=1;
909
		 var imagenServidorNoticia;
910
         console.log(seleccionarCampo)
911
		window.clearInterval(editorNoticia);
912
		setTimeout(function(){
6960 nelberth 913
			if(fileToggle){
914
				$('#imagen_noticias').css({
915
					'height': '320px',
916
    				'width': '420px',
917
				})
11258 nelberth 918
				$('.cuadro_noticias').addClass('tienda')
6960 nelberth 919
 
11258 nelberth 920
			}else{
921
				$('#imagen_noticias').css({
922
					'height': '480px',
923
    				'width': '320px',
924
				})
925
				$('.cuadro_noticias').removeClass('tienda')
6960 nelberth 926
			}
6682 nelberth 927
			scroll_altura=$(".articulo_noticia").offset().top-110;
928
			anchoFondoOscuro = $(".articulo_noticia").width();
929
			altoFondoOscuro = $(".editor_imagenes").height();
930
 
931
		},navegacion(nuevoHtmlImagen,seleccionarCampo));
932
 
933
		})
934
 
6889 nelberth 935
		function navegacion(nuevoHtmlImagen,campo,image='',load=true){
6682 nelberth 936
                selectorElementoName=campo.find('#name')
8583 nelberth 937
 
6824 nelberth 938
                selectorElementoEditor=campo.find('#contenido');
8584 nelberth 939
				edit=true;
6682 nelberth 940
				if(image!=''){
8585 nelberth 941
					edit=false;
6889 nelberth 942
					if(load){
8585 nelberth 943
 
8583 nelberth 944
 
6888 nelberth 945
						const getBase64FromUrl = async (url) => {
946
							const data = await fetch(url);
947
							const blob = await data.blob();
948
							return new Promise((resolve) => {
949
								const reader = new FileReader();
950
								reader.readAsDataURL(blob);
951
								reader.onloadend = function() {
952
								const base64data = reader.result;
953
								resolve(base64data);
954
								}
955
							});
956
						}
8583 nelberth 957
 
6888 nelberth 958
						getBase64FromUrl(image).then(function(e){
959
							selectorElementoName.trigger('change');
960
							$(".volver").css("display","block")
961
							$(".a1").addClass("paso");
962
							$(".titulo_pasos").html("LABEL_STEP_2");
963
							setTimeout(function(){
964
								recorte_listo=true;
965
								$(".fondo_oscuro").css("display","none");
6989 nelberth 966
								if(fileToggle){
7000 nelberth 967
									$("#boton_recortar").removeClass("recortar").text("LABEL_ATTACH_IMAGE").addClass("info_noticia");
6989 nelberth 968
									}else{
969
									$("#boton_recortar").removeClass("recortar").text("LABEL_SEND").addClass("info_noticia").attr('type','submit');
970
								}
6888 nelberth 971
								$(".recortar10").removeClass("recortar");
972
								$(".canvas").removeClass("recortar");
973
								$(".b1").addClass("paso");
974
								$(".titulo_pasos").html("LABEL_STEP_3");
975
								if(texto!=""){
976
									seis=true;
977
									siete=true;
978
								}
979
								cinco=true;
980
								dos=true;
981
								cuatro=true;
982
								actualizar();
983
 
984
							},editorNoticia(e));
985
 
986
 
987
						})
6891 nelberth 988
						setTimeout(function(){
7000 nelberth 989
							$(".canvas_subir").html('<span class="icon-plus fa fa-spinner"></span> LABEL_LOADING...')
6891 nelberth 990
							selectorElementoName.trigger('change');
991
						},selectorElementoEditor.html(nuevoHtmlImagen));
6888 nelberth 992
					}else{
6682 nelberth 993
						selectorElementoName.trigger('change');
6891 nelberth 994
						setTimeout(function(){
6888 nelberth 995
							$(".volver").css("display","block")
996
							$(".a1").addClass("paso");
997
							$(".titulo_pasos").html("LABEL_STEP_2");
998
							setTimeout(function(){
6905 nelberth 999
								recorte_listo=true;
6888 nelberth 1000
								$(".fondo_oscuro").css("display","none");
6987 nelberth 1001
								if(fileToggle){
1002
 
7000 nelberth 1003
									$("#boton_recortar").removeClass("recortar").text("LABEL_ATTACH_IMAGE").addClass("info_noticia");
6988 nelberth 1004
								}else{
6987 nelberth 1005
									$("#boton_recortar").removeClass("recortar").text("LABEL_SEND").addClass("info_noticia").attr('type','submit');
1006
 
1007
								}
6888 nelberth 1008
								$(".recortar10").removeClass("recortar");
1009
								$(".canvas").removeClass("recortar");
1010
								$(".b1").addClass("paso");
1011
								$(".titulo_pasos").html("LABEL_STEP_3");
1012
								if(texto!=""){
1013
									seis=true;
1014
									siete=true;
1015
								}
1016
								cinco=true;
1017
								dos=true;
1018
								cuatro=true;
1019
								actualizar();
6682 nelberth 1020
 
6888 nelberth 1021
							},editorNoticia(image));
6891 nelberth 1022
 
1023
 
1024
							selectorElementoName.trigger('change');
1025
						},selectorElementoEditor.html(nuevoHtmlImagen));
6888 nelberth 1026
					}
6891 nelberth 1027
 
6682 nelberth 1028
				}else{
1029
					setTimeout(function(){
1030
					    selectorElementoName.trigger('change');
1031
					},selectorElementoEditor.html(nuevoHtmlImagen));
1032
				}
1033
 
1034
		}
1035
 
1036
		$(window).on("scroll", function(){
1037
			console.log(scroll_altura)
1038
		if($(window).scrollTop()>scroll_altura){
1039
			$("#cuadro_noticias").addClass("fixed");
1040
		}else{
1041
			$("#cuadro_noticias").removeClass("fixed");
1042
		}
1043
	})
1044
 
1045
	$(document).on("dragover", "#imagen_noticia", function(e){
1046
		e.preventDefault();
1047
		e.stopPropagation();
1048
		$(this).css({"background":"rgba(0,0,0,.2)"})
1049
	})
11259 nelberth 1050
 
11260 nelberth 1051
	$(window).resize(function() {
11259 nelberth 1052
		anchoFondoOscuro = $(".articulo_noticia").width();
1053
		altoFondoOscuro = $(".editor_imagenes").height();
11260 nelberth 1054
		setTimeout(function(){
1055
			anchoFondoOscuro = $(".articulo_noticia").width();
1056
			altoFondoOscuro = $(".editor_imagenes").height();
1057
		},300)
11259 nelberth 1058
 
1059
	});
11260 nelberth 1060
 
6682 nelberth 1061
	$(document).on("drop", "#imagen_noticia", function(e){
1062
		e.preventDefault();
1063
		e.stopPropagation();
1064
		$(this).css("background", "none");
1065
		var archivo = e.originalEvent.dataTransfer.files;
1066
		var img=archivo[0];
1067
		if(img.type =="image/jpeg"||img.type =="image/png"){
1068
			$(".modificar").removeClass("animated");
1069
			var render = new FileReader();
1070
			render.readAsDataURL(img);
1071
			render.onload = function(e){
8354 nelberth 1072
				imagen2=new Image();
1073
				imagen2.src=e.target.result;
1074
 
1075
				$(imagen2).ready(function(e){
11030 nelberth 1076
					if(imagen2.width<320||imagen2.height<480){
8360 nelberth 1077
						$.fn.showError('LABEL_MINIMUM_IMAGE_SIZE');
8354 nelberth 1078
					}else{
1079
						$(".volver").css("display","block")
1080
						$(".a1").addClass("paso");
1081
						$(".titulo_pasos").html("LABEL_STEP_2");
1082
						editorNoticia(imagen2.src)
1083
					}
1084
				})
1085
			}
1086
		}else{
8360 nelberth 1087
			$.fn.showError('LABEL_SUPPORTED_FORMATS');
6682 nelberth 1088
		}
1089
	})
11030 nelberth 1090
	$(document).on("change", "#imagen_noticia_file", function(e){
1091
		file = $(this)[0].files[0];
1092
		e.preventDefault();
1093
		$(this).css("background", "none");
1094
		var archivo = file;
1095
		var img=file;
1096
		if(img.type =="image/jpeg"||img.type =="image/png"){
1097
			$(".modificar").removeClass("animated");
1098
			var render = new FileReader();
1099
			render.readAsDataURL(img);
1100
			render.onload = function(e){
1101
				imagen2=new Image();
1102
				imagen2.src=e.target.result;
1103
 
1104
				$(imagen2).ready(function(e){
1105
					if(imagen2.width<320||imagen2.height<480){
1106
						$.fn.showError('LABEL_MINIMUM_IMAGE_SIZE');
1107
					}else{
1108
						$(".volver").css("display","block")
1109
						$(".a1").addClass("paso");
1110
						$(".titulo_pasos").html("LABEL_STEP_2");
1111
						editorNoticia(imagen2.src)
1112
					}
1113
				})
1114
			}
1115
		}else{
1116
			$.fn.showError('LABEL_SUPPORTED_FORMATS');
1117
		}
1118
	})
6682 nelberth 1119
	$(document).on("dragover", "body", function(e){
1120
		e.preventDefault();
1121
		e.stopPropagation();
1122
	})
1123
	$(document).on("drop", "body", function(e){
1124
		e.preventDefault();
1125
		e.stopPropagation();
1126
	})
1127
 
1128
	var canvas='<div class="editorNoticia"><canvas id="editorNoticia">LABEL_NOT_SUPPORTED</canvas></div>';
1129
	$(document).on("mouseover", ".editorNoticia", function(){
12344 nelberth 1130
		const getScrollBarWidth = () => window.innerWidth - document.documentElement.getBoundingClientRect().width
1131
		let anchoScroll= getScrollBarWidth()+"px";
6682 nelberth 1132
		$("body").css({"overflow": "hidden"});
12344 nelberth 1133
		$(".cuadro_noticias, .fixed_noticia,.tituloEditor,.grid-padre,.subpanel").css("margin-right",anchoScroll )
1134
		$(".barra,.footer").css("padding-right",anchoScroll)
6682 nelberth 1135
 
12344 nelberth 1136
 
6682 nelberth 1137
 
1138
	})
1139
	$(document).on("mouseover", "#editorNoticia", function(){
1140
		if(recorte_listo){
1141
			ocho=true;
1142
		}
1143
	})
1144
	$(document).on("mouseout", "#editorNoticia", function(){
1145
		if(recorte_listo){
1146
			ocho=false;
1147
			actualizar2()
1148
		}
1149
	})
1150
	$(document).on("mouseout", ".editorNoticia",function(){
1151
		$("body").css({"overflow": "auto"})
1152
		$(".cuadro_noticias, .fixed_noticia,.tituloEditor,.grid-padre").css("margin-right", "0px")
1153
		$(".barra,.footer").css("padding-right","0px")
1154
 
1155
	})
1156
	$(document).on('mousewheel', ".editorNoticia",function(e){
1157
		var ruedita = e.originalEvent.wheelDelta
1158
		if(ruedita>0){
1159
			scale = scale+(scale/10);
1160
			$("#porciento_scale").html((scale*100).toFixed(2)+"%")
1161
		}else{
1162
			scale = scale-(scale/10);
1163
			$("#porciento_scale").html((scale*100).toFixed(2)+"%")
1164
		}
1165
		$("#editorNoticia").css({"transform": "scale("+scale+")"});
1166
	})
1167
	$(document).on("click", ".as", function(e){
1168
		e.preventDefault();
1169
		 scale = $(this).data("scale");
1170
		 $("#porciento_scale").html((scale*100).toFixed(2)+"%")
1171
		 $("#editorNoticia").css({"transform": "scale("+scale+")"});
1172
 
1173
	})
1174
	$(document).on("click", ".ps", function(e){
1175
		e.preventDefault();
1176
		$(".cantidades_scale").slideToggle(200).css("display", "block");
1177
	})
1178
	$(document).on("click", "#cerrar_filter_modal, .icon_filter", function(e){
1179
		e.preventDefault();
1180
		if(recorte_listo){
1181
		$(".contenido_filter").slideToggle(200).css("display", "block");
1182
		}
1183
	})
1184
	$(document).on("click", "#cerrar_text_modal, .icon_text", function(e){
1185
		e.preventDefault();
1186
		if(recorte_listo){
1187
			$(".contenido_text").slideToggle(200).css("display", "block");
1188
		}
1189
	})
1190
 
1191
	$(document).on("click", "#cerrar_cut_modal, .icon_cut", function(e){
1192
		e.preventDefault();
1193
		if(cortar){
1194
			$(".contenido_cut").slideToggle(200).css("display", "block");
1195
		}
1196
 
1197
	})
1198
	$(document).on("click", "#menos_scale", function(e){
1199
		e.preventDefault();
1200
		scale = scale-(scale/10);
1201
		 $("#porciento_scale").html((scale*100).toFixed(2)+"%")
1202
		 $("#editorNoticia").css({"transform": "scale("+scale+")"});
1203
	})
1204
 
1205
	$(document).on("click", "#mas_scale", function(e){
1206
		e.preventDefault();
1207
		scale = scale+(scale/10);
1208
		 $("#porciento_scale").html((scale*100).toFixed(2)+"%")
1209
		 $("#editorNoticia").css({"transform": "scale("+scale+")"});
1210
	})
11045 nelberth 1211
	$(document).on('change', '#selectFiltro', function(e){
1212
 
1213
		data=$(this).val()
1214
		if(data=="normal"){
1215
			filter();
1216
		}else{
1217
			data=data.split(',');
1218
			if(data[2]=='gris'){
1219
				filtergris(data[0],data[1]);
1220
			}else{
1221
				filter(Number(data[0]),Number(data[1]),Number(data[2]),Number(data[3]),Number(data[4]),Number(data[5]));
1222
			}
1223
		}
6682 nelberth 1224
	})
1225
	var texto_listo=false,siete=false;
11251 nelberth 1226
	var texto;
6682 nelberth 1227
	$(document).on("keyup", "#texto_input", function(e){
1228
		e.preventDefault();
1229
		texto = $(this).val();
1230
		if(texto_actualizar){
1231
			siete=true;
1232
		}
1233
		if(texto!=""){
1234
			texto_actualizar=true;
1235
			actualizar2();
1236
		}else{
1237
			actualizar2();
1238
		}
1239
 
1240
	})
1241
	var color="#ffffff";
11041 nelberth 1242
	$(document).on("change input", "#color", function(){
6682 nelberth 1243
    	color=$(this).val();
1244
    	seis=true;
1245
    	actualizar2();
1246
    })
11040 nelberth 1247
	$(document).on("keypress", "#font-size, #texto_input", function(e){
1248
    	if(e.which == 13){
1249
      		return false;
1250
    	}
1251
  	});
6682 nelberth 1252
    var size=48;
1253
    $(document).on("keyup change", "#font-size", function(){
1254
    	size=$(this).val();
1255
    	size = parseInt(size);
1256
    	seis=true;
1257
    	siete=true;
1258
    	actualizar2();
1259
    })
1260
    var negritas=false, bold="";
1261
    $(document).on("click", "#negritas", function(e){
1262
    	e.preventDefault();
1263
    	if(!negritas){
1264
    		bold="bold";
1265
    		$(this).addClass("fa");
1266
    		seis=true;
1267
    		siete=true;
1268
    		actualizar2();
1269
    		negritas=true;
1270
    	}else{
1271
    		bold="";
1272
    		$(this).removeClass("fa");
1273
    		seis=true;
1274
    		siete=true;
1275
    		actualizar2();
1276
    		negritas=false;
1277
    	}
1278
    })
1279
    var italic=false, ita="";
1280
     $(document).on("click", "#italic", function(e){
1281
    	e.preventDefault();
1282
    	if(!italic){
1283
    		ita="italic";
1284
    		$(this).addClass("fa");
1285
    		seis=true;
1286
    		siete=true;
1287
    		actualizar2();
1288
    		italic=true;
1289
    	}else{
1290
    		ita="";
1291
    		$(this).removeClass("fa");
1292
    		seis=true;
1293
    		siete=true;
1294
    		actualizar2();
1295
    		italic=false;
1296
    	}
1297
    })
11039 nelberth 1298
	var fontfamily="Arial";
1299
     $(document).on("change", "#selectFuente", function(e){
6682 nelberth 1300
    	e.preventDefault();
11039 nelberth 1301
    	fontfamily= $(this).val();
6682 nelberth 1302
    	seis=true;
1303
    	siete=true;
1304
    	actualizar2();
1305
 
1306
    })
1307
     var shadow = true, nueve=true;
1308
     $(document).on("click","#shadow", function(e){
1309
     	e.preventDefault();
1310
     	if(shadow){
1311
     		$(this).removeClass("fa");
1312
     		seis=true;
1313
     		nueve=false;
1314
     		actualizar2();
1315
     		shadow=false;
1316
     	}else{
1317
     		$(this).addClass("fa");
1318
     		seis=true;
1319
     		nueve=true;
1320
     		actualizar2();
1321
     		shadow=true;
1322
     	}
1323
 
1324
     })
1325
     var rectangulo=false, diez=false, colorrect="#000000";
11042 nelberth 1326
	 $(document).on("click", "#rectangulo", function(e){
6682 nelberth 1327
     	e.preventDefault();
1328
     	if(!rectangulo){
1329
     		$(this).addClass("fa");
11042 nelberth 1330
			$('.color_fondo_cuadro').css('display','flex')
6682 nelberth 1331
     		diez=true;
1332
     		actualizar2();
1333
     		rectangulo=true;
1334
     	}else{
1335
     		$(this).removeClass("fa");
11042 nelberth 1336
			 $('.color_fondo_cuadro').css('display','none')
6682 nelberth 1337
     		diez=false;
1338
     		actualizar2();
1339
     		rectangulo=false;
1340
     	}
1341
 
1342
     })
1343
     var r=0,g=0,b=0;
11043 nelberth 1344
	 $(document).on("change input", "#colorrect", function(){
6682 nelberth 1345
    	colorrect=$(this).val();
11043 nelberth 1346
    	r=parseInt(colorrect.slice(1,3),16);
1347
    	g=parseInt(colorrect.slice(3,5),16);
1348
    	b=parseInt(colorrect.slice(5,7),16);
6682 nelberth 1349
    	seis=true;
1350
    	actualizar2();
1351
    })
1352
    var a=1;
1353
 
11044 nelberth 1354
	$(document).on("mousemove change ", "#opacidad", function(){
6682 nelberth 1355
    	a=$(this).val();
1356
    	a=a/100;
1357
    	seis=true;
1358
    	actualizar2();
1359
    })
1360
	var imaNoti = new Image();
1361
	function filter(brillo=1, contraste=1, rojo=1, verde=1, azul=1, valor=1){
1362
		cuatro=false;
1363
		restaurar(brillo, contraste);
1364
		datos=imagenOriginal.data;
1365
		if(valor==2){
1366
			for (var i =  0; i <datos.length; i+=4) {
1367
				datos[i]=datos[i]+rojo;
1368
				datos[i+1]=datos[i+1]+verde;
1369
				datos[i+2]=datos[i+2]+azul;
1370
			}
1371
		}else{
1372
			for (var i =  0; i <datos.length; i+=4) {
1373
				datos[i]=datos[i]*rojo;
1374
				datos[i+1]=datos[i+1]*verde;
1375
				datos[i+2]=datos[i+2]*azul
1376
			}
1377
		}
1378
		editor.putImageData(imagenOriginal,0,0)
1379
		var imagenNoticia = elemento.toDataURL("image/jpeg", 1.0);
1380
	    imaNoti.src = imagenNoticia;
1381
		actualizar2();
1382
	}
1383
	function filtergris(brillo=1, contraste=1){
1384
		cuatro=false;
1385
		restaurar(brillo, contraste);
1386
		datos=imagenOriginal.data;
1387
		var auxiliar;
1388
		for (var i =  0; i <datos.length; i+=4) {
8356 nelberth 1389
			auxiliar = 0.34 * datos[i] + 0.5 *datos[i+1] + 0.1/6 * datos[i+2];
6682 nelberth 1390
			datos[i]=auxiliar;
1391
			datos[i+1]=auxiliar;
1392
			datos[i+2]=auxiliar;
1393
		}
1394
 
1395
		editor.putImageData(imagenOriginal,0,0)
1396
		var imagenNoticia = elemento.toDataURL("image/jpeg", 1.0);
1397
	    imaNoti.src = imagenNoticia;
1398
		actualizar2();
1399
	}
1400
	function restaurar(brillo = 1, contraste=1){
1401
		editor.filter = "none"
1402
		editor.filter = 'contrast('+contraste+') brightness('+brillo+') saturate(1) sepia(0)';
1403
		editor.fillStyle="rgba(255,255,255,1)"
1404
		editor.fillRect(0,0,ancho,alto);
1405
		editor.fillStyle=""+color+"";
1406
		var pxf=0,pyf=0;
1407
			if(xf>=(yf/recorte)){
1408
				pxf=xf/ancho;
1409
				pyf=yf/pxf;
1410
				py=(alto/2)-(pyf/2);
1411
				editor.drawImage(imagen,x,y,xf,yf,0,py,ancho,pyf);
1412
			}else{
1413
				pyf=yf/alto;
1414
				pxf=xf/pyf;
1415
				px=(ancho/2)-(pxf/2);
1416
				editor.drawImage(imagen,x,y,xf,yf,px,0,pxf,alto);
1417
			}
1418
		imagenOriginal = editor.getImageData(0,0,ancho,alto)
1419
	}
1420
	var ocho=false;
1421
	function actualizar2(){
1422
		if(recorte_listo){
1423
		if(cuatro){
1424
			imagenOriginal = editor.getImageData(0,0,ancho,alto)
1425
			var imagenNoticia = elemento.toDataURL("image/jpeg", 1.0);
1426
	    	imaNoti.src = imagenNoticia;
1427
	    	cuatro=false;
1428
		}
1429
		editor.filter = "none"
1430
		$(imaNoti).ready(function(e){
6926 nelberth 1431
			noticia.drawImage(imaNoti,0,0,pw,ph);
6682 nelberth 1432
			editor.drawImage(imaNoti,0,0,ancho,alto)
1433
			if(texto_actualizar){
1434
				if(texto!=""){
1435
					if(seis){
1436
						ancho_imaNoti = imaNoti.width;
1437
 
6926 nelberth 1438
						scale_noticia = -(((ancho_imaNoti-pw)/ancho_imaNoti)-1);
6682 nelberth 1439
						editor.fillStyle=""+color+"";
1440
						editor.strokeStyle="rgb(255,255,255)";
1441
						if(nueve){
1442
							editor.shadowColor="rgba(0,0,0,.5)";
1443
							editor.shadowOffsetX=6;
1444
							editor.shadowOffsetY=6;
1445
							editor.shadowBlur=6;
1446
							noticia.shadowColor="rgba(0,0,0,.5)";
1447
							noticia.shadowOffsetX=6*scale_noticia;
1448
							noticia.shadowOffsetY=6*scale_noticia;
1449
							noticia.shadowBlur=6*scale_noticia;
1450
						}else{
1451
							editor.shadowColor="rgba(0,0,0,0)";
1452
							noticia.shadowColor="rgba(0,0,0,0)";
1453
						}
1454
						editor.font=""+ita+" "+bold+" "+size+"px "+fontfamily+"";
1455
						editor.textAlign="start";
1456
						editor.textBaseline="top";
1457
 
1458
						var sizeNoticia = size*scale_noticia;
1459
						noticia.fillStyle=""+color+"";
1460
						noticia.font=""+ita+" "+bold+" "+sizeNoticia+"px "+fontfamily+"";
1461
						noticia.textAlign="start";
1462
						noticia.textBaseline="top";
1463
						seis=false;
1464
					}
1465
					if(siete){
1466
						dimencionesTexto = editor.measureText(texto);
1467
						txf=dimencionesTexto.width+20;
1468
						tyf= (20+size);
1469
						siete=false;
1470
					}
1471
					if(cinco){
1472
						dimencionesTexto = editor.measureText(texto);
1473
						if(xf>=(yf/recorte)){
1474
							tx=(xf/2)-(dimencionesTexto.width/2);
1475
							ty=(xf*recorte/2)-(size/2);
1476
						}else{
1477
							tx=(yf/recorte/2)-(dimencionesTexto.width/2);
1478
							ty=(yf/2)-(size/2);
1479
						}
1480
 
1481
						txf=dimencionesTexto.width+20;
1482
						tyf= size+20;
1483
						cinco=false;
1484
					}
1485
					if(diez){
1486
						editor.fillStyle="rgba("+r+","+g+","+b+","+a+")";
1487
						noticia.fillStyle="rgba("+r+","+g+","+b+","+a+")";
1488
						editor.fillRect(tx-10,ty-10,txf,tyf);
1489
						noticia.fillRect(((tx-10)*scale_noticia),((ty-10)*scale_noticia),txf*scale_noticia,tyf*scale_noticia);
1490
						editor.fillStyle=""+color+"";
1491
						noticia.fillStyle=""+color+"";
1492
 
1493
					}
1494
					editor.fillText(texto,tx,ty);
1495
					noticia.fillText(texto,(tx*scale_noticia),ty*scale_noticia);
1496
					if(ocho){
1497
						editor.strokeRect(tx-10,ty-10,txf,tyf)
1498
						editor.arc(tx+txf,ty+tyf,10,0,Math.PI*2,false);
1499
						editor.fill();
1500
						editor.beginPath();
1501
					}
1502
					texto_listo=true;
1503
				}
1504
			}
1505
		})
1506
 
1507
	}
1508
	}
1509
	function actualizar(){
6962 nelberth 1510
 
6961 nelberth 1511
			$(imagen).ready(function(e){
1512
 
6682 nelberth 1513
				if(uno){
6962 nelberth 1514
					elemento2.height=ph;
6964 nelberth 1515
					elemento2.width=pw;
6682 nelberth 1516
					ancho=imagen.width, alto = imagen.height;
1517
					elemento.width = ancho;
1518
					elemento.height = alto;
6956 nelberth 1519
 
6682 nelberth 1520
					$(".scale").css("display","flex");
1521
					if(ancho<=alto){
1522
					 scale = -(((alto-450)/alto)-1);
8357 nelberth 1523
 
1524
 
6682 nelberth 1525
					}else{
1526
					 scale = -(((ancho-500)/ancho)-1);
8357 nelberth 1527
 
6682 nelberth 1528
					}
11033 nelberth 1529
					scale=scale*0.80;
8579 nelberth 1530
					if(edit){
1531
						if((ancho*recorte)<=alto){
1532
							xf=ancho*.70;
1533
							yf=xf*recorte;
1534
						}else{
1535
							yf=alto*.70;
1536
							xf=yf/recorte;
1537
						}
1538
					}
8357 nelberth 1539
					cuadro_dimencion=Math.round(12/scale);
1540
 
1541
					if(xf<50||yf<50){
1542
						xf=50;
1543
						yf=xf*recorte;
1544
					}
1545
					mitadX=ancho/2;
1546
					mitadY=alto/2;
1547
					x=mitadX-xf/2;
1548
					y=mitadY-yf/2;
1549
 
6682 nelberth 1550
					$("#porciento_scale").html((scale*100).toFixed(2)+"%")
1551
					$("#ancho").html(ancho+"px");
1552
					$("#alto").html(alto+"px");
1553
					uno=false;
1554
				}
1555
				if(dos){
1556
 
1557
					if(xf>=(yf/recorte)){
1558
						alto=xf*recorte;
1559
						ancho=xf;
1560
					}else{
1561
						ancho=yf/recorte;
1562
						alto=yf;
1563
 
1564
					}
1565
					elemento.width = ancho;
1566
					elemento.height = alto;
6963 nelberth 1567
					elemento2.height=ph;
1568
					elemento2.width=pw;
6682 nelberth 1569
					if(xf<=yf){
1570
					 scale = -(((yf-450)/yf)-1);
1571
 
1572
					}else{
1573
					 scale = -(((xf-500)/xf)-1);
1574
					}
1575
 
1576
					$("#porciento_scale").html((scale*100).toFixed(2)+"%")
1577
					$("#ancho").html(Math.round(xf)+"px");
1578
					$("#alto").html(Math.round(yf)+"px");
1579
					dos=false;
1580
				}
1581
 
1582
					var pxf=0,pyf=0;
1583
					noticia.fillStyle="rgba(255,255,255,1)"
6926 nelberth 1584
					noticia.fillRect(0,0,pw,ph);
6682 nelberth 1585
				if(xf>=(yf/recorte)){
6926 nelberth 1586
					pxf=xf/pw;
6682 nelberth 1587
					pyf=yf/pxf;
6926 nelberth 1588
					py=(ph/2)-(pyf/2);
1589
					noticia.drawImage(imagen,x,y,xf,yf,0,py,pw,pyf);
6682 nelberth 1590
				}else{
6926 nelberth 1591
					pyf=yf/ph;
6682 nelberth 1592
					pxf=xf/pyf;
6926 nelberth 1593
					px=(pw/2)-(pxf/2);
1594
					noticia.drawImage(imagen,x,y,xf,yf,px,0,pxf,ph);
6682 nelberth 1595
				}
1596
 
1597
				$("#editorNoticia").css({"transform": "scale("+scale+")"});
1598
				if(!recorte_listo){
1599
					editor.drawImage(imagen,0,0,ancho,alto);
1600
					editor.fillStyle="rgba(0,0,0,.2)"
1601
					editor.fillRect(0,0,ancho,alto);
8358 nelberth 1602
					editor.fillStyle="rgba(255,255,255,.2)"
6682 nelberth 1603
					editor.fillRect(x,y,xf,yf);
8358 nelberth 1604
					editor.fillStyle="rgba(255,255,255,0.8)"
8356 nelberth 1605
					editor.fillRect(x,y,cuadro_dimencion,cuadro_dimencion);
1606
					editor.fillRect((x+xf)-cuadro_dimencion,y,cuadro_dimencion,cuadro_dimencion);
1607
					editor.fillRect(x,y+yf-cuadro_dimencion,cuadro_dimencion,cuadro_dimencion);
1608
					editor.fillRect(x+xf-cuadro_dimencion,yf+y-cuadro_dimencion,cuadro_dimencion,cuadro_dimencion);
6682 nelberth 1609
					esta=true;
1610
				}else{
1611
					var pxf=0,pyf=0;
1612
 
1613
					editor.fillStyle="rgba(255,255,255,1)"
1614
					editor.fillRect(0,0,ancho,alto);
1615
					if(xf>=(yf/recorte)){
1616
						pxf=xf/ancho;
1617
						pyf=yf/pxf;
1618
						py=(alto/2)-(pyf/2);
1619
						editor.drawImage(imagen,x,y,xf,yf,0,py,ancho,pyf);
1620
					}else{
1621
						pyf=yf/alto;
1622
						pxf=xf/pyf;
1623
						px=(ancho/2)-(pxf/2);
1624
						editor.drawImage(imagen,x,y,xf,yf,px,0,pxf,alto);
1625
				}
1626
 
1627
				}
1628
			})
1629
		}
6966 nelberth 1630
	var imagenOriginal
6956 nelberth 1631
	var x,y,xf=pw,yf =ph, elemento,elemento2,editor,centro, total,scale,dimencionesTexto,ancho_imaNoti,
6682 nelberth 1632
	recorte_listo=false,alto,ancho,tx,ty,txf,tyf,cuatro=true,texto_actualizar=false,cinco=true,seis=true,cuatro;
6970 nelberth 1633
	var  mitadY,mitadX, uno=true,dos=false, recorte=ph/pw, imagen_noticias, scale_noticia, tres=true,rotar=false, cortar=false;;
8356 nelberth 1634
	var translateX, cuadro_dimencion;
6682 nelberth 1635
 
1636
	$(document).on("click", ".recortar10", function(e){
1637
 
1638
		e.preventDefault();
1639
		recorte_listo=false;
1640
		uno=true;
7000 nelberth 1641
		$("#boton_recortar").addClass("recortar").text("LABEL_CUT").removeClass("info_noticia");
1642
		$("#boton_recortar3").addClass("recortar").text("LABEL_CUT").removeClass("info_noticia3");
6682 nelberth 1643
		$(".contenido_text").css("display", "none");
1644
		$(".contenido_filter").css("display", "none");
1645
		$(".recortar10").addClass("recortar");
1646
		$(".canvas").addClass("recortar")
1647
		$(".oa").removeClass("oa");
1648
		$("#normal").addClass("oa");
1649
		$(".b1").removeClass("paso");
1650
		$(".titulo_pasos").html("LABEL_STEP_2");
1651
		window.clearInterval(actualizar2);
1652
		actualizar();
1653
 
1654
	})
1655
 
1656
 
1657
	blockCelda=true;
1658
	$(document).on("click", "#blockCelda", function(e){
1659
		e.preventDefault();
1660
		if(blockCelda){
1661
			$(this).html('<span class="fa fa-unlock"></span>')
1662
 
1663
			blockCelda=false;
1664
		}else{
1665
			$(this).html('<span class="fa fa-lock"></span>')
1666
			blockCelda=true;
1667
		}
1668
		t4=true;
1669
 
1670
	})
1671
	var imagen
1672
	function editorNoticia(img){
1673
		 cortar=true;
1674
		imagen= new Image();
1675
		$(".canvas").html(canvas);
1676
		elemento = document.getElementById("editorNoticia");
1677
		editor = elemento.getContext("2d");
1678
		elemento2 = document.getElementById("imagen_noticias");
1679
		noticia = elemento2.getContext("2d");
1680
 
1681
		$(document).on("click", ".boton_marino.recortar",function(e){
1682
			e.preventDefault();
1683
			recorte_listo=true;
1684
			$(".fondo_oscuro").css("display","none");
6863 nelberth 1685
			if(fileToggle){
15026 stevensc 1686
				$("#boton_recortar").removeClass("recortar").text("LABEL_ATTACH_IMAGE").addClass("info_noticia");
1687
			}else{
15025 stevensc 1688
				$("#boton_recortar").removeClass("recortar").text("LABEL_SEND").addClass("info_noticia").attr('type','submit');
6863 nelberth 1689
			}
6682 nelberth 1690
			$(".recortar10").removeClass("recortar");
1691
			$(".canvas").removeClass("recortar");
1692
			$(".b1").addClass("paso");
1693
			$(".titulo_pasos").html("LABEL_STEP_3");
1694
			if(texto!=""){
1695
				seis=true;
1696
				siete=true;
1697
			}
1698
			cinco=true;
1699
			dos=true;
1700
			cuatro=true;
11252 nelberth 1701
			setTimeout(() => {
1702
				actualizar2();
1703
			}, actualizar());
1704
 
6682 nelberth 1705
		})
1706
 
1707
		var cli = false, t1= false, t2=false,t3=false,t4=false,tcli=false;
1708
		var mouse =[];
1709
 
1710
 
1711
		function raton(elemento, e){
1712
			return {
1713
				x:((e.pageX - elemento.offsetLeft - ((ancho/2)-((ancho*scale)/2)))/scale),
1714
				y:((e.pageY - elemento.offsetTop - ((alto/2)-((alto*scale)/2)))/scale)
1715
			}
1716
		}
1717
 
1718
		imagen.src=img;
1719
		$(".recortar10").addClass("recortar");
1720
		$("#boton_recortar").removeClass("boton_normal").addClass("recortar boton_marino").text("LABEL_CUT")
1721
		actualizar();
1722
 
1723
		$(elemento).mousemove(function(e){
1724
			mouse = raton(this, e);
1725
			//console.log("raton x: "+mouse.x+ " raton Y: " +mouse.y+ " tx: "+tx+" ty: "+ty+" txf:"+(txf+tx)+" tyf:"+(tyf+ty) )
1726
			if(!recorte_listo){
8356 nelberth 1727
				if(x<mouse.x &&(xf+x)>mouse.x && y<mouse.y && (y+yf)>mouse.y){
1728
					if((xf+x-cuadro_dimencion)<mouse.x &&(xf+x)>mouse.x && (y+yf-cuadro_dimencion)<mouse.y && (y+yf)>mouse.y){
1729
			 			$(elemento).css("cursor","nw-resize");
1730
			 		}else if((xf+x-cuadro_dimencion)<mouse.x &&(xf+x)>mouse.x && y<mouse.y && (y+cuadro_dimencion)>mouse.y){
1731
			 			$(elemento).css("cursor","ne-resize");
1732
			 		}else if(x<mouse.x &&(cuadro_dimencion+x)>mouse.x && y<mouse.y && (y+cuadro_dimencion)>mouse.y){
1733
			 			$(elemento).css("cursor","se-resize");
1734
			 		}else if(x<mouse.x &&(cuadro_dimencion+x)>mouse.x && (y+yf-cuadro_dimencion)<mouse.y &&(y+yf)>mouse.y){
1735
			 			$(elemento).css("cursor","sw-resize");
1736
			 		}else{
1737
						$(elemento).css("cursor","move");
1738
					}
6682 nelberth 1739
			 	}else{
1740
			 		$(elemento).css("cursor","default");
1741
			 	}
1742
			}else if(texto_listo){
1743
				if(tx-10<mouse.x && tx-10+txf>mouse.x && ty-10<mouse.y && ty-10+tyf>mouse.y){
1744
			 		$(elemento).css("cursor","move");
1745
			 	}else if((txf+tx-10)<mouse.x &&(txf+tx-10+20)>mouse.x && (ty-10+tyf)<mouse.y && (ty-10+tyf+20)>mouse.y){
1746
			 		$(elemento).css("cursor","pointer");
1747
			 	}else{
1748
			 		$(elemento).css("cursor","default");
1749
			 	}
1750
			}
1751
			else{
1752
				$(elemento).css("cursor","default");
1753
			}
1754
		})
1755
		$(elemento).mousedown(function(e){
1756
			mouse = raton(this, e);
1757
			if(!recorte_listo){
8356 nelberth 1758
				if(x<mouse.x &&(xf+x)>mouse.x && y<mouse.y && (y+yf)>mouse.y){
1759
 
1760
					 if((xf+x-cuadro_dimencion)<mouse.x &&(xf+x)>mouse.x && (y+yf-cuadro_dimencion)<mouse.y && (y+yf)>mouse.y){
1761
						 t4 = true;
1762
					 }else if((xf+x-cuadro_dimencion)<mouse.x &&(xf+x)>mouse.x && y<mouse.y && (y+cuadro_dimencion)>mouse.y){
1763
						 t3 = true;
1764
					 }else if(x<mouse.x &&(cuadro_dimencion+x)>mouse.x && y<mouse.y && (y+cuadro_dimencion)>mouse.y){
1765
						 t1 = true;
1766
					 }else if(x<mouse.x &&(cuadro_dimencion+x)>mouse.x && (y+yf-cuadro_dimencion)<mouse.y &&(y+yf)>mouse.y){
1767
						 t2 = true;
1768
					 }else{
1769
						 cli = true;
1770
					 }
1771
				  }
6682 nelberth 1772
			}else if(texto_listo){
1773
				if(tx-10<mouse.x && tx-10+txf>mouse.x && ty-10<mouse.y && ty-10+tyf>mouse.y){
1774
			 		tcli=true;
1775
			 	}else if((txf+tx-10)<mouse.x &&(txf+tx-10+20)>mouse.x && (ty-10+tyf)<mouse.y && (ty-10+tyf+20)>mouse.y){
1776
			 		rotar=true;
1777
			 	}
1778
			}
1779
 
1780
		 })
1781
 
11033 nelberth 1782
		 $('.editorNoticia').mousemove(function(e){
6682 nelberth 1783
		 	mouse = raton(this, e);
1784
		 	if(!recorte_listo){
1785
			 	if(cli){
1786
			 		if((mouse.y-(yf/2))>=0&&(mouse.y+(yf/2))<=alto){
1787
				 		y = (mouse.y-(yf/2));
1788
			 		}else{
1789
			 			if((mouse.y-(yf/2))<0){
1790
			 				y=0;
1791
			 			}
1792
			 			if((mouse.y+(yf/2))>alto){
1793
			 				y=alto-yf;
1794
			 			}
1795
			 		}
1796
			 		if((mouse.x-(xf/2))>=0&&(mouse.x+(xf/2))<=ancho){
1797
			 			x = (mouse.x-(xf/2));
1798
			 		}else{
1799
			 			if((mouse.x-(xf/2))<0){
1800
			 				x=0;
1801
			 			}
1802
			 			if((mouse.x+(xf/2))>ancho){
1803
			 				x=(ancho)-xf;
1804
			 			}
1805
			 		}
1806
			 	}
11038 nelberth 1807
				 if(blockCelda){
6682 nelberth 1808
			 	if(t4){
11032 nelberth 1809
					cal1=mouse.y-y;
1810
			 		cal2=cal1/recorte;
1811
					cal3=x+cal2;
1812
					if(cal2>50){
1813
						if(cal3<=ancho&&mouse.y<=alto){
1814
							yf=cal1;
1815
				 			xf=cal2;
1816
						}else if(cal3<=ancho&&mouse.y>alto){
1817
							yf=alto-y;
1818
							xf=yf/recorte
1819
						}else if(cal3>=ancho&&mouse.y<=alto){
1820
							xf=ancho-x;
1821
							yf=xf*recorte;
6682 nelberth 1822
						}
11032 nelberth 1823
				 	}
6682 nelberth 1824
			 	}
1825
			 	if(t3){
11032 nelberth 1826
					cal1=yf+(y-mouse.y);
1827
			 		cal2=cal1/recorte;
1828
					cal3=x+cal2;
1829
					if(cal2>50){
1830
						if(cal3<=ancho&&mouse.y>=0){
1831
							yf=cal1;
1832
				 			xf=cal2;
1833
							y=mouse.y;
1834
						}else if(cal3<=ancho&&mouse.y<0){
1835
							yf=yf+y;
1836
							xf=yf/recorte
1837
							y=0;
11038 nelberth 1838
						}else if(cal3>=ancho&&mouse.y>=0){
11032 nelberth 1839
							xf=ancho-x;
1840
							y=y+(yf-xf*recorte);
1841
							yf=xf*recorte;
1842
						}
1843
 
1844
				 	}
1845
 
6682 nelberth 1846
			 	}
1847
			 	if(t2){
11032 nelberth 1848
 
1849
					cal1=mouse.y-y;
11245 nelberth 1850
					cal2=cal1/recorte;
11032 nelberth 1851
					cal3=x+(yf-cal1)/recorte;cal2;
1852
					if(cal2>50){
1853
						if(cal3>=0&&mouse.y<=alto){
1854
							x=cal3;
1855
							yf=cal1;
11245 nelberth 1856
							xf=cal2;
1857
						}else if(cal3>0&&mouse.y>alto){
11032 nelberth 1858
							yf=alto-y;
1859
							x=x+(xf-yf/recorte);
1860
							xf=yf/recorte
11038 nelberth 1861
						}else if(cal3<0&&mouse.y<=alto){
11032 nelberth 1862
							xf=xf+x;
1863
							yf=xf*recorte;
1864
							x=0;
1865
						}
11245 nelberth 1866
					}
1867
 
1868
				}
1869
				if(t1){
11032 nelberth 1870
					cal0=y-mouse.y;
1871
					cal1=yf+cal0;
11245 nelberth 1872
					cal2=cal1/recorte;
11032 nelberth 1873
					cal3=x-cal0/recorte;
1874
					if(cal2>50){
1875
						if(cal3>=0&&mouse.y>=0){
1876
							yf=cal1;
11245 nelberth 1877
							xf=cal2;
1878
							x=cal3;
1879
							y=mouse.y;
1880
						}else if(cal3>0&&mouse.y<0){
11032 nelberth 1881
							yf=yf+y;
1882
							x=x+(xf-yf/recorte);
1883
							xf=yf/recorte
1884
							y=0;
11038 nelberth 1885
						}else if(cal3<0&&mouse.y>=0){
11032 nelberth 1886
							xf=xf+x;
1887
							y=y+(yf-xf*recorte);
1888
							yf=xf*recorte;
1889
							x=0;
1890
						}
11245 nelberth 1891
					}
1892
 
11032 nelberth 1893
				}
6682 nelberth 1894
				}else{
11032 nelberth 1895
				if(t4){
1896
 
1897
					cal1=mouse.y-y;
1898
					cal2=mouse.x-x;
1899
					if(cal1>50){
1900
						yf=mouse.y<=alto?cal1:alto-y;
1901
				 	}
1902
					if(cal2>50){
1903
						xf=mouse.x<=ancho?cal2:ancho-x;
1904
					}
6682 nelberth 1905
			 	}
11032 nelberth 1906
 
6682 nelberth 1907
			 	if(t3){
11032 nelberth 1908
					cal1=yf-(mouse.y-y);
1909
					cal2=mouse.x-x;
1910
					if(cal1>50){
1911
 
1912
						if(mouse.y>=0){
1913
							yf=cal1;
1914
							y=mouse.y;
1915
						}else{
1916
							yf=yf+y;
6682 nelberth 1917
							y=0;
1918
						}
11032 nelberth 1919
				 	}
1920
					if(cal2>50){
1921
						xf=mouse.x<=ancho?cal2:ancho-x;
1922
					}
6682 nelberth 1923
			 	}
1924
				/* Izquierda abajo */
1925
			 	if(t2){
11032 nelberth 1926
					cal1=mouse.y-y;
1927
					cal2=xf-(mouse.x-x);
1928
					if(cal1>50){
1929
						yf=yf=mouse.y<=alto?cal1:alto-y;
1930
					}
1931
					if(cal2>50){
1932
						if(mouse.x>=0){
1933
							xf=cal2;
1934
							x=mouse.x;
1935
						}else{
1936
							xf=xf+x;
1937
							x=0;
1938
						}
1939
					}
6682 nelberth 1940
			 	}
1941
				/* izquierda arriba */
1942
			 	if(t1){
11032 nelberth 1943
 
1944
					cal1=yf-(mouse.y-y);
1945
					cal2=xf-(mouse.x-x);
1946
					if(cal1>50){
1947
 
1948
						if(mouse.y>=0){
1949
							yf=cal1;
1950
							y=mouse.y;
1951
						}else{
1952
							yf=yf+y;
6682 nelberth 1953
							y=0;
1954
						}
11032 nelberth 1955
				 	}
1956
					if(cal2>50){
1957
						if(mouse.x>=0){
1958
							xf=cal2;
1959
							x=mouse.x;
1960
						}else{
1961
							xf=xf+x;
1962
							x=0;
1963
						}
1964
					}
1965
 
6682 nelberth 1966
			 	}
11032 nelberth 1967
				}
6682 nelberth 1968
 
1969
		 	actualizar();
1970
		 	}else if(texto_listo){
1971
		 		if(tcli){
1972
		 			tx=mouse.x-(txf/2)
1973
		 			ty=mouse.y-(tyf/2)
1974
		 		}else if(rotar){
1975
 
1976
		 		}
1977
 
1978
		 		actualizar2();
1979
		 	}
1980
		 })
11034 nelberth 1981
		 $('body').mouseup(function(e){
6682 nelberth 1982
		 	if(!recorte_listo){
1983
			 	cli=false;
1984
			 	t1=false;
1985
			 	t2=false;
1986
			 	t3=false;
1987
			 	t4=false;
1988
		 	}else if (texto_listo) {
1989
		 		tcli=false;
1990
		 	}
1991
		 })
1992
 
1993
 
1994
	}
1995
	/* Titulo */
1996
 
1997
var titulo_noticia, censor_titulo = true, numero_titulo=0;
1998
	$(document).on("keyup change", "#name", function(e){
1999
	console.log(numero_titulo)
2000
	titulo_noticia = $(this).val();
2001
	titulo_elemento= $(".titulo_topico");
2002
	if(titulo_noticia!=""){
2003
		if(censor_titulo){
2004
			titulo_elemento.html(titulo_noticia);
2005
			if(titulo_elemento.height()>38){
2006
				var titulo_noticia2 = "";
2007
				for(var i =0; i <titulo_noticia.length;i++){
2008
					titulo_noticia2 = titulo_noticia2 + titulo_noticia.split("")[i];
2009
					titulo_elemento.html(titulo_noticia2);
2010
					if(titulo_elemento.height()>38){
2011
						titulo_noticia2 = titulo_noticia2.slice(0,-5) + "...";
2012
						titulo_elemento.html(titulo_noticia2);
2013
						numero_titulo = titulo_noticia2.length;
2014
						censor_titulo=false;
2015
						break;
2016
					}
2017
 
2018
				}
2019
			}else{
2020
				numero_titulo=0;
2021
			}
2022
		}else{
2023
			if(numero_titulo+1>=titulo_noticia.length){
2024
				titulo_elemento.html(titulo_noticia);
2025
				censor_titulo=true;
2026
			}
2027
		}
2028
	}else{
2029
		titulo_elemento.html("LABEL_TITLE");
2030
		censor_titulo = true;
2031
	}
2032
})
2033
 
1 www 2034
});
2035
JS;
2036
$this->inlineScript()->captureEnd();
2037
?>
2038
 
15139 stevensc 2039
 
2040
 
1 www 2041
<!-- Content Header (Page header) -->
2042
<section class="content-header">
2043
	<div class="container-fluid">
15139 stevensc 2044
		<div class="row mb-2">
2045
			<div class="col-sm-12">
2046
				<h1>LABEL_CAPSULES</h1>
1 www 2047
			</div>
2048
		</div>
2049
	</div><!-- /.container-fluid -->
2050
</section>
2051
 
6704 nelberth 2052
<section class="content" id="content1">
1 www 2053
	<div class="container-fluid">
15139 stevensc 2054
		<div class="row">
16891 efrain 2055
			<div class="col-12 mt-3">
15139 stevensc 2056
				<div class="card">
1 www 2057
					<div class="card-header">
15139 stevensc 2058
						<?php
2059
						$form = $this->form;
2060
						$form->setAttributes([
2061
							'name'    => 'form-filter',
2062
							'id'      => 'form-filter',
2063
						]);
2064
 
2065
						$form->prepare();
2066
						echo $this->form()->openTag($form);
2067
						?>
2068
						<div class="form-group">
2069
							<?php
2070
							$element = $form->get('topic_uuid');
2071
 
2072
							$element->setAttributes(['class' => 'form-control']);
2073
							$element->setLabel('LABEL_TOPIC');
2074
							echo $this->formLabel($element);
2075
							echo $this->formSelect($element);
2076
							?>
2077
						</div>
1 www 2078
						<?php echo $this->form()->closeTag($form); ?>
15139 stevensc 2079
					</div>
1 www 2080
					<div class="card-body">
16845 efrain 2081
						<table id="gridTable" class="table   table-bordered">
15139 stevensc 2082
							<thead>
2083
								<tr>
2084
									<th>LABEL_NAME</th>
2085
									<th>LABEL_DETAILS</th>
2086
									<th>LABEL_IMAGES</th>
2087
									<th>LABEL_ACTIONS</th>
2088
								</tr>
2089
							</thead>
2090
							<tbody>
2091
							</tbody>
2092
						</table>
2093
					</div>
2094
					<div class="card-footer clearfix">
2095
						<div style="float:right;">
2096
							<button type="button" class="btn btn-info btn-refresh"><i class="fa fa-refresh"></i> LABEL_REFRESH </button>
2097
							<?php if ($allowAdd) : ?>
2098
								<button type="button" class="btn btn-primary btn-add"><i class="fa fa-plus"></i> LABEL_ADD </button>
1 www 2099
							<?php endif; ?>
2100
						</div>
15139 stevensc 2101
					</div>
2102
				</div>
2103
			</div>
2104
		</div>
2105
	</div>
2106
</section>
1 www 2107
 
2108
 
2109
<!-- The Modal -->
6694 nelberth 2110
<div id="modalCapsuleAdd" style='display:none'>
1 www 2111
 
6694 nelberth 2112
 
15139 stevensc 2113
	<!-- Modal Header -->
1 www 2114
 
15139 stevensc 2115
	<div class="d-flex justify-content-center tituloEditor">
16845 efrain 2116
		<h4>LABEL_ADD_CAPSULE</h6>
6701 nelberth 2117
 
15139 stevensc 2118
	</div>
2119
	<!-- Modal body -->
2120
	<div class="grid-padre">
2121
		<?php
2122
		$form = $this->formAdd;
2123
		$form->setAttributes([
2124
			'method'  => 'post',
2125
			'action'  => '',
2126
			'name'    => 'form-capsule-add',
2127
			'id'      => 'form-capsule-add',
2128
		]);
1 www 2129
 
15139 stevensc 2130
		$form->prepare();
2131
		echo $this->form()->openTag($form);
2132
		?>
2133
		<div class="form-group grid-1-2">
2134
			<?php
2135
			$element = $form->get('name');
1 www 2136
 
15139 stevensc 2137
			$element->setAttributes(['class' => 'form-control']);
2138
			$element->setOptions(['label' => 'LABEL_NAME']);
2139
			echo $this->formLabel($element);
2140
			echo $this->formText($element);
2141
			?>
2142
		</div>
2143
		<div class="form-group grid-1-2">
2144
			<?php
2145
			$element = $form->get('description');
2146
			$element->setAttributes(['id' => 'description_add', 'class' => 'form-control', 'rows' => '2', 'class' => 'form-control']);
2147
			$element->setOptions(['label' => 'LABEL_DESCRIPTION']);
2148
			echo $this->formLabel($element);
2149
			echo $this->formTextArea($element);
2150
			?>
2151
		</div>
2152
		<div class="form-group grid-1-2">
2153
			<?php
2154
			$element = $form->get('order');
2155
			$element->setAttributes(['class' => 'form-control']);
2156
			$element->setOptions(['label' => 'LABEL_ORDER']);
2157
			echo $this->formLabel($element);
2158
			echo $this->formText($element);
2159
			?>
2160
		</div>
1 www 2161
 
15139 stevensc 2162
		<div class="form-group grid-1-2">
2163
			<?php
2164
			$element = $form->get('status');
2165
			$element->setAttributes(['class' => 'form-control']);
2166
			$element->setOptions(['label' => 'LABEL_STATUS']);
2167
			echo $this->formLabel($element);
2168
			echo $this->formSelect($element);
2169
			?>
2170
		</div>
2171
		<div class="form-group grid-1-2">
2172
			<?php
2173
			$element = $form->get('privacy');
2174
			$element->setAttributes(['class' => 'form-control']);
2175
			$element->setOptions(['label' => 'LABEL_PRIVACY']);
2176
			echo $this->formLabel($element);
2177
			echo $this->formSelect($element);
2178
			?>
2179
		</div>
2180
		<div class="form-group grid-1-2">
2181
			<?php
2182
			$element = $form->get('type');
2183
			$element->setAttributes(['class' => 'form-control']);
2184
			$element->setOptions(['label' => 'LABEL_TYPE']);
2185
			echo $this->formLabel($element);
2186
			echo $this->formSelect($element);
2187
			?>
2188
		</div>
2189
		<div class="form-group grid-1-2" id="form-row-cost">
2190
			<?php
2191
			$element = $form->get('cost');
2192
			$element->setAttributes(['class' => 'form-control']);
2193
			$element->setOptions(['label' => 'LABEL_COST']);
2194
			echo $this->formLabel($element);
2195
			echo $this->formText($element);
2196
			?>
2197
		</div>
1 www 2198
 
15139 stevensc 2199
		<?php
2200
		$element = $form->get('marketplace');
2201
		$element->setAttributes(['class' => 'marketplace']);
2202
		echo $this->formHidden($element);
2203
		?>
2204
		<?php
2205
		$element = $form->get('file');
2206
		$element->setAttributes(['class' => 'file']);
2207
		echo $this->formHidden($element);
2208
		?>
2209
		<div class="form-group grid-1-2 ">
2210
			<div class="imagen-contaner">
2211
				<label for="marketplaceImg">LABEL_IMAGE_MARKETPLACE</label>
2212
				<img class='marketplaceImg' src='' class="img img-responsive" style="width: 100px; height: auto"></img>
2213
			</div>
2214
		</div>
2215
		<h5 style="text-align:center " class="form-group grid-1-2" id='titleTypeImage'>LABEL_IMAGE_MARKETPLACE</h5>
2216
		<div class="contenido form-group " id="contenido"></div>
2217
 
2218
		<?php echo $this->form()->closeTag($form); ?>
2219
	</div>
2220
 
2221
 
2222
 
2223
</div>
2224
 
2225
 
1 www 2226
<!-- The Modal -->
15139 stevensc 2227
<div id="modalCapsuleEdit" style='display:none'>
1 www 2228
 
6976 nelberth 2229
 
15139 stevensc 2230
	<!-- Modal Header -->
1 www 2231
 
15139 stevensc 2232
	<div class="d-flex justify-content-center tituloEditor">
16845 efrain 2233
		<h4>LABEL_EDIT_CAPSULE</h6>
6976 nelberth 2234
 
15139 stevensc 2235
	</div>
2236
	<!-- Modal body -->
2237
	<div class="grid-padre">
2238
		<?php
2239
		$form = $this->formEdit;
2240
		$form->setAttributes([
2241
			'method'    => 'post',
2242
			'name'      => 'form-capsule-edit',
2243
			'id'        => 'form-capsule-edit'
2244
		]);
1 www 2245
 
15139 stevensc 2246
		$form->prepare();
2247
		echo $this->form()->openTag($form);
2248
		?>
2249
		<div class="form-group grid-1-2">
2250
			<?php
2251
			$element = $form->get('name');
1 www 2252
 
15139 stevensc 2253
			$element->setAttributes(['class' => 'form-control']);
2254
			$element->setOptions(['label' => 'LABEL_NAME']);
2255
			echo $this->formLabel($element);
2256
			echo $this->formText($element);
2257
			?>
2258
		</div>
2259
		<div class="form-group grid-1-2">
2260
			<?php
2261
			$element = $form->get('description');
2262
			$element->setAttributes(['id' => 'description_edit', 'class' => 'form-control', 'rows' => '2', 'class' => 'form-control']);
2263
			$element->setOptions(['label' => 'LABEL_DESCRIPTION']);
2264
			echo $this->formLabel($element);
2265
			echo $this->formTextArea($element);
2266
			?>
2267
		</div>
2268
		<div class="form-group grid-1-2">
2269
			<?php
2270
			$element = $form->get('order');
2271
			$element->setAttributes(['class' => 'form-control']);
2272
			$element->setOptions(['label' => 'LABEL_ORDER']);
2273
			echo $this->formLabel($element);
2274
			echo $this->formText($element);
2275
			?>
2276
		</div>
1 www 2277
 
15139 stevensc 2278
		<div class="form-group grid-1-2">
2279
			<?php
2280
			$element = $form->get('status');
2281
			$element->setAttributes(['class' => 'form-control']);
2282
			$element->setOptions(['label' => 'LABEL_STATUS']);
2283
			echo $this->formLabel($element);
2284
			echo $this->formSelect($element);
2285
			?>
2286
		</div>
2287
		<div class="form-group grid-1-2">
2288
			<?php
2289
			$element = $form->get('privacy');
2290
			$element->setAttributes(['class' => 'form-control']);
2291
			$element->setOptions(['label' => 'LABEL_PRIVACY']);
2292
			echo $this->formLabel($element);
2293
			echo $this->formSelect($element);
2294
			?>
2295
		</div>
2296
		<div class="form-group grid-1-2">
2297
			<?php
2298
			$element = $form->get('type');
2299
			$element->setAttributes(['class' => 'form-control']);
2300
			$element->setOptions(['label' => 'LABEL_TYPE']);
2301
			echo $this->formLabel($element);
2302
			echo $this->formSelect($element);
2303
			?>
2304
		</div>
2305
		<div class="form-group grid-1-2" id="form-row-cost">
2306
			<?php
2307
			$element = $form->get('cost');
2308
			$element->setAttributes(['class' => 'form-control']);
2309
			$element->setOptions(['label' => 'LABEL_COST']);
2310
			echo $this->formLabel($element);
2311
			echo $this->formText($element);
2312
			?>
2313
		</div>
1 www 2314
 
15139 stevensc 2315
		<?php
2316
		$element = $form->get('marketplace');
2317
		$element->setAttributes(['class' => 'marketplace']);
2318
		echo $this->formHidden($element);
2319
		?>
2320
		<?php
2321
		$element = $form->get('file');
2322
		$element->setAttributes(['class' => 'file']);
2323
		echo $this->formHidden($element);
2324
		?>
2325
		<div class="form-group grid-1-2 ">
2326
			<div class="imagen-contaner">
2327
				<label for="marketplaceImg">LABEL_IMAGE_MARKETPLACE</label>
2328
				<img class='marketplaceImg' src='' class="img img-responsive" style="width: 100px; height: auto"></img>
2329
			</div>
2330
		</div>
2331
		<h5 style="text-align:center " class="form-group grid-1-2" id='titleTypeImage'>LABEL_IMAGE_MARKETPLACE</h5>
2332
		<div class="contenido form-group " id="contenido"></div>
2333
 
2334
		<?php echo $this->form()->closeTag($form); ?>
2335
	</div>
2336
 
2337
 
2338
</div>
2339
 
2340
 
2341
 
1 www 2342
<!-- The Modal -->
2343
<div class="modal" id="modalAppMarkeplate">
2344
	<div class="modal-dialog">
2345
		<div class="modal-content">
15139 stevensc 2346
			<!-- Modal Header -->
2347
			<div class="modal-header">
16845 efrain 2348
				<h6 class="modal-title">LABEL_IMAGE_MARKETPLACE</h6>
16822 efrain 2349
				<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close"></button>
15139 stevensc 2350
			</div>
1 www 2351
 
15139 stevensc 2352
			<!-- Modal body -->
2353
			<div class="modal-body text-center">
2354
				<img src="" class="img img-responsive" style="width: 300px; height: auto" id="image-marketplace" />
2355
			</div>
2356
 
2357
			<!-- Modal footer -->
16891 efrain 2358
			<div class="modal-footer text-right">
15139 stevensc 2359
				<button type="button" class="btn btn-danger" data-dismiss="modal">LABEL_CLOSE</button>
2360
			</div>
2361
		</div>
1 www 2362
	</div>
15139 stevensc 2363
</div>
1 www 2364
 
2365
 
2366
<!-- The Modal -->
2367
<div class="modal" id="modalImageApp">
2368
	<div class="modal-dialog ">
15139 stevensc 2369
		<div class="modal-content">
1 www 2370
 
15139 stevensc 2371
			<!-- Modal Header -->
2372
			<div class="modal-header">
16845 efrain 2373
				<h6 class="modal-title">LABEL_IMAGE</h6>
16822 efrain 2374
				<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close"></button>
15139 stevensc 2375
			</div>
1 www 2376
 
15139 stevensc 2377
			<!-- Modal body -->
2378
			<div class="modal-body text-center">
1 www 2379
				<img src="" class="img img-responsive" style="width: 300px; height: auto" id="image-app" />
15139 stevensc 2380
			</div>
2381
 
2382
			<!-- Modal footer -->
16891 efrain 2383
			<div class="modal-footer text-right">
15139 stevensc 2384
				<button type="button" class="btn btn-danger" data-dismiss="modal">LABEL_CLOSE</button>
2385
			</div>
2386
		</div>
1 www 2387
	</div>
15139 stevensc 2388
</div>
1 www 2389
 
2390
 
2391
 
15139 stevensc 2392
 
2393
 
2394
 
1 www 2395
<!-- The Modal -->
2396
<div class="modal" id="notificationUsersModal">
2397
	<div class="modal-dialog modal-xl">
15139 stevensc 2398
		<div class="modal-content">
1 www 2399
 
15139 stevensc 2400
			<!-- Modal Header -->
2401
			<div class="modal-header">
16845 efrain 2402
				<h6 class="modal-title">LABEL_USERS</h6>
16822 efrain 2403
				<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close"></button>
15139 stevensc 2404
			</div>
1 www 2405
 
15139 stevensc 2406
			<!-- Modal body -->
2407
			<div class="modal-body">
2408
				<form>
2409
					<div class="form-group">
2410
						<label>LABEL_TOPIC</label>
2411
						<input type="text" readonly="readonly" id="table-users-topic" class="form-control">
2412
					</div>
2413
					<div class="form-group">
2414
						<label>LABEL_CAPSULE</label>
2415
						<input type="text" readonly="readonly" id="table-users-capsule" class="form-control">
2416
					</div>
2417
				</form>
2418
				<div style="height: 300px;overflow: scroll;">
16845 efrain 2419
					<table id="gridTableUsers" style="width: 100%" class="table   table-bordered">
15139 stevensc 2420
						<thead>
2421
							<tr>
2422
								<th>LABEL_FIRST_NAME</th>
2423
								<th>LABEL_LAST_NAME</th>
2424
								<th>LABEL_EMAIL</th>
2425
								<th>LABEL_DETAILS</th>
2426
							</tr>
2427
						</thead>
2428
						<tbody>
2429
						</tbody>
2430
					</table>
2431
				</div>
1 www 2432
 
15139 stevensc 2433
			</div>
1 www 2434
 
15139 stevensc 2435
			<!-- Modal footer -->
16891 efrain 2436
			<div class="modal-footer text-right">
15139 stevensc 2437
				<button type="button" class="btn btn-danger" data-dismiss="modal">LABEL_CLOSE</button>
2438
			</div>
2439
 
2440
		</div>
15027 stevensc 2441
	</div>
15139 stevensc 2442
</div>