Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6683 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
5050 efrain 1
<?php
6552 stevensc 2
 
6521 efrain 3
use LeadersLinked\Model\ContentReaction;
4
 
6388 efrain 5
$acl            = $this->viewModel()->getRoot()->getVariable('acl');
6
$currentUser    = $this->currentUserHelper();
7
$roleName       = $currentUser->getUserTypeId();
5050 efrain 8
 
6388 efrain 9
$routeQuestions     = $this->url('my-coach/questions');
10
$routeQuestionAdd   = $this->url('my-coach/questions/add');
11
$allowQuestionAdd   = $acl->isAllowed($roleName, 'my-coach/questions/add') ? 1 : 0;
5050 efrain 12
 
6388 efrain 13
 
14
 
15
 
16
$this->inlineScript()->appendFile($this->basePath('vendors/ckeditor/ckeditor.js'));
17
 
18
$this->headLink()->appendStylesheet($this->basePath('vendors/nprogress/nprogress.css'));
19
$this->inlineScript()->appendFile($this->basePath('vendors/nprogress/nprogress.js'));
20
 
21
$this->headLink()->appendStylesheet($this->basePath('vendors/select2/css/select2.min.css'));
22
$this->headLink()->appendStylesheet($this->basePath('vendors/select2-bootstrap4-theme/select2-bootstrap4.min.css'));
23
$this->inlineScript()->appendFile($this->basePath('vendors/select2/js/select2.min.js'));
24
 
25
$this->inlineScript()->appendFile($this->basePath('vendors/bootstrap-confirmation/dist/bootstrap-confirmation.js'));
26
$this->inlineScript()->appendFile($this->basePath('vendors/jsrender/jsrender.min.js'));
27
 
28
 
29
$this->inlineScript()->appendFile($this->basePath('vendors/jquery-validation/jquery.validate.js'));
30
$this->inlineScript()->appendFile($this->basePath('vendors/jquery-validation/additional-methods.js'));
31
$this->inlineScript()->appendFile($this->basePath('vendors/jquery-validation/localization/messages_es.js'));
32
 
33
$this->inlineScript()->captureStart();
34
echo <<<JS
35
 
36
jQuery( document ).ready(function( $ ) {
37
 
6547 efrain 38
    $.fn.confirmationAnswers = function() {
6521 efrain 39
 
6547 efrain 40
        $('button.btn-my-coach-delete-answer').confirmation({
41
            rootSelector: 'button.btn-my-coach-delete-answer',
42
            title : 'LABEL_ARE_YOU_SURE',
43
            singleton : true,
44
            btnOkLabel: 'LABEL_YES',
45
            btnCancelLabel: 'LABEL_NO',
46
            onConfirm: function(value) {
47
                var action = $(this).data('link');
48
                var question = $(this).data('question');
49
                var answer = $(this).data('answer');
50
 
51
 
52
                NProgress.start();
53
                $.ajax({
54
                    'dataType'  : 'json',
55
                    'accept'    : 'application/json',
56
                    'method'    : 'post',
57
                    'url'       :  action,
58
                }).done(function(response) {
59
                    if(response['success']) {
60
 
61
                        $('#row-' + answer).remove();
62
 
63
                        $('#answers-' + question).html(response['data']['total_answers']);
6649 stevensc 64
                        $('#my-coach-question-answer-count-answers').html(response['data']['total_answers'] + ' LABEL_MY_COACH_ANSWERS');
6547 efrain 65
 
66
                        $('#reactions-' + question).html( response['data']['total_reactions']);
6649 stevensc 67
                        $('#my-coach-question-answer-count-reactions').html( response['data']['total_reactions'] + ' LABEL_MY_COACH_REACTIONS');
6547 efrain 68
 
69
                        $('#comments-' + question).html(response['data']['total_comments']);
6649 stevensc 70
                        $('#my-coach-question-answer-count-comments').html(response['data']['total_comments'] + ' LABEL_COMMENTS');
6547 efrain 71
 
72
                    } else {
73
                        $.fn.showError(response['data']);
74
                    }
75
                }).fail(function( jqXHR, textStatus, errorThrown) {
76
                    $.fn.showError(textStatus);
77
                }).always(function() {
78
                    NProgress.done();
79
                });
80
 
81
                return false;
82
            },
83
        });
84
    }
85
 
86
 
6521 efrain 87
    $.fn.reloadAnswers = function() {
88
 
89
        var action = $('#row-view').data('link-answers');
90
 
6388 efrain 91
        NProgress.start();
92
        $.ajax({
93
            'dataType'  : 'json',
94
            'accept'    : 'application/json',
95
            'method'    : 'get',
6521 efrain 96
            'url'       : action,
97
        }).done(function(response) {
98
            if(response['success']) {
99
                $('#my-coach-question-answers-list').empty();
100
                if(response['data']['items'].length > 0) {
101
                    $( "#my-coach-question-answers-list" ).html(
102
                		$( "#answerTemplate" ).render( response['data']['items'] )
103
                	);
6523 efrain 104
                }
6547 efrain 105
                $.fn.confirmationAnswers();
6521 efrain 106
 
6547 efrain 107
 
6521 efrain 108
 
109
            } else {
110
                $.fn.showError(response['data']);
111
            }
112
        }).fail(function( jqXHR, textStatus, errorThrown) {
113
            $.fn.showError(textStatus);
114
        }).always(function() {
115
            NProgress.done();
116
        });
117
 
118
    }
119
 
120
    $.fn.reload = function() {
121
 
122
        NProgress.start();
123
        $.ajax({
124
            'dataType'  : 'json',
125
            'accept'    : 'application/json',
126
            'method'    : 'get',
6388 efrain 127
            'url'       :  '$routeQuestions',
128
            'data'      : {
129
                'search' : $('#form-filter #search').val(),
130
                'category_id' : $('li.my-coach-category-li-selected > a.my-coach-category-a').data('uuid') ,
131
 
132
            }
133
        }).done(function(response) {
134
            if(response['success']) {
135
                $('#my-coach-record-list').empty();
136
 
137
 
138
                if(response['data']['items'].length > 0) {
139
 
140
 
141
 
142
                    $( "#my-coach-record-list" ).html(
143
                		$( "#recordTemplate" ).render( response['data']['items'] )
144
                	);
145
                } else {
146
                    var html = '<div class="company-title"><div class="widget widget-jobs"><div class="sd-title">ERROR_NO_RECORD_MATCHED_YOUR_QUERY</div></div></div>';
147
                    $( "#my-coach-record-list" ).html(html);
148
                }
149
 
150
 
6521 efrain 151
                $('button.btn-my-coach-delete-question').confirmation({
152
                    rootSelector: 'button.btn-my-coach-delete-question',
6388 efrain 153
                    title : 'LABEL_ARE_YOU_SURE',
154
                    singleton : true,
155
                    btnOkLabel: 'LABEL_YES',
156
                    btnCancelLabel: 'LABEL_NO',
157
                    onConfirm: function(value) {
158
                        var action = $(this).data('link');
159
                        NProgress.start();
160
                        $.ajax({
161
                            'dataType'  : 'json',
162
                            'accept'    : 'application/json',
163
                            'method'    : 'post',
164
                            'url'       :  action,
165
                        }).done(function(response) {
166
                            if(response['success']) {
167
                                $.fn.showSuccess(response['data']);
168
 
169
                                $.fn.reload();
170
                            } else {
171
                                $.fn.showError(response['data']);
172
                            }
173
                        }).fail(function( jqXHR, textStatus, errorThrown) {
174
                            $.fn.showError(textStatus);
175
                        }).always(function() {
176
                            NProgress.done();
177
                        });
178
 
179
                        return false;
180
                    },
181
                });
182
 
183
            } else {
184
                $.fn.showError(response['data']);
185
            }
186
        }).fail(function( jqXHR, textStatus, errorThrown) {
187
            $.fn.showError(textStatus);
188
        }).always(function() {
189
            NProgress.done();
190
        });
191
 
192
    }
193
 
194
 
195
    $.validator.setDefaults({
196
        debug: true,
197
        highlight: function(element) {
198
            $(element).addClass('is-invalid');
199
        },
200
        unhighlight: function(element) {
201
            $(element).removeClass('is-invalid');
202
        },
203
        errorElement: 'span',
204
        errorClass: 'error invalid-feedback',
205
        errorPlacement: function(error, element) {
206
            if(element.parent('.btn-file').length) {
207
                error.insertAfter(element.parent().parent());
208
            } else if(element.parent('.toggle').length) {
209
                error.insertAfter(element.parent().parent());
210
            } else {
211
                error.insertAfter(element.parent());
212
            }
213
        }
214
    });
215
 
216
 
217
    $.fn.showFormErrorValidator = function(fieldname, errors) {
218
        var field = $(fieldname);
219
        if(field) {
220
            $(field).addClass('is-invalid');
221
 
222
 
223
            var error = $('<span id="' + fieldname +'-error" class="error invalid-feedback">' + errors + '</div>');
224
            if(element.parent('.btn-file').length) {
225
                error.insertAfter(element.parent().parent());
226
            } else if(element.parent('.toggle').length) {
227
                error.insertAfter(element.parent().parent());
228
            } else {
229
                error.insertAfter(element.parent());
230
            }
231
        }
232
    };
233
 
234
    var validatorQuestion = $('#form-question').validate({
235
        debug: true,
236
        onclick: false,
237
        onkeyup: false,
238
        ignore: [],
239
        rules: {
240
            'category_id': {
241
                required: true,
242
            },
243
            'title': {
244
                required: true,
245
                maxlength: 128,
246
            },
247
            'description': {
248
                updateCkeditor:function() {
249
                        CKEDITOR.instances.description_question.updateElement();
250
                },
251
 
252
                required: true
253
            },
254
 
255
        },
256
        submitHandler: function(form)
257
        {
258
 
259
 
260
			NProgress.start();
261
            $.ajax({
262
                'dataType'  : 'json',
263
                'accept'    : 'application/json',
264
                'method'    : 'post',
265
                'url'       :  $('#form-question').attr('action'),
266
                'data'      :  $('#form-question').serialize(),
267
 
268
            }).done(function(response) {
269
 
270
				if(response['success']) {
271
 
272
                    $('#modal-question').modal('hide');
273
 
274
                    $.fn.showSuccess(response['data']);
275
                    $.fn.reload();
276
 
277
 
278
 
279
                } else {
280
                    validatorQuestion.resetForm();
281
                    if(jQuery.type(response['data']) == 'string') {
282
                        $.fn.showError(response['data']);
283
                    } else  {
284
                        $.each(response['data'], function( fieldname, errors ) {
285
                            $.fn.showFormErrorValidator('#form-question #' + fieldname, errors);
286
                        });
287
                    }
288
                }
289
            }).fail(function( jqXHR, textStatus, errorThrown) {
290
                $.fn.showError(textStatus);
291
            }).always(function() {
292
                NProgress.done();
293
            });
294
            return false;
295
        },
296
        invalidHandler: function(form, validator) {
297
 
298
        }
299
    });
300
 
6547 efrain 301
    var  validatorAnswer = $('#form-answer').validate({
6521 efrain 302
        debug: true,
303
        onclick: false,
304
        onkeyup: false,
305
        ignore: [],
306
        rules: {
307
            'description': {
308
                updateCkeditor:function() {
309
                        CKEDITOR.instances.description_answer.updateElement();
310
                },
311
 
312
                required: true
313
            },
314
 
315
        },
316
        submitHandler: function(form)
317
        {
6547 efrain 318
 
6388 efrain 319
 
6521 efrain 320
			NProgress.start();
321
            $.ajax({
322
                'dataType'  : 'json',
323
                'accept'    : 'application/json',
324
                'method'    : 'post',
325
                'url'       :  $('#form-answer').attr('action'),
326
                'data'      :  $('#form-answer').serialize(),
327
 
328
            }).done(function(response) {
329
				if(response['success']) {
6547 efrain 330
                    var method = $('#form-answer').data('method');
331
                    var answer = $('#form-answer').data('answer');
332
 
333
 
6521 efrain 334
                    $('#modal-answer').modal('hide');
335
 
6547 efrain 336
                    if(method == 'add') {
337
                        var uuid = $('#row-view').data('question-uuid');
338
                        $('#answers-' + uuid).html(response['data']['answers']);
6649 stevensc 339
                        $('#my-coach-question-answer-count-answers').html(response['data']['answers'] + ' LABEL_MY_COACH_ANSWERS');
6547 efrain 340
                        $('#my-coach-question-answers-list').prepend(
341
                            $('#answerTemplate').render(response['data']['item'])
342
                        );
343
                        $.fn.confirmationAnswers()
344
                    } else {
345
                        $('#answer-text-' + answer).empty();
346
                        $('#answer-text-' + answer).html(response['data']['description']);
347
                    }
6521 efrain 348
                } else {
349
                    validatorAnswer.resetForm();
350
                    if(jQuery.type(response['data']) == 'string') {
351
                        $.fn.showError(response['data']);
352
                    } else  {
353
                        $.each(response['data'], function( fieldname, errors ) {
354
                            $.fn.showFormErrorValidator('#form-answer #' + fieldname, errors);
355
                        });
356
                    }
357
                }
358
            }).fail(function( jqXHR, textStatus, errorThrown) {
359
                $.fn.showError(textStatus);
360
            }).always(function() {
361
                NProgress.done();
362
            });
363
            return false;
364
        },
365
        invalidHandler: function(form, validator) {
366
 
367
        }
368
    });
369
 
370
 
6388 efrain 371
    $('a.my-coach-category-a').click(function(e) {
372
        e.preventDefault();
373
 
374
 
375
        $('li.my-coach-category-li').removeClass('my-coach-category-li-selected');
376
        $(this).closest('li.my-coach-category-li').addClass('my-coach-category-li-selected');
377
 
378
        $.fn.reload();
379
    });
380
 
381
    $('body').on('click', 'button.btn-my-coach-edit', function(e) {
382
        e.preventDefault();
383
        var action = $(this).data('link');
384
        NProgress.start();
385
        $.ajax({
386
            'dataType'  : 'json',
387
            'accept'    : 'application/json',
388
            'method'    : 'get',
389
            'url'       :  action,
390
        }).done(function(response) {
391
            if(response['success']) {
392
 
393
                $('#form-question').attr('action', action);
394
                $('#form-question #category_id').val(response['data']['category_id']).trigger('change');
395
                $('#form-question #title').val(response['data']['title']);
396
                CKEDITOR.instances.description_question.setData(response['data']['description']);
397
 
398
                $('#modal-question').modal('show');
399
            } else {
400
                $.fn.showError(response['data']);
401
            }
402
        }).fail(function( jqXHR, textStatus, errorThrown) {
403
            $.fn.showError(textStatus);
404
        }).always(function() {
405
            NProgress.done();
406
        });
407
 
408
    });
409
 
410
 
411
    $('#form-filter #search').keyup(function(e) {
412
 
413
        e.preventDefault();
414
 
415
        $.fn.reload();
416
    })
417
 
418
    $('button.btn-search').click(function(e) {
419
        e.preventDefault();
420
 
421
        $.fn.reload();
422
    });
423
 
424
    $('#my-coach-add-question').click(function(e) {
425
        e.preventDefault();
426
 
427
        $('#form-question').attr('action', '$routeQuestionAdd');
428
        $('#form-question #title').val('');
429
        $('#form-question #category_id').val('').trigger('change');
430
        CKEDITOR.instances.description_question.setData('');
431
 
432
        $('#modal-question').modal('show');
433
    });
434
 
435
    $('#form-question #category_id').select2({
436
        theme: 'bootstrap4'
437
    })
438
 
439
    $('button.btn-cancel').click(function(e) {
440
        e.preventDefault();
441
 
442
 
443
        $('#modal-question').modal('hide');
6521 efrain 444
        $('#modal-answer').modal('hide');
6388 efrain 445
    });
446
 
6521 efrain 447
    $('#my-coach-question-answer-btn-delete').confirmation({
448
        rootSelector: 'button.my-coach-question-answer-btn-delete',
449
        title : 'LABEL_ARE_YOU_SURE',
450
        singleton : true,
451
        btnOkLabel: 'LABEL_YES',
452
        btnCancelLabel: 'LABEL_NO',
453
        onConfirm: function(value) {
454
            var action = $(this).data('link');
455
            var uuid = $(this).data('question-uuid');
456
 
457
            NProgress.start();
458
            $.ajax({
459
                'dataType'  : 'json',
460
                'accept'    : 'application/json',
461
                'method'    : 'post',
462
                'url'       :  action,
463
            }).done(function(response) {
464
                if(response['success']) {
465
                    $.fn.showSuccess(response['data']);
466
 
467
                    var uuid = $('#row-view').data('question-uuid');
468
                    var key = 'my-coach-record-card-question-' + uuid;
469
                    $('#' + key).remove();
470
 
471
                    $('#row-view').hide();
472
 
473
                    $('#my-coach-add-question').show();
474
                    $('#row-list').show();
475
 
476
 
477
 
478
                } else {
479
                    $.fn.showError(response['data']);
480
                }
481
            }).fail(function( jqXHR, textStatus, errorThrown) {
482
                $.fn.showError(textStatus);
483
            }).always(function() {
484
                NProgress.done();
485
            });
486
 
487
            return false;
488
        },
489
    });
490
 
491
 
492
    $('body').on('click', 'button.btn-my-coach-edit-view', function(e) {
493
        e.preventDefault();
494
        var action = $(this).data('link');
495
 
496
        NProgress.start();
497
        $.ajax({
498
            'dataType'  : 'json',
499
            'accept'    : 'application/json',
500
            'method'    : 'get',
501
            'url'       :  action,
502
        }).done(function(response) {
503
            if(response['success']) {
504
                $('#row-view').data('link-answers', response['data']['link_answers']);
505
                $('#row-view').data('question-uuid', response['data']['uuid']);
506
 
507
 
6547 efrain 508
                if(!response['data']['link_answers_add']) {
509
                    $('#my-coach-question-answer-btn-answer').hide();
510
                } else {
511
                    $('#my-coach-question-answer-btn-answer').data('link', response['data']['link_answers_add']);
512
                    $('#my-coach-question-answer-btn-answer').show();
513
                }
6521 efrain 514
 
6547 efrain 515
                if(!response['data']['link_delete']) {
516
                    $('#my-coach-question-answer-btn-delete').hide();
517
                } else {
518
                    $('#my-coach-question-answer-btn-delete').data('link', response['data']['link_delete']);
519
                    $('#my-coach-question-answer-btn-delete').show();
520
                }
6521 efrain 521
 
522
                $('#my-coach-question-user-image').attr('src', response['data']['user_image']);
523
                $('#my-coach-question-user-name').html(response['data']['user_name']);
524
                $('#my-coach-question-title').html(response['data']['title']);
6569 stevensc 525
                $('#my-coach-question-description').html(response['data']['description'].replace('<p>',''));
6521 efrain 526
 
527
                $('#my-coach-answer-categories').empty();
528
                $.each(response['data']['categories'], function(key, value) {
529
 
530
                    var li = $('<li>');
531
                    li.text(value.category).appendTo('#my-coach-answer-categories')
532
                });
533
 
6568 stevensc 534
                $('#my-coach-question-answer-question-date').append(response['data']['added_on']);
535
                $('#my-coach-question-answer-last-date').append(response['data']['last_answer_on']);
6648 stevensc 536
                $('#my-coach-question-answer-count-answers').html(response['data']['answers'] + ' LABEL_MY_COACH_ANSWERS');
6649 stevensc 537
                $('#my-coach-question-answer-count-reactions').html(response['data']['reactions'] + ' LABEL_MY_COACH_REACTIONS');
538
                $('#my-coach-question-answer-count-views').html(response['data']['views'] + ' LABEL_MY_COACH_VIEWS');
539
                $('#my-coach-question-answer-count-comments').html(response['data']['comments'] + ' LABEL_COMMENTS');
6521 efrain 540
 
541
                $('#views-' + response['data']['uuid']).html( response['data']['views'] );
542
 
543
 
544
                $('#my-coach-add-question').hide();
545
                $('#row-list').hide();
546
                $('#row-view').show();
547
 
548
                $.fn.reloadAnswers();
549
 
550
            } else {
551
                $.fn.showError(response['data']);
552
            }
553
        }).fail(function( jqXHR, textStatus, errorThrown) {
554
            $.fn.showError(textStatus);
555
        }).always(function() {
556
            NProgress.done();
557
        });
558
    });
559
 
560
    $('#my-coach-question-answer-btn-back').click(function(e) {
561
        e.preventDefault();
562
 
563
        $('#my-coach-add-question').show();
564
        $('#row-view').hide();
565
        $('#row-list').show();
566
 
567
    });
568
 
6547 efrain 569
    /****** RESPUESTAS ******/
6521 efrain 570
 
6547 efrain 571
    $('body').on('click', 'button.btn-my-coach-edit-answer', function(e) {
572
        e.preventDefault();
573
        var action = $(this).data('link');
574
        var answer = $(this).data('answer');
575
        NProgress.start();
576
        $.ajax({
577
            'dataType'  : 'json',
578
            'accept'    : 'application/json',
579
            'method'    : 'get',
580
            'url'       :  action,
581
        }).done(function(response) {
582
            if(response['success']) {
583
 
584
                $('#modal-answer-title').html('LABEL_MY_COACH_ANSWER_EDIT');
585
                $('#form-answer').attr('action', action );
586
                $('#form-answer').data('method','edit');
587
                $('#form-answer').data('answer', answer);
588
                CKEDITOR.instances.description_answer.setData(response['data']['description']);
589
                validatorAnswer.resetForm();
590
 
591
                $('#modal-answer').modal('show');
592
            } else {
593
                $.fn.showError(response['data']);
594
            }
595
        }).fail(function( jqXHR, textStatus, errorThrown) {
596
            $.fn.showError(textStatus);
597
        }).always(function() {
598
            NProgress.done();
599
        });
600
 
601
    });
602
 
603
 
6521 efrain 604
    $('#my-coach-question-answer-btn-answer').click(function(e) {
605
        e.preventDefault();
6547 efrain 606
        console.log('agregar respuesta link = ' + $(this).data('link') );
6521 efrain 607
 
6547 efrain 608
        $('#modal-answer-title').html('LABEL_MY_COACH_ANSWER_ADD');
6521 efrain 609
        $('#form-answer').attr('action', $(this).data('link') );
6547 efrain 610
        $('#form-answer').data('method','add');
611
        $('#form-answer').data('answer', '');
6521 efrain 612
        CKEDITOR.instances.description_answer.setData('');
6547 efrain 613
        validatorAnswer.resetForm();
6521 efrain 614
 
615
        $('#modal-answer').modal('show');
616
    });
617
 
618
    $('body').on('click', 'a.btn-comment-trash', function(e) {
619
        e.preventDefault();
620
        var action = $(this).data('link');
621
        var unique = $(this).data('comment-unique');
622
        var answer_uuid = $(this).data('answer-uuid');
623
        var question_uuid = $('#row-view').data('question-uuid');
624
 
625
 
626
 
627
        NProgress.start();
628
        $.ajax({
629
            'dataType'  : 'json',
630
            'accept'    : 'application/json',
631
            'method'    : 'post',
632
            'url'       :  action,
633
        }).done(function(response) {
634
            if(response['success']) {
635
                $('div.comment-' + unique).remove();
636
 
637
                //Listado de la respuesta
6684 stevensc 638
                $('#answer-total-comment-' + answer_uuid).html( response['data']['total_comments_answer'] + ' LABEL_COMMENTS');
6521 efrain 639
 
640
                //Encabezado pregunta del view
6649 stevensc 641
                $('#my-coach-question-answer-count-comments').html( response['data']['total_comments_question'] + ' LABEL_COMMENTS');
6521 efrain 642
 
643
                //Listado de preguntas
644
                $('#comments-' + question_uuid).html( response['data']['total_comments_question'] );
645
 
646
 
647
            } else {
648
                $.fn.showError(response['data']);
649
            }
650
        }).fail(function( jqXHR, textStatus, errorThrown) {
651
            $.fn.showError(textStatus);
652
        }).always(function() {
653
            NProgress.done();
654
        });
655
 
656
    });
657
 
658
    $('body').on('submit', 'form.feedCommentContainer', function(e) {
659
        e.preventDefault();
660
 
661
        var action          = $(this).attr('action');
662
        var answer_uuid     = $(this).data('answer');
663
        var question_uuid   = $('#row-view').data('question-uuid');
664
        var form_id         = $(this).attr('id');
665
 
666
        var comment = $('#' + form_id + ' #comment').val().trim();
667
        if(comment.length == 0) {
668
            return;
669
        }
670
 
671
        NProgress.start();
672
        $.ajax({
673
            'dataType'  : 'json',
674
            'accept'    : 'application/json',
675
            'method'    : 'post',
676
            'url'       : action,
677
            'data'      : $(this).serialize()
678
 
679
        }).done(function(response) {
680
		  if(response['success']) {
681
            $('#' + form_id + ' #comment').val('');
682
            $('#comment-list-' + answer_uuid).prepend(
683
                $( "#commentTemplate" ).render( response['data']['item'] )
684
            );
685
 
686
            //Listado de la respuesta
6684 stevensc 687
            $('#answer-total-comment-' + answer_uuid).html( response['data']['total_comments_answer'] + ' LABEL_COMMENTS');
6521 efrain 688
 
689
            //Encabezado pregunta del view
6649 stevensc 690
            $('#my-coach-question-answer-count-comments').html( response['data']['total_comments_question'] + ' LABEL_COMMENTS');
6521 efrain 691
 
692
            //Listado de preguntas
693
            $('#comments-' + question_uuid).html( response['data']['total_comments_question'] );
694
 
695
          } else {
696
            $.fn.showError(textStatus);
697
          }
698
 
699
        }).fail(function( jqXHR, textStatus, errorThrown) {
700
            $.fn.showError(textStatus);
701
        }).always(function() {
702
            NProgress.done();
703
        });
704
        return false;
705
 
706
    });
707
 
708
  $('body').on('click', 'button.btn-save-reaction', function(e) {
709
        e.preventDefault();
710
        var reaction = $(this).data('reaction');
711
        var action = $(this).data('link');
712
        var answer_uuid = $(this).data('answer');
713
        var question_uuid   = $('#row-view').data('question-uuid');
714
 
715
        NProgress.start();
716
        $.ajax({
717
            'dataType'  : 'json',
718
            'accept'    : 'application/json',
719
            'method'    : 'post',
720
            'url'       :  action,
721
            'data'      : {
722
                'reaction' : reaction
723
            }
724
        }).done(function(response) {
725
            if(response['success']) {
726
 
727
                $('#reactions-' + question_uuid).html(response['data']['total_reactions_question']) ;
6649 stevensc 728
                $('#my-coach-question-answer-count-reactions').html(response['data']['total_reactions_question'] + ' LABEL_MY_COACH_REACTIONS') ;
6684 stevensc 729
                $('#answer-total-reactions-' + answer_uuid).html(response['data']['total_reactions_answer'] + ' LABEL_REACTIONS') ;
6521 efrain 730
 
731
                $('#' + 'current-reaction-' + answer_uuid).data('reaction', response['data']['reaction']);
732
                $('#' + 'current-reaction-' + answer_uuid).html(
733
                    $('#reactionTemplate').render({reaction: reaction})
734
                );
735
            } else {
736
                $.fn.showError(response['data']);
737
            }
738
        }).fail(function( jqXHR, textStatus, errorThrown) {
739
            $.fn.showError(textStatus);
740
        }).always(function() {
741
            NProgress.done();
742
        });
743
 
744
    });
745
 
746
    $('body').on('click', 'button.reaction-btn', function(e) {
747
        e.preventDefault();
748
        var reaction = $(this).data('reaction');
749
 
750
        if(!reaction) return
751
        var action = $(this).data('link');
752
 
753
        var answer_uuid = $(this).data('answer');
754
        var question_uuid   = $('#row-view').data('question-uuid');
755
 
756
        NProgress.start();
757
        $.ajax({
758
            'dataType'  : 'json',
759
            'accept'    : 'application/json',
760
            'method'    : 'post',
761
            'url'       :  action,
762
        }).done(function(response) {
763
            if(response['success']) {
764
                $('#' + 'current-reaction-' + answer_uuid).data('reaction', response['data']['reaction']);
765
                $('#' + 'current-reaction-' + answer_uuid).html(
766
                    $('#reactionTemplate').render({reaction: ''})
767
                );
768
 
769
                $('#reactions-' + question_uuid).html(response['data']['total_reactions_question']) ;
6649 stevensc 770
                $('#my-coach-question-answer-count-reactions').html(response['data']['total_reactions_question'] + ' LABEL_MY_COACH_REACTIONS') ;
6684 stevensc 771
                $('#answer-total-reactions-' + answer_uuid).html(response['data']['total_reactions_answer'] + ' LABEL_REACTIONS');
6521 efrain 772
 
773
            } else {
774
                $.fn.showError(response['data']);
775
            }
776
        }).fail(function( jqXHR, textStatus, errorThrown) {
777
            $.fn.showError(textStatus);
778
        }).always(function() {
779
            NProgress.done();
780
        });
781
    });
782
 
783
    let isMouseHover;
784
 
785
    $('body').on('mouseover', '#reaction-container', function(e) {
786
        isMouseHover = true;
6581 stevensc 787
 
6582 stevensc 788
        setTimeout(() => $(e.target).find('.reactions').addClass('active'), 500);
6521 efrain 789
    });
6581 stevensc 790
 
6521 efrain 791
    $('body').on('mouseout', '#reaction-container', function(e) {
792
        isMouseHover = false;
6581 stevensc 793
 
6677 stevensc 794
        setTimeout(() => !isMouseHover && $('.reactions').removeClass('active'), 500);
6521 efrain 795
    });
796
 
797
    $('#paginator-process-comm').click(function(e) {
798
        e.preventDefault();
799
 
800
        var next_page = $(this).data('next-page');
801
        $.fn.reload(false, next_page);
802
 
803
    });
804
 
6388 efrain 805
    $.fn.reload()
806
 
807
    CKEDITOR.replace('description_question',{
808
        toolbar: [
809
                    { name: 'editing', items: ['Scayt'] },
810
                    { name: 'links', items: ['Link', 'Unlink'] },
811
                    { name: 'paragraph', items: ['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', 'Blockquote'] },
812
                    { name: 'basicstyles', items: ['Bold', 'Italic', 'Strike', 'RemoveFormat'] },
813
                    '/',
814
                    { name: 'insert', items: ['Image', 'Table', 'HorizontalRule', 'SpecialChar'] },
815
                    { name: 'styles', items: ['Styles', 'Format'] },
816
                    { name: 'tools', items: ['Maximize'] }
817
                ],
818
                removePlugins: 'elementspath,Anchor',
819
                heigth: 100
820
    });
6521 efrain 821
 
822
    CKEDITOR.replace('description_answer',{
823
        toolbar: [
824
                    { name: 'editing', items: ['Scayt'] },
825
                    { name: 'links', items: ['Link', 'Unlink'] },
826
                    { name: 'paragraph', items: ['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', 'Blockquote'] },
827
                    { name: 'basicstyles', items: ['Bold', 'Italic', 'Strike', 'RemoveFormat'] },
828
                    '/',
829
                    { name: 'insert', items: ['Image', 'Table', 'HorizontalRule', 'SpecialChar'] },
830
                    { name: 'styles', items: ['Styles', 'Format'] },
831
                    { name: 'tools', items: ['Maximize'] }
832
                ],
833
                removePlugins: 'elementspath,Anchor',
834
                heigth: 100
835
    });
6388 efrain 836
});
5050 efrain 837
JS;
6388 efrain 838
 
839
$this->inlineScript()->captureEnd();
840
$this->headLink()->appendStylesheet('/look-and-field/my-coach.css');
6673 stevensc 841
$this->headLink()->appendStylesheet('/react-bundles/dashboard/linkedin/main.css');
5050 efrain 842
?>
843
 
6645 stevensc 844
<section class="container px-0 d-flex flex-column gap-3">
6388 efrain 845
    <div class="company-title">
6645 stevensc 846
        <h1 class="title">LABEL_MY_COACH</h1>
6552 stevensc 847
        <?php if ($allowQuestionAdd) : ?>
6388 efrain 848
            <h2 class="title cursor-pointer" id="my-coach-add-question">
849
                LABEL_MY_COACH_QUESTION_ADD
850
            </h2>
6552 stevensc 851
        <?php endif; ?>
5050 efrain 852
 
6388 efrain 853
    </div>
5050 efrain 854
 
6388 efrain 855
    <div class="row gap-3" id="row-list">
6552 stevensc 856
        <div class="my-coach-category-list col-12 col-md-3">
6388 efrain 857
            <ul>
858
                <li class="my-coach-category-li my-coach-category-li-selected">
859
                    <a class="my-coach-category-a" href="" data-uuid="">LABEL_MY_COACH_CATEGORY_ALL</a>
860
                </li>
861
                <?php
6521 efrain 862
                foreach ($categories as $uuid => $name) :
6388 efrain 863
                ?>
864
                    <li class="my-coach-category-li">
6521 efrain 865
                        <a class="my-coach-category-a" href="" data-uuid="<?php echo $uuid ?>"><?php echo $name ?></a>
6388 efrain 866
                    </li>
867
 
868
                <?php endforeach; ?>
869
            </ul>
870
        </div>
871
 
872
 
873
        <div class="col px-0">
874
            <div class="search-box">
875
                <form id="form-filter" name="form-filter">
876
                    <input type="text" name="search" id="search" class="form-control"><button class="btn btn-search">LABEL_SEARCH</button>
877
                </form>
878
            </div>
879
 
6644 stevensc 880
            <div id="my-coach-record-list" class="my-coach-record-list mt-3 ">
6388 efrain 881
            </div>
882
 
883
            <div id="my-coach-pagination">
884
            </div>
885
 
886
        </div>
887
    </div>
6552 stevensc 888
 
889
 
6562 stevensc 890
    <div id="row-view" class="my-coach-answers-list" style="display: none">
6563 stevensc 891
        <div class="my-coach-record-card-container col-md-8 mx-auto">
892
            <div class="my-coach-record-card-details">
6562 stevensc 893
                <div class="my-coach-record-card-resume">
6563 stevensc 894
                    <img id="my-coach-question-user-image" src="" />
895
                    <p id="my-coach-question-user-name"></p>
6562 stevensc 896
                </div>
6597 stevensc 897
                <ul id="my-coach-answer-categories" class="my-coach-record-card-categories">
6596 stevensc 898
                </ul>
6563 stevensc 899
            </div>
6552 stevensc 900
 
6567 stevensc 901
            <h2 id="my-coach-question-title"></h2>
6568 stevensc 902
 
6595 stevensc 903
            <div class="d-flex flex-wrap align-items-center justify-content-between mb-3">
6568 stevensc 904
                <span id="my-coach-question-answer-question-date">LABEL_MY_COACH_QUESTION </span>
905
                <span id="my-coach-question-answer-last-date">LABEL_MY_COACH_LAST_ANSWER </span>
906
            </div>
907
 
6567 stevensc 908
            <p id="my-coach-question-description"></p>
6552 stevensc 909
 
6596 stevensc 910
            <div class="my-coach-record-card-info">
6648 stevensc 911
                <span id="my-coach-question-answer-count-answers"></span>
6649 stevensc 912
                <span id="my-coach-question-answer-count-reactions"></span>
913
                <span id="my-coach-question-answer-count-views"></span>
914
                <span id="my-coach-question-answer-count-comments"></span>
6596 stevensc 915
            </div>
6552 stevensc 916
 
6579 stevensc 917
            <div class="my-coach-record-card-actions">
6586 stevensc 918
                <button class="feed__share-option" id="my-coach-question-answer-btn-back"> <i class="fa fa-chevron-left" aria-hidden="true"></i> LABEL_BACK </button>
6584 stevensc 919
                <button class="feed__share-option" id="my-coach-question-answer-btn-answer"> <i class="fa fa-pencil" aria-hidden="true"></i> LABEL_REPLY </button>
920
                <button class="feed__share-option" id="my-coach-question-answer-btn-delete"> <i class="fa fa-trash" aria-hidden="true"></i> LABEL_DELETE </button>
6552 stevensc 921
            </div>
922
        </div>
923
 
6553 stevensc 924
        <div id="my-coach-question-answers-list" class="my-coach-answers-list">
6521 efrain 925
        </div>
6552 stevensc 926
    </div>
927
</section>
6521 efrain 928
 
6552 stevensc 929
 
6388 efrain 930
<!-- The Modal -->
931
<div class="modal" id="modal-question">
6646 stevensc 932
    <div class="modal-dialog  modal-lg">
6388 efrain 933
        <div class="modal-content">
934
 
935
            <!-- Modal Header -->
936
            <div class="modal-header">
6650 stevensc 937
                <h4 class="modal-title h4">LABEL_TOPIC_TO_WORK</h4>
6388 efrain 938
                <button type="button" class="close" data-dismiss="modal">&times;</button>
939
            </div>
940
 
941
            <!-- Modal body -->
942
            <div class="modal-body">
943
                <?php
944
                $form = $this->formQuestion;
945
                $form->setAttributes([
946
                    'method'    => 'post',
947
                    'name'      => 'form-questiom',
948
                    'id'        => 'form-question'
949
                ]);
950
 
951
                $form->prepare();
952
                echo $this->form()->openTag($form);
953
                ?>
954
                <div class="form-group">
955
                    <?php
956
                    $element = $form->get('title');
957
                    $element->setOptions(['label' => 'LABEL_TITLE']);
958
                    $element->setAttributes(['class' => 'form-control']);
959
 
960
                    echo $this->formLabel($element);
961
                    echo $this->formText($element);
962
                    ?>
963
                </div>
6552 stevensc 964
                <div class="form-group">
6388 efrain 965
                    <?php
966
                    $element = $form->get('description');
967
                    $element->setOptions(['label' => 'LABEL_DESCRIPTION']);
968
                    $element->setAttributes(['class' => 'form-control', 'id' => 'description_question']);
6552 stevensc 969
 
6388 efrain 970
                    echo $this->formLabel($element);
971
                    echo $this->formTextArea($element);
972
                    ?>
973
                </div>
974
                <div class="form-group">
975
                    <?php
6552 stevensc 976
 
6388 efrain 977
                    $element = $form->get('category_id');
978
                    $element->setOptions(['label' => 'LABEL_CATEGORY']);
6552 stevensc 979
 
6388 efrain 980
                    echo $this->formLabel($element);
981
                    echo $this->formSelect($element);
982
                    ?>
983
                </div>
984
                <div class="text-right">
985
                    <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
986
                    <button type="button" class="btn btn-light btn-cancel">LABEL_CANCEL</button>
987
                </div>
988
                <?php echo $this->form()->closeTag($form); ?>
989
            </div>
990
 
991
 
992
        </div>
993
    </div>
994
</div>
6552 stevensc 995
 
6521 efrain 996
<div class="modal" id="modal-answer">
6647 stevensc 997
    <div class="modal-dialog modal-lg">
6521 efrain 998
        <div class="modal-content">
6388 efrain 999
 
6521 efrain 1000
            <!-- Modal Header -->
1001
            <div class="modal-header">
6647 stevensc 1002
                <h4 class="modal-title h4" id="modal-answer-title"></h4>
6521 efrain 1003
                <button type="button" class="close" data-dismiss="modal">&times;</button>
1004
            </div>
6388 efrain 1005
 
6521 efrain 1006
            <!-- Modal body -->
1007
            <div class="modal-body">
1008
                <?php
1009
                $form = $this->formAnswer;
1010
                $form->setAttributes([
1011
                    'method'    => 'post',
1012
                    'name'      => 'form-answer',
1013
                    'id'        => 'form-answer',
1014
                ]);
6388 efrain 1015
 
6521 efrain 1016
                $form->prepare();
1017
                echo $this->form()->openTag($form);
1018
                ?>
6552 stevensc 1019
                <div class="form-group">
6521 efrain 1020
                    <?php
1021
                    $element = $form->get('description');
1022
                    $element->setOptions(['label' => 'LABEL_TEXT']);
1023
                    $element->setAttributes(['class' => 'form-control', 'id' => 'description_answer']);
6552 stevensc 1024
 
6521 efrain 1025
                    echo $this->formLabel($element);
1026
                    echo $this->formTextArea($element);
1027
                    ?>
1028
                </div>
1029
                <div class="text-right">
1030
                    <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
1031
                    <button type="button" class="btn btn-light btn-cancel">LABEL_CANCEL</button>
1032
                </div>
1033
                <?php echo $this->form()->closeTag($form); ?>
1034
            </div>
6388 efrain 1035
 
6521 efrain 1036
 
1037
        </div>
1038
    </div>
1039
</div>
1040
 
1041
<script id="answerTemplate" type="text/x-jsrender">
6557 stevensc 1042
    <div class="my-coach-record-card-container col-md-8 mx-auto" id="row-{{:uuid}}">
6554 stevensc 1043
            <div class="my-coach-record-card-details">
6556 stevensc 1044
                <div class="my-coach-record-card-resume">
1045
                    <img src="{{:user_image}}" />
1046
                    <p>{{:user_name}}</p>
1047
                </div>
6594 stevensc 1048
                <div class="my-coach-record-card-info">
1049
                    <span>LABEL_PUBLISHED LABEL_AGO_SMALL {{:time_elapsed}}</span>
1050
                    <span id="answer-total-comment-{{:uuid}}">{{:total_comments}} LABEL_COMMENTS</span>
1051
                    <span id="answer-total-reactions-{{:uuid}}">{{:total_reactions}} LABEL_REACTIONS</span>
1052
                </div>
6553 stevensc 1053
            </div>
6670 stevensc 1054
 
6666 stevensc 1055
            <div id="answer-text-{{:uuid}}" >{{:text}}</div>
6670 stevensc 1056
 
6557 stevensc 1057
            <div class="my-coach-record-card-actions">
1058
                {{if link_edit }}
6660 stevensc 1059
                <button data-link="{{>link_edit}}" data-answer="{{:uuid}}" class="btn btn-my-coach-edit-answer feed__share-option"> <i class="fa fa-pencil" aria-hidden="true"></i> LABEL_EDIT </button>
6557 stevensc 1060
                {{/if}}
6547 efrain 1061
 
6557 stevensc 1062
                {{if link_delete }}
6661 stevensc 1063
                <button data-link="{{>link_delete}}" data-question="{{:question_uuid}}" data-answer="{{:uuid}}" class="btn btn-my-coach-delete-answer feed__share-option"> <i class="fa fa-trash" aria-hidden="true"></i> LABEL_DELETE </button>
6557 stevensc 1064
                {{/if}}
1065
 
6582 stevensc 1066
                <div class="position-relative feed__share-option" id="reaction-container">
6660 stevensc 1067
                    <button class="btn reaction-btn p-0" data-answer="{{:uuid}}" data-link="{{:link_reaction_delete}}" data-reaction="{{:reaction}}" id="current-reaction-{{:uuid}}">
6521 efrain 1068
                        {{if reaction === '<?php echo ContentReaction::REACTION_FUN ?>'}}
1069
                        <svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-vubbuv" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="EmojiEmotionsIcon" style="color: rgb(255, 127, 80);">
1070
                            <path d="M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM8.5 8c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zM12 18c-2.28 0-4.22-1.66-5-4h10c-.78 2.34-2.72 4-5 4zm3.5-7c-.83 0-1.5-.67-1.5-1.5S14.67 8 15.5 8s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z"></path>
1071
                        </svg>
1072
                        LABEL_REACTION_FUN
1073
                        {{/if}}
1074
 
1075
                        {{if reaction === '<?php echo ContentReaction::REACTION_INTEREST ?>'}}
1076
                        <svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-vubbuv" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="TungstenIcon" style="color: rgb(245, 187, 92);transform: rotate(180deg);">
1077
                            <path d="M11 19h2v3h-2zm-9-8h3v2H2zm17 0h3v2h-3zm-3.106 6.8014 1.4072-1.4071 2.1213 2.1213-1.4071 1.4071zm-11.3099.7071 2.1214-2.1213 1.4071 1.4072-2.1213 2.1213zM15 8.02V3H9v5.02c-1.21.92-2 2.35-2 3.98 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.06-2-3.98zM11 5h2v2.1c-.32-.06-.66-.1-1-.1s-.68.04-1 .1V5z"></path>
1078
                        </svg>
1079
                        LABEL_REACTION_INTEREST
1080
                        {{/if}}
1081
 
1082
 
1083
                        {{if reaction === '<?php echo ContentReaction::REACTION_LOVE ?>'}}
1084
                        <svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-vubbuv" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="FavoriteTwoToneIcon" style="color: rgb(223, 112, 77);">
1085
                            <path d="M16.5 5c-1.54 0-3.04.99-3.56 2.36h-1.87C10.54 5.99 9.04 5 7.5 5 5.5 5 4 6.5 4 8.5c0 2.89 3.14 5.74 7.9 10.05l.1.1.1-.1C16.86 14.24 20 11.39 20 8.5c0-2-1.5-3.5-3.5-3.5z" opacity=".3"></path>
1086
                            <path d="M16.5 3c-1.74 0-3.41.81-4.5 2.09C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.42 2 8.5c0 3.78 3.4 6.86 8.55 11.54L12 21.35l1.45-1.32C18.6 15.36 22 12.28 22 8.5 22 5.42 19.58 3 16.5 3zm-4.4 15.55-.1.1-.1-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04.99 3.57 2.36h1.87C13.46 5.99 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05z"></path>
1087
                        </svg>
1088
                        LABEL_REACTION_LOVE
1089
                        {{/if}}
1090
 
1091
 
1092
                        {{if reaction === '<?php echo ContentReaction::REACTION_RECOMMENDED ?>'}}
1093
                        <svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-vubbuv" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="RecommendIcon" style="color: rgb(116, 5, 249);">
1094
                            <path d="M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm6 9.8a.9.9 0 0 1-.1.5l-2.1 4.9a1.34 1.34 0 0 1-1.3.8H9a2 2 0 0 1-2-2v-5a1.28 1.28 0 0 1 .4-1L12 5l.69.69a1.08 1.08 0 0 1 .3.7v.2L12.41 10H17a1 1 0 0 1 1 1z"></path>
1095
                        </svg>
1096
                        LABEL_REACTION_RECOMMENDED
1097
                        {{/if}}
1098
 
1099
                        {{if reaction === '<?php echo ContentReaction::REACTION_SUPPORT ?>'}}
1100
                        <svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-vubbuv" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="VolunteerActivismIcon" style="color: rgb(100, 149, 237);">
1101
                            <path d="M1 11h4v11H1zm15-7.75C16.65 2.49 17.66 2 18.7 2 20.55 2 22 3.45 22 5.3c0 2.27-2.91 4.9-6 7.7-3.09-2.81-6-5.44-6-7.7C10 3.45 11.45 2 13.3 2c1.04 0 2.05.49 2.7 1.25zM20 17h-7l-2.09-.73.33-.94L13 16h2.82c.65 0 1.18-.53 1.18-1.18 0-.49-.31-.93-.77-1.11L8.97 11H7v9.02L14 22l8.01-3c-.01-1.1-.9-2-2.01-2z"></path>
1102
                        </svg>
1103
                        LABEL_REACTION_SUPPORT
1104
                        {{/if}}
1105
 
1106
                        {{if reaction === ''}}
1107
                        <svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-vubbuv" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="RecommendIcon" style="color: gray;">
1108
                            <path d="M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm6 9.8a.9.9 0 0 1-.1.5l-2.1 4.9a1.34 1.34 0 0 1-1.3.8H9a2 2 0 0 1-2-2v-5a1.28 1.28 0 0 1 .4-1L12 5l.69.69a1.08 1.08 0 0 1 .3.7v.2L12.41 10H17a1 1 0 0 1 1 1z"></path>
1109
                        </svg>
1110
                        LABEL_REACTION_UNSET
1111
                        {{/if}}
1112
 
1113
 
6670 stevensc 1114
                    </button>
6582 stevensc 1115
                    <div class="reactions">
6521 efrain 1116
                        <button class="btn-save-reaction" data-link="{{:link_save_reaction}}" data-reaction="<?php echo ContentReaction::REACTION_RECOMMENDED ?>" title="LABEL_REACTION_RECOMMENDED" data-answer="{{:uuid}}">
6670 stevensc 1117
                            <svg xmlns="http://www.w3.org/2000/svg" class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-vubbuv" version="1.1" viewBox="0 0 100 100" xml:space="preserve">
1118
                                <path d="M71.6 57.78l-18.57-2.85a4.425 4.425 0 01-3.7-5.04 4.425 4.425 0 015.04-3.7l18.47 1.13c2.41.37 4.16 4.35 3.79 6.76a4.416 4.416 0 01-5.03 3.7zM69 68.57l-18.22-3.81c-2.37-.49-3.88-2.81-3.39-5.18.49-2.37 2.81-3.88 5.18-3.39l18.65 3.24c2.37.49 3.45 3.38 2.95 5.74-.48 2.37-2.8 3.89-5.17 3.4zM66.41 79.29l-17.86-4.44a4.327 4.327 0 01-3.35-5.11 4.327 4.327 0 015.11-3.35l17.99 3.76c2.34.49 3.83 2.78 3.35 5.11-.49 2.34-2.9 4.52-5.24 4.03zM60.56 89.05l-14.42-4.82c-2.18-.58-3.49-2.82-2.91-5 .58-2.18 2.82-3.49 5-2.91l15.9 4.15c2.18.58 3.49 2.82 2.91 5-.58 2.19-4.3 4.16-6.48 3.58z" class="st0"></path>
1119
                                <path d="M63.3 24.36c-.54-.8-2.31-2.51-3.33-1.04l-.61.89c-2.4 3.48-5.53 6.4-9.18 8.53-2.94 1.72-6.05 3.53-6.6 3.81-.57.29-4.94 3.59-8.96 6.66-4.28 3.27-14.92 5.05-14.92 5.05v28.86h2.98c3.69 0 7.34.83 10.67 2.44l7.94 3.83c.6.29 1.22-.34.93-.94-.01-.02-.02-.03-.02-.05a5.86 5.86 0 01-.56-2.95c.17-2.4 1.7-4.3 3.7-5.11a5.96 5.96 0 01-1.33-6.22c.35-.95.94-1.8 1.71-2.46.5-.42 1.05-.75 1.63-.99-.44-.45-.81-.98-1.1-1.57-.45-.91-.65-1.93-.58-2.94A5.976 5.976 0 0149.38 55a5.947 5.947 0 01-1.33-6.21c.35-.97.95-1.83 1.74-2.49 1.43-1.2 3.07-1.48 4.85-1.42l2.22.15 3.53-4.36c1.26-1.44 2.27-3.07 3.02-4.83l.48-1.14c1.42-3.35 1.2-7.17-.59-10.34zM6.19 80.62h8.67c1.76 0 3.19-1.43 3.19-3.19V48.26c0-1.76-1.43-3.19-3.19-3.19H6.19C4.43 45.07 3 46.5 3 48.26v29.17a3.18 3.18 0 003.19 3.19z" class="st0"></path>
1120
                                <g>
1121
                                    <path d="M83.93 38.06v.59c0 .97-.79 1.75-1.75 1.75h-.04c-.97 0-1.75-.78-1.75-1.75v-.59c.05.01.1.01.16.01h3.23c.04-.01.1-.01.15-.01z" class="st4"></path>
1122
                                    <path d="M82.17 41.19h-.04c-1.4 0-2.54-1.14-2.54-2.54v-.59a.797.797 0 01.9-.79h3.34c.23-.03.45.04.62.19.17.15.27.37.27.6v.59c0 1.4-1.14 2.54-2.55 2.54zm-.97-2.34c.1.43.48.75.94.75h.04c.46 0 .84-.32.94-.75H81.2z" class="st5"></path>
1123
                                    <path d="M88.87 25.23a7.483 7.483 0 00-2.78 5.8v1.26h-7.87v-1.21c0-2.24-.96-4.4-2.71-5.79a10.617 10.617 0 01-4.01-8.33c0-5.99 4.94-10.83 10.97-10.65 5.53.15 10.08 4.62 10.33 10.14.17 3.54-1.41 6.73-3.93 8.78z" class="st6"></path>
1124
                                    <path d="M86.09 33.08h-7.87c-.44 0-.79-.35-.79-.79v-1.21c0-2.03-.9-3.97-2.41-5.17a11.4 11.4 0 01-4.31-8.95c0-6.42 5.32-11.62 11.78-11.44 5.96.17 10.83 4.96 11.1 10.91.17 3.67-1.37 7.1-4.22 9.43-1.58 1.29-2.49 3.18-2.49 5.19v1.26c0 .42-.35.77-.79.77zm-7.08-1.58h6.29v-.47c0-2.49 1.12-4.82 3.07-6.41 2.46-2 3.79-4.96 3.64-8.13-.23-5.12-4.43-9.25-9.56-9.4-5.56-.16-10.16 4.33-10.16 9.86 0 3.02 1.35 5.83 3.71 7.72 1.91 1.52 3.01 3.86 3.01 6.41v.42z" class="st5"></path>
1125
                                    <path d="M78.22 32.29H86.09V35.23H78.22z" class="st4"></path>
1126
                                    <path d="M78.22 36.03a.787.787 0 01-.79-.79v-2.95c0-.44.35-.79.79-.79h7.87c.44 0 .79.35.79.79v2.94c0 .44-.35.79-.79.79l-7.87.01zm.79-2.95v1.37h6.29v-1.36h-6.29z" class="st5"></path>
1127
                                    <g>
1128
                                        <path d="M86.09 35.24v.51c0 1.23-.95 2.23-2.16 2.31-.05.01-.1.01-.16.01h-3.23c-.05 0-.11 0-.16-.01a2.31 2.31 0 01-2.16-2.31v-.51h7.87z" class="st4"></path>
1129
                                        <path d="M83.77 38.85h-3.23c-.08 0-.16 0-.23-.01a3.11 3.11 0 01-2.88-3.1v-.51c0-.44.35-.79.79-.79h7.87a.787.787 0 01.79.79v.51a3.11 3.11 0 01-2.88 3.1c-.07.01-.15.01-.23.01zm-4.73-2.82c.13.67.7 1.19 1.4 1.24.02 0 .04 0 .06.01h3.34c.74-.05 1.32-.57 1.44-1.25h-6.24z" class="st5"></path>
1130
                                    </g>
1131
                                    <g>
1132
                                        <path d="M83.93 33.08c-.44 0-.79-.34-.79-.78v-.03c0-3.96.47-7.93 1.39-11.78l.78-3.28-1.42.54c-.25.09-.53.06-.74-.1l-1.45-1.06a.785.785 0 01-.17-1.1c.26-.35.75-.43 1.1-.17l1.11.81 2.41-.91c.27-.1.58-.05.8.15.22.19.31.49.25.78l-1.13 4.72c-.89 3.74-1.35 7.58-1.35 11.42 0 .42-.36.79-.79.79z" class="st5"></path>
1133
                                    </g>
1134
                                    <g>
1135
                                        <path d="M80.39 33.08c-.44 0-.79-.34-.79-.78v-.03c0-3.84-.45-7.68-1.35-11.42l-1.13-4.72a.8.8 0 01.25-.78c.22-.19.53-.25.8-.15l2.41.91 1.11-.81c.35-.26.85-.18 1.1.17.26.35.18.85-.17 1.1l-1.45 1.06c-.22.16-.5.2-.74.1L79 17.21l.78 3.28c.92 3.85 1.39 7.82 1.39 11.78.01.44-.34.81-.78.81z" class="st5"></path>
1136
                                    </g>
1137
                                    <g>
1138
                                        <path d="M73.69 3.15L74 5.41a3.84 3.84 0 003.29 3.29l2.26.31-2.27.33a3.85 3.85 0 00-3.25 3.25l-.33 2.27-.33-2.27a3.85 3.85 0 00-3.25-3.25l-2.27-.33 2.24-.28a3.842 3.842 0 003.33-3.33l.27-2.25z" class="st7"></path>
1139
                                        <path d="M73.69 15.53c-.33 0-.6-.24-.65-.56l-.33-2.27a3.182 3.182 0 00-2.7-2.7l-2.27-.33a.65.65 0 01-.56-.66c0-.33.25-.61.58-.65L70 8.08a3.184 3.184 0 002.76-2.76l.28-2.24c.04-.33.32-.57.65-.58.33 0 .61.24.65.57l.31 2.26a3.203 3.203 0 002.73 2.73l2.26.31c.32.04.57.32.57.65s-.24.61-.56.65l-2.28.33a3.182 3.182 0 00-2.7 2.7l-.33 2.27c-.05.32-.33.56-.65.56zm-2.3-6.49a4.51 4.51 0 012.3 2.33 4.443 4.443 0 012.33-2.34 4.544 4.544 0 01-2.31-2.28 4.545 4.545 0 01-2.32 2.29z" class="st5"></path>
1140
                                    </g>
1141
                                </g>
6521 efrain 1142
                            </svg>
1143
                        </button>
1144
                        <button class="btn-save-reaction" data-link="{{:link_save_reaction}}" data-reaction="<?php echo ContentReaction::REACTION_SUPPORT ?>" title="LABEL_REACTION_SUPPORT" data-answer="{{:uuid}}">
6671 stevensc 1145
                            <svg xmlns="http://www.w3.org/2000/svg" class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-vubbuv" version="1.1" viewBox="0 0 100 100" xml:space="preserve"><text class="st28 st29" transform="translate(5.947 -6.888)">No es interesante</text><path d="M38.99 53.99c-.15-1.18.1-2.23.7-2.98.19-.24.44-.42.7-.58-.67-.49-1.18-1.25-1.27-2.54 0-.07.01-.15.01-.22-1.15 1.09-2.41 1.89-3.75 2.28-.05.02-.11.02-.16.02a.581.581 0 01-.16-1.14c2.34-.68 3.99-2.54 4.97-3.98 0 0 .01 0 .01-.01a.55.55 0 01.07-.09c.46-.48 1.05-.73 1.68-.73.13 0 .26.02.39.02-.14-.2-.26-.42-.35-.66-.45-1.2-.2-2.51.64-3.36.79-.79 2.03-.93 3.11-1.06.32-.04.62-.07.87-.12 1.63-.31 3.33-.61 5.06-.91 2.56-.44 5.16-.83 7.75-1.21.72-.61 1.21-1.41 1.23-2.07.01-.4-.15-.75-.48-1.06-.76-.69-1.95-.45-3.09-.22-.23.05-.46.09-.68.13-2.11.35-4.03.63-6.02.48-1.56-.12-3.08-.54-4.55-.94-.48-.13-.95-.26-1.42-.38-2.63-.66-5-.44-7.69.7-1.64.69-3.24 1.58-4.79 2.44-1.03.57-2.1 1.16-3.18 1.7-3.27 1.62-6.58 2.5-10.1 3.44l-.25.07c-4.51 1.2-9.12 2.24-13.71 3.08-.04.01-.07 0-.11.01-2.29.45-2.97 5.23-1.65 9.33 1.25 3.88 4.38 7.13 6.68 6.64 2.63-.56 5.06-1.94 7.48-3.04 2.21-1.01 4.5-2.06 6.86-2.85 2.57-.86 5.27-.79 7.22.21.35.18.67.4.98.61l.08.06c2.5 1.72 5.3 3.63 8.37 4.38-.13-.95.1-1.92.6-2.67-1.04-.55-1.87-1.38-2.05-2.78z" class="st30"></path><path d="M96.7 44.83c-.04 0-.06.03-.1.02-2.16-.42-4.42-.78-6.6-1.13-5.02-.81-10.21-1.65-15.03-3.26-.86-.29-1.75-.62-2.62-.94-3.38-1.25-6.87-2.55-10.24-2.07-3.47.49-6.97 1.04-10.42 1.63-1.72.3-3.42.6-5.04.91-.3.06-.62.09-.95.13-.9.1-1.92.22-2.42.73-.52.52-.67 1.35-.38 2.12.25.66.77 1.08 1.38 1.12.05 0 .08.04.12.06 2 .07 4.01.13 6 .28.32.02.56.3.54.63-.02.32-.3.56-.63.54-2.84-.21-5.71-.35-8.55-.39-.31 0-.57.11-.81.36l-.03.03c-.44.49-.7 1.35-.64 2.22.12 1.77 1.21 2.08 2.87 2.35 2.21.37 7.21.87 7.26.87.32.03.56.32.52.64-.03.3-.28.53-.58.53h-.06c-.21-.02-5.09-.51-7.34-.88-.34-.06-.73-.12-1.12-.23-.01 0-.01.01-.01.01-.51.05-.92.27-1.22.64-.4.5-.56 1.25-.45 2.11.22 1.77 2.03 2.29 4.02 2.69l.4.08c1.64.35 6.25.83 6.3.83.32.03.55.32.52.64-.03.3-.28.52-.58.52h-.06c-.19-.02-4.72-.49-6.43-.85l-.39-.08c-.54-.11-1.19-.25-1.84-.47-.58.65-.77 1.86-.37 2.74.57 1.27 1.78 1.5 3.05 1.74.15.03.3.06.44.09 1.64.33 6.74 1.82 10.73 3 .31.09.49.42.39.73-.08.25-.31.42-.56.42-.06 0-.11-.01-.17-.02-3.28-.98-5.92-1.74-7.81-2.26 1.29 1.42 2.74 2.99 4.25 3.64 2.73 1.17 5.44-.43 8.06-1.97.23-.14.47-.27.69-.41l10.37-6.03c.11-.06.22-.13.33-.2.7-.42 1.42-.86 2.35-.81 1.58.08 3.22.77 4.8 1.43.74.31 1.43.6 2.09.82 2.59.86 7.49 2.38 7.49 2.38 1.74.56 6.21-2.87 8.26-7.33 2.08-4.46 1.69-9.95.22-10.35z" class="st0"></path></svg>
6521 efrain 1146
                        </button>
1147
                        <button class="btn-save-reaction" data-link="{{:link_save_reaction}}" data-reaction="<?php echo ContentReaction::REACTION_LOVE ?>" title="LABEL_REACTION_LOVE" data-answer="{{:uuid}}">
6672 stevensc 1148
                            <svg xmlns="http://www.w3.org/2000/svg" class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-vubbuv" version="1.1" viewBox="0 0 100 100" xml:space="preserve"><path d="M87.42 17.46c-9.63-9.63-25.25-9.63-34.88 0L50 20.01l-2.55-2.55c-9.63-9.63-25.25-9.63-34.88 0-9.63 9.63-9.63 25.25 0 34.88l2.55 2.55L50 89.76l34.88-34.88 2.55-2.55c9.62-9.62 9.62-25.24-.01-34.87z" class="st0"></path><path d="M87.42 17.46c-9.63-9.63-25.25-9.63-34.88 0L50 20.01l-2.55-2.55c-9.63-9.63-25.25-9.63-34.88 0-9.63 9.63-9.63 25.25 0 34.88l2.55 2.55L50 89.76l34.88-34.88 2.55-2.55c9.62-9.62 9.62-25.24-.01-34.87z" class="st1"></path><path d="M88.62 51.04c.65-.75 1.25-1.53 1.8-2.33L66.57 20.82l-.19 1.75-3.11 5.89-8.34 3.43-7 11.81-11.2-5.17-1.22-1.4s-4.07 4.84-4.83 5.25c-.76.42-6.28 17.8-6.28 17.8l9.42 13.39L50 89.76l23.11-23.11 11.76-11.76 2.55-2.55c.39-.39.75-.79 1.11-1.19l.09-.11z" class="st2"></path><path d="M72.43 44.43l-13.11-2.01a3.121 3.121 0 11.95-6.17l13.05.8c1.7.26 2.94 3.07 2.68 4.77a3.136 3.136 0 01-3.57 2.61zM70.6 52.05l-12.87-2.69A3.092 3.092 0 0159 43.31l13.17 2.29c1.67.35 2.44 2.38 2.09 4.06a3.092 3.092 0 01-3.66 2.39zM68.77 59.62l-12.62-3.14a3.042 3.042 0 01-2.36-3.61 3.042 3.042 0 013.61-2.36l12.7 2.65c1.65.34 2.71 1.96 2.36 3.61-.34 1.66-2.04 3.2-3.69 2.85zM64.64 66.52l-10.19-3.4a2.887 2.887 0 011.48-5.58l11.23 2.93c1.54.41 2.46 1.99 2.05 3.53-.41 1.53-3.03 2.92-4.57 2.52z" class="st3"></path><path d="M66.57 20.82c-.38-.56-1.63-1.77-2.35-.73l-.43.63a20.198 20.198 0 01-6.49 6.02c-2.07 1.21-4.27 2.49-4.66 2.69-.4.21-3.49 2.54-6.33 4.71-3.03 2.31-10.53 3.56-10.53 3.56v20.39h2.11c2.61 0 5.18.59 7.53 1.72l5.61 2.7c.42.2.86-.24.65-.66-.01-.01-.01-.02-.02-.04-.31-.65-.45-1.37-.4-2.08.12-1.7 1.2-3.03 2.62-3.61a4.19 4.19 0 01-.94-4.39c.24-.67.66-1.27 1.21-1.73.35-.3.74-.53 1.15-.7a4.43 4.43 0 01-.78-1.11c-.31-.64-.46-1.36-.41-2.08a4.195 4.195 0 012.62-3.64 4.209 4.209 0 01-.94-4.38c.25-.68.67-1.29 1.23-1.76 1.01-.85 2.17-1.05 3.43-1.01l1.57.1 2.49-3.08c.89-1.02 1.61-2.17 2.13-3.41l.34-.81c1.01-2.36.86-5.06-.41-7.3zM25.81 60.56h6.97c1.01 0 1.83-.82 1.83-1.83V37.28c0-1.01-.82-1.83-1.83-1.83h-6.97c-1.01 0-1.83.82-1.83 1.83v21.45c0 1.01.82 1.83 1.83 1.83z" class="st3"></path></svg>
6521 efrain 1149
                        </button>
1150
                        <button class="btn-save-reaction" data-link="{{:link_save_reaction}}" data-reaction="<?php echo ContentReaction::REACTION_INTEREST ?>" title="LABEL_REACTION_INTEREST" data-answer="{{:uuid}}">
6672 stevensc 1151
                            <svg xmlns="http://www.w3.org/2000/svg" class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-vubbuv" version="1.1" viewBox="0 0 100 100" xml:space="preserve"><path d="M71.16 62.65V63c0 .58-.47 1.05-1.05 1.05h-.02c-.58 0-1.05-.47-1.05-1.05v-.35h2.03c.03.01.06.01.09 0z" class="st4"></path><path d="M70.11 64.54h-.02c-.84 0-1.53-.69-1.53-1.53v-.35a.468.468 0 01.54-.47h2.01c.14-.02.27.02.37.11.1.09.16.22.16.36v.35c0 .84-.69 1.53-1.53 1.53zm-.59-1.41c.06.26.29.45.57.45h.02c.28 0 .51-.19.57-.45h-1.16z" class="st5"></path><path d="M74.14 54.93a4.509 4.509 0 00-1.67 3.49v.76h-4.74v-.73c0-1.35-.58-2.65-1.63-3.49a6.42 6.42 0 01-2.41-5.02c0-3.6 2.97-6.52 6.6-6.41 3.33.1 6.07 2.79 6.22 6.11.1 2.14-.85 4.06-2.37 5.29z" class="st6"></path><path d="M72.47 59.66h-4.74a.48.48 0 01-.48-.48v-.73c0-1.22-.54-2.39-1.45-3.11a6.859 6.859 0 01-2.59-5.39c0-3.87 3.2-7 7.09-6.89 3.59.1 6.52 2.99 6.68 6.57.1 2.21-.82 4.28-2.54 5.67-.95.77-1.5 1.91-1.5 3.12v.76c0 .27-.21.48-.47.48zm-4.26-.95h3.78v-.29c0-1.5.67-2.9 1.85-3.86a5.902 5.902 0 002.19-4.89c-.14-3.08-2.67-5.57-5.76-5.66-3.34-.09-6.11 2.6-6.11 5.94 0 1.82.81 3.51 2.24 4.65 1.15.92 1.81 2.32 1.81 3.86v.25z" class="st5"></path><path d="M67.73 59.19H72.47V60.96H67.73z" class="st4"></path><path d="M67.73 61.43a.476.476 0 01-.48-.48v-1.77c0-.26.21-.48.48-.48h4.74c.26 0 .48.21.48.48v1.77c0 .26-.21.48-.48.48h-4.74zm.48-1.77v.82h3.78v-.82h-3.78z" class="st5"></path><g><path d="M72.47 60.96v.31c0 .74-.57 1.34-1.3 1.39H69.05a1.39 1.39 0 01-1.3-1.39v-.3l4.72-.01z" class="st4"></path><path d="M71.07 63.13h-1.94c-.05 0-.09 0-.14-.01-.97-.07-1.73-.89-1.73-1.87v-.3c0-.26.21-.48.48-.48h4.74a.476.476 0 01.48.48v.31c0 .98-.76 1.8-1.73 1.87h-.16zm-2.85-1.7c.08.4.42.72.84.75h2.05a.94.94 0 00.87-.75h-3.76z" class="st5"></path></g><g><path d="M71.16 59.66c-.26 0-.48-.2-.48-.47v-.02c0-2.39.28-4.77.84-7.09l.48-1.97-.86.32c-.15.06-.32.03-.45-.06l-.87-.64a.467.467 0 01-.1-.66c.15-.21.45-.26.66-.1l.67.49 1.45-.55a.47.47 0 01.48.09c.13.12.19.3.15.47l-.68 2.84a29.46 29.46 0 00-.81 6.87c0 .26-.21.48-.48.48z" class="st5"></path></g><g><path d="M69.03 59.66c-.26 0-.48-.2-.48-.47v-.02c0-2.31-.27-4.62-.81-6.87l-.68-2.84c-.04-.17.02-.35.15-.47a.47.47 0 01.48-.09l1.45.55.67-.49c.21-.16.51-.11.66.1.15.21.11.51-.1.66l-.87.64c-.13.09-.3.12-.45.06l-.86-.32.47 1.97c.56 2.32.84 4.71.84 7.09.01.28-.2.5-.47.5z" class="st5"></path></g><g><path d="M65 41.65l.19 1.35c.14 1.03.95 1.84 1.98 1.98l1.36.19-1.37.2c-1.01.15-1.81.94-1.96 1.96L65 48.7l-.2-1.37a2.323 2.323 0 00-1.96-1.96l-1.37-.2 1.35-.17c1.05-.13 1.87-.96 2.01-2.01l.17-1.34z" class="st7"></path><path d="M65 49.09a.39.39 0 01-.39-.34l-.2-1.37c-.12-.85-.78-1.5-1.62-1.62l-1.37-.2a.398.398 0 01.01-.79l1.35-.17a1.91 1.91 0 001.66-1.66l.17-1.35c.03-.2.19-.35.39-.35s.37.15.39.34l.19 1.36c.12.85.79 1.53 1.64 1.64l1.36.19c.2.03.34.19.34.39s-.14.37-.34.39l-1.37.2c-.85.12-1.5.78-1.62 1.62l-.2 1.37a.39.39 0 01-.39.35zm-1.38-3.9c.62.28 1.11.78 1.38 1.4.27-.63.77-1.14 1.4-1.41-.62-.27-1.12-.76-1.39-1.37a2.75 2.75 0 01-1.39 1.38z" class="st5"></path></g><path d="M69.57 37.28c-8.37 0-15.19 6.81-15.19 15.19s6.81 15.19 15.19 15.19 15.19-6.81 15.19-15.19-6.81-15.19-15.19-15.19zm0 29c-7.62 0-13.82-6.2-13.82-13.82s6.2-13.82 13.82-13.82 13.82 6.2 13.82 13.82-6.19 13.82-13.82 13.82z" class="st22"></path><path d="M35.81 50.46c8.66 0 15.7-7.04 15.7-15.7v-8.15c1.22-1.26 7.48-8.03 8.74-15.64.16-.94-.17-1.89-.88-2.52-.7-.63-1.65-.85-2.56-.6-3.81 1.04-11.58 2.8-20.9 2.8h-.11c-1.55 0-3.07.22-4.51.66-.72.22-1.43.48-2.11.8a15.589 15.589 0 00-3.21 2.01 15.815 15.815 0 00-2.67 2.74c-.61.81-1.14 1.66-1.59 2.56-.33.67-.61 1.37-.85 2.09-.46 1.43-.72 2.94-.75 4.48-.01.12-.01.24-.01.35v8.42c.02 8.66 7.06 15.7 15.71 15.7zm0-1.36c-7.9 0-14.33-6.43-14.33-14.34v-7.74h28.67v7.74c0 7.91-6.43 14.34-14.34 14.34z" class="st0"></path><path d="M34.48 46.84c2.16.59 4.49-.03 6.08-1.6.38-.37.38-.99.01-1.37a.975.975 0 00-1.37-.01 4.38 4.38 0 01-4.22 1.11 4.37 4.37 0 01-3.07-3.1.973.973 0 00-1.18-.69c-.52.14-.82.67-.69 1.18a6.337 6.337 0 004.44 4.48z" class="st22"></path><path d="M48.52 55.5c-.21-.16-.42-.32-.64-.48-3.52-2.56-7.69-3.92-12.06-3.92s-8.54 1.35-12.07 3.91a20.631 20.631 0 00-8.51 16.66V84.5c0 4.27 3.48 7.75 7.75 7.75h25.66c4.27 0 7.75-3.47 7.75-7.75V71.67c0-5.49-2.14-10.66-6.03-14.55-.58-.57-1.2-1.12-1.85-1.62zm-12.7 23.36l-4.57-9.75 4.57-13.09 4.56 13.1-4.56 9.74zm5.39-11.5l-4.75-13.62a.69.69 0 00-.64-.46c-.29 0-.55.18-.64.46l-4.75 13.62-5.41-11.56c3.19-2.18 6.92-3.33 10.81-3.33s7.62 1.15 10.81 3.34l-5.43 11.55z" class="st0"></path><g><path d="M48.91 30.61c-.29-.47-2.56-.26-5.85-.33-3.29-.07-5.48.4-7.31.33-1.83-.07-5.12-.33-7.23-.33-3.24 0-5.51.09-5.68.16-.27.13-.47.89.13 1.41.37.31.62.62 1.17 2.34.55 1.72 1.39 4.9 5.04 4.86 3.65-.04 4.71-2.96 4.97-4.27.26-1.32 1.21-2.01 1.53-2.01s1.13-.22 1.61 1.86c.47 2.08 1.94 4.53 5.37 4.46 3.43-.07 4.64-4.05 4.82-5.33.18-1.28 1.04-1.66 1.24-1.86.21-.22.54-.73.19-1.29zm-19.55 7.93c-4.96.11-4.67-6.5-4.23-6.85.42-.34 3.04-.27 4.34-.27 1.3 0 3.92.01 4.23.42.35.45.62 6.59-4.34 6.7zm12.95.04c-4.96-.11-4.69-6.25-4.34-6.7.32-.41 2.93-.42 4.23-.42s3.92-.07 4.34.27c.44.35.73 6.96-4.23 6.85z" class="0"></path><path d="M42.31 38.54c-4.96-.11-4.69-6.25-4.34-6.7.32-.41 2.93-.42 4.23-.42s3.92-.07 4.34.27c.44.35.73 6.96-4.23 6.85zM29.41 38.54c-4.96-.11-4.69-6.25-4.34-6.7.32-.41 2.93-.42 4.23-.42 1.3 0 3.92-.07 4.34.27.44.35.73 6.96-4.23 6.85z" class="st3"></path></g></svg>
6521 efrain 1152
                        </button>
1153
                        <button class="btn-save-reaction" data-link="{{:link_save_reaction}}" data-reaction="<?php echo ContentReaction::REACTION_FUN ?>" title="LABEL_REACTION_FUN" data-answer="{{:uuid}}">
6672 stevensc 1154
                            <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-vubbuv" version="1.1" viewBox="0 0 100 100" xml:space="preserve"><g><defs><ellipse id="SVGID_00000127751164164416277760000017379854605069759882_" cx="49.6" cy="50" rx="41.88" ry="41.88" transform="rotate(-45.001 49.602 50)"></ellipse></defs><use fill="#3C5A9A" overflow="visible" xlink:href="#SVGID_00000127751164164416277760000017379854605069759882_"></use><clipPath id="SVGID_00000145779529853686429170000009984758207159936896_"><use overflow="visible" xlink:href="#SVGID_00000127751164164416277760000017379854605069759882_"></use></clipPath><g clip-path="url(#SVGID_00000145779529853686429170000009984758207159936896_)"><ellipse cx="49.5" cy="50" class="st0" rx="41.88" ry="41.88" transform="rotate(-22.5 49.494 49.998)"></ellipse></g></g><path d="M76.75 51.56c0 1.4-.15 2.8-.46 4.13-2.31 10.42-13.31 18.33-26.5 18.33s-24.19-7.9-26.53-18.33c-.3-1.34-.46-2.74-.46-4.13 0-1.91.3-3.77.82-5.56 6.84 4.1 16.32 6.63 26.78 6.63 9.94 0 18.9-2.28 25.68-6.02.46 1.58.67 3.25.67 4.95z" class="st15"></path><path d="M76.75 51.56c0 1.4-.15 2.8-.46 4.13-2.31 10.42-13.31 18.33-26.5 18.33s-24.19-7.9-26.53-18.33c-.3-1.34-.46-2.74-.46-4.13 0-.61.03-1.19.09-1.76.06.82.18 1.67.36 2.46C25.6 62.68 36.6 70.59 49.79 70.59s24.19-7.9 26.5-18.33c.18-.85.33-1.7.36-2.58.07.6.1 1.24.1 1.88z" class="st10"></path><path d="M76.75 51.56c0 1.4-.15 2.8-.46 4.13-6.81 4.01-16.14 6.47-26.5 6.47S30.1 59.7 23.26 55.69c-.3-1.34-.46-2.74-.46-4.13 0-1.91.3-3.77.82-5.56 6.84 4.1 16.32 6.63 26.78 6.63 9.94 0 18.9-2.28 25.68-6.02.46 1.58.67 3.25.67 4.95zM80.63 40c-.56-.15-1.03-.58-1.2-1.17-2.74-9.02-12.82-9.36-13.24-9.37-.99-.03-1.72-.82-1.7-1.77.02-.96.81-1.72 1.77-1.7 4.49.08 13.72 2.66 16.5 11.83.28.92-.24 1.89-1.16 2.17-.33.09-.66.09-.97.01z" class="st3"></path><path d="M82.56 39.25c-.02-.16-.04-.31-.09-.44-2.77-9.18-12.01-11.75-16.49-11.84-.6-.01-1.13.29-1.47.77l-.02-.04c.03-.98.81-1.73 1.76-1.71 4.49.06 13.73 2.66 16.5 11.81.17.49.08 1.04-.19 1.45z" class="st3"></path><g><path d="M17.61 40c.56-.15 1.03-.58 1.2-1.17 2.74-9.02 12.82-9.36 13.24-9.37.99-.03 1.72-.82 1.7-1.77-.02-.96-.81-1.72-1.77-1.7-4.49.08-13.72 2.66-16.5 11.83-.28.92.24 1.89 1.16 2.17.33.09.66.09.97.01z" class="st3"></path><path d="M15.68 39.25c.02-.16.04-.31.09-.44 2.77-9.18 12.01-11.75 16.49-11.84.6-.01 1.13.29 1.47.77l.02-.04c-.03-.98-.81-1.73-1.76-1.71-4.49.06-13.73 2.66-16.5 11.81-.16.49-.07 1.04.19 1.45z" class="st3"></path></g><g><path d="M55.85 42.27c.69-2.02 2.12-3.64 3.85-4.85 1.74-1.24 3.93-1.95 6.2-2.02 2.25.01 4.56.61 6.29 1.95 1.8 1.21 3.07 2.97 3.79 4.92-2.05-.61-3.7-1.34-5.35-1.73-1.61-.47-3.14-.63-4.65-.6-3.06-.02-6.2 1.02-10.13 2.33z" class="st3"></path><path d="M75.97 42.26c-.34-.11-.68-.23-1.02-.3-.64-1.14-1.59-2.16-2.77-2.96-1.71-1.33-4.02-1.93-6.29-1.93-2.24.08-4.43.76-6.18 2.01-1.1.76-2.12 1.71-2.8 2.84-.34.11-.68.23-1.06.34.68-2.01 2.12-3.64 3.86-4.85 1.74-1.25 3.94-1.97 6.18-2.01 2.27 0 4.58.61 6.29 1.93 1.82 1.22 3.07 2.96 3.79 4.93z" class="st3"></path><g><path d="M42.93 42.27c-.69-2.02-2.12-3.64-3.85-4.85-1.74-1.24-3.93-1.95-6.2-2.02-2.25.01-4.56.61-6.29 1.95-1.8 1.21-3.07 2.97-3.79 4.92 2.05-.61 3.7-1.34 5.35-1.73 1.61-.47 3.14-.63 4.65-.6 3.06-.02 6.19 1.02 10.13 2.33z" class="st3"></path><path d="M22.8 42.26c.34-.11.68-.23 1.02-.3.64-1.14 1.59-2.16 2.77-2.96 1.71-1.33 4.02-1.93 6.29-1.93 2.24.08 4.43.76 6.18 2.01 1.1.76 2.12 1.71 2.8 2.84.34.11.68.23 1.06.34-.68-2.01-2.12-3.64-3.86-4.85-1.74-1.25-3.94-1.97-6.18-2.01-2.27 0-4.58.61-6.29 1.93-1.82 1.22-3.07 2.96-3.79 4.93z" class="st3"></path></g></g><g><path d="M25.86 63.51c-3.38 5.33-10.09 7.14-14.98 4.04-4.89-3.1-6.12-9.94-2.74-15.27s19.54-13.9 20.74-13.14c1.21.77.36 19.04-3.02 24.37z" class="st29"></path><path d="M25.86 63.51c-3.38 5.33-10.09 7.14-14.98 4.04-4.89-3.1-6.11-9.94-2.74-15.27.16-.26.35-.52.57-.77-2.64 5.16-1.26 11.33 3.32 14.23 4.58 2.9 10.75 1.52 14.29-3.08-.15.31-.3.59-.46.85z" class="st30"></path><path d="M25.86 63.5c-.21.33-.44.66-.68.95 3-6.21 3.69-22.78 2.55-23.5-1.15-.73-15.83 6.98-20.16 12.34.16-.34.36-.68.57-1.02 3.38-5.33 19.53-13.9 20.74-13.13 1.19.76.36 19.03-3.02 24.36z" class="st31"></path><g><path d="M73.35 63.51c3.38 5.33 10.09 7.14 14.98 4.04 4.89-3.1 6.12-9.94 2.74-15.27s-19.54-13.9-20.74-13.14c-1.21.77-.36 19.04 3.02 24.37z" class="st29"></path><path d="M73.35 63.51c3.38 5.33 10.09 7.14 14.98 4.04 4.89-3.1 6.11-9.94 2.74-15.27-.16-.26-.35-.52-.57-.77 2.64 5.16 1.26 11.33-3.32 14.23-4.58 2.9-10.75 1.52-14.29-3.08.14.31.3.59.46.85z" class="st30"></path><path d="M73.34 63.5c.21.33.44.66.68.95-3-6.21-3.69-22.78-2.55-23.5 1.15-.73 15.83 6.98 20.16 12.34-.16-.34-.36-.68-.57-1.02-3.38-5.33-19.53-13.9-20.74-13.13-1.19.76-.35 19.03 3.02 24.36z" class="st31"></path></g></g></svg>
6521 efrain 1155
                        </button>
1156
                    </div>
1157
                </div>
1158
            </div>
1159
 
6656 stevensc 1160
            <div class="comments-container mt-2 show">
6521 efrain 1161
                <form class="feedCommentContainer"  id="form-comment-{{:uuid}}" class="form-comment-{{:uuid}}" action="{{:link_add_comment}}" data-answer="{{:uuid}}">
1162
                    <input class="commentInput" type="text" name="comment" id="comment" maxlength="256" placeholder="LABEL_WRITE_A_COMMENT">
1163
                    <button class="btn btn-primary" type="submit">LABEL_SEND</button>
1164
                </form>
1165
                <ul id="comment-list-{{:uuid}}" class="comment-list">
1166
                    {{for comments}}
1167
 
1168
                    <li>
1169
                        <div class="comment-container">
1170
	                       <div class="comment-content comment-{{:unique}}" >
1171
	                           <div class="info">
1172
                                    <a href="{{>user_url}}">
1173
                                        <h3>{{>user_name}}</h3>
1174
                                    </a>
1175
                                    <span>
1176
                                        {{>time_elapsed}}
1177
                                        {{if link_delete}}
1178
                                        <a href="#" class="btn-comment-trash" data-link="{{:link_delete}}" data-comment-unique="{{>unique}}" data-answer-uuid="{{>answer_uuid}}">
1179
                                        <i class="fa fa-trash"></i>
1180
                                        </a>
1181
                                        {{/if}}
1182
                                    </span>
1183
                                </div>
1184
		                        <p>{{>comment}}</p>
1185
		                  </div>
1186
	                   </div>
1187
                    </li>
1188
 
1189
 
1190
                    {{/for}}
1191
                </ul>
1192
 
1193
            </div>
1194
    </div>
1195
</script>
1196
 
1197
<script id="reactionTemplate" type="text/x-jsrender">
6552 stevensc 1198
    {{if reaction === '<?php echo ContentReaction::REACTION_FUN ?>'}}
6683 stevensc 1199
    <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-vubbuv" version="1.1" viewBox="0 0 100 100" xml:space="preserve">
1200
        <g>
1201
            <defs>
1202
                <ellipse id="SVGID_00000127751164164416277760000017379854605069759882_" cx="49.6" cy="50" rx="41.88" ry="41.88" transform="rotate(-45.001 49.602 50)"></ellipse>
1203
            </defs>
1204
            <use fill="#3C5A9A" overflow="visible" xlink:href="#SVGID_00000127751164164416277760000017379854605069759882_"></use>
1205
            <clipPath id="SVGID_00000145779529853686429170000009984758207159936896_">
1206
                <use overflow="visible" xlink:href="#SVGID_00000127751164164416277760000017379854605069759882_"></use>
1207
            </clipPath>
1208
            <g clip-path="url(#SVGID_00000145779529853686429170000009984758207159936896_)">
1209
                <ellipse cx="49.5" cy="50" class="st0" rx="41.88" ry="41.88" transform="rotate(-22.5 49.494 49.998)"></ellipse>
1210
            </g>
1211
        </g>
1212
        <path d="M76.75 51.56c0 1.4-.15 2.8-.46 4.13-2.31 10.42-13.31 18.33-26.5 18.33s-24.19-7.9-26.53-18.33c-.3-1.34-.46-2.74-.46-4.13 0-1.91.3-3.77.82-5.56 6.84 4.1 16.32 6.63 26.78 6.63 9.94 0 18.9-2.28 25.68-6.02.46 1.58.67 3.25.67 4.95z" class="st15"></path>
1213
        <path d="M76.75 51.56c0 1.4-.15 2.8-.46 4.13-2.31 10.42-13.31 18.33-26.5 18.33s-24.19-7.9-26.53-18.33c-.3-1.34-.46-2.74-.46-4.13 0-.61.03-1.19.09-1.76.06.82.18 1.67.36 2.46C25.6 62.68 36.6 70.59 49.79 70.59s24.19-7.9 26.5-18.33c.18-.85.33-1.7.36-2.58.07.6.1 1.24.1 1.88z" class="st10"></path>
1214
        <path d="M76.75 51.56c0 1.4-.15 2.8-.46 4.13-6.81 4.01-16.14 6.47-26.5 6.47S30.1 59.7 23.26 55.69c-.3-1.34-.46-2.74-.46-4.13 0-1.91.3-3.77.82-5.56 6.84 4.1 16.32 6.63 26.78 6.63 9.94 0 18.9-2.28 25.68-6.02.46 1.58.67 3.25.67 4.95zM80.63 40c-.56-.15-1.03-.58-1.2-1.17-2.74-9.02-12.82-9.36-13.24-9.37-.99-.03-1.72-.82-1.7-1.77.02-.96.81-1.72 1.77-1.7 4.49.08 13.72 2.66 16.5 11.83.28.92-.24 1.89-1.16 2.17-.33.09-.66.09-.97.01z" class="st3"></path>
1215
        <path d="M82.56 39.25c-.02-.16-.04-.31-.09-.44-2.77-9.18-12.01-11.75-16.49-11.84-.6-.01-1.13.29-1.47.77l-.02-.04c.03-.98.81-1.73 1.76-1.71 4.49.06 13.73 2.66 16.5 11.81.17.49.08 1.04-.19 1.45z" class="st3"></path>
1216
        <g>
1217
            <path d="M17.61 40c.56-.15 1.03-.58 1.2-1.17 2.74-9.02 12.82-9.36 13.24-9.37.99-.03 1.72-.82 1.7-1.77-.02-.96-.81-1.72-1.77-1.7-4.49.08-13.72 2.66-16.5 11.83-.28.92.24 1.89 1.16 2.17.33.09.66.09.97.01z" class="st3"></path>
1218
            <path d="M15.68 39.25c.02-.16.04-.31.09-.44 2.77-9.18 12.01-11.75 16.49-11.84.6-.01 1.13.29 1.47.77l.02-.04c-.03-.98-.81-1.73-1.76-1.71-4.49.06-13.73 2.66-16.5 11.81-.16.49-.07 1.04.19 1.45z" class="st3"></path>
1219
        </g>
1220
        <g>
1221
            <path d="M55.85 42.27c.69-2.02 2.12-3.64 3.85-4.85 1.74-1.24 3.93-1.95 6.2-2.02 2.25.01 4.56.61 6.29 1.95 1.8 1.21 3.07 2.97 3.79 4.92-2.05-.61-3.7-1.34-5.35-1.73-1.61-.47-3.14-.63-4.65-.6-3.06-.02-6.2 1.02-10.13 2.33z" class="st3"></path>
1222
            <path d="M75.97 42.26c-.34-.11-.68-.23-1.02-.3-.64-1.14-1.59-2.16-2.77-2.96-1.71-1.33-4.02-1.93-6.29-1.93-2.24.08-4.43.76-6.18 2.01-1.1.76-2.12 1.71-2.8 2.84-.34.11-.68.23-1.06.34.68-2.01 2.12-3.64 3.86-4.85 1.74-1.25 3.94-1.97 6.18-2.01 2.27 0 4.58.61 6.29 1.93 1.82 1.22 3.07 2.96 3.79 4.93z" class="st3"></path>
1223
            <g>
1224
                <path d="M42.93 42.27c-.69-2.02-2.12-3.64-3.85-4.85-1.74-1.24-3.93-1.95-6.2-2.02-2.25.01-4.56.61-6.29 1.95-1.8 1.21-3.07 2.97-3.79 4.92 2.05-.61 3.7-1.34 5.35-1.73 1.61-.47 3.14-.63 4.65-.6 3.06-.02 6.19 1.02 10.13 2.33z" class="st3"></path>
1225
                <path d="M22.8 42.26c.34-.11.68-.23 1.02-.3.64-1.14 1.59-2.16 2.77-2.96 1.71-1.33 4.02-1.93 6.29-1.93 2.24.08 4.43.76 6.18 2.01 1.1.76 2.12 1.71 2.8 2.84.34.11.68.23 1.06.34-.68-2.01-2.12-3.64-3.86-4.85-1.74-1.25-3.94-1.97-6.18-2.01-2.27 0-4.58.61-6.29 1.93-1.82 1.22-3.07 2.96-3.79 4.93z" class="st3"></path>
1226
            </g>
1227
        </g>
1228
        <g>
1229
            <path d="M25.86 63.51c-3.38 5.33-10.09 7.14-14.98 4.04-4.89-3.1-6.12-9.94-2.74-15.27s19.54-13.9 20.74-13.14c1.21.77.36 19.04-3.02 24.37z" class="st29"></path>
1230
            <path d="M25.86 63.51c-3.38 5.33-10.09 7.14-14.98 4.04-4.89-3.1-6.11-9.94-2.74-15.27.16-.26.35-.52.57-.77-2.64 5.16-1.26 11.33 3.32 14.23 4.58 2.9 10.75 1.52 14.29-3.08-.15.31-.3.59-.46.85z" class="st30"></path>
1231
            <path d="M25.86 63.5c-.21.33-.44.66-.68.95 3-6.21 3.69-22.78 2.55-23.5-1.15-.73-15.83 6.98-20.16 12.34.16-.34.36-.68.57-1.02 3.38-5.33 19.53-13.9 20.74-13.13 1.19.76.36 19.03-3.02 24.36z" class="st31"></path>
1232
            <g>
1233
                <path d="M73.35 63.51c3.38 5.33 10.09 7.14 14.98 4.04 4.89-3.1 6.12-9.94 2.74-15.27s-19.54-13.9-20.74-13.14c-1.21.77-.36 19.04 3.02 24.37z" class="st29"></path>
1234
                <path d="M73.35 63.51c3.38 5.33 10.09 7.14 14.98 4.04 4.89-3.1 6.11-9.94 2.74-15.27-.16-.26-.35-.52-.57-.77 2.64 5.16 1.26 11.33-3.32 14.23-4.58 2.9-10.75 1.52-14.29-3.08.14.31.3.59.46.85z" class="st30"></path>
1235
                <path d="M73.34 63.5c.21.33.44.66.68.95-3-6.21-3.69-22.78-2.55-23.5 1.15-.73 15.83 6.98 20.16 12.34-.16-.34-.36-.68-.57-1.02-3.38-5.33-19.53-13.9-20.74-13.13-1.19.76-.35 19.03 3.02 24.36z" class="st31"></path>
1236
            </g>
1237
        </g>
6552 stevensc 1238
    </svg>
1239
    LABEL_REACTION_FUN
1240
    {{/if}}
6521 efrain 1241
 
6552 stevensc 1242
    {{if reaction === '<?php echo ContentReaction::REACTION_INTEREST ?>'}}
6683 stevensc 1243
    <svg xmlns="http://www.w3.org/2000/svg" class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-vubbuv" version="1.1" viewBox="0 0 100 100" xml:space="preserve">
1244
        <path d="M71.16 62.65V63c0 .58-.47 1.05-1.05 1.05h-.02c-.58 0-1.05-.47-1.05-1.05v-.35h2.03c.03.01.06.01.09 0z" class="st4"></path>
1245
        <path d="M70.11 64.54h-.02c-.84 0-1.53-.69-1.53-1.53v-.35a.468.468 0 01.54-.47h2.01c.14-.02.27.02.37.11.1.09.16.22.16.36v.35c0 .84-.69 1.53-1.53 1.53zm-.59-1.41c.06.26.29.45.57.45h.02c.28 0 .51-.19.57-.45h-1.16z" class="st5"></path>
1246
        <path d="M74.14 54.93a4.509 4.509 0 00-1.67 3.49v.76h-4.74v-.73c0-1.35-.58-2.65-1.63-3.49a6.42 6.42 0 01-2.41-5.02c0-3.6 2.97-6.52 6.6-6.41 3.33.1 6.07 2.79 6.22 6.11.1 2.14-.85 4.06-2.37 5.29z" class="st6"></path>
1247
        <path d="M72.47 59.66h-4.74a.48.48 0 01-.48-.48v-.73c0-1.22-.54-2.39-1.45-3.11a6.859 6.859 0 01-2.59-5.39c0-3.87 3.2-7 7.09-6.89 3.59.1 6.52 2.99 6.68 6.57.1 2.21-.82 4.28-2.54 5.67-.95.77-1.5 1.91-1.5 3.12v.76c0 .27-.21.48-.47.48zm-4.26-.95h3.78v-.29c0-1.5.67-2.9 1.85-3.86a5.902 5.902 0 002.19-4.89c-.14-3.08-2.67-5.57-5.76-5.66-3.34-.09-6.11 2.6-6.11 5.94 0 1.82.81 3.51 2.24 4.65 1.15.92 1.81 2.32 1.81 3.86v.25z" class="st5"></path>
1248
        <path d="M67.73 59.19H72.47V60.96H67.73z" class="st4"></path>
1249
        <path d="M67.73 61.43a.476.476 0 01-.48-.48v-1.77c0-.26.21-.48.48-.48h4.74c.26 0 .48.21.48.48v1.77c0 .26-.21.48-.48.48h-4.74zm.48-1.77v.82h3.78v-.82h-3.78z" class="st5"></path>
1250
        <g>
1251
            <path d="M72.47 60.96v.31c0 .74-.57 1.34-1.3 1.39H69.05a1.39 1.39 0 01-1.3-1.39v-.3l4.72-.01z" class="st4"></path>
1252
            <path d="M71.07 63.13h-1.94c-.05 0-.09 0-.14-.01-.97-.07-1.73-.89-1.73-1.87v-.3c0-.26.21-.48.48-.48h4.74a.476.476 0 01.48.48v.31c0 .98-.76 1.8-1.73 1.87h-.16zm-2.85-1.7c.08.4.42.72.84.75h2.05a.94.94 0 00.87-.75h-3.76z" class="st5"></path>
1253
        </g>
1254
        <g>
1255
            <path d="M71.16 59.66c-.26 0-.48-.2-.48-.47v-.02c0-2.39.28-4.77.84-7.09l.48-1.97-.86.32c-.15.06-.32.03-.45-.06l-.87-.64a.467.467 0 01-.1-.66c.15-.21.45-.26.66-.1l.67.49 1.45-.55a.47.47 0 01.48.09c.13.12.19.3.15.47l-.68 2.84a29.46 29.46 0 00-.81 6.87c0 .26-.21.48-.48.48z" class="st5"></path>
1256
        </g>
1257
        <g>
1258
            <path d="M69.03 59.66c-.26 0-.48-.2-.48-.47v-.02c0-2.31-.27-4.62-.81-6.87l-.68-2.84c-.04-.17.02-.35.15-.47a.47.47 0 01.48-.09l1.45.55.67-.49c.21-.16.51-.11.66.1.15.21.11.51-.1.66l-.87.64c-.13.09-.3.12-.45.06l-.86-.32.47 1.97c.56 2.32.84 4.71.84 7.09.01.28-.2.5-.47.5z" class="st5"></path>
1259
        </g>
1260
        <g>
1261
            <path d="M65 41.65l.19 1.35c.14 1.03.95 1.84 1.98 1.98l1.36.19-1.37.2c-1.01.15-1.81.94-1.96 1.96L65 48.7l-.2-1.37a2.323 2.323 0 00-1.96-1.96l-1.37-.2 1.35-.17c1.05-.13 1.87-.96 2.01-2.01l.17-1.34z" class="st7"></path>
1262
            <path d="M65 49.09a.39.39 0 01-.39-.34l-.2-1.37c-.12-.85-.78-1.5-1.62-1.62l-1.37-.2a.398.398 0 01.01-.79l1.35-.17a1.91 1.91 0 001.66-1.66l.17-1.35c.03-.2.19-.35.39-.35s.37.15.39.34l.19 1.36c.12.85.79 1.53 1.64 1.64l1.36.19c.2.03.34.19.34.39s-.14.37-.34.39l-1.37.2c-.85.12-1.5.78-1.62 1.62l-.2 1.37a.39.39 0 01-.39.35zm-1.38-3.9c.62.28 1.11.78 1.38 1.4.27-.63.77-1.14 1.4-1.41-.62-.27-1.12-.76-1.39-1.37a2.75 2.75 0 01-1.39 1.38z" class="st5"></path>
1263
        </g>
1264
        <path d="M69.57 37.28c-8.37 0-15.19 6.81-15.19 15.19s6.81 15.19 15.19 15.19 15.19-6.81 15.19-15.19-6.81-15.19-15.19-15.19zm0 29c-7.62 0-13.82-6.2-13.82-13.82s6.2-13.82 13.82-13.82 13.82 6.2 13.82 13.82-6.19 13.82-13.82 13.82z" class="st22"></path>
1265
        <path d="M35.81 50.46c8.66 0 15.7-7.04 15.7-15.7v-8.15c1.22-1.26 7.48-8.03 8.74-15.64.16-.94-.17-1.89-.88-2.52-.7-.63-1.65-.85-2.56-.6-3.81 1.04-11.58 2.8-20.9 2.8h-.11c-1.55 0-3.07.22-4.51.66-.72.22-1.43.48-2.11.8a15.589 15.589 0 00-3.21 2.01 15.815 15.815 0 00-2.67 2.74c-.61.81-1.14 1.66-1.59 2.56-.33.67-.61 1.37-.85 2.09-.46 1.43-.72 2.94-.75 4.48-.01.12-.01.24-.01.35v8.42c.02 8.66 7.06 15.7 15.71 15.7zm0-1.36c-7.9 0-14.33-6.43-14.33-14.34v-7.74h28.67v7.74c0 7.91-6.43 14.34-14.34 14.34z" class="st0"></path>
1266
        <path d="M34.48 46.84c2.16.59 4.49-.03 6.08-1.6.38-.37.38-.99.01-1.37a.975.975 0 00-1.37-.01 4.38 4.38 0 01-4.22 1.11 4.37 4.37 0 01-3.07-3.1.973.973 0 00-1.18-.69c-.52.14-.82.67-.69 1.18a6.337 6.337 0 004.44 4.48z" class="st22"></path>
1267
        <path d="M48.52 55.5c-.21-.16-.42-.32-.64-.48-3.52-2.56-7.69-3.92-12.06-3.92s-8.54 1.35-12.07 3.91a20.631 20.631 0 00-8.51 16.66V84.5c0 4.27 3.48 7.75 7.75 7.75h25.66c4.27 0 7.75-3.47 7.75-7.75V71.67c0-5.49-2.14-10.66-6.03-14.55-.58-.57-1.2-1.12-1.85-1.62zm-12.7 23.36l-4.57-9.75 4.57-13.09 4.56 13.1-4.56 9.74zm5.39-11.5l-4.75-13.62a.69.69 0 00-.64-.46c-.29 0-.55.18-.64.46l-4.75 13.62-5.41-11.56c3.19-2.18 6.92-3.33 10.81-3.33s7.62 1.15 10.81 3.34l-5.43 11.55z" class="st0"></path>
1268
        <g>
1269
            <path d="M48.91 30.61c-.29-.47-2.56-.26-5.85-.33-3.29-.07-5.48.4-7.31.33-1.83-.07-5.12-.33-7.23-.33-3.24 0-5.51.09-5.68.16-.27.13-.47.89.13 1.41.37.31.62.62 1.17 2.34.55 1.72 1.39 4.9 5.04 4.86 3.65-.04 4.71-2.96 4.97-4.27.26-1.32 1.21-2.01 1.53-2.01s1.13-.22 1.61 1.86c.47 2.08 1.94 4.53 5.37 4.46 3.43-.07 4.64-4.05 4.82-5.33.18-1.28 1.04-1.66 1.24-1.86.21-.22.54-.73.19-1.29zm-19.55 7.93c-4.96.11-4.67-6.5-4.23-6.85.42-.34 3.04-.27 4.34-.27 1.3 0 3.92.01 4.23.42.35.45.62 6.59-4.34 6.7zm12.95.04c-4.96-.11-4.69-6.25-4.34-6.7.32-.41 2.93-.42 4.23-.42s3.92-.07 4.34.27c.44.35.73 6.96-4.23 6.85z" class="0"></path>
1270
            <path d="M42.31 38.54c-4.96-.11-4.69-6.25-4.34-6.7.32-.41 2.93-.42 4.23-.42s3.92-.07 4.34.27c.44.35.73 6.96-4.23 6.85zM29.41 38.54c-4.96-.11-4.69-6.25-4.34-6.7.32-.41 2.93-.42 4.23-.42 1.3 0 3.92-.07 4.34.27.44.35.73 6.96-4.23 6.85z" class="st3"></path>
1271
        </g>
6552 stevensc 1272
    </svg>
1273
    LABEL_REACTION_INTEREST
1274
    {{/if}}
6521 efrain 1275
 
1276
 
6552 stevensc 1277
    {{if reaction === '<?php echo ContentReaction::REACTION_LOVE ?>'}}
6683 stevensc 1278
    <svg xmlns="http://www.w3.org/2000/svg" class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-vubbuv" version="1.1" viewBox="0 0 100 100" xml:space="preserve">
1279
        <path d="M87.42 17.46c-9.63-9.63-25.25-9.63-34.88 0L50 20.01l-2.55-2.55c-9.63-9.63-25.25-9.63-34.88 0-9.63 9.63-9.63 25.25 0 34.88l2.55 2.55L50 89.76l34.88-34.88 2.55-2.55c9.62-9.62 9.62-25.24-.01-34.87z" class="st0"></path>
1280
        <path d="M87.42 17.46c-9.63-9.63-25.25-9.63-34.88 0L50 20.01l-2.55-2.55c-9.63-9.63-25.25-9.63-34.88 0-9.63 9.63-9.63 25.25 0 34.88l2.55 2.55L50 89.76l34.88-34.88 2.55-2.55c9.62-9.62 9.62-25.24-.01-34.87z" class="st1"></path>
1281
        <path d="M88.62 51.04c.65-.75 1.25-1.53 1.8-2.33L66.57 20.82l-.19 1.75-3.11 5.89-8.34 3.43-7 11.81-11.2-5.17-1.22-1.4s-4.07 4.84-4.83 5.25c-.76.42-6.28 17.8-6.28 17.8l9.42 13.39L50 89.76l23.11-23.11 11.76-11.76 2.55-2.55c.39-.39.75-.79 1.11-1.19l.09-.11z" class="st2"></path>
1282
        <path d="M72.43 44.43l-13.11-2.01a3.121 3.121 0 11.95-6.17l13.05.8c1.7.26 2.94 3.07 2.68 4.77a3.136 3.136 0 01-3.57 2.61zM70.6 52.05l-12.87-2.69A3.092 3.092 0 0159 43.31l13.17 2.29c1.67.35 2.44 2.38 2.09 4.06a3.092 3.092 0 01-3.66 2.39zM68.77 59.62l-12.62-3.14a3.042 3.042 0 01-2.36-3.61 3.042 3.042 0 013.61-2.36l12.7 2.65c1.65.34 2.71 1.96 2.36 3.61-.34 1.66-2.04 3.2-3.69 2.85zM64.64 66.52l-10.19-3.4a2.887 2.887 0 011.48-5.58l11.23 2.93c1.54.41 2.46 1.99 2.05 3.53-.41 1.53-3.03 2.92-4.57 2.52z" class="st3"></path>
1283
        <path d="M66.57 20.82c-.38-.56-1.63-1.77-2.35-.73l-.43.63a20.198 20.198 0 01-6.49 6.02c-2.07 1.21-4.27 2.49-4.66 2.69-.4.21-3.49 2.54-6.33 4.71-3.03 2.31-10.53 3.56-10.53 3.56v20.39h2.11c2.61 0 5.18.59 7.53 1.72l5.61 2.7c.42.2.86-.24.65-.66-.01-.01-.01-.02-.02-.04-.31-.65-.45-1.37-.4-2.08.12-1.7 1.2-3.03 2.62-3.61a4.19 4.19 0 01-.94-4.39c.24-.67.66-1.27 1.21-1.73.35-.3.74-.53 1.15-.7a4.43 4.43 0 01-.78-1.11c-.31-.64-.46-1.36-.41-2.08a4.195 4.195 0 012.62-3.64 4.209 4.209 0 01-.94-4.38c.25-.68.67-1.29 1.23-1.76 1.01-.85 2.17-1.05 3.43-1.01l1.57.1 2.49-3.08c.89-1.02 1.61-2.17 2.13-3.41l.34-.81c1.01-2.36.86-5.06-.41-7.3zM25.81 60.56h6.97c1.01 0 1.83-.82 1.83-1.83V37.28c0-1.01-.82-1.83-1.83-1.83h-6.97c-1.01 0-1.83.82-1.83 1.83v21.45c0 1.01.82 1.83 1.83 1.83z" class="st3"></path>
6552 stevensc 1284
    </svg>
1285
    LABEL_REACTION_LOVE
1286
    {{/if}}
6521 efrain 1287
 
1288
 
6552 stevensc 1289
    {{if reaction === '<?php echo ContentReaction::REACTION_RECOMMENDED ?>'}}
6683 stevensc 1290
    <svg xmlns="http://www.w3.org/2000/svg" class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-vubbuv" version="1.1" viewBox="0 0 100 100" xml:space="preserve">
1291
        <path d="M71.6 57.78l-18.57-2.85a4.425 4.425 0 01-3.7-5.04 4.425 4.425 0 015.04-3.7l18.47 1.13c2.41.37 4.16 4.35 3.79 6.76a4.416 4.416 0 01-5.03 3.7zM69 68.57l-18.22-3.81c-2.37-.49-3.88-2.81-3.39-5.18.49-2.37 2.81-3.88 5.18-3.39l18.65 3.24c2.37.49 3.45 3.38 2.95 5.74-.48 2.37-2.8 3.89-5.17 3.4zM66.41 79.29l-17.86-4.44a4.327 4.327 0 01-3.35-5.11 4.327 4.327 0 015.11-3.35l17.99 3.76c2.34.49 3.83 2.78 3.35 5.11-.49 2.34-2.9 4.52-5.24 4.03zM60.56 89.05l-14.42-4.82c-2.18-.58-3.49-2.82-2.91-5 .58-2.18 2.82-3.49 5-2.91l15.9 4.15c2.18.58 3.49 2.82 2.91 5-.58 2.19-4.3 4.16-6.48 3.58z" class="st0"></path>
1292
        <path d="M63.3 24.36c-.54-.8-2.31-2.51-3.33-1.04l-.61.89c-2.4 3.48-5.53 6.4-9.18 8.53-2.94 1.72-6.05 3.53-6.6 3.81-.57.29-4.94 3.59-8.96 6.66-4.28 3.27-14.92 5.05-14.92 5.05v28.86h2.98c3.69 0 7.34.83 10.67 2.44l7.94 3.83c.6.29 1.22-.34.93-.94-.01-.02-.02-.03-.02-.05a5.86 5.86 0 01-.56-2.95c.17-2.4 1.7-4.3 3.7-5.11a5.96 5.96 0 01-1.33-6.22c.35-.95.94-1.8 1.71-2.46.5-.42 1.05-.75 1.63-.99-.44-.45-.81-.98-1.1-1.57-.45-.91-.65-1.93-.58-2.94A5.976 5.976 0 0149.38 55a5.947 5.947 0 01-1.33-6.21c.35-.97.95-1.83 1.74-2.49 1.43-1.2 3.07-1.48 4.85-1.42l2.22.15 3.53-4.36c1.26-1.44 2.27-3.07 3.02-4.83l.48-1.14c1.42-3.35 1.2-7.17-.59-10.34zM6.19 80.62h8.67c1.76 0 3.19-1.43 3.19-3.19V48.26c0-1.76-1.43-3.19-3.19-3.19H6.19C4.43 45.07 3 46.5 3 48.26v29.17a3.18 3.18 0 003.19 3.19z" class="st0"></path>
1293
        <g>
1294
            <path d="M83.93 38.06v.59c0 .97-.79 1.75-1.75 1.75h-.04c-.97 0-1.75-.78-1.75-1.75v-.59c.05.01.1.01.16.01h3.23c.04-.01.1-.01.15-.01z" class="st4"></path>
1295
            <path d="M82.17 41.19h-.04c-1.4 0-2.54-1.14-2.54-2.54v-.59a.797.797 0 01.9-.79h3.34c.23-.03.45.04.62.19.17.15.27.37.27.6v.59c0 1.4-1.14 2.54-2.55 2.54zm-.97-2.34c.1.43.48.75.94.75h.04c.46 0 .84-.32.94-.75H81.2z" class="st5"></path>
1296
            <path d="M88.87 25.23a7.483 7.483 0 00-2.78 5.8v1.26h-7.87v-1.21c0-2.24-.96-4.4-2.71-5.79a10.617 10.617 0 01-4.01-8.33c0-5.99 4.94-10.83 10.97-10.65 5.53.15 10.08 4.62 10.33 10.14.17 3.54-1.41 6.73-3.93 8.78z" class="st6"></path>
1297
            <path d="M86.09 33.08h-7.87c-.44 0-.79-.35-.79-.79v-1.21c0-2.03-.9-3.97-2.41-5.17a11.4 11.4 0 01-4.31-8.95c0-6.42 5.32-11.62 11.78-11.44 5.96.17 10.83 4.96 11.1 10.91.17 3.67-1.37 7.1-4.22 9.43-1.58 1.29-2.49 3.18-2.49 5.19v1.26c0 .42-.35.77-.79.77zm-7.08-1.58h6.29v-.47c0-2.49 1.12-4.82 3.07-6.41 2.46-2 3.79-4.96 3.64-8.13-.23-5.12-4.43-9.25-9.56-9.4-5.56-.16-10.16 4.33-10.16 9.86 0 3.02 1.35 5.83 3.71 7.72 1.91 1.52 3.01 3.86 3.01 6.41v.42z" class="st5"></path>
1298
            <path d="M78.22 32.29H86.09V35.23H78.22z" class="st4"></path>
1299
            <path d="M78.22 36.03a.787.787 0 01-.79-.79v-2.95c0-.44.35-.79.79-.79h7.87c.44 0 .79.35.79.79v2.94c0 .44-.35.79-.79.79l-7.87.01zm.79-2.95v1.37h6.29v-1.36h-6.29z" class="st5"></path>
1300
            <g>
1301
                <path d="M86.09 35.24v.51c0 1.23-.95 2.23-2.16 2.31-.05.01-.1.01-.16.01h-3.23c-.05 0-.11 0-.16-.01a2.31 2.31 0 01-2.16-2.31v-.51h7.87z" class="st4"></path>
1302
                <path d="M83.77 38.85h-3.23c-.08 0-.16 0-.23-.01a3.11 3.11 0 01-2.88-3.1v-.51c0-.44.35-.79.79-.79h7.87a.787.787 0 01.79.79v.51a3.11 3.11 0 01-2.88 3.1c-.07.01-.15.01-.23.01zm-4.73-2.82c.13.67.7 1.19 1.4 1.24.02 0 .04 0 .06.01h3.34c.74-.05 1.32-.57 1.44-1.25h-6.24z" class="st5"></path>
1303
            </g>
1304
            <g>
1305
                <path d="M83.93 33.08c-.44 0-.79-.34-.79-.78v-.03c0-3.96.47-7.93 1.39-11.78l.78-3.28-1.42.54c-.25.09-.53.06-.74-.1l-1.45-1.06a.785.785 0 01-.17-1.1c.26-.35.75-.43 1.1-.17l1.11.81 2.41-.91c.27-.1.58-.05.8.15.22.19.31.49.25.78l-1.13 4.72c-.89 3.74-1.35 7.58-1.35 11.42 0 .42-.36.79-.79.79z" class="st5"></path>
1306
            </g>
1307
            <g>
1308
                <path d="M80.39 33.08c-.44 0-.79-.34-.79-.78v-.03c0-3.84-.45-7.68-1.35-11.42l-1.13-4.72a.8.8 0 01.25-.78c.22-.19.53-.25.8-.15l2.41.91 1.11-.81c.35-.26.85-.18 1.1.17.26.35.18.85-.17 1.1l-1.45 1.06c-.22.16-.5.2-.74.1L79 17.21l.78 3.28c.92 3.85 1.39 7.82 1.39 11.78.01.44-.34.81-.78.81z" class="st5"></path>
1309
            </g>
1310
            <g>
1311
                <path d="M73.69 3.15L74 5.41a3.84 3.84 0 003.29 3.29l2.26.31-2.27.33a3.85 3.85 0 00-3.25 3.25l-.33 2.27-.33-2.27a3.85 3.85 0 00-3.25-3.25l-2.27-.33 2.24-.28a3.842 3.842 0 003.33-3.33l.27-2.25z" class="st7"></path>
1312
                <path d="M73.69 15.53c-.33 0-.6-.24-.65-.56l-.33-2.27a3.182 3.182 0 00-2.7-2.7l-2.27-.33a.65.65 0 01-.56-.66c0-.33.25-.61.58-.65L70 8.08a3.184 3.184 0 002.76-2.76l.28-2.24c.04-.33.32-.57.65-.58.33 0 .61.24.65.57l.31 2.26a3.203 3.203 0 002.73 2.73l2.26.31c.32.04.57.32.57.65s-.24.61-.56.65l-2.28.33a3.182 3.182 0 00-2.7 2.7l-.33 2.27c-.05.32-.33.56-.65.56zm-2.3-6.49a4.51 4.51 0 012.3 2.33 4.443 4.443 0 012.33-2.34 4.544 4.544 0 01-2.31-2.28 4.545 4.545 0 01-2.32 2.29z" class="st5"></path>
1313
            </g>
1314
        </g>
6552 stevensc 1315
    </svg>
1316
    LABEL_REACTION_RECOMMENDED
1317
    {{/if}}
6521 efrain 1318
 
6552 stevensc 1319
    {{if reaction === '<?php echo ContentReaction::REACTION_SUPPORT ?>'}}
6683 stevensc 1320
    <svg xmlns="http://www.w3.org/2000/svg" class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-vubbuv" version="1.1" viewBox="0 0 100 100" xml:space="preserve"><text class="st28 st29" transform="translate(5.947 -6.888)">No es interesante</text>
1321
        <path d="M38.99 53.99c-.15-1.18.1-2.23.7-2.98.19-.24.44-.42.7-.58-.67-.49-1.18-1.25-1.27-2.54 0-.07.01-.15.01-.22-1.15 1.09-2.41 1.89-3.75 2.28-.05.02-.11.02-.16.02a.581.581 0 01-.16-1.14c2.34-.68 3.99-2.54 4.97-3.98 0 0 .01 0 .01-.01a.55.55 0 01.07-.09c.46-.48 1.05-.73 1.68-.73.13 0 .26.02.39.02-.14-.2-.26-.42-.35-.66-.45-1.2-.2-2.51.64-3.36.79-.79 2.03-.93 3.11-1.06.32-.04.62-.07.87-.12 1.63-.31 3.33-.61 5.06-.91 2.56-.44 5.16-.83 7.75-1.21.72-.61 1.21-1.41 1.23-2.07.01-.4-.15-.75-.48-1.06-.76-.69-1.95-.45-3.09-.22-.23.05-.46.09-.68.13-2.11.35-4.03.63-6.02.48-1.56-.12-3.08-.54-4.55-.94-.48-.13-.95-.26-1.42-.38-2.63-.66-5-.44-7.69.7-1.64.69-3.24 1.58-4.79 2.44-1.03.57-2.1 1.16-3.18 1.7-3.27 1.62-6.58 2.5-10.1 3.44l-.25.07c-4.51 1.2-9.12 2.24-13.71 3.08-.04.01-.07 0-.11.01-2.29.45-2.97 5.23-1.65 9.33 1.25 3.88 4.38 7.13 6.68 6.64 2.63-.56 5.06-1.94 7.48-3.04 2.21-1.01 4.5-2.06 6.86-2.85 2.57-.86 5.27-.79 7.22.21.35.18.67.4.98.61l.08.06c2.5 1.72 5.3 3.63 8.37 4.38-.13-.95.1-1.92.6-2.67-1.04-.55-1.87-1.38-2.05-2.78z" class="st30"></path>
1322
        <path d="M96.7 44.83c-.04 0-.06.03-.1.02-2.16-.42-4.42-.78-6.6-1.13-5.02-.81-10.21-1.65-15.03-3.26-.86-.29-1.75-.62-2.62-.94-3.38-1.25-6.87-2.55-10.24-2.07-3.47.49-6.97 1.04-10.42 1.63-1.72.3-3.42.6-5.04.91-.3.06-.62.09-.95.13-.9.1-1.92.22-2.42.73-.52.52-.67 1.35-.38 2.12.25.66.77 1.08 1.38 1.12.05 0 .08.04.12.06 2 .07 4.01.13 6 .28.32.02.56.3.54.63-.02.32-.3.56-.63.54-2.84-.21-5.71-.35-8.55-.39-.31 0-.57.11-.81.36l-.03.03c-.44.49-.7 1.35-.64 2.22.12 1.77 1.21 2.08 2.87 2.35 2.21.37 7.21.87 7.26.87.32.03.56.32.52.64-.03.3-.28.53-.58.53h-.06c-.21-.02-5.09-.51-7.34-.88-.34-.06-.73-.12-1.12-.23-.01 0-.01.01-.01.01-.51.05-.92.27-1.22.64-.4.5-.56 1.25-.45 2.11.22 1.77 2.03 2.29 4.02 2.69l.4.08c1.64.35 6.25.83 6.3.83.32.03.55.32.52.64-.03.3-.28.52-.58.52h-.06c-.19-.02-4.72-.49-6.43-.85l-.39-.08c-.54-.11-1.19-.25-1.84-.47-.58.65-.77 1.86-.37 2.74.57 1.27 1.78 1.5 3.05 1.74.15.03.3.06.44.09 1.64.33 6.74 1.82 10.73 3 .31.09.49.42.39.73-.08.25-.31.42-.56.42-.06 0-.11-.01-.17-.02-3.28-.98-5.92-1.74-7.81-2.26 1.29 1.42 2.74 2.99 4.25 3.64 2.73 1.17 5.44-.43 8.06-1.97.23-.14.47-.27.69-.41l10.37-6.03c.11-.06.22-.13.33-.2.7-.42 1.42-.86 2.35-.81 1.58.08 3.22.77 4.8 1.43.74.31 1.43.6 2.09.82 2.59.86 7.49 2.38 7.49 2.38 1.74.56 6.21-2.87 8.26-7.33 2.08-4.46 1.69-9.95.22-10.35z" class="st0"></path>
6552 stevensc 1323
    </svg>
1324
    LABEL_REACTION_SUPPORT
1325
    {{/if}}
1326
 
1327
    {{if reaction === ''}}
1328
    <svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-vubbuv" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="RecommendIcon" style="color: gray;">
1329
        <path d="M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm6 9.8a.9.9 0 0 1-.1.5l-2.1 4.9a1.34 1.34 0 0 1-1.3.8H9a2 2 0 0 1-2-2v-5a1.28 1.28 0 0 1 .4-1L12 5l.69.69a1.08 1.08 0 0 1 .3.7v.2L12.41 10H17a1 1 0 0 1 1 1z"></path>
1330
    </svg>
1331
    LABEL_REACTION_UNSET
1332
    {{/if}}
6521 efrain 1333
</script>
1334
 
1335
<script id="commentTemplate" type="text/x-jsrender">
1336
    <li>
1337
        <div class="comment-container">
1338
	        <div class="comment-content comment-{{:unique}}" >
1339
	            <div class="info">
1340
                    <a href="{{>user_url}}">
1341
                        <h3>{{>user_name}}</h3>
1342
                    </a>
1343
                    <span>
1344
                        {{>time_elapsed}}
1345
                        {{if link_delete}}
1346
                        <a href="#" class="btn-comment-trash" data-link="{{:link_delete}}" data-comment-unique="{{>unique}}"  data-answer-uuid="{{>answer_uuid}}">
1347
                            <i class="fa fa-trash"></i>
1348
                        </a>
1349
                        {{/if}}
1350
                    </span>
1351
                </div>
1352
		      <p>{{>comment}}</p>
1353
		  </div>
1354
	   </div>
1355
    </li>
1356
</script>
1357
 
6388 efrain 1358
<script id="recordTemplate" type="text/x-jsrender">
6644 stevensc 1359
    <div class="my-coach-record-card-container col" id="my-coach-record-card-question-{{:uuid}}">
6594 stevensc 1360
        <div class="my-coach-record-card-details">
1361
            <div class="my-coach-record-card-resume" >
1362
                <img class="my_coach_question_detail_user_image" src="{{:user_image}}" />
1363
                <p class="my_coach_question_detail_user_name">{{:user_name}}</p>
1364
            </div>
6651 stevensc 1365
            <ul class="my-coach-record-card-categories">
1366
                {{for categories}}
1367
                <li>{{:category}}</li>
1368
                {{/for}}
1369
            </ul>
6388 efrain 1370
        </div>
6652 stevensc 1371
        <h2>{{>title}}</h2>
1372
        <span>LABEL_MY_COACH_QUESTION {{:added_on}}</span>
1373
        <p class="my-3">{{>description}}</p>
6651 stevensc 1374
        <div class="my-coach-record-card-info mb-2">
1375
            <span id="answers-{{:uuid}}">{{:answers}} LABEL_MY_COACH_ANSWERS</span>
1376
            <span id="reactions-{{:uuid}}">{{:reactions}} LABEL_MY_COACH_REACTIONS</span>
1377
            <span id="views-{{:uuid}}">{{:views}} LABEL_MY_COACH_VIEWS</span>
1378
            <span id="comments-{{:uuid}}">{{:comments}} LABEL_COMMENTS</span>
1379
        </div>
6654 stevensc 1380
        <div class="my-coach-record-card-actions">
6655 stevensc 1381
            <button data-link="{{:link_view}}" class="btn feed__share-option btn-my-coach-edit-view"> <i class="fa fa-external-link" aria-hidden="true"></i> LABEL_VIEW </button>
6594 stevensc 1382
 
1383
            {{if link_edit }}
6663 stevensc 1384
            <button data-link="{{>link_edit}}" class="btn feed__share-option btn-my-coach-edit"> <i class="fa fa-pencil" aria-hidden="true"></i> LABEL_EDIT </button>
6594 stevensc 1385
            {{/if}}
1386
            {{if link_delete }}
6655 stevensc 1387
            <button data-link="{{>link_delete}}" class="btn feed__share-option btn-my-coach-delete-question"> <i class="fa fa-trash" aria-hidden="true"></i> LABEL_DELETE </button>
6594 stevensc 1388
            {{/if}}
1389
        </div>
1390
    </div>
6552 stevensc 1391
</script>