Proyectos de Subversion LeadersLinked - Backend

Rev

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

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