Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev Autor Línea Nro. Línea
1320 efrain 1
<?php
2
$acl            = $this->viewModel()->getRoot()->getVariable('acl');
3
$currentUser    = $this->currentUserHelper();
4
 
5
$roleName = $currentUser->getUserTypeId();
6
 
15386 efrain 7
$allowDownload  = $acl->isAllowed($roleName, 'microlearning/reports/progress-for-capsule/excel') ? 1 : 0;
1320 efrain 8
 
16822 efrain 9
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/select2/css/select2.min.css'));
16918 efrain 10
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/select2-bootstrap5-theme/select2-bootstrap-5-theme.css'));
16822 efrain 11
$this->inlineScript()->appendFile($this->basePath('assets/vendors/select2/js/select2.min.js'));
15386 efrain 12
 
13
 
14
 
15389 efrain 15
 
16822 efrain 16
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/nprogress/nprogress.css'));
17
$this->inlineScript()->appendFile($this->basePath('assets/vendors/nprogress/nprogress.js'));
18
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jsrender/jsrender.js'));
1320 efrain 19
 
20
$this->headStyle()->captureStart();
21
echo <<<CSS
22
 
23
 
15390 efrain 24
#gridTable {
1320 efrain 25
    display: flex;
26
    flex-flow: column;
27
    width: 100%;
28
}
29
 
15390 efrain 30
#gridTable thead {
1320 efrain 31
    flex: 0 0 auto;
32
}
33
 
15390 efrain 34
#gridTable tbody {
1320 efrain 35
    flex: 1 1 auto;
36
    display: block;
37
    overflow-y: auto;
38
    overflow-x: hidden;
39
}
40
 
15390 efrain 41
#gridTable tr {
1320 efrain 42
    width: 100%;
43
    display: table;
44
    table-layout: fixed;
45
}
46
CSS;
47
$this->headStyle()->captureEnd();
48
 
49
 
50
 
51
$this->inlineScript()->captureStart();
52
echo <<<JS
53
jQuery( document ).ready(function( $ ) {
15386 efrain 54
 
55
 
1320 efrain 56
    $.fn.changeFilter = function() {
57
        NProgress.start();
58
        $.ajax({
59
            'dataType'  : 'json',
60
            'accept'    : 'application/json',
61
            'method'    : 'get',
62
            'url'       :  $('#form-filter').attr('action'),
63
            'data'      :  $('#form-filter').serialize(),
64
        }).done(function(response) {
65
            if(response['success']) {
66
 
15389 efrain 67
 
1320 efrain 68
 
15389 efrain 69
 
14614 efrain 70
                if(response['data']['capsules']) {
71
 
15389 efrain 72
                  $('#form-filter #capsule_uuid').empty();
14614 efrain 73
 
15389 efrain 74
                  $.each(response['data']['capsules'], function( value, label ) {
75
                        $('#form-filter #capsule_uuid').append($('<option>', {
76
                            value: value,
77
                            text: label
78
                        }));
79
                     });
15386 efrain 80
 
15389 efrain 81
 
82
                  $('#form-filter #capsule_uuid').val(response['data']['capsule_selected']).trigger('change');
14614 efrain 83
                }
84
 
85
                if(response['data']['items']) {
86
                    $('#gridTable tbody').empty();
87
                    $('#gridTable tbody').append(
88
                        $( "#progressRowTemplate" ).render( response['data']['items'] )
1320 efrain 89
 
14614 efrain 90
                    );
91
 
92
                }
1320 efrain 93
 
15386 efrain 94
                if(response['data']['link_download']) {
95
                    $('button.btn-download').data('href', response['data']['link_download']);
96
                    $('button.btn-download').show();
97
 
98
                } else {
99
                     $('button.btn-download').hide();
100
                }
101
 
1320 efrain 102
            } else {
103
                if(jQuery.type(response['data']) == 'string') {
104
                    $.fn.showError(response['data']);
105
                } else  {
106
                    $.each(response['data'], function( fieldname, errors ) {
14614 efrain 107
                        $.fn.showFormErrorValidator('#form-filter #' + fieldname, errors);
1320 efrain 108
                    });
109
                }
110
            }
111
        }).fail(function( jqXHR, textStatus, errorThrown) {
112
            $.fn.showError(textStatus);
113
        }).always(function() {
114
            NProgress.done();
115
        });
116
        return false;
117
    }
118
 
119
    $('#form-filter #topic_uuid').change(function(e) {
120
        e.preventDefault();
121
 
122
        $('#form-filter #capsule_uuid').empty();
123
        $.fn.changeFilter();
124
    })
125
 
126
 
127
    $('#form-filter #capsule_uuid').change(function(e) {
128
        e.preventDefault();
129
 
130
        $.fn.changeFilter();
131
    })
132
 
15386 efrain 133
    $('button.btn-download').click(function(e) {
134
        e.preventDefault();
135
        var action   = $(this).data('href');
1320 efrain 136
 
15386 efrain 137
        NProgress.start();
138
        $.ajax({
139
            'dataType'  : 'json',
140
            'method'    : 'get',
141
            'url'       :  action,
142
        }).done(function(response) {
143
            if(response['success']) {
144
                var anchor = window.document.createElement("a");
145
                anchor.href = 'data:application/octet-stream;charset=utf-8;base64,' + response['data']['content'] ;
146
                anchor.download = response['data']['basename'];
147
                document.body.appendChild(anchor);
148
                anchor.click();  // IE: "Access is denied"; see: https://connect.microsoft.com/IE/feedback/details/797361/ie-10-treats-blob-url-as-cross-origin-and-denies-access
149
                document.body.removeChild(anchor);
150
            } else {
151
                $.fn.showError(response['data']);
152
            }
153
        }).fail(function( jqXHR, textStatus, errorThrown) {
154
            showError(textStatus);
155
        }).always(function() {
156
            NProgress.done();
157
        });
158
 
159
 
160
    });
161
 
162
 
163
    $('button.btn-refresh').click(function(e) {
164
        e.preventDefault();
165
        $.fn.changeFilter();
166
 
167
 
168
    });
169
 
15389 efrain 170
    $('#topic_uuid').select2({
16918 efrain 171
        theme: 'bootstrap-5',
15389 efrain 172
        width: '100%',
173
    });
15386 efrain 174
 
175
 
15389 efrain 176
 
177
    $('#capsule_uuid').select2({
16918 efrain 178
        theme: 'bootstrap-5',
15389 efrain 179
        width: '100%',
180
    });
181
 
182
 
183
 
184
 
185
 
186
 
1320 efrain 187
    $.fn.changeFilter();
15386 efrain 188
    $('button.btn-download').hide();
1320 efrain 189
 
190
});
191
JS;
192
$this->inlineScript()->captureEnd();
193
?>
194
 
16910 efrain 195
<div class="container">
196
	<div class="card" id="">
197
	 	<div class="card-header">
198
	 		<h6 class="card-title">LABEL_PROGRESS_FOR_CAPSULE</h6>
199
	 	</div>
200
	 	<div class="card-body">
201
 
202
	 	<?php
1320 efrain 203
                        $form = $this->form;
204
            	        $form->setAttributes([
205
                            'name'    => 'form-filter',
206
                            'id'      => 'form-filter',
207
                        ]);
208
 
209
                        $form->prepare();
210
                        echo $this->form()->openTag($form);
211
                        ?>
212
                        <div class="row">
16910 efrain 213
                            <div class="col-6 mt-3">
16929 efrain 214
                              	<?php
14614 efrain 215
                                    $element = $form->get('topic_uuid');
216
                                    $element->setOptions(['label' => 'LABEL_TOPIC']);
1320 efrain 217
 
14614 efrain 218
                                    $element->setAttributes(['class' => 'form-control']);
219
                                    echo $this->formLabel($element);
220
                                    echo $this->formSelect($element);
1320 efrain 221
                                    ?>
16929 efrain 222
 
1320 efrain 223
                            </div>
16910 efrain 224
                            <div class="col-6 mt-3">
225
 
1320 efrain 226
                                    <?php
14614 efrain 227
                                    $element = $form->get('capsule_uuid');
228
                                    $element->setOptions(['label' => 'LABEL_CAPSULE']);
229
                                    $element->setAttributes(['class' => 'form-control']);
230
                                    echo $this->formLabel($element);
231
                                    echo $this->formSelect($element);
1320 efrain 232
                                    ?>
16910 efrain 233
 
1320 efrain 234
                            </div>
16910 efrain 235
 
15386 efrain 236
 
1320 efrain 237
                        </div>
238
						<?php echo $this->form()->closeTag($form); ?>
16910 efrain 239
 
240
 
241
	 		<div class="row">
242
	 	         <div class="col-12 mt-3">
243
 
244
	 	             		<table id="gridTable" class="table   table-bordered">
1320 efrain 245
                      		<thead>
246
        						<tr>
15390 efrain 247
									<th >LABEL_FIRST_NAME</th>
248
									<th>LABEL_LAST_NAME</th>
249
									<th>LABEL_EMAIL</th>
250
                      				<th >LABEL_REPORTS_PROGRESS</th>
14614 efrain 251
 
1320 efrain 252
                                </tr>
253
                       		</thead>
254
                         	<tbody>
255
                         	</tbody>
256
                    	</table>
16910 efrain 257
 
258
	 	         </div>
259
	 	     </div>
260
	 	</div>
261
	 	<div class="card-footer text-right">
262
	 	                    <button type="button" class="btn btn-info btn-refresh"><i class="fa fa-refresh"></i> LABEL_REFRESH  </button>
263
                                    <?php if($allowDownload) :  ?>
264
 
265
                					<button type="button" class="btn btn-info btn-download"><i class="fa fa-download"></i> LABEL_DOWNLOAD  </button>
266
                					<?php endif;?>
267
	 	</div>
268
	</div>
269
</div>
1320 efrain 270
 
271
 
272
 
273
<script id="progressRowTemplate" type="text/x-jsrender">
274
    <tr>
15390 efrain 275
        <td>
1320 efrain 276
            {{>first_name}}
277
        </td>
15390 efrain 278
        <td>
1320 efrain 279
             {{>last_name}}
280
        </td>
15390 efrain 281
        <td>
1320 efrain 282
            {{>email}}
283
        </td>
284
 
15390 efrain 285
        <td>
14614 efrain 286
 
287
 
288
            <div class="progress progress-xs progress-striped active" style="height: 15px">
289
                <div class="progress-bar {{if completed == '1' }} bg-success {{ else }} bg-primary {{/if}}" style="width: {{>progress}}%">
290
{{>progress}}  %
291
                </div>
1320 efrain 292
            </div>
293
        </td>
14614 efrain 294
 
1320 efrain 295
    </tr>
15390 efrain 296
    <tr>
297
 
298
                    <td class="text-right">LABEL_REPORTS_TOTAL_SLIDES</td>
299
                    <td class="text-right">LABEL_REPORTS_VIEW_SLIDES</td>
300
                    <td>LABEL_REPORTS_FIRST_DATE</td>
301
                    <td>LABEL_REPORTS_LAST_DATE</td>
302
                </tr>
303
 
304
 
305
                <tr>
306
                    <td class="text-right">{{>total_slides}}</td>
307
                    <td class="text-right">{{>view_slides}}</td>
308
                    <td>{{>added_on}}</td>
309
                    <td>{{>updated_on}}</td>
310
                </tr>
311
 
312
 
313
 
314
 
315
     </tr>
1320 efrain 316
</script>
317
 
318
 
319
 
320
 
321
 
322
 
323