Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev Autor Línea Nro. Línea
1 www 1
<?php
2
$acl            = $this->viewModel()->getRoot()->getVariable('acl');
3
$currentUser    = $this->currentUserHelper();
4
 
5
$roleName = $currentUser->getUserTypeId();
6
 
7
 
8
$routeAdd       = $this->url('microlearning/content/topics/add');
9
$routeDatatable = $this->url('microlearning/content/topics');
10
 
11
$allowAdd               = $acl->isAllowed($roleName, 'microlearning/content/topics/add') ? 1 : 0;
12
$allowEdit              = $acl->isAllowed($roleName, 'microlearning/content/topics/edit') ? 1 : 0;
13
$allowDelete            = $acl->isAllowed($roleName, 'microlearning/content/topics/delete') ? 1 : 0;
14
 
15
 
16
$this->headLink()->appendStylesheet($this->basePath('plugins/nprogress/nprogress.css'));
17
$this->inlineScript()->appendFile($this->basePath('plugins/nprogress/nprogress.js'));
18
 
19
$this->inlineScript()->appendFile($this->basePath('plugins/ckeditor/ckeditor.js'));
20
 
21
 
22
$this->headLink()->appendStylesheet($this->basePath('plugins/bootstrap-fileinput/css/fileinput.min.css'));
23
$this->headLink()->appendStylesheet($this->basePath('plugins/bootstrap-fileinput/themes/explorer-fas/theme.css'));
24
 
25
$this->inlineScript()->appendFile($this->basePath('plugins/bootstrap-fileinput/js/plugins/piexif.js'));
26
$this->inlineScript()->appendFile($this->basePath('plugins/bootstrap-fileinput/js/plugins/sortable.js'));
27
$this->inlineScript()->appendFile($this->basePath('plugins/bootstrap-fileinput/js/fileinput.js'));
28
$this->inlineScript()->appendFile($this->basePath('plugins/bootstrap-fileinput/js/locales/es.js'));
29
$this->inlineScript()->appendFile($this->basePath('plugins/bootstrap-fileinput/themes/fas/theme.js'));
30
$this->inlineScript()->appendFile($this->basePath('plugins/bootstrap-fileinput/themes/explorer-fas/theme.js'));
31
 
32
 
33
$this->inlineScript()->appendFile($this->basePath('plugins/jquery-validation/jquery.validate.js'));
34
$this->inlineScript()->appendFile($this->basePath('plugins/jquery-validation/additional-methods.js'));
35
$this->inlineScript()->appendFile($this->basePath('plugins/jquery-validation/localization/messages_es.js'));
36
 
37
$this->headLink()->appendStylesheet($this->basePath('plugins/datatables-bs4/css/dataTables.bootstrap4.min.css'));
38
$this->headLink()->appendStylesheet($this->basePath('plugins/datatables-responsive/css/responsive.bootstrap4.min.css'));
4797 nelberth 39
$this->headLink()->appendStylesheet($this->basePath('plugins/nelberth-editor/style.css'));
1 www 40
$this->inlineScript()->appendFile($this->basePath('plugins/datatables/jquery.dataTables.min.js'));
41
$this->inlineScript()->appendFile($this->basePath('plugins/datatables-bs4/js/dataTables.bootstrap4.min.js'));
42
$this->inlineScript()->appendFile($this->basePath('plugins/datatables-responsive/js/dataTables.responsive.min.js'));
43
$this->inlineScript()->appendFile($this->basePath('plugins/datatables-responsive/js/responsive.bootstrap4.min.js'));
44
 
45
 
46
$this->headLink()->appendStylesheet($this->basePath('plugins/bootstrap4-toggle/css/bootstrap4-toggle.min.css'));
47
$this->inlineScript()->appendFile($this->basePath('plugins/bootstrap4-toggle/js/bootstrap4-toggle.min.js'));
48
 
49
$this->inlineScript()->appendFile($this->basePath('plugins/bootstrap-confirmation/dist/bootstrap-confirmation.js'));
50
$this->headLink()->appendStylesheet($this->basePath('plugins/bootstrap-checkbox/awesome-bootstrap-checkbox.css'));
51
 
52
 
53
$this->inlineScript()->appendFile($this->basePath('plugins/jquery-input-number/input-number-format.jquery.js'));
54
 
55
 
56
$status_active = \LeadersLinked\Model\Degree::STATUS_ACTIVE;
57
 
4697 nelberth 58
 
59
 
4737 nelberth 60
 
1 www 61
$this->inlineScript()->captureStart();
62
echo <<<JS
63
    jQuery( document ).ready(function( $ ) {
64
 
65
        $.validator.setDefaults({
66
            debug: true,
67
            highlight: function(element) {
68
                $(element).addClass('is-invalid');
69
            },
70
            unhighlight: function(element) {
71
                $(element).removeClass('is-invalid');
72
            },
73
            errorElement: 'span',
74
            errorClass: 'error invalid-feedback',
75
            errorPlacement: function(error, element) {
76
                if(element.parent('.btn-file').length) {
77
                    error.insertAfter(element.parent().parent());
78
                } else if(element.parent('.toggle').length) {
79
                    error.insertAfter(element.parent().parent());
80
                } else {
81
                    error.insertAfter(element.parent());
82
                }
83
            }
84
        });
85
 
86
 
87
        $.fn.showFormErrorValidator = function(fieldname, errors) {
88
            var field = $(fieldname);
89
            if(field) {
90
                $(field).addClass('is-invalid');
91
 
92
 
93
                var error = $('<span id="' + fieldname +'-error" class="error invalid-feedback">' + errors + '</div>');
5541 nelberth 94
              /*  if(element.parent('.btn-file').length) {
5539 nelberth 95
                    error.insertAfter(element.parent().parent());
96
                } else if(element.parent('.toggle').length) {
97
                    error.insertAfter(element.parent().parent());
98
                } else {
99
                    error.insertAfter(element.parent());
5541 nelberth 100
                }*/
1 www 101
            }
102
        };
103
 
104
 
105
 
106
 
107
        var allowEdit   = $allowEdit;
108
        var allowDelete = $allowDelete;
109
 
110
        var gridTable = $('#gridTable').dataTable( {
111
            'processing': true,
112
            'serverSide': true,
113
            'searching': true,
114
            'order': [[ 0, 'asc' ]],
115
            'ordering':  true,
116
            'ordenable' : true,
117
            'responsive': true,
118
            'select' : false,
119
        	'paging': true,
120
            'pagingType': 'simple_numbers',
121
    		'ajax': {
122
    			'url' : '$routeDatatable',
123
    			'type' : 'get',
124
                'beforeSend': function (request) {
125
                  NProgress.start();
126
                },
127
                'dataFilter': function(response) {
128
                    var response = jQuery.parseJSON( response );
129
 
130
                    var json                = {};
131
                    json.recordsTotal       = 0;
132
                    json.recordsFiltered    = 0;
133
                    json.data               = [];
134
 
135
 
136
                    if(response.success) {
137
                        json.recordsTotal       = response.data.total;
138
                        json.recordsFiltered    = response.data.total;
139
                        json.data               = response.data.items;
140
                    } else {
141
                        $.fn.showError(response.data)
142
                    }
143
 
144
                    return JSON.stringify( json );
145
                }
146
    		},
147
            'language' : {
148
                'sProcessing':     'LABEL_DATATABLE_SPROCESSING',
149
                'sLengthMenu':     'LABEL_DATATABLE_SLENGTHMENU',
150
                'sZeroRecords':    'LABEL_DATATABLE_SZERORECORDS',
151
                'sEmptyTable':     'LABEL_DATATABLE_SEMPTYTABLE',
152
                'sInfo':           'LABEL_DATATABLE_SINFO',
153
                'sInfoEmpty':      'LABEL_DATATABLE_SINFOEMPTY',
154
                'sInfoFiltered':   'LABEL_DATATABLE_SINFOFILTERED',
155
                'sInfoPostFix':    '',
156
                'sSearch':         'LABEL_DATATABLE_SSEARCH',
157
                'sUrl':            '',
158
                'sInfoThousands':  ',',
159
                'sLoadingRecords': 'LABEL_DATATABLE_SLOADINGRECORDS',
160
                'oPaginate': {
161
                    'sFirst':    'LABEL_DATATABLE_SFIRST',
162
                    'sLast':     'LABEL_DATATABLE_SLAST',
163
                    'sNext':     'LABEL_DATATABLE_SNEXT',
164
                    'sPrevious': 'LABEL_DATATABLE_SPREVIOUS'
165
                },
166
                'oAria': {
167
                    'sSortAscending':  ': LABEL_DATATABLE_SSORTASCENDING',
168
                    'sSortDescending': ':LABEL_DATATABLE_SSORTDESCENDING'
169
                },
170
            },
171
            'drawCallback': function( settings ) {
172
                NProgress.done();
173
                $('button.btn-delete').confirmation({
174
                    rootSelector: 'button.btn-delete',
175
                    title : 'LABEL_ARE_YOU_SURE',
176
                    singleton : true,
177
                    btnOkLabel: 'LABEL_YES',
178
                    btnCancelLabel: 'LABEL_NO',
179
                    onConfirm: function(value) {
180
                        action = $(this).data('href');
181
                        NProgress.start();
182
                        $.ajax({
183
                            'dataType'  : 'json',
184
                            'accept'    : 'application/json',
185
                            'method'    : 'post',
186
                            'url'       :  action,
187
                        }).done(function(response) {
188
                            if(response['success']) {
189
                                $.fn.showSuccess(response['data']);
190
                                gridTable.api().ajax.reload(null, false);
191
                            } else {
192
                                $.fn.showError(response['data']);
193
                            }
194
                        }).fail(function( jqXHR, textStatus, errorThrown) {
195
                            $.fn.showError(textStatus);
196
                        }).always(function() {
197
                            NProgress.done();
198
                        });
199
                    },
200
                });
201
            },
202
            'aoColumns': [
203
                { 'mDataProp': 'name' },
204
                { 'mDataProp': 'status' },
205
                { 'mDataProp': 'image' },
206
                { 'mDataProp': 'actions' },
207
    	    ],
208
            'columnDefs': [
209
                {
210
                    'targets': 0,
211
                    'className' : 'text-vertical-middle',
212
                },
213
                {
214
                    'targets': -2,
215
                    'orderable': false,
216
                    'render' : function ( data, type, row ) {
217
                        s = '&nbsp;';
218
 
219
                        if( data )  {
220
                            s = s + '&nbsp;<img class="btn-view-image-app" data-href="' + data + '" data-toggle="tooltip" src="'+data+'" title="LABEL_VIEW" style="width: 40px; object-fit: cover; height: 40px;" /> '
221
                        }  else {
222
                            s = s + '&nbsp;LABEL_IMAGE: <br>';
223
                        }
224
 
225
 
226
                        return s;
227
                    }
228
                },
229
 
230
 
231
                {
232
                    'targets': -1,
233
                    'orderable': false,
234
                    'render' : function ( data, type, row ) {
235
                        s = '';
236
 
237
                        if(allowEdit && data['link_edit']  ) {
238
                            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;';
239
                        }
240
                        if(allowDelete && data['link_delete']  ) {
241
                            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;';
242
                        }
243
                        return s;
244
                    }
245
                }
246
              ],
247
        });
248
 
249
 
250
    var validatorAdd = $('#form-topic-add').validate({
251
        debug: true,
252
        onclick: false,
253
        onkeyup: false,
254
        ignore: [],
255
        rules: {
256
            'name': {
257
                required: true,
258
                maxlength: 128,
259
            },
260
            'description': {
261
                updateCkeditor:function() {
262
                        CKEDITOR.instances.description_add.updateElement();
263
                },
264
                required: true
265
            },
266
           'file': {
267
                required: true,
268
            },
269
            'order' : {
270
                required: true,
271
                digits: true,
272
                min: 1,
273
                max: 250
274
            },
275
            'status' : {
276
                required: true,
277
            },
278
        },
279
        submitHandler: function(form)
280
        {
281
            var formdata = false;
282
            if (window.FormData){
283
                formdata = new FormData(form); //form[0]);
284
            }
5709 nelberth 285
 
286
 
287
			$('.info_noticia').prop('disabled', true);
5703 nelberth 288
			NProgress.start();
1 www 289
            $.ajax({
290
                'dataType'  : 'json',
291
                'accept'    : 'application/json',
292
                'method'    : 'post',
293
                'url'       :  $('#form-topic-add').attr('action'),
294
                'data'      :  formdata,
295
                'processData': false,
296
                'contentType': false,
297
            }).done(function(response) {
5542 nelberth 298
				console.log(response)
299
				if(response['success']) {
1 www 300
                    $.fn.showSuccess(response['data']);
5708 nelberth 301
                    $('body, html').animate({scrollTop: '0px'}, 300);
5703 nelberth 302
					$('#content1').css('display','block');
303
            		$('#addImage').css('display','none');
1 www 304
                    gridTable.api().ajax.reload(null, false);
305
                } else {
306
                    validatorAdd.resetForm();
307
                    if(jQuery.type(response['data']) == 'string') {
308
                        $.fn.showError(response['data']);
309
                    } else  {
310
                        $.each(response['data'], function( fieldname, errors ) {
311
                            $.fn.showFormErrorValidator('#form-topic-add #' + fieldname, errors);
312
                        });
313
                    }
314
                }
315
            }).fail(function( jqXHR, textStatus, errorThrown) {
5709 nelberth 316
 
5575 nelberth 317
				console.log(jqXHR)
1 www 318
                $.fn.showError(textStatus);
319
            }).always(function() {
5709 nelberth 320
				$('.info_noticia').prop('disabled', false);
1 www 321
                NProgress.done();
322
            });
323
            return false;
324
        },
325
        invalidHandler: function(form, validator) {
326
 
327
        }
328
    });
329
 
330
    var validatorEdit  = $('#form-topic-edit').validate({
331
        debug: true,
332
        onclick: false,
333
        onkeyup: false,
334
        ignore: [],
335
        rules: {
336
            'name': {
337
                required: true,
338
                maxlength: 128,
339
            },
340
            'description': {
341
                updateCkeditor:function() {
342
                        CKEDITOR.instances.description_edit.updateElement();
343
                },
344
                required: true
345
            },
346
           'file': {
5982 nelberth 347
                required: true,
1 www 348
            },
349
            'order' : {
350
                required: true,
351
                digits: true,
352
                min: 1,
353
                max: 250
354
            },
355
            'status' : {
356
                required: true,
357
            },
358
 
359
        },
360
        submitHandler: function(form)
361
        {
362
            var formdata = false;
363
            if (window.FormData){
364
                formdata = new FormData(form); //form[0]);
365
            }
366
 
7060 nelberth 367
            $('.info_noticia').prop('disabled', true);
5982 nelberth 368
			NProgress.start();
1 www 369
            $.ajax({
370
                'dataType'  : 'json',
371
                'accept'    : 'application/json',
372
                'method'    : 'post',
373
                'url'       :  $('#form-topic-edit').attr('action'),
374
                'data'      :  formdata,
375
                'processData': false,
376
                'contentType': false,
377
            }).done(function(response) {
378
                if(response['success']) {
379
                    $.fn.showSuccess(response['data']);
380
 
5994 nelberth 381
                    $('body, html').animate({scrollTop: '0px'}, 300);
5898 nelberth 382
					$('#content1').css('display','block');
383
            		$('#topicEdit').css('display','none');
1 www 384
                    gridTable.api().ajax.reload(null, false);
385
                } else {
386
                    validatorAdd.resetForm();
387
                    if(jQuery.type(response['data']) == 'string') {
388
                        $.fn.showError(response['data']);
389
                    } else  {
390
                        $.each(response['data'], function( fieldname, errors ) {
391
                            $.fn.showFormErrorValidator('#form-topic-edit #' + fieldname, errors);
392
                        });
393
                    }
394
                }
395
            }).fail(function( jqXHR, textStatus, errorThrown) {
396
                $.fn.showError(textStatus);
397
            }).always(function() {
7060 nelberth 398
 
399
				$('.info_noticia').prop('disabled', false);
1 www 400
                NProgress.done();
401
            });
402
            return false;
403
        },
404
        invalidHandler: function(form, validator) {
405
 
406
        }
407
    });
408
 
409
 
410
 
411
        $('body').on('click', '.btn-view-image-app', function(e) {
412
            e.preventDefault();
413
 
414
            $('#image-app').attr('src', $(this).data('href'));
415
            $('#modalImageApp').modal('show');
416
            return false;
417
        });
418
 
419
        $('#form-topic-add #order').inputNumberFormat({decimal: 0});
5741 nelberth 420
 
1 www 421
 
422
 
423
        $('body').on('click', 'button.btn-add', function(e) {
424
            e.preventDefault();
6015 nelberth 425
 
1 www 426
            $('#form-topic-add #name').val('');
427
            $('#form-topic-add #order').val('1');
5536 nelberth 428
            $('#form-topic-add #name').val('');
1 www 429
 
430
            $('#form-topic-add #status').val('');
431
 
432
 
433
            CKEDITOR.instances.description_add.setData('');
434
            validatorAdd.resetForm();
4693 nelberth 435
            $('#content1').css('display','none');
436
            $('#addImage').css('display','block');
4829 nelberth 437
			iniciarEditor()
4693 nelberth 438
 
1 www 439
            return false;
440
        });
5646 nelberth 441
		$('body').on('click', '#ir_atras', function(e) {
442
            e.preventDefault();
443
 
444
 
5710 nelberth 445
			$('body, html').animate({scrollTop: '0px'}, 300);
5646 nelberth 446
            $('#content1').css('display','block');
447
            $('#addImage').css('display','none');
5910 nelberth 448
			$('#topicEdit').css('display','none');
1 www 449
 
5646 nelberth 450
 
451
            return false;
452
        });
453
 
1 www 454
 
455
        $('#form-topic-edit #order').inputNumberFormat({decimal: 0});
456
 
5902 nelberth 457
       /* $('#form-topic-edit #file').fileinput({
1 www 458
            theme: 'fas',
459
            language: 'es',
460
            showUpload: false,
461
            dropZoneEnabled: false,
462
            maxFileCount: 1,
463
            allowedFileExtensions: ['jpeg', 'jpg', 'png'],
464
            msgPlaceholder: 'LABEL_RECOMMENDED_SIZE $image_size',
5902 nelberth 465
        });*/
1 www 466
 
8591 nelberth 467
 
1 www 468
        $('body').on('click', 'button.btn-edit', function(e) {
469
            e.preventDefault();
6015 nelberth 470
 
1 www 471
            var url = $(this).data('href');
5900 nelberth 472
			NProgress.start();
1 www 473
            $.ajax({
474
                'dataType'  : 'json',
475
                'accept'    : 'application/json',
476
                'method'    : 'get',
477
                'url'       :  url,
478
            }).done(function(response) {
479
                if(response['success']) {
5913 nelberth 480
					console.log(response['data'])
1 www 481
                    $('#form-topic-edit')[0].reset();
482
 
483
                    $('#form-topic-edit').attr('action',url);
6078 nelberth 484
                    $('#form-topic-edit #name').val(response['data']['name']);
1 www 485
                    $('#form-topic-edit #order').val(response['data']['order']);
486
 
5919 nelberth 487
					 $('#form-topic-edit #status').val(response['data']['status']);
1 www 488
 
489
                    CKEDITOR.instances.description_edit.setData(response['data']['description']);
490
                    validatorEdit.resetForm();
5898 nelberth 491
					$('#content1').css('display','none');
492
            		$('#topicEdit').css('display','block');
6015 nelberth 493
					iniciarEditor(false,response['data']['image']);
1 www 494
                } else {
495
                    validatorEdit.resetForm();
496
                    if(jQuery.type(response['data']) == 'string') {
497
                        $.fn.showError(response['data']);
498
                    } else  {
499
                        $.each(response['data'], function( fieldname, errors ) {
500
                            $.fn.showFormErrorValidator('#form-topic-edit #' + fieldname, errors);
501
                        });
502
                    }
503
                }
504
            }).fail(function( jqXHR, textStatus, errorThrown) {
505
                $.fn.showError(textStatus);
506
            }).always(function() {
507
                NProgress.done();
508
            });
509
        });
510
 
511
        $('body').on('click', 'button.btn-cancel', function(e) {
512
            e.preventDefault();
513
            $('#modalTopicAdd').modal('hide');
5895 nelberth 514
            $('#topicEdit').modal('hide');
1 www 515
        });
516
 
517
        $('body').on('click', 'button.btn-refresh', function(e) {
518
            e.preventDefault();
519
            gridTable.api().ajax.reload(null, false);
520
        });
521
 
8290 stevensc 522
        CKEDITOR.replace('description_add', {
523
			toolbar: [
524
                    { name: 'editing', items: ['Scayt'] },
525
                    { name: 'links', items: ['Link', 'Unlink'] },
526
                    { name: 'paragraph', items: ['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', 'Blockquote'] },
527
                    { name: 'basicstyles', items: ['Bold', 'Italic', 'Strike', 'RemoveFormat'] },
528
                    '/',
529
                    { name: 'insert', items: ['Image', 'Table', 'HorizontalRule', 'SpecialChar'] },
530
                    { name: 'styles', items: ['Styles', 'Format'] },
531
                    { name: 'tools', items: ['Maximize'] }
532
                ],
533
                removePlugins: 'elementspath,Anchor',
534
                heigth: 100
535
		});
536
        CKEDITOR.replace('description_edit', {
537
			toolbar: [
538
                    { name: 'editing', items: ['Scayt'] },
539
                    { name: 'links', items: ['Link', 'Unlink'] },
540
                    { name: 'paragraph', items: ['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', 'Blockquote'] },
541
                    { name: 'basicstyles', items: ['Bold', 'Italic', 'Strike', 'RemoveFormat'] },
542
                    '/',
543
                    { name: 'insert', items: ['Image', 'Table', 'HorizontalRule', 'SpecialChar'] },
544
                    { name: 'styles', items: ['Styles', 'Format'] },
545
                    { name: 'tools', items: ['Maximize'] }
546
                ],
547
                removePlugins: 'elementspath,Anchor',
548
                heigth: 100
549
		});
1 www 550
 
4798 nelberth 551
 
552
 
553
		/*Script del editor (Aqui comienza el cielo y la tierra) */
4803 nelberth 554
		var imagenServidorNoticia;
555
		var scroll_altura,viente;
556
		var nombre_user = $(".perfil_u_nombre").text();
557
		var primer_nombre = nombre_user.split(" ")[0];
10815 nelberth 558
		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>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" style="display:none"><input type="color" name="" id="colorrect" value="#000000" class="w-25" data-tooltip="Color del fondo" class="mr-2"/><input type="range" id="opacidad" max="100" min="1" step="1" value="100" class="w-75"></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" id="imagen_noticia">LABEL_DRAG_IMAGE_HERE</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"> <div> <div class="titulo_recortar"><span class="icon-ungroup fa fa-scissors"></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" style="display:none"> <input type="color" name="" id="colorrect" value="#000000" class="w-25" data-tooltip="Color del fondo" class="mr-2"/><input type="range" id="opacidad" max="100" min="1" step="1" value="100" class="w-75"></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"><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></div>'
5207 nelberth 559
		$(document).on("click", ".info_noticia", function(e){
5709 nelberth 560
			imagenServidorNoticia = elemento.toDataURL("image/jpeg", 1.0);
561
			console.log(imagenServidorNoticia.split(','))
5989 nelberth 562
			$('.file').val(imagenServidorNoticia.split(',')[1]);
563
			console.log($('.file').val())
5709 nelberth 564
			$(".c1").addClass("paso");
5703 nelberth 565
 
5513 nelberth 566
 
5709 nelberth 567
		})
6045 nelberth 568
		var edit;
6015 nelberth 569
		function iniciarEditor(add=true, image=''){
5864 nelberth 570
		 cortar=false;
4803 nelberth 571
		recorte_listo=false;
572
		texto="";
573
		seis=true;
574
		color="#ffffff";
575
		texto_listo=false,siete=false;
576
		uno=true;
577
		size=48;
10804 nelberth 578
		blockCelda=false;
4803 nelberth 579
		cinco=true;
4944 nelberth 580
		xf=320,yf =480;
4803 nelberth 581
		negritas=false, bold="";
582
		shadow = true, nueve=true;
583
		italic=false, ita="";
584
		rectangulo=false, diez=false;
585
     	fontfamily="Arial";
586
     	r=0,g=0,b=0,a=1;
6049 nelberth 587
		 edit=add;
4806 nelberth 588
		window.clearInterval(editorNoticia);
5202 nelberth 589
		setTimeout(function(){
590
			scroll_altura=$(".articulo_noticia").offset().top-110;
4821 nelberth 591
			anchoFondoOscuro = $(".articulo_noticia").width();
4823 nelberth 592
			altoFondoOscuro = $(".editor_imagenes").height();
4821 nelberth 593
			$(".fondo_oscuro").css("width",""+anchoFondoOscuro+"px");
4825 nelberth 594
			$(".fondo_oscuro").css("height",""+altoFondoOscuro+"px");
5202 nelberth 595
 
6022 nelberth 596
		},navegacion(nuevoHtmlImagen,edit,image));
5202 nelberth 597
 
4829 nelberth 598
		}
4798 nelberth 599
 
4801 nelberth 600
		$(document).on("click", ".volver", function(){
601
		var nombre_user = $(".perfil_u_nombre").text();
602
		var primer_nombre = nombre_user.split(" ")[0];
5864 nelberth 603
		 cortar=false;
4801 nelberth 604
		cinco=true;
605
		recorte_listo=false;
606
		texto="";
607
		seis=true;
608
		color="#ffffff";
609
		texto_listo=false,siete=false;
610
		uno=true;
10803 nelberth 611
		blockCelda=false;
4801 nelberth 612
		size=48;
8591 nelberth 613
 
8593 nelberth 614
 
4944 nelberth 615
		xf=320,yf =480;
4801 nelberth 616
		negritas=false, bold="";
617
		shadow = true, nueve=true;
618
		italic=false, ita="";
619
		rectangulo=false, diez=false;
620
     	fontfamily="Arial";
621
     	r=0,g=0,b=0,a=1;
4804 nelberth 622
		 var imagenServidorNoticia;
6048 nelberth 623
		 console.log(edit)
4801 nelberth 624
		window.clearInterval(editorNoticia);
625
		setTimeout(function(){
626
			scroll_altura=$(".articulo_noticia").offset().top-110;
627
			anchoFondoOscuro = $(".articulo_noticia").width();
4823 nelberth 628
			altoFondoOscuro = $(".editor_imagenes").height();
4801 nelberth 629
			$(".fondo_oscuro").css("width",""+anchoFondoOscuro+"px");
4825 nelberth 630
			$(".fondo_oscuro").css("height",""+altoFondoOscuro+"px");
4801 nelberth 631
 
6022 nelberth 632
		},navegacion(nuevoHtmlImagen,edit,'',false));
4815 nelberth 633
 
4816 nelberth 634
		})
4801 nelberth 635
 
6018 nelberth 636
		function navegacion(nuevoHtmlImagen,add,image,reload=true){
5908 nelberth 637
			if(add){
8594 nelberth 638
				edit=true;
10862 nelberth 639
				//$('#contenido2').html('')
640
				//$('#contenido').html(nuevoHtmlImagen)
6001 nelberth 641
 
5908 nelberth 642
			}else{
6017 nelberth 643
				if(reload){
644
					$('#contenido').html('')
645
					const getBase64FromUrl = async (url) => {
646
						const data = await fetch(url);
647
						const blob = await data.blob();
648
						return new Promise((resolve) => {
649
							const reader = new FileReader();
650
							reader.readAsDataURL(blob);
651
							reader.onloadend = function() {
652
							const base64data = reader.result;
653
							resolve(base64data);
654
							}
655
						});
656
					}
657
 
658
					getBase64FromUrl(image).then(function(e){
6080 nelberth 659
						$('#form-topic-edit #name').trigger('change');
6017 nelberth 660
						$(".volver").css("display","block")
661
						$(".a1").addClass("paso");
662
						$(".titulo_pasos").html("LABEL_STEP_2");
663
						setTimeout(function(){
664
							recorte_listo=true;
665
							$(".fondo_oscuro").css("display","none");
666
							$("#boton_recortar").removeClass("recortar").text("LABEL_SEND").addClass("info_noticia").attr('type','submit');
667
							$(".recortar10").removeClass("recortar");
668
							$(".canvas").removeClass("recortar");
669
							$(".b1").addClass("paso");
670
							$(".titulo_pasos").html("LABEL_STEP_3");
10977 nelberth 671
 
672
							$('.blockCelda').html('<span class="fa fa-unlock"></span>')
6017 nelberth 673
							if(texto!=""){
674
								seis=true;
675
								siete=true;
676
							}
677
							cinco=true;
678
							dos=true;
679
							cuatro=true;
680
							actualizar();
5979 nelberth 681
 
6017 nelberth 682
						},editorNoticia(e));
683
 
684
 
685
					})
6021 nelberth 686
 
687
					setTimeout(function(){
6017 nelberth 688
						$(".canvas_subir").html('<span class="icon-plus fa fa-spinner"></span> Cargando...')
6081 nelberth 689
						$('#form-topic-edit #name').trigger('change');
10979 nelberth 690
						$('.blockCelda').html('<span class="fa fa-unlock"></span>')
6017 nelberth 691
					},$('#contenido2').html(nuevoHtmlImagen));
692
				}else{
8595 nelberth 693
 
8596 nelberth 694
					edit=true;
6017 nelberth 695
					$('#contenido').html('')
6082 nelberth 696
					setTimeout(function(){
10978 nelberth 697
						$('.blockCelda').html('<span class="fa fa-unlock"></span>')
6082 nelberth 698
						$('#form-topic-edit #name').trigger('change');
699
					},$('#contenido2').html(nuevoHtmlImagen));
6017 nelberth 700
				}
5978 nelberth 701
			}
702
		}
4816 nelberth 703
 
4798 nelberth 704
		$(window).on("scroll", function(){
5132 nelberth 705
			console.log(scroll_altura)
4798 nelberth 706
		if($(window).scrollTop()>scroll_altura){
707
			$("#cuadro_noticias").addClass("fixed");
708
		}else{
709
			$("#cuadro_noticias").removeClass("fixed");
710
		}
711
	})
10792 nelberth 712
	$(window).resize(function() {
713
		anchoFondoOscuro = $(".articulo_noticia").width();
714
		altoFondoOscuro = $(".editor_imagenes").height();
715
		$(".fondo_oscuro").css("width",""+anchoFondoOscuro+"px");
716
		$(".fondo_oscuro").css("height",""+altoFondoOscuro+"px");
10810 nelberth 717
		setTimeout(function(){
718
			anchoFondoOscuro = $(".articulo_noticia").width();
719
			altoFondoOscuro = $(".editor_imagenes").height();
720
			$(".fondo_oscuro").css("width",""+anchoFondoOscuro+"px");
721
			$(".fondo_oscuro").css("height",""+altoFondoOscuro+"px");
10814 nelberth 722
		},300)
10810 nelberth 723
 
10792 nelberth 724
	});
5129 nelberth 725
 
4798 nelberth 726
	$(document).on("dragover", "#imagen_noticia", function(e){
727
		e.preventDefault();
728
		e.stopPropagation();
729
		$(this).css({"background":"rgba(0,0,0,.2)"})
730
	})
731
	$(document).on("drop", "#imagen_noticia", function(e){
732
		e.preventDefault();
733
		e.stopPropagation();
734
		$(this).css("background", "none");
735
		var archivo = e.originalEvent.dataTransfer.files;
736
		var img=archivo[0];
5926 nelberth 737
		if(img.type =="image/jpeg"||img.type =="image/png"){
4798 nelberth 738
			$(".modificar").removeClass("animated");
739
			var render = new FileReader();
740
			render.readAsDataURL(img);
741
			render.onload = function(e){
8345 nelberth 742
				imagen2=new Image();
743
				imagen2.src=e.target.result;
8349 nelberth 744
 
745
				$(imagen2).ready(function(e){
8517 nelberth 746
					if(imagen2.width<200||imagen2.height<200){
8360 nelberth 747
						$.fn.showError('LABEL_MINIMUM_IMAGE_SIZE');
8349 nelberth 748
					}else{
749
						$(".volver").css("display","block")
750
						$(".a1").addClass("paso");
751
						$(".titulo_pasos").html("LABEL_STEP_2");
8351 nelberth 752
						editorNoticia(imagen2.src)
8349 nelberth 753
					}
8350 nelberth 754
				})
8349 nelberth 755
			}
8344 nelberth 756
		}else{
8360 nelberth 757
			$.fn.showError('LABEL_SUPPORTED_FORMATS');
5926 nelberth 758
		}
8346 nelberth 759
	})
10866 nelberth 760
	$(document).on("change", "#imagen_noticia_file", function(e){
761
		file = $(this)[0].files[0];
10867 nelberth 762
		e.preventDefault();
10866 nelberth 763
		$(this).css("background", "none");
10867 nelberth 764
		var archivo = file;
10869 nelberth 765
		var img=file;
10866 nelberth 766
		if(img.type =="image/jpeg"||img.type =="image/png"){
767
			$(".modificar").removeClass("animated");
768
			var render = new FileReader();
769
			render.readAsDataURL(img);
770
			render.onload = function(e){
771
				imagen2=new Image();
772
				imagen2.src=e.target.result;
773
 
774
				$(imagen2).ready(function(e){
10914 nelberth 775
					if(imagen2.width<320||imagen2.height<480){
10866 nelberth 776
						$.fn.showError('LABEL_MINIMUM_IMAGE_SIZE');
777
					}else{
778
						$(".volver").css("display","block")
779
						$(".a1").addClass("paso");
780
						$(".titulo_pasos").html("LABEL_STEP_2");
781
						editorNoticia(imagen2.src)
782
					}
783
				})
784
			}
785
		}else{
786
			$.fn.showError('LABEL_SUPPORTED_FORMATS');
10868 nelberth 787
		}
10866 nelberth 788
	})
4798 nelberth 789
	$(document).on("dragover", "body", function(e){
790
		e.preventDefault();
791
		e.stopPropagation();
792
	})
793
	$(document).on("drop", "body", function(e){
794
		e.preventDefault();
795
		e.stopPropagation();
796
	})
797
 
5741 nelberth 798
	var canvas='<div class="editorNoticia"><canvas id="editorNoticia">LABEL_NOT_SUPPORTED</canvas></div>';
4798 nelberth 799
	$(document).on("mouseover", ".editorNoticia", function(){
800
		$("body").css({"overflow": "hidden"});
5707 nelberth 801
		$(".cuadro_noticias, .fixed_noticia,.tituloEditor,.grid-padre").css("margin-right", "17px")
5146 nelberth 802
		$(".barra,.footer").css("padding-right","17px")
4798 nelberth 803
 
804
 
805
	})
806
	$(document).on("mouseover", "#editorNoticia", function(){
807
		if(recorte_listo){
808
			ocho=true;
809
		}
810
	})
811
	$(document).on("mouseout", "#editorNoticia", function(){
812
		if(recorte_listo){
813
			ocho=false;
814
			actualizar2()
815
		}
816
	})
817
	$(document).on("mouseout", ".editorNoticia",function(){
818
		$("body").css({"overflow": "auto"})
5707 nelberth 819
		$(".cuadro_noticias, .fixed_noticia,.tituloEditor,.grid-padre").css("margin-right", "0px")
4798 nelberth 820
		$(".barra,.footer").css("padding-right","0px")
821
 
822
	})
823
	$(document).on('mousewheel', ".editorNoticia",function(e){
824
		var ruedita = e.originalEvent.wheelDelta
825
		if(ruedita>0){
826
			scale = scale+(scale/10);
827
			$("#porciento_scale").html((scale*100).toFixed(2)+"%")
828
		}else{
829
			scale = scale-(scale/10);
830
			$("#porciento_scale").html((scale*100).toFixed(2)+"%")
831
		}
832
		$("#editorNoticia").css({"transform": "scale("+scale+")"});
833
	})
834
	$(document).on("click", ".as", function(e){
835
		e.preventDefault();
836
		 scale = $(this).data("scale");
837
		 $("#porciento_scale").html((scale*100).toFixed(2)+"%")
838
		 $("#editorNoticia").css({"transform": "scale("+scale+")"});
839
 
840
	})
841
	$(document).on("click", ".ps", function(e){
842
		e.preventDefault();
843
		$(".cantidades_scale").slideToggle(200).css("display", "block");
844
	})
5789 nelberth 845
	$(document).on("click", "#cerrar_filter_modal, .icon_filter", function(e){
846
		e.preventDefault();
5854 nelberth 847
		if(recorte_listo){
5789 nelberth 848
		$(".contenido_filter").slideToggle(200).css("display", "block");
5854 nelberth 849
		}
5789 nelberth 850
	})
5805 nelberth 851
	$(document).on("click", "#cerrar_text_modal, .icon_text", function(e){
852
		e.preventDefault();
5854 nelberth 853
		if(recorte_listo){
5855 nelberth 854
			$(".contenido_text").slideToggle(200).css("display", "block");
5854 nelberth 855
		}
5805 nelberth 856
	})
5865 nelberth 857
 
5816 nelberth 858
	$(document).on("click", "#cerrar_cut_modal, .icon_cut", function(e){
859
		e.preventDefault();
5861 nelberth 860
		if(cortar){
5854 nelberth 861
			$(".contenido_cut").slideToggle(200).css("display", "block");
5861 nelberth 862
		}
5854 nelberth 863
 
5816 nelberth 864
	})
4798 nelberth 865
	$(document).on("click", "#menos_scale", function(e){
866
		e.preventDefault();
867
		scale = scale-(scale/10);
868
		 $("#porciento_scale").html((scale*100).toFixed(2)+"%")
869
		 $("#editorNoticia").css({"transform": "scale("+scale+")"});
870
	})
871
 
872
	$(document).on("click", "#mas_scale", function(e){
873
		e.preventDefault();
874
		scale = scale+(scale/10);
875
		 $("#porciento_scale").html((scale*100).toFixed(2)+"%")
876
		 $("#editorNoticia").css({"transform": "scale("+scale+")"});
877
	})
10747 nelberth 878
	$(document).on('change', '#selectFiltro', function(e){
10770 nelberth 879
 
10747 nelberth 880
		data=$(this).val()
10786 nelberth 881
		if(data=="normal"){
882
			filter();
10788 nelberth 883
		}else{
884
			data=data.split(',');
10805 nelberth 885
			if(data[2]=='gris'){
10788 nelberth 886
				filtergris(data[0],data[1]);
10805 nelberth 887
			}else{
10788 nelberth 888
				filter(Number(data[0]),Number(data[1]),Number(data[2]),Number(data[3]),Number(data[4]),Number(data[5]));
889
			}
10770 nelberth 890
		}
891
 
10783 nelberth 892
 
10788 nelberth 893
 
10747 nelberth 894
	})
10764 nelberth 895
 
10789 nelberth 896
 
4798 nelberth 897
	var texto_listo=false,siete=false;
898
	var texto;
899
	$(document).on("keyup", "#texto_input", function(e){
900
		e.preventDefault();
901
		texto = $(this).val();
902
		if(texto_actualizar){
903
			siete=true;
904
		}
905
		if(texto!=""){
906
			texto_actualizar=true;
907
			actualizar2();
908
		}else{
909
			actualizar2();
910
		}
911
 
912
	})
913
	var color="#ffffff";
10734 nelberth 914
 
10943 nelberth 915
	$(document).on("change input", "#color", function(){
4798 nelberth 916
    	color=$(this).val();
917
    	seis=true;
918
    	actualizar2();
919
    })
920
    var size=48;
10858 nelberth 921
	$(document).on("keypress", "#font-size, #texto_input", function(e){
10857 nelberth 922
    	if(e.which == 13){
923
      		return false;
924
    	}
925
  	});
926
    $(document).on("keyup change", "#font-size", function(e){
10855 nelberth 927
		e.preventDefault();
4798 nelberth 928
    	size=$(this).val();
929
    	size = parseInt(size);
930
    	seis=true;
931
    	siete=true;
932
    	actualizar2();
933
    })
934
    var negritas=false, bold="";
935
    $(document).on("click", "#negritas", function(e){
936
    	e.preventDefault();
937
    	if(!negritas){
938
    		bold="bold";
939
    		$(this).addClass("fa");
940
    		seis=true;
941
    		siete=true;
942
    		actualizar2();
943
    		negritas=true;
944
    	}else{
945
    		bold="";
946
    		$(this).removeClass("fa");
947
    		seis=true;
948
    		siete=true;
949
    		actualizar2();
950
    		negritas=false;
951
    	}
952
    })
953
    var italic=false, ita="";
954
     $(document).on("click", "#italic", function(e){
955
    	e.preventDefault();
956
    	if(!italic){
957
    		ita="italic";
958
    		$(this).addClass("fa");
959
    		seis=true;
960
    		siete=true;
961
    		actualizar2();
962
    		italic=true;
963
    	}else{
964
    		ita="";
965
    		$(this).removeClass("fa");
966
    		seis=true;
967
    		siete=true;
968
    		actualizar2();
969
    		italic=false;
970
    	}
971
    })
972
     var fontfamily="Arial";
10616 nelberth 973
     $(document).on("change", "#selectFuente", function(e){
4798 nelberth 974
    	e.preventDefault();
10618 nelberth 975
    	fontfamily= $(this).val();
4798 nelberth 976
    	seis=true;
977
    	siete=true;
978
    	actualizar2();
979
 
5149 nelberth 980
    })
4798 nelberth 981
     var shadow = true, nueve=true;
5149 nelberth 982
     $(document).on("click","#shadow", function(e){
4798 nelberth 983
     	e.preventDefault();
984
     	if(shadow){
985
     		$(this).removeClass("fa");
986
     		seis=true;
987
     		nueve=false;
988
     		actualizar2();
989
     		shadow=false;
990
     	}else{
991
     		$(this).addClass("fa");
992
     		seis=true;
993
     		nueve=true;
994
     		actualizar2();
995
     		shadow=true;
996
     	}
997
 
5149 nelberth 998
     })
4798 nelberth 999
     var rectangulo=false, diez=false, colorrect="#000000";
5149 nelberth 1000
     $(document).on("click", "#rectangulo", function(e){
4798 nelberth 1001
     	e.preventDefault();
1002
     	if(!rectangulo){
1003
     		$(this).addClass("fa");
10691 nelberth 1004
			$('.color_fondo_cuadro').css('display','flex')
4798 nelberth 1005
     		diez=true;
1006
     		actualizar2();
1007
     		rectangulo=true;
1008
     	}else{
1009
     		$(this).removeClass("fa");
10689 nelberth 1010
			 $('.color_fondo_cuadro').css('display','none')
4798 nelberth 1011
     		diez=false;
1012
     		actualizar2();
1013
     		rectangulo=false;
1014
     	}
1015
 
5149 nelberth 1016
     })
4798 nelberth 1017
     var r=0,g=0,b=0;
10943 nelberth 1018
    $(document).on("change input", "#colorrect", function(){
4798 nelberth 1019
    	colorrect=$(this).val();
8315 nelberth 1020
    	r=parseInt(colorrect.slice(1,3),16);
1021
    	g=parseInt(colorrect.slice(3,5),16);
1022
    	b=parseInt(colorrect.slice(5,7),16);
4798 nelberth 1023
    	seis=true;
1024
    	actualizar2();
1025
    })
1026
    var a=1;
5149 nelberth 1027
 
10942 nelberth 1028
    $(document).on("mousemove change ", "#opacidad", function(){
4798 nelberth 1029
    	a=$(this).val();
1030
    	a=a/100;
1031
    	seis=true;
1032
    	actualizar2();
5149 nelberth 1033
    })
4798 nelberth 1034
	var imaNoti = new Image();
1035
	function filter(brillo=1, contraste=1, rojo=1, verde=1, azul=1, valor=1){
5073 nelberth 1036
		cuatro=false;
5414 nelberth 1037
		restaurar(brillo, contraste);
4798 nelberth 1038
		datos=imagenOriginal.data;
10783 nelberth 1039
		if(valor==2){
4798 nelberth 1040
			for (var i =  0; i <datos.length; i+=4) {
1041
				datos[i]=datos[i]+rojo;
1042
				datos[i+1]=datos[i+1]+verde;
1043
				datos[i+2]=datos[i+2]+azul;
1044
			}
1045
		}else{
1046
			for (var i =  0; i <datos.length; i+=4) {
1047
				datos[i]=datos[i]*rojo;
1048
				datos[i+1]=datos[i+1]*verde;
1049
				datos[i+2]=datos[i+2]*azul
1050
			}
1051
		}
1052
		editor.putImageData(imagenOriginal,0,0)
1053
		var imagenNoticia = elemento.toDataURL("image/jpeg", 1.0);
1054
	    imaNoti.src = imagenNoticia;
1055
		actualizar2();
1056
	}
1057
	function filtergris(brillo=1, contraste=1){
1058
		cuatro=false;
1059
		restaurar(brillo, contraste);
1060
		datos=imagenOriginal.data;
1061
		var auxiliar;
1062
		for (var i =  0; i <datos.length; i+=4) {
8315 nelberth 1063
			auxiliar = 0.34 * datos[i] + 0.5 *datos[i+1] + 0.16 * datos[i+2];
4798 nelberth 1064
			datos[i]=auxiliar;
1065
			datos[i+1]=auxiliar;
1066
			datos[i+2]=auxiliar;
1067
		}
5429 nelberth 1068
 
4798 nelberth 1069
		editor.putImageData(imagenOriginal,0,0)
1070
		var imagenNoticia = elemento.toDataURL("image/jpeg", 1.0);
1071
	    imaNoti.src = imagenNoticia;
1072
		actualizar2();
1073
	}
1074
	function restaurar(brillo = 1, contraste=1){
1075
		editor.filter = "none"
1076
		editor.filter = 'contrast('+contraste+') brightness('+brillo+') saturate(1) sepia(0)';
5429 nelberth 1077
		editor.fillStyle="rgba(255,255,255,1)"
1078
		editor.fillRect(0,0,ancho,alto);
5458 nelberth 1079
		editor.fillStyle=""+color+"";
5414 nelberth 1080
		var pxf=0,pyf=0;
1081
			if(xf>=(yf/recorte)){
5459 nelberth 1082
				pxf=xf/ancho;
1083
				pyf=yf/pxf;
1084
				py=(alto/2)-(pyf/2);
1085
				editor.drawImage(imagen,x,y,xf,yf,0,py,ancho,pyf);
1086
			}else{
1087
				pyf=yf/alto;
5461 nelberth 1088
				pxf=xf/pyf;
5459 nelberth 1089
				px=(ancho/2)-(pxf/2);
1090
				editor.drawImage(imagen,x,y,xf,yf,px,0,pxf,alto);
1091
			}
4798 nelberth 1092
		imagenOriginal = editor.getImageData(0,0,ancho,alto)
1093
	}
1094
	var ocho=false;
1095
	function actualizar2(){
1096
		if(recorte_listo){
1097
		if(cuatro){
1098
			imagenOriginal = editor.getImageData(0,0,ancho,alto)
1099
			var imagenNoticia = elemento.toDataURL("image/jpeg", 1.0);
1100
	    	imaNoti.src = imagenNoticia;
1101
	    	cuatro=false;
1102
		}
1103
		editor.filter = "none"
5428 nelberth 1104
		$(imaNoti).ready(function(e){
5433 nelberth 1105
			noticia.drawImage(imaNoti,0,0,320,480);
5394 nelberth 1106
			editor.drawImage(imaNoti,0,0,ancho,alto)
4798 nelberth 1107
			if(texto_actualizar){
1108
				if(texto!=""){
1109
					if(seis){
1110
						ancho_imaNoti = imaNoti.width;
5439 nelberth 1111
 
1112
						scale_noticia = -(((ancho_imaNoti-320)/ancho_imaNoti)-1);
4798 nelberth 1113
						editor.fillStyle=""+color+"";
1114
						editor.strokeStyle="rgb(255,255,255)";
1115
						if(nueve){
1116
							editor.shadowColor="rgba(0,0,0,.5)";
1117
							editor.shadowOffsetX=6;
1118
							editor.shadowOffsetY=6;
1119
							editor.shadowBlur=6;
1120
							noticia.shadowColor="rgba(0,0,0,.5)";
1121
							noticia.shadowOffsetX=6*scale_noticia;
1122
							noticia.shadowOffsetY=6*scale_noticia;
1123
							noticia.shadowBlur=6*scale_noticia;
1124
						}else{
1125
							editor.shadowColor="rgba(0,0,0,0)";
1126
							noticia.shadowColor="rgba(0,0,0,0)";
1127
						}
1128
						editor.font=""+ita+" "+bold+" "+size+"px "+fontfamily+"";
1129
						editor.textAlign="start";
1130
						editor.textBaseline="top";
1131
 
1132
						var sizeNoticia = size*scale_noticia;
1133
						noticia.fillStyle=""+color+"";
1134
						noticia.font=""+ita+" "+bold+" "+sizeNoticia+"px "+fontfamily+"";
1135
						noticia.textAlign="start";
1136
						noticia.textBaseline="top";
1137
						seis=false;
1138
					}
1139
					if(siete){
1140
						dimencionesTexto = editor.measureText(texto);
1141
						txf=dimencionesTexto.width+20;
1142
						tyf= (20+size);
1143
						siete=false;
1144
					}
5443 nelberth 1145
					if(cinco){
4798 nelberth 1146
						dimencionesTexto = editor.measureText(texto);
5441 nelberth 1147
						if(xf>=(yf/recorte)){
1148
							tx=(xf/2)-(dimencionesTexto.width/2);
1149
							ty=(xf*recorte/2)-(size/2);
1150
						}else{
1151
							tx=(yf/recorte/2)-(dimencionesTexto.width/2);
1152
							ty=(yf/2)-(size/2);
1153
						}
1154
 
4798 nelberth 1155
						txf=dimencionesTexto.width+20;
1156
						tyf= size+20;
1157
						cinco=false;
5443 nelberth 1158
					}
4798 nelberth 1159
					if(diez){
1160
						editor.fillStyle="rgba("+r+","+g+","+b+","+a+")";
1161
						noticia.fillStyle="rgba("+r+","+g+","+b+","+a+")";
1162
						editor.fillRect(tx-10,ty-10,txf,tyf);
5387 nelberth 1163
						noticia.fillRect(((tx-10)*scale_noticia),((ty-10)*scale_noticia),txf*scale_noticia,tyf*scale_noticia);
4798 nelberth 1164
						editor.fillStyle=""+color+"";
1165
						noticia.fillStyle=""+color+"";
1166
 
1167
					}
1168
					editor.fillText(texto,tx,ty);
5440 nelberth 1169
					noticia.fillText(texto,(tx*scale_noticia),ty*scale_noticia);
4798 nelberth 1170
					if(ocho){
1171
						editor.strokeRect(tx-10,ty-10,txf,tyf)
1172
						editor.arc(tx+txf,ty+tyf,10,0,Math.PI*2,false);
1173
						editor.fill();
1174
						editor.beginPath();
1175
					}
1176
					texto_listo=true;
1177
				}
1178
			}
1179
		})
1180
 
1181
	}
1182
	}
1183
	function actualizar(){
1184
			$(imagen).ready(function(e){
1185
				if(uno){
1186
					ancho=imagen.width, alto = imagen.height;
5388 nelberth 1187
					elemento.width = ancho;
1188
					elemento.height = alto;
4798 nelberth 1189
					$(".scale").css("display","flex");
1190
					if(ancho<=alto){
1191
					 scale = -(((alto-450)/alto)-1);
8329 nelberth 1192
 
8339 nelberth 1193
 
8329 nelberth 1194
					}else{
1195
					 scale = -(((ancho-500)/ancho)-1);
8339 nelberth 1196
 
4798 nelberth 1197
					}
10907 nelberth 1198
					scale=scale*0.80;
8578 nelberth 1199
					if(edit){
8577 nelberth 1200
						if((ancho*recorte)<=alto){
1201
							xf=ancho*.70;
1202
							yf=xf*recorte;
1203
						}else{
1204
							yf=alto*.70;
1205
							xf=yf/recorte;
1206
						}
1207
					}
10597 nelberth 1208
 
8343 nelberth 1209
					cuadro_dimencion=Math.round(12/scale);
8328 nelberth 1210
 
8308 nelberth 1211
					if(xf<50||yf<50){
1212
						xf=50;
1213
						yf=xf*recorte;
1214
					}
8304 nelberth 1215
					console.log(xf+' '+yf)
8301 nelberth 1216
					mitadX=ancho/2;
1217
					mitadY=alto/2;
1218
					x=mitadX-xf/2;
1219
					y=mitadY-yf/2;
1220
 
4798 nelberth 1221
					$("#porciento_scale").html((scale*100).toFixed(2)+"%")
1222
					$("#ancho").html(ancho+"px");
1223
					$("#alto").html(alto+"px");
1224
					uno=false;
1225
				}
1226
				if(dos){
5402 nelberth 1227
 
1228
					if(xf>=(yf/recorte)){
5405 nelberth 1229
						alto=xf*recorte;
5404 nelberth 1230
						ancho=xf;
5402 nelberth 1231
					}else{
5435 nelberth 1232
						ancho=yf/recorte;
5404 nelberth 1233
						alto=yf;
1234
 
5402 nelberth 1235
					}
1236
					elemento.width = ancho;
1237
					elemento.height = alto;
5451 nelberth 1238
					if(xf<=yf){
5411 nelberth 1239
					 scale = -(((yf-450)/yf)-1);
5433 nelberth 1240
 
4798 nelberth 1241
					}else{
5411 nelberth 1242
					 scale = -(((xf-500)/xf)-1);
4798 nelberth 1243
					}
1244
 
1245
					$("#porciento_scale").html((scale*100).toFixed(2)+"%")
5411 nelberth 1246
					$("#ancho").html(Math.round(xf)+"px");
1247
					$("#alto").html(Math.round(yf)+"px");
4798 nelberth 1248
					dos=false;
1249
				}
5235 nelberth 1250
 
5408 nelberth 1251
					var pxf=0,pyf=0;
1252
					noticia.fillStyle="rgba(255,255,255,1)"
1253
					noticia.fillRect(0,0,320,480);
1254
				if(xf>=(yf/recorte)){
1255
					pxf=xf/320;
1256
					pyf=yf/pxf;
1257
					py=(480/2)-(pyf/2);
1258
					noticia.drawImage(imagen,x,y,xf,yf,0,py,320,pyf);
5409 nelberth 1259
				}else{
5408 nelberth 1260
					pyf=yf/480;
1261
					pxf=xf/pyf;
1262
					px=(320/2)-(pxf/2);
1263
					noticia.drawImage(imagen,x,y,xf,yf,px,0,pxf,480);
5409 nelberth 1264
				}
5407 nelberth 1265
 
10907 nelberth 1266
				$("#editorNoticia").css({"transform": "scale("+scale+")"});
4798 nelberth 1267
				if(!recorte_listo){
1268
					editor.drawImage(imagen,0,0,ancho,alto);
8320 nelberth 1269
					editor.fillStyle="rgba(0,0,0,.2)"
4798 nelberth 1270
					editor.fillRect(0,0,ancho,alto);
8320 nelberth 1271
					editor.fillStyle="rgba(255,255,255,.2)"
4798 nelberth 1272
					editor.fillRect(x,y,xf,yf);
8324 nelberth 1273
					editor.fillStyle="rgba(255,255,255,0.8)"
8315 nelberth 1274
					editor.fillRect(x,y,cuadro_dimencion,cuadro_dimencion);
1275
					editor.fillRect((x+xf)-cuadro_dimencion,y,cuadro_dimencion,cuadro_dimencion);
1276
					editor.fillRect(x,y+yf-cuadro_dimencion,cuadro_dimencion,cuadro_dimencion);
1277
					editor.fillRect(x+xf-cuadro_dimencion,yf+y-cuadro_dimencion,cuadro_dimencion,cuadro_dimencion);
4798 nelberth 1278
					esta=true;
1279
				}else{
5406 nelberth 1280
					var pxf=0,pyf=0;
5427 nelberth 1281
 
5428 nelberth 1282
					editor.fillStyle="rgba(255,255,255,1)"
1283
					editor.fillRect(0,0,ancho,alto);
5406 nelberth 1284
					if(xf>=(yf/recorte)){
1285
						pxf=xf/ancho;
1286
						pyf=yf/pxf;
1287
						py=(alto/2)-(pyf/2);
1288
						editor.drawImage(imagen,x,y,xf,yf,0,py,ancho,pyf);
1289
					}else{
1290
						pyf=yf/alto;
1291
						pxf=xf/pyf;
1292
						px=(ancho/2)-(pxf/2);
1293
						editor.drawImage(imagen,x,y,xf,yf,px,0,pxf,alto);
4798 nelberth 1294
				}
5406 nelberth 1295
 
1296
				}
4798 nelberth 1297
			})
1298
		}
1299
	var imagenOriginal;
8356 nelberth 1300
	var x,y,xf=320,yf =480, elemento,editor,centro, total,scale,dimencionesTexto,ancho_imaNoti,
4798 nelberth 1301
	recorte_listo=false,alto,ancho,tx,ty,txf,tyf,cuatro=true,texto_actualizar=false,cinco=true,seis=true,cuatro;
5865 nelberth 1302
	var  mitadY,mitadX, uno=true,dos=false, recorte=480/320, imagen_noticias, scale_noticia, tres=true,rotar=false, cortar=false;;
8317 nelberth 1303
	var translateX, cuadro_dimencion;
4798 nelberth 1304
 
5822 nelberth 1305
	$(document).on("click", ".recortar10", function(e){
10984 nelberth 1306
		if(recorte_listo){
10982 nelberth 1307
			if(blockCelda){
10984 nelberth 1308
			$('.blockCelda').html('<span class="fa fa-unlock"></span>')
10982 nelberth 1309
 
10983 nelberth 1310
			}else{
10984 nelberth 1311
			$('.blockCelda').html('<span class="fa fa-lock"></span>')
10983 nelberth 1312
			}
10982 nelberth 1313
		}
4798 nelberth 1314
		e.preventDefault();
1315
		recorte_listo=false;
1316
		uno=true;
10969 nelberth 1317
		console.log(blockCelda)
10980 nelberth 1318
 
4798 nelberth 1319
		$(".fondo_oscuro").css("display","block");
1320
		$("#boton_recortar").addClass("recortar").text("Recortar").removeClass("info_noticia");
1321
		$("#boton_recortar3").addClass("recortar").text("Recortar").removeClass("info_noticia3");
5855 nelberth 1322
		$(".contenido_text").css("display", "none");
1323
		$(".contenido_filter").css("display", "none");
5822 nelberth 1324
		$(".recortar10").addClass("recortar");
4798 nelberth 1325
		$(".canvas").addClass("recortar")
1326
		$(".oa").removeClass("oa");
1327
		$("#normal").addClass("oa");
1328
		$(".b1").removeClass("paso");
5741 nelberth 1329
		$(".titulo_pasos").html("LABEL_STEP_2");
4798 nelberth 1330
		window.clearInterval(actualizar2);
10968 nelberth 1331
 
4798 nelberth 1332
		actualizar();
1333
 
1334
	})
5789 nelberth 1335
 
1336
 
10803 nelberth 1337
	blockCelda=false;
10975 nelberth 1338
	$(document).on("click", ".blockCelda", function(e){
5488 nelberth 1339
		e.preventDefault();
10964 nelberth 1340
		if(!recorte_listo){
10963 nelberth 1341
 
1342
 
5490 nelberth 1343
		if(blockCelda){
1344
			$(this).html('<span class="fa fa-unlock"></span>')
5495 nelberth 1345
 
5490 nelberth 1346
			blockCelda=false;
1347
		}else{
1348
			$(this).html('<span class="fa fa-lock"></span>')
1349
			blockCelda=true;
1350
		}
10963 nelberth 1351
 
5495 nelberth 1352
		t4=true;
10963 nelberth 1353
		}
5488 nelberth 1354
	})
4798 nelberth 1355
	var imagen
1356
	function editorNoticia(img){
5865 nelberth 1357
		 cortar=true;
4798 nelberth 1358
		imagen= new Image();
1359
		$(".canvas").html(canvas);
1360
		elemento = document.getElementById("editorNoticia");
1361
		editor = elemento.getContext("2d");
1362
		elemento2 = document.getElementById("imagen_noticias");
1363
		noticia = elemento2.getContext("2d");
1364
 
1365
		$(document).on("click", ".boton_marino.recortar",function(e){
1366
			e.preventDefault();
1367
			recorte_listo=true;
1368
			$(".fondo_oscuro").css("display","none");
5741 nelberth 1369
			$("#boton_recortar").removeClass("recortar").text("LABEL_SEND").addClass("info_noticia").attr('type','submit');
5822 nelberth 1370
			$(".recortar10").removeClass("recortar");
4798 nelberth 1371
			$(".canvas").removeClass("recortar");
1372
			$(".b1").addClass("paso");
5741 nelberth 1373
			$(".titulo_pasos").html("LABEL_STEP_3");
10973 nelberth 1374
			console.log('si')
10975 nelberth 1375
			$('.blockCelda').html('<span class="icon-ungroup fa fa-scissors"></span>')
4798 nelberth 1376
			if(texto!=""){
1377
				seis=true;
1378
				siete=true;
1379
			}
10966 nelberth 1380
 
1381
 
10968 nelberth 1382
 
4798 nelberth 1383
			cinco=true;
1384
			dos=true;
1385
			cuatro=true;
1386
			actualizar();
1387
		})
1388
 
1389
		var cli = false, t1= false, t2=false,t3=false,t4=false,tcli=false;
1390
		var mouse =[];
1391
 
1392
 
1393
		function raton(elemento, e){
1394
			return {
1395
				x:((e.pageX - elemento.offsetLeft - ((ancho/2)-((ancho*scale)/2)))/scale),
1396
				y:((e.pageY - elemento.offsetTop - ((alto/2)-((alto*scale)/2)))/scale)
1397
			}
1398
		}
1399
 
1400
		imagen.src=img;
5822 nelberth 1401
		$(".recortar10").addClass("recortar");
5741 nelberth 1402
		$("#boton_recortar").removeClass("boton_normal").addClass("recortar boton_marino").text("LABEL_CUT")
4798 nelberth 1403
		actualizar();
1404
 
1405
		$(elemento).mousemove(function(e){
1406
			mouse = raton(this, e);
10535 nelberth 1407
 
4798 nelberth 1408
			if(!recorte_listo){
8335 nelberth 1409
				if(x<mouse.x &&(xf+x)>mouse.x && y<mouse.y && (y+yf)>mouse.y){
1410
					if((xf+x-cuadro_dimencion)<mouse.x &&(xf+x)>mouse.x && (y+yf-cuadro_dimencion)<mouse.y && (y+yf)>mouse.y){
1411
			 			$(elemento).css("cursor","nw-resize");
1412
			 		}else if((xf+x-cuadro_dimencion)<mouse.x &&(xf+x)>mouse.x && y<mouse.y && (y+cuadro_dimencion)>mouse.y){
1413
			 			$(elemento).css("cursor","ne-resize");
1414
			 		}else if(x<mouse.x &&(cuadro_dimencion+x)>mouse.x && y<mouse.y && (y+cuadro_dimencion)>mouse.y){
1415
			 			$(elemento).css("cursor","se-resize");
1416
			 		}else if(x<mouse.x &&(cuadro_dimencion+x)>mouse.x && (y+yf-cuadro_dimencion)<mouse.y &&(y+yf)>mouse.y){
1417
			 			$(elemento).css("cursor","sw-resize");
1418
			 		}else{
1419
						$(elemento).css("cursor","move");
1420
					}
4798 nelberth 1421
			 	}else{
1422
			 		$(elemento).css("cursor","default");
1423
			 	}
1424
			}else if(texto_listo){
1425
				if(tx-10<mouse.x && tx-10+txf>mouse.x && ty-10<mouse.y && ty-10+tyf>mouse.y){
1426
			 		$(elemento).css("cursor","move");
1427
			 	}else if((txf+tx-10)<mouse.x &&(txf+tx-10+20)>mouse.x && (ty-10+tyf)<mouse.y && (ty-10+tyf+20)>mouse.y){
1428
			 		$(elemento).css("cursor","pointer");
1429
			 	}else{
1430
			 		$(elemento).css("cursor","default");
1431
			 	}
1432
			}
1433
			else{
1434
				$(elemento).css("cursor","default");
1435
			}
1436
		})
1437
		$(elemento).mousedown(function(e){
1438
			mouse = raton(this, e);
1439
			if(!recorte_listo){
8334 nelberth 1440
				if(x<mouse.x &&(xf+x)>mouse.x && y<mouse.y && (y+yf)>mouse.y){
8333 nelberth 1441
 
1442
					if((xf+x-cuadro_dimencion)<mouse.x &&(xf+x)>mouse.x && (y+yf-cuadro_dimencion)<mouse.y && (y+yf)>mouse.y){
1443
						t4 = true;
1444
					}else if((xf+x-cuadro_dimencion)<mouse.x &&(xf+x)>mouse.x && y<mouse.y && (y+cuadro_dimencion)>mouse.y){
1445
						t3 = true;
1446
					}else if(x<mouse.x &&(cuadro_dimencion+x)>mouse.x && y<mouse.y && (y+cuadro_dimencion)>mouse.y){
1447
						t1 = true;
1448
					}else if(x<mouse.x &&(cuadro_dimencion+x)>mouse.x && (y+yf-cuadro_dimencion)<mouse.y &&(y+yf)>mouse.y){
1449
						t2 = true;
1450
					}else{
1451
						cli = true;
1452
					}
4798 nelberth 1453
			 	}
8333 nelberth 1454
 
4798 nelberth 1455
			}else if(texto_listo){
1456
				if(tx-10<mouse.x && tx-10+txf>mouse.x && ty-10<mouse.y && ty-10+tyf>mouse.y){
1457
			 		tcli=true;
1458
			 	}else if((txf+tx-10)<mouse.x &&(txf+tx-10+20)>mouse.x && (ty-10+tyf)<mouse.y && (ty-10+tyf+20)>mouse.y){
1459
			 		rotar=true;
1460
			 	}
1461
			}
1462
 
1463
		 })
1464
 
10515 nelberth 1465
		 $('.editorNoticia').mousemove(function(e){
4798 nelberth 1466
		 	mouse = raton(this, e);
10594 nelberth 1467
			//console.log("raton x: "+mouse.x+ " raton Y: " +mouse.y+ " xf: "+xf+" yf: "+yf)
10597 nelberth 1468
			//console.log('t1: '+t1+' t2: '+t2+' t3: '+t3+' t4: '+t4)
4798 nelberth 1469
		 	if(!recorte_listo){
1470
			 	if(cli){
1471
			 		if((mouse.y-(yf/2))>=0&&(mouse.y+(yf/2))<=alto){
1472
				 		y = (mouse.y-(yf/2));
1473
			 		}else{
1474
			 			if((mouse.y-(yf/2))<0){
1475
			 				y=0;
1476
			 			}
1477
			 			if((mouse.y+(yf/2))>alto){
1478
			 				y=alto-yf;
1479
			 			}
1480
			 		}
1481
			 		if((mouse.x-(xf/2))>=0&&(mouse.x+(xf/2))<=ancho){
1482
			 			x = (mouse.x-(xf/2));
1483
			 		}else{
1484
			 			if((mouse.x-(xf/2))<0){
1485
			 				x=0;
1486
			 			}
1487
			 			if((mouse.x+(xf/2))>ancho){
1488
			 				x=(ancho)-xf;
1489
			 			}
1490
			 		}
1491
			 	}
5492 nelberth 1492
				if(blockCelda){
1493
			 	if(t4){
10494 nelberth 1494
					cal1=mouse.y-y;
1495
			 		cal2=cal1/recorte;
10571 nelberth 1496
					cal3=x+cal2;
10564 nelberth 1497
					if(cal2>50){
10571 nelberth 1498
						if(cal3<=ancho&&mouse.y<=alto){
10568 nelberth 1499
							yf=cal1;
1500
				 			xf=cal2;
10572 nelberth 1501
						}else if(cal3<=ancho&&mouse.y>alto){
1502
							yf=alto-y;
1503
							xf=yf/recorte
10571 nelberth 1504
						}else if(cal3>=ancho&&mouse.y<=alto){
10570 nelberth 1505
							xf=ancho-x;
10571 nelberth 1506
							yf=xf*recorte;
10568 nelberth 1507
						}
10489 nelberth 1508
				 	}
4798 nelberth 1509
			 	}
1510
			 	if(t3){
10495 nelberth 1511
					cal1=yf+(y-mouse.y);
1512
			 		cal2=cal1/recorte;
10572 nelberth 1513
					cal3=x+cal2;
10579 nelberth 1514
					if(cal2>50){
10572 nelberth 1515
						if(cal3<=ancho&&mouse.y>=0){
1516
							yf=cal1;
1517
				 			xf=cal2;
1518
							y=mouse.y;
1519
						}else if(cal3<=ancho&&mouse.y<0){
1520
							yf=yf+y;
1521
							xf=yf/recorte
1522
							y=0;
10578 nelberth 1523
						}else if(cal3>=ancho){
10575 nelberth 1524
							xf=ancho-x;
10578 nelberth 1525
							y=y+(yf-xf*recorte);
10580 nelberth 1526
							yf=xf*recorte;
10572 nelberth 1527
						}
1528
 
10496 nelberth 1529
				 	}
1530
 
4798 nelberth 1531
			 	}
1532
			 	if(t2){
10580 nelberth 1533
 
10498 nelberth 1534
					cal1=mouse.y-y;
1535
			 		cal2=cal1/recorte;
10580 nelberth 1536
					cal3=x+(yf-cal1)/recorte;cal2;
1537
					if(cal2>50){
1538
						if(cal3>=0&&mouse.y<=alto){
1539
							x=cal3;
1540
							yf=cal1;
1541
				 			xf=cal2;
10593 nelberth 1542
						}else if(mouse.y>alto||cal3<0&&mouse.y>alto){
10580 nelberth 1543
							yf=alto-y;
10583 nelberth 1544
							x=x+(xf-yf/recorte);
10580 nelberth 1545
							xf=yf/recorte
10593 nelberth 1546
						}else if(cal3<0){
10584 nelberth 1547
							xf=xf+x;
1548
							yf=xf*recorte;
1549
							x=0;
10580 nelberth 1550
						}
10586 nelberth 1551
				 	}
10499 nelberth 1552
 
5215 nelberth 1553
			 	}
1554
			 	if(t1){
10506 nelberth 1555
					cal0=y-mouse.y;
1556
					cal1=yf+cal0;
10500 nelberth 1557
			 		cal2=cal1/recorte;
10506 nelberth 1558
					cal3=x-cal0/recorte;
10586 nelberth 1559
					if(cal2>50){
1560
						if(cal3>=0&&mouse.y>=0){
1561
							yf=cal1;
1562
					 		xf=cal2;
1563
					 		x=cal3;
1564
					 		y=mouse.y;
10593 nelberth 1565
						}else if(mouse.y<0||cal3<0&&mouse.y<0){
10590 nelberth 1566
							yf=yf+y;
1567
							x=x+(xf-yf/recorte);
10586 nelberth 1568
							xf=yf/recorte
10590 nelberth 1569
							y=0;
10593 nelberth 1570
						}else if(cal3<0){
10589 nelberth 1571
							xf=xf+x;
10588 nelberth 1572
							y=y+(yf-xf*recorte);
10586 nelberth 1573
							yf=xf*recorte;
1574
							x=0;
1575
						}
1576
				 	}
1577
 
10504 nelberth 1578
				}
5492 nelberth 1579
				}else{
10586 nelberth 1580
				if(t4){
10537 nelberth 1581
 
10541 nelberth 1582
					cal1=mouse.y-y;
1583
					cal2=mouse.x-x;
1584
					if(cal1>50){
1585
						yf=mouse.y<=alto?cal1:alto-y;
1586
				 	}
1587
					if(cal2>50){
1588
						xf=mouse.x<=ancho?cal2:ancho-x;
1589
					}
5215 nelberth 1590
			 	}
10543 nelberth 1591
 
5215 nelberth 1592
			 	if(t3){
10542 nelberth 1593
					cal1=yf-(mouse.y-y);
1594
					cal2=mouse.x-x;
1595
					if(cal1>50){
10553 nelberth 1596
 
10551 nelberth 1597
						if(mouse.y>=0){
1598
							yf=cal1;
1599
							y=mouse.y;
1600
						}else{
10552 nelberth 1601
							yf=yf+y;
10551 nelberth 1602
							y=0;
1603
						}
10542 nelberth 1604
				 	}
1605
					if(cal2>50){
10547 nelberth 1606
						xf=mouse.x<=ancho?cal2:ancho-x;
10542 nelberth 1607
					}
10543 nelberth 1608
			 	}
5332 nelberth 1609
				/* Izquierda abajo */
5215 nelberth 1610
			 	if(t2){
10555 nelberth 1611
					cal1=mouse.y-y;
1612
					cal2=xf-(mouse.x-x);
1613
					if(cal1>50){
1614
						yf=yf=mouse.y<=alto?cal1:alto-y;
1615
					}
1616
					if(cal2>50){
10556 nelberth 1617
						if(mouse.x>=0){
10555 nelberth 1618
							xf=cal2;
10559 nelberth 1619
							x=mouse.x;
10555 nelberth 1620
						}else{
1621
							xf=xf+x;
1622
							x=0;
1623
						}
1624
					}
4798 nelberth 1625
			 	}
5332 nelberth 1626
				/* izquierda arriba */
4798 nelberth 1627
			 	if(t1){
10560 nelberth 1628
 
1629
					cal1=yf-(mouse.y-y);
1630
					cal2=xf-(mouse.x-x);
1631
					if(cal1>50){
1632
 
1633
						if(mouse.y>=0){
1634
							yf=cal1;
1635
							y=mouse.y;
1636
						}else{
1637
							yf=yf+y;
1638
							y=0;
1639
						}
1640
				 	}
1641
					if(cal2>50){
1642
						if(mouse.x>=0){
1643
							xf=cal2;
1644
							x=mouse.x;
1645
						}else{
1646
							xf=xf+x;
1647
							x=0;
1648
						}
1649
					}
10562 nelberth 1650
 
4798 nelberth 1651
			 	}
5492 nelberth 1652
			}
4798 nelberth 1653
 
1654
		 	actualizar();
1655
		 	}else if(texto_listo){
1656
		 		if(tcli){
1657
		 			tx=mouse.x-(txf/2)
1658
		 			ty=mouse.y-(tyf/2)
1659
		 		}else if(rotar){
1660
 
1661
		 		}
1662
 
1663
		 		actualizar2();
1664
		 	}
1665
		 })
10446 nelberth 1666
		 $('body').mouseup(function(e){
10599 nelberth 1667
			console.log('levanto el mouse')
4798 nelberth 1668
		 	if(!recorte_listo){
1669
			 	cli=false;
1670
			 	t1=false;
1671
			 	t2=false;
1672
			 	t3=false;
1673
			 	t4=false;
1674
		 	}else if (texto_listo) {
1675
		 		tcli=false;
1676
		 	}
1677
		 })
1678
 
5129 nelberth 1679
 
4798 nelberth 1680
	}
5500 nelberth 1681
	/* Titulo */
5501 nelberth 1682
 
6073 nelberth 1683
var titulo_noticia, censor_titulo = true, numero_titulo=0;
5500 nelberth 1684
	$(document).on("keyup change", "#name", function(e){
5501 nelberth 1685
	console.log(numero_titulo)
5500 nelberth 1686
	titulo_noticia = $(this).val();
1687
	titulo_elemento= $(".titulo_topico");
1688
	if(titulo_noticia!=""){
5505 nelberth 1689
		if(censor_titulo){
5500 nelberth 1690
			titulo_elemento.html(titulo_noticia);
1691
			if(titulo_elemento.height()>38){
5508 nelberth 1692
				var titulo_noticia2 = "";
5500 nelberth 1693
				for(var i =0; i <titulo_noticia.length;i++){
1694
					titulo_noticia2 = titulo_noticia2 + titulo_noticia.split("")[i];
1695
					titulo_elemento.html(titulo_noticia2);
1696
					if(titulo_elemento.height()>38){
1697
						titulo_noticia2 = titulo_noticia2.slice(0,-5) + "...";
1698
						titulo_elemento.html(titulo_noticia2);
1699
						numero_titulo = titulo_noticia2.length;
1700
						censor_titulo=false;
1701
						break;
1702
					}
4798 nelberth 1703
 
5500 nelberth 1704
				}
1705
			}else{
1706
				numero_titulo=0;
1707
			}
1708
		}else{
1709
			if(numero_titulo+1>=titulo_noticia.length){
1710
				titulo_elemento.html(titulo_noticia);
1711
				censor_titulo=true;
1712
			}
5505 nelberth 1713
		}
5500 nelberth 1714
	}else{
5741 nelberth 1715
		titulo_elemento.html("LABEL_TITLE_TOPIC");
5500 nelberth 1716
		censor_titulo = true;
1717
	}
1718
})
1 www 1719
    });
1720
JS;
1721
$this->inlineScript()->captureEnd();
1722
?>
1723
 
1724
 
1725
 
1726
<!-- Content Header (Page header) -->
1727
<section class="content-header">
1728
	<div class="container-fluid">
1729
    	<div class="row mb-2">
1730
        	<div class="col-sm-12">
1731
            	<h1>LABEL_TOPICS</h1>
1732
			</div>
1733
		</div>
1734
	</div><!-- /.container-fluid -->
1735
</section>
1736
 
4693 nelberth 1737
<section class="content" id='content1'>
1 www 1738
	<div class="container-fluid">
1739
    	<div class="row">
1740
        	<div class="col-12">
1741
				<div class="card">
1742
					<div class="card-body">
20 steven 1743
        	    		<table id="gridTable" class="table   table-hover">
1 www 1744
                      		<thead>
1745
        						<tr>
1746
                                	<th>LABEL_NAME</th>
1747
                                  	<th>LABEL_STATUS</th>
1748
                                  	<th>LABEL_DETAILS</th>
1749
                                  	<th>LABEL_ACTIONS</th>
1750
                                </tr>
1751
                       		</thead>
1752
                         	<tbody>
1753
                         	</tbody>
1754
                    	</table>
1755
                   	</div>
1756
                   	<div class="card-footer clearfix">
1757
                   		<div style="float:right;">
1758
							<button type="button" class="btn btn-info btn-refresh"><i class="fa fa-refresh"></i> LABEL_REFRESH  </button>
1759
							<?php if($allowAdd) : ?>
1760
							<button type="button" class="btn btn-primary btn-add"><i class="fa fa-plus"></i> LABEL_ADD </button>
1761
							<?php endif; ?>
1762
						</div>
1763
                 	</div>
1764
          		</div>
1765
           	</div>
1766
        </div>
1767
 	</div>
1768
</section>
5467 nelberth 1769
<section id="addImage" style='display:none' class="">
5463 nelberth 1770
<div class="d-flex justify-content-center tituloEditor">
5701 nelberth 1771
        <h4>LABEL_ADD_TOPIC</h4>
5463 nelberth 1772
 
1773
    </div>
5687 nelberth 1774
	<div class="grid-padre" >
5487 nelberth 1775
				<?php
5462 nelberth 1776
       			 $form = $this->formAdd;
1777
            		$form->setAttributes([
1778
                        'method'  => 'post',
1779
            		    'action'  => $routeAdd,
1780
                        'name'    => 'form-topic-add',
1781
                        'id'      => 'form-topic-add',
1782
                    ]);
1783
 
1784
                    $form->prepare();
1785
                    echo $this->form()->openTag($form);
1786
                    ?>
5684 nelberth 1787
    			<div class="form-group grid-1-2">
5462 nelberth 1788
    				<?php
1789
                        $element = $form->get('name');
1790
 
1791
                        $element->setAttributes(['class' => 'form-control']);
1792
                        $element->setOptions(['label' => 'LABEL_NAME']);
1793
                        echo $this->formLabel($element);
1794
                        echo $this->formText($element);
1795
                    ?>
1796
				</div>
5487 nelberth 1797
 
5684 nelberth 1798
                <div class="form-group grid-1-2">
5462 nelberth 1799
                	<?php
1800
                    $element = $form->get('description');
1801
                    $element->setAttributes(['id' => 'description_add', 'class' => 'form-control', 'rows' => '2','class' => 'form-control']);
1802
                    $element->setOptions(['label' => 'LABEL_DESCRIPTION']);
1803
                    echo $this->formLabel($element);
1804
                    echo $this->formTextArea($element);
1805
                    ?>
1806
   				</div>
5684 nelberth 1807
				<div class="form-group grid-1-2">
5462 nelberth 1808
    				<?php
1809
                        $element = $form->get('order');
1810
                        $element->setAttributes(['class' => 'form-control']);
1811
                        $element->setOptions(['label' => 'LABEL_ORDER']);
1812
                        echo $this->formLabel($element);
1813
                        echo $this->formText($element);
1814
                    ?>
1815
				</div>
5678 nelberth 1816
 
5462 nelberth 1817
               		<?php
5531 nelberth 1818
                    $element = $form->get('file');
5991 nelberth 1819
					$element->setAttributes([ 'class' => 'file']);
5653 nelberth 1820
                    echo $this->formHidden($element); ?>
5678 nelberth 1821
 
5684 nelberth 1822
          		<div class="form-group grid-1-2">
5462 nelberth 1823
    				<?php
1824
                        $element = $form->get('status');
1825
                        $element->setAttributes(['class' => 'form-control']);
1826
                        $element->setOptions(['label' => 'LABEL_STATUS']);
1827
                        echo $this->formLabel($element);
1828
                        echo $this->formSelect($element);
1829
                    ?>
1830
				</div>
10864 nelberth 1831
 
5747 nelberth 1832
				<div class="contenido form-group" id="contenido">
10861 nelberth 1833
				<div class="articulo_noticia animated fadeIn">
1834
    <div class="pasos">
1835
        <div class="titulo_pasos animated fadeInDown delay-04 fast">LABEL_STEP_1</div>
1836
        <div class="paso_opcion">
1837
            <div class="responsing_cut">
1838
                <div class="icon_cut"><span class="fa fa-scissors"></span></div>
1839
                <div class="contenido_cut">
1840
                    <div class="animated fadeInRight delay-04 fast">
1841
                        <div>
1842
                            <div class="titulo_cut">
1843
                                <div>LABEL_CUT</div>
1844
                                <div class="fa fa-times" id="cerrar_cut_modal"></div>
1845
                            </div>
1846
                            <div class="opcion_editor recortar10">
1847
                                <div>LABEL_CUT</div>
10975 nelberth 1848
                                <div class="blockCelda"><span class="fa fa-scissors"></span></div>
10861 nelberth 1849
                            </div>
1850
                        </div>
1851
                    </div>
1852
                </div>
1853
            </div>
1854
            <div class="responsing_text">
1855
                <div class="icon_text"><span class="fa fa-text-width"></span></div>
1856
                <div class="contenido_text">
1857
                    <div class="animated fadeInRight delay-04 fast">
1858
                        <div class="texto">
1859
                            <div class="titulo_text">
1860
                                <div>LABEL_TEXT</div>
1861
                                <div class="fa fa-times" id="cerrar_text_modal"></div>
1862
                            </div>
1863
                            <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
1864
                                    type="number" class="" data-tooltip="Tamaño de la letra" name="" id="font-size" max="500" min="1" step="1" value="48" /></div>
1865
                            <div class="fonts mb-20">
1866
                                <div class="font" id="negritas" data-tooltip="Negritas"><i class="fa fa-bold" aria-hidden="true"></i></div>
1867
                                <div class="font" id="italic" data-tooltip="Letra Cursiva"><i class="fa fa-italic" aria-hidden="true"></i></div>
1868
                                <div class="color_letra font"><label>A</label><input type="color" class="" data-tooltip="Color de la letra" name="" id="color" value="#ffffff" /></div>
1869
                                <div class="font fa" data-tooltip="Sombra de la letra" id="shadow">S</div>
1870
                                <div class="font" id="rectangulo" data-tooltip="Fondo de la letra">
1871
                                    <div class="rectangulo">F</div>
1872
                                </div>
1873
                            </div>
1874
                            <div class="color_fondo_cuadro mb-20" style="display:none"><input type="color" name="" id="colorrect" value="#000000" class="w-25" data-tooltip="Color del fondo" class="mr-2" /><input type="range" id="opacidad" max="100" min="1" step="1" value="100" class="w-75"></div><input id="texto_input"
1875
                                type="text" name="texto" placeholder="LABEL_ADD_TEXT_HERE" /> </div>
1876
                    </div>
1877
                </div>
1878
            </div>
1879
            <div class="responsing_filtros">
1880
                <div class="icon_filter"><span class="fa fa-eyedropper"></span></div>
1881
                <div class="contenido_filter">
1882
                    <div class="titulo_filtro mb-20">
1883
                        <div>LABEL_FILTERS</div>
1884
                        <div class="fa fa-times" id="cerrar_filter_modal"></div>
1885
                    </div>
1886
                    <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>
1887
                </div>
1888
            </div>
1889
            <div class="volver"><span class="icon-undo"></span>LABEL_START_OVER</div>
1890
            <div class="paso_1 paso animated bounceInDown delay-04 fast">1</div>
1891
            <div class="paso_2 a1 animated bounceInDown delay-06 fast">2</div>
1892
            <div class="paso_2 b1 animated bounceInDown delay-08 fast">3</div>
1893
        </div>
1894
    </div>
1895
    <div class="editor_imagenes">
1896
        <div class="fondo_oscuro"></div>
1897
        <div class="editor_imagenes2 ">
1898
            <div>
1899
                <div class="canvas_imagen">
1900
                    <div class="canvas recortar">
10888 nelberth 1901
                        <div class="canvas_subir d-flex flex-column" id="imagen_noticia"><div>	LABEL_DRAG_IMAGE_HERE o </div> <label class="font-weight-normal mt-2" style="font-size:0.6em"for="imagen_noticia_file"> Suba un archivo desde el dispositivo <div class="ml-2 btn btn-primary btn-sm">Seleccionar imagen</div> </label> <input style="display:none" type="file" id="imagen_noticia_file" accept="image/x-png,image/jpeg"></div>
10861 nelberth 1902
                    </div>
1903
                </div>
1904
                <div class="botones_dimenciones">
1905
                    <div class="scale">
1906
                        <div class="dimenciones">
1907
                            <div id="ancho">1240px</div>
1908
                            <div>x</div>
1909
                            <div id="alto">720px</div>
1910
                        </div>
1911
                        <div class="porciento">
1912
                            <div id="menos_scale"><span class="icon-minus fa fa-minus"></span></div>
1913
                            <div class="ps">
1914
                                <ul class="cantidades_scale">
1915
                                    <li data-scale="2" class="as">200%</li>
1916
                                    <li data-scale="1" class="as">100%</li>
1917
                                    <li data-scale="0.75" class="as">75%</li>
1918
                                    <li data-scale="0.5" class="as">50%</li>
1919
                                    <li data-scale="0.25" class="as">25%</li>
1920
                                </ul>
1921
                                <div id="porciento_scale">50%</div>
1922
                            </div>
1923
                            <div id="mas_scale"><span class="icon-plus fa fa-plus"></span></div>
1924
                        </div>
1925
                    </div>
1926
                    <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>
1927
                </div>
1928
            </div>
1929
            <div class="modificar animated fadeInRight delay-04 fast">
10961 nelberth 1930
                <div class="d-flex justify-content-between mb-20 border-bottom p-3">
10958 nelberth 1931
                    <div class="titulo_recortar d-flex align-items-center"><span class="icon-ungroup fa fa-scissors"></span>LABEL_CUT</div>
10956 nelberth 1932
                    <div class="opcion_editor recortar10" style="margin:0 !important">
10975 nelberth 1933
                        <div class="blockCelda"><span class="icon-ungroup fa fa-scissors"></span></div>
10861 nelberth 1934
                    </div>
1935
                </div>
1936
                <div class="texto">
1937
                    <div class="mb-20">
1938
                        <div class="titulo_texto "><span class="icon-plus fa fa-text-width"></span>LABEL_TEXT</div>
1939
                    </div>
1940
                    <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>
1941
                    <div class="fonts mb-20">
1942
                        <div class="font" id="negritas" data-tooltip="Negritas"><i class="fa fa-bold" aria-hidden="true"></i></div>
1943
                        <div class="font" id="italic" data-tooltip="Letra Cursiva"><i class="fa fa-italic" aria-hidden="true"></i></div>
1944
                        <div class="color_letra font"><label>A</label><input type="color" class="" data-tooltip="Color de la letra" name="" id="color" value="#ffffff" /></div>
1945
                        <div class="font fa" data-tooltip="Sombra de la letra" id="shadow">S</div>
1946
                        <div class="font" id="rectangulo" data-tooltip="Fondo de la letra">
1947
                            <div class="rectangulo">F</div>
1948
                        </div>
1949
                    </div>
10945 nelberth 1950
                    <div class="color_fondo_cuadro mb-20 flex-column" style="display:none">
10928 nelberth 1951
						<div class="w-100 d-flex justify-content-between border-bottom">
10936 nelberth 1952
							<label for="colorrect" class="font-weight-normal  d-flex align-items-center" style="margin:0 !important">Color del fondo: </label>
10923 nelberth 1953
							<input type="color" name="" id="colorrect" value="#000000" style="width:30px" data-tooltip="Color del fondo" class="mr-2" />
10917 nelberth 1954
						</div>
10921 nelberth 1955
						<div class="d-flex flex-column">
10938 nelberth 1956
							<label for="opacidad"  class="font-weight-normal mt-2">Transparencia del fondo</label>
10920 nelberth 1957
							<input type="range" id="opacidad" max="100" min="1" step="1" value="100" >
10917 nelberth 1958
						</div>
10919 nelberth 1959
					</div>
10917 nelberth 1960
 
1961
						<input id="texto_input"
10861 nelberth 1962
                        type="text" name="texto" placeholder="LABEL_ADD_TEXT_HERE" />
1963
                    <div class="mb-20">
1964
                        <div class="titulo_filtro"><span class="icon-eyedropper fa fa-eyedropper"></span>LABEL_FILTERS</div>
1965
                    </div>
1966
                    <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>
1967
                </div>
1968
            </div>
1969
        </div>
1970
    </div>
1971
</div>
1972
<dav class="fixed_noticia"></dav>
1973
<dav class="cuadro_noticias animated bounceInUp delay-04" id="cuadro_noticias">
1974
    <dav class="relative">
1975
        <div class="titulo_topico">LABEL_TITLE_TOPIC</div><canvas class="imagen_noticias" id="imagen_noticias" width="320" height="480"></canvas> </dav>
1976
    <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>
1977
</dav>
10797 nelberth 1978
 
10687 nelberth 1979
 
5747 nelberth 1980
				</div>
5916 nelberth 1981
 
5549 nelberth 1982
 
5462 nelberth 1983
     	      		<?php echo $this->form()->closeTag($form); ?>
1984
      		</div>
1985
 
5463 nelberth 1986
 
4691 nelberth 1987
</section>
1 www 1988
 
5895 nelberth 1989
<section id="topicEdit" style='display:none' class="">
1990
<div class="d-flex justify-content-center tituloEditor">
5912 nelberth 1991
        <h4>LABEL_EDIT_TOPIC</h4>
1 www 1992
 
5895 nelberth 1993
    </div>
1994
	<div class="grid-padre" >
5899 nelberth 1995
					<?php
1996
       			  $form = $this->formEdit;
1 www 1997
            		$form->setAttributes([
5899 nelberth 1998
                        'method'    => 'post',
1999
                        'name'      => 'form-topic-edit',
2000
                        'id'        => 'form-topic-edit'
1 www 2001
                    ]);
2002
 
2003
                    $form->prepare();
2004
                    echo $this->form()->openTag($form);
2005
                    ?>
5895 nelberth 2006
    			<div class="form-group grid-1-2">
1 www 2007
    				<?php
2008
                        $element = $form->get('name');
2009
 
2010
                        $element->setAttributes(['class' => 'form-control']);
2011
                        $element->setOptions(['label' => 'LABEL_NAME']);
2012
                        echo $this->formLabel($element);
2013
                        echo $this->formText($element);
2014
                    ?>
2015
				</div>
5904 nelberth 2016
				<div class="form-group grid-1-2">
1 www 2017
                	<?php
2018
                    $element = $form->get('description');
5904 nelberth 2019
                    $element->setAttributes(['id' => 'description_edit', 'rows' => '2', 'class' => 'form-control',   'class' => 'form-control']);
1 www 2020
                    $element->setOptions(['label' => 'LABEL_DESCRIPTION']);
2021
                    echo $this->formLabel($element);
2022
                    echo $this->formTextArea($element);
2023
                    ?>
2024
   				</div>
5895 nelberth 2025
				<div class="form-group grid-1-2">
1 www 2026
    				<?php
2027
                        $element = $form->get('order');
2028
                        $element->setAttributes(['class' => 'form-control']);
2029
                        $element->setOptions(['label' => 'LABEL_ORDER']);
2030
                        echo $this->formLabel($element);
2031
                        echo $this->formText($element);
2032
                    ?>
2033
				</div>
5895 nelberth 2034
 
1 www 2035
               		<?php
2036
                    $element = $form->get('file');
5990 nelberth 2037
					$element->setAttributes([ 'class' => 'file']);
2038
                    echo $this->formHidden($element);
2039
					?>
5895 nelberth 2040
 
2041
          		<div class="form-group grid-1-2">
1 www 2042
    				<?php
2043
                        $element = $form->get('status');
2044
                        $element->setAttributes(['class' => 'form-control']);
2045
                        $element->setOptions(['label' => 'LABEL_STATUS']);
2046
                        echo $this->formLabel($element);
2047
                        echo $this->formSelect($element);
2048
                    ?>
2049
				</div>
2050
 
5908 nelberth 2051
				<div class="contenido form-group" id="contenido2">
5895 nelberth 2052
				</div>
5981 nelberth 2053
 
1 www 2054
     	      		<?php echo $this->form()->closeTag($form); ?>
2055
      		</div>
2056
 
5895 nelberth 2057
 
2058
</section>
1 www 2059
 
2060
 
2061
 
2062
<!-- The Modal -->
2063
<div class="modal" id="modalImageApp">
2064
	<div class="modal-dialog ">
2065
    	<div class="modal-content">
2066
 
2067
            <!-- Modal Header -->
2068
      		<div class="modal-header">
2069
        		<h4 class="modal-title">LABEL_IMAGE</h4>
2070
        		<button type="button" class="close" data-dismiss="modal">&times;</button>
2071
      		</div>
2072
 
2073
            <!-- Modal body -->
2074
            <div class="modal-body text-center">
2075
				<img src="" class="img img-responsive" style="width: 300px; height: auto" id="image-app" />
2076
      		</div>
2077
 
2078
            <!-- Modal footer -->
2079
      		<div class="modal-footer">
2080
        		<button type="button" class="btn btn-danger" data-dismiss="modal">Cerrar</button>
2081
          	</div>
2082
         </div>
2083
	</div>
2084
</div>
2085
 
2086
 
2087
 
2088
 
2089
 
2090
 
2091
 
2092
 
2093
 
2094