Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16918 | | 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'));
16918 efrain 11
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/select2-bootstrap5-theme/select2-bootstrap-5-theme.css'));
16822 efrain 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({
16918 efrain 147
        theme: 'bootstrap-5',
15389 efrain 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
 
16910 efrain 162
<div class="container">
163
	<div class="card" id="">
164
	 	<div class="card-header">
165
	 		<h6 class="card-title">LABEL_PROGRESS_FOR_STUDENT</h6>
166
	 	</div>
167
	 	<div class="card-body">
168
	 	<?php
15386 efrain 169
                        $form = $this->form;
170
            	        $form->setAttributes([
171
                            'name'    => 'form-filter',
172
                            'id'      => 'form-filter',
173
                        ]);
174
 
175
                        $form->prepare();
176
                        echo $this->form()->openTag($form);
177
                        ?>
178
                        <div class="row">
16910 efrain 179
                            <div class="col-12 mt-3">
180
 
15386 efrain 181
                                    <?php
182
                                    $element = $form->get('student_uuid');
183
                                    $element->setOptions(['label' => 'LABEL_STUDENT']);
184
 
185
                                    $element->setAttributes(['class' => 'form-control']);
186
                                    echo $this->formLabel($element);
187
                                    echo $this->formSelect($element);
188
                                    ?>
16910 efrain 189
 
15386 efrain 190
                            </div>
191
 
192
                        </div>
193
						<?php echo $this->form()->closeTag($form); ?>
16910 efrain 194
 
195
	 		<div class="row">
196
	 	         <div class="col-12 mt-3">
197
 
198
	 	           		<table id="gridTable" class="table   table-bordered">
15386 efrain 199
                      		<thead>
200
        						<tr>
15390 efrain 201
									<th style="width: 30%">LABEL_TOPIC</th>
202
									<th style="width: 30%">LABEL_CAPSULE</th>
203
       								<th style="width: 20%">LABEL_COMPLETED</th>
204
                      				<th style="width: 20%">LABEL_REPORTS_PROGRESS</th>
15386 efrain 205
                                </tr>
206
                       		</thead>
207
                         	<tbody>
208
                         	</tbody>
209
                    	</table>
16910 efrain 210
 
211
	 	         </div>
212
	 	     </div>
213
	 	</div>
214
	 	<div class="card-footer text-right">
16992 efrain 215
                <button type="button" class="btn btn-info btn-refresh"><i class="fa fa-sync"></i> LABEL_REFRESH  </button>
16910 efrain 216
                                    <?php if($allowDownload) :  ?>
217
 
218
                					<button type="button" class="btn btn-info btn-download"><i class="fa fa-download"></i> LABEL_DOWNLOAD  </button>
219
                					<?php endif;?>
220
	 	</div>
221
	</div>
222
</div>
15386 efrain 223
 
224
 
225
<script id="progressRowTemplate" type="text/x-jsrender">
226
    <tr>
15390 efrain 227
        <td  style="width: 30%">
15386 efrain 228
            {{>topic}}
229
        </td>
15390 efrain 230
        <td  style="width: 30%">
15386 efrain 231
             {{>capsule}}
232
        </td>
15390 efrain 233
        <td  style="width: 20%">
234
             {{>completed}}
15386 efrain 235
        </td>
236
 
237
 
15390 efrain 238
        <td  style="width: 20%">
239
 
240
 
15386 efrain 241
            <div class="progress progress-xs progress-striped active" style="height: 15px">
242
                <div class="progress-bar {{if completed == '1' }} bg-success {{ else }} bg-primary {{/if}}" style="width: {{>progress}}%">
243
{{>progress}}  %
244
                </div>
245
            </div>
246
        </td>
247
 
248
    </tr>
15390 efrain 249
    <tr>
250
                    <td class="text-right">LABEL_REPORTS_TOTAL_SLIDES</td>
251
                    <td class="text-right">LABEL_REPORTS_VIEW_SLIDES</td>
252
                    <td>LABEL_REPORTS_FIRST_DATE</td>
253
                    <td>LABEL_REPORTS_LAST_DATE</td>
254
                </tr>
255
 
256
 
257
                <tr>
258
                    <td class="text-right">{{>total_slides}}</td>
259
                    <td class="text-right">{{>view_slides}}</td>
260
                    <td>{{>added_on}}</td>
261
                    <td>{{>updated_on}}</td>
262
                </tr>
263
    </tr>
15386 efrain 264
</script>
265
 
266
 
267
 
268
 
269
 
270
 
271