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-topic/excel') ? 1 : 0;
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
 
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 #topic_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
    $('#topic_uuid').select2({
16918 efrain 147
        theme: 'bootstrap-5',
15389 efrain 148
        width: '100%',
149
    });
150
 
151
 
15386 efrain 152
    $.fn.changeFilter();
153
    $('button.btn-download').hide();
154
 
155
});
156
JS;
157
$this->inlineScript()->captureEnd();
158
?>
159
 
16910 efrain 160
<div class="container">
161
	<div class="card" id="">
162
	 	<div class="card-header">
163
	 		<h6 class="card-title">LABEL_PROGRESS_FOR_TOPIC</h6>
164
	 	</div>
165
	 	<div class="card-body">
166
 
167
	 	<?php
15386 efrain 168
                        $form = $this->form;
169
            	        $form->setAttributes([
170
                            'name'    => 'form-filter',
171
                            'id'      => 'form-filter',
172
                        ]);
173
 
174
                        $form->prepare();
175
                        echo $this->form()->openTag($form);
176
                        ?>
177
                        <div class="row">
16910 efrain 178
                            <div class="col-12 mt-3">
179
 
15386 efrain 180
                                    <?php
181
                                    $element = $form->get('topic_uuid');
182
                                    $element->setOptions(['label' => 'LABEL_TOPIC']);
183
 
184
                                    $element->setAttributes(['class' => 'form-control']);
185
                                    echo $this->formLabel($element);
186
                                    echo $this->formSelect($element);
187
                                    ?>
16910 efrain 188
 
15386 efrain 189
                            </div>
190
 
16910 efrain 191
 
15386 efrain 192
 
193
                        </div>
194
						<?php echo $this->form()->closeTag($form); ?>
16910 efrain 195
 
196
	 		<div class="row">
197
	 	         <div class="col-12 mt-3">
198
 
199
	 	         <table id="gridTable" class="table   table-bordered">
15386 efrain 200
                      		<thead>
201
        						<tr>
15390 efrain 202
									<th>LABEL_FIRST_NAME</th>
203
									<th>LABEL_LAST_NAME</th>
204
									<th colspan= "2">LABEL_EMAIL</th>
205
                      				<th colspan= "2">LABEL_REPORTS_PROGRESS</th>
15386 efrain 206
 
207
                                </tr>
208
                       		</thead>
209
                         	<tbody>
210
                         	</tbody>
211
                    	</table>
16910 efrain 212
 
213
	 	         </div>
214
	 	     </div>
215
	 	</div>
216
	 	<div class="card-footer text-right">
16992 efrain 217
                              <button type="button" class="btn btn-info btn-refresh"><i class="fa fa-sync"></i> LABEL_REFRESH  </button>
16910 efrain 218
                                    <?php if($allowDownload) :  ?>
219
 
220
                					<button type="button" class="btn btn-info btn-download"><i class="fa fa-download"></i> LABEL_DOWNLOAD  </button>
221
                					<?php endif;?>
222
	 	</div>
223
	</div>
224
</div>
225
 
15386 efrain 226
 
227
 
228
 
229
 
230
<script id="progressRowTemplate" type="text/x-jsrender">
231
    <tr>
15390 efrain 232
        <td>
15386 efrain 233
            {{>first_name}}
234
        </td>
15390 efrain 235
        <td>
15386 efrain 236
             {{>last_name}}
237
        </td>
15390 efrain 238
        <td colspan= "2">
15386 efrain 239
            {{>email}}
240
        </td>
241
 
242
 
15390 efrain 243
        <td colspan= "2">
15386 efrain 244
 
15390 efrain 245
 
15386 efrain 246
            <div class="progress progress-xs progress-striped active" style="height: 15px">
247
                <div class="progress-bar {{if completed == '1' }} bg-success {{ else }} bg-primary {{/if}}" style="width: {{>progress}}%">
248
{{>progress}}  %
249
                </div>
250
            </div>
251
        </td>
252
 
253
    </tr>
15390 efrain 254
    <tr>
255
 
256
                    <td class="text-right">LABEL_TOTAL_ASIGNED</td>
257
                    <td class="text-right">LABEL_TOTAL_COMPLETED</td>
258
 
259
                    <td class="text-right">LABEL_TOTAL_STARTED</td>
260
                    <td class="text-right">LABEL_TOTAL_WITHOUT_STARTING</td>
261
                    <td>LABEL_REPORTS_FIRST_DATE</td>
262
                    <td>LABEL_REPORTS_LAST_DATE</td>
263
                </tr>
264
 
265
 
266
                <tr>
267
                    <td class="text-right">{{>total_capsules}}</td>
268
                    <td class="text-right">{{>completed_capsules}}</td>
269
                    <td class="text-right">{{>started_capsules}}</td>
270
                    <td class="text-right">{{>pending_capsules}}</td>
271
                    <td>{{>added_on}}</td>
272
                    <td>{{>updated_on}}</td>
273
                </tr>
274
 
275
 
276
 
277
 
278
     </tr>
15386 efrain 279
</script>
280
 
281
 
282
 
283
 
284
 
285
 
286