Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev Autor Línea Nro. Línea
15386 efrain 1
<?php
2
$acl            = $this->viewModel()->getRoot()->getVariable('acl');
3
$currentUser    = $this->currentUserHelper();
4
 
5
$roleName = $currentUser->getUserTypeId();
6
 
7
$allowDownload  = $acl->isAllowed($roleName, 'microlearning/reports/progress-for-student/excel') ? 1 : 0;
8
 
9
 
16822 efrain 10
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/select2/css/select2.min.css'));
11
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/select2-bootstrap4-theme/select2-bootstrap4.min.css'));
12
$this->inlineScript()->appendFile($this->basePath('assets/vendors/select2/js/select2.min.js'));
15386 efrain 13
 
14
 
16822 efrain 15
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/nprogress/nprogress.css'));
16
$this->inlineScript()->appendFile($this->basePath('assets/vendors/nprogress/nprogress.js'));
17
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jsrender/jsrender.js'));
15386 efrain 18
 
19
$this->headStyle()->captureStart();
20
echo <<<CSS
21
 
22
 
15390 efrain 23
#gridTable {
15386 efrain 24
    display: flex;
25
    flex-flow: column;
26
    width: 100%;
27
}
28
 
15390 efrain 29
#gridTable thead {
15386 efrain 30
    flex: 0 0 auto;
31
}
32
 
15390 efrain 33
#gridTable tbody {
15386 efrain 34
    flex: 1 1 auto;
35
    display: block;
36
    overflow-y: auto;
37
    overflow-x: hidden;
38
}
39
 
15390 efrain 40
#gridTable tr {
15386 efrain 41
    width: 100%;
42
    display: table;
43
    table-layout: fixed;
44
}
45
CSS;
46
$this->headStyle()->captureEnd();
47
 
48
 
49
 
50
$this->inlineScript()->captureStart();
51
echo <<<JS
52
jQuery( document ).ready(function( $ ) {
53
 
54
 
55
    $.fn.changeFilter = function() {
56
        NProgress.start();
57
        $.ajax({
58
            'dataType'  : 'json',
59
            'accept'    : 'application/json',
60
            'method'    : 'get',
61
            'url'       :  $('#form-filter').attr('action'),
62
            'data'      :  $('#form-filter').serialize(),
63
        }).done(function(response) {
64
            if(response['success']) {
65
 
66
 
67
                if(response['data']['items']) {
68
                    $('#gridTable tbody').empty();
69
                    $('#gridTable tbody').append(
70
                        $( "#progressRowTemplate" ).render( response['data']['items'] )
71
 
72
                    );
73
 
74
                }
75
 
76
                if(response['data']['link_download']) {
77
                    $('button.btn-download').data('href', response['data']['link_download']);
78
                    $('button.btn-download').show();
79
 
80
                } else {
81
                     $('button.btn-download').hide();
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-filter #' + 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
    $('#form-filter #student_uuid').change(function(e) {
102
        e.preventDefault();
103
 
104
        $.fn.changeFilter();
105
    })
106
 
107
 
108
    $('button.btn-download').click(function(e) {
109
        e.preventDefault();
110
        var action   = $(this).data('href');
111
 
112
        NProgress.start();
113
        $.ajax({
114
            'dataType'  : 'json',
115
            'method'    : 'get',
116
            'url'       :  action,
117
        }).done(function(response) {
118
            if(response['success']) {
119
                var anchor = window.document.createElement("a");
120
                anchor.href = 'data:application/octet-stream;charset=utf-8;base64,' + response['data']['content'] ;
121
                anchor.download = response['data']['basename'];
122
                document.body.appendChild(anchor);
123
                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
124
                document.body.removeChild(anchor);
125
            } else {
126
                $.fn.showError(response['data']);
127
            }
128
        }).fail(function( jqXHR, textStatus, errorThrown) {
129
            showError(textStatus);
130
        }).always(function() {
131
            NProgress.done();
132
        });
133
 
134
 
135
    });
136
 
137
 
138
    $('button.btn-refresh').click(function(e) {
139
        e.preventDefault();
140
        $.fn.changeFilter();
141
 
142
 
143
    });
144
 
145
 
15389 efrain 146
    $('#student_uuid').select2({
147
        theme: 'bootstrap4',
148
        width: '100%',
149
    });
150
 
151
 
152
 
153
 
15386 efrain 154
    $.fn.changeFilter();
155
    $('button.btn-download').hide();
156
 
157
});
158
JS;
159
$this->inlineScript()->captureEnd();
160
?>
161
 
162
<!-- Content Header (Page header) -->
163
<section class="content-header">
164
	<div class="container-fluid">
165
    	<div class="row mb-2">
166
        	<div class="col-sm-12">
167
            	<h1>LABEL_PROGRESS_FOR_STUDENT</h1>
168
			</div>
169
		</div>
170
	</div><!-- /.container-fluid -->
171
</section>
172
 
173
<section class="content">
174
	<div class="container-fluid">
175
    	<div class="row">
16891 efrain 176
        	<div class="col-12 mt-3">
15386 efrain 177
				<div class="card">
178
					<div class="card-header">
179
						<?php
180
                        $form = $this->form;
181
            	        $form->setAttributes([
182
                            'name'    => 'form-filter',
183
                            'id'      => 'form-filter',
184
                        ]);
185
 
186
                        $form->prepare();
187
                        echo $this->form()->openTag($form);
188
                        ?>
189
                        <div class="row">
190
                            <div class="col-md-12 col-sm-12">
191
                                <div class="form-group">
192
                                    <?php
193
                                    $element = $form->get('student_uuid');
194
                                    $element->setOptions(['label' => 'LABEL_STUDENT']);
195
 
196
                                    $element->setAttributes(['class' => 'form-control']);
197
                                    echo $this->formLabel($element);
198
                                    echo $this->formSelect($element);
199
                                    ?>
200
                                </div>
201
                            </div>
202
 
203
 
204
                            <div
205
                                class="col-md-12 col-sm-12"
206
                            >
207
                                <div style="float:right;">
208
                                    <button type="button" class="btn btn-info btn-refresh"><i class="fa fa-refresh"></i> LABEL_REFRESH  </button>
209
                                    <?php if($allowDownload) :  ?>
210
 
211
                					<button type="button" class="btn btn-info btn-download"><i class="fa fa-download"></i> LABEL_DOWNLOAD  </button>
212
                					<?php endif;?>
213
                                </div>
214
                            </div>
215
 
216
                        </div>
217
						<?php echo $this->form()->closeTag($form); ?>
218
					</div>
219
					<div class="card-body">
16845 efrain 220
        	    		<table id="gridTable" class="table   table-bordered">
15386 efrain 221
                      		<thead>
222
        						<tr>
15390 efrain 223
									<th style="width: 30%">LABEL_TOPIC</th>
224
									<th style="width: 30%">LABEL_CAPSULE</th>
225
       								<th style="width: 20%">LABEL_COMPLETED</th>
226
                      				<th style="width: 20%">LABEL_REPORTS_PROGRESS</th>
15386 efrain 227
                                </tr>
228
                       		</thead>
229
                         	<tbody>
230
                         	</tbody>
231
                    	</table>
232
                   	</div>
233
          		</div>
234
           	</div>
235
        </div>
236
 	</div>
237
</section>
238
 
239
 
240
 
241
 
242
<script id="progressRowTemplate" type="text/x-jsrender">
243
    <tr>
15390 efrain 244
        <td  style="width: 30%">
15386 efrain 245
            {{>topic}}
246
        </td>
15390 efrain 247
        <td  style="width: 30%">
15386 efrain 248
             {{>capsule}}
249
        </td>
15390 efrain 250
        <td  style="width: 20%">
251
             {{>completed}}
15386 efrain 252
        </td>
253
 
254
 
15390 efrain 255
        <td  style="width: 20%">
256
 
257
 
15386 efrain 258
            <div class="progress progress-xs progress-striped active" style="height: 15px">
259
                <div class="progress-bar {{if completed == '1' }} bg-success {{ else }} bg-primary {{/if}}" style="width: {{>progress}}%">
260
{{>progress}}  %
261
                </div>
262
            </div>
263
        </td>
264
 
265
    </tr>
15390 efrain 266
    <tr>
267
                    <td class="text-right">LABEL_REPORTS_TOTAL_SLIDES</td>
268
                    <td class="text-right">LABEL_REPORTS_VIEW_SLIDES</td>
269
                    <td>LABEL_REPORTS_FIRST_DATE</td>
270
                    <td>LABEL_REPORTS_LAST_DATE</td>
271
                </tr>
272
 
273
 
274
                <tr>
275
                    <td class="text-right">{{>total_slides}}</td>
276
                    <td class="text-right">{{>view_slides}}</td>
277
                    <td>{{>added_on}}</td>
278
                    <td>{{>updated_on}}</td>
279
                </tr>
280
    </tr>
15386 efrain 281
</script>
282
 
283
 
284
 
285
 
286
 
287
 
288