Completed
Push — master ( 641a91...fc9f6a )
by
unknown
10:16
created

js/app/directives/progressbar.js   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 34

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
dl 0
loc 34
rs 9.064
c 0
b 0
f 0
nc 1
nop 0

1 Function

Rating   Name   Duplication   Size   Complexity  
A angular.directive(ꞌprogressBarꞌ) 0 24 1
1
/**
2
 * Nextcloud - passman
3
 *
4
 * @copyright Copyright (c) 2016, Sander Brand ([email protected])
5
 * @copyright Copyright (c) 2016, Marcos Zuriaga Miguel ([email protected])
6
 * @license GNU AGPL version 3 or any later version
7
 *
8
 * This program is free software: you can redistribute it and/or modify
9
 * it under the terms of the GNU Affero General Public License as
10
 * published by the Free Software Foundation, either version 3 of the
11
 * License, or (at your option) any later version.
12
 *
13
 * This program is distributed in the hope that it will be useful,
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 * GNU Affero General Public License for more details.
17
 *
18
 * You should have received a copy of the GNU Affero General Public License
19
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
 *
21
 */
22
23
(function () {
24
	'use strict';
25
	/**
26
	 * @ngdoc directive
27
	 * @name passmanApp.directive:passwordGen
28
	 * @description
29
	 * # passwordGen
30
	 */
31
	angular.module('passmanApp')
32
		.directive('progressBar', ['$translate', function ($translate) {
33
			return {
34
				restrict: 'A',
35
				template: '' +
36
				'<div class="progress">' +
37
				'<div class="progress-bar" role="progressbar" aria-valuenow="{{progress}}"aria-valuemin="0" aria-valuemax="100" style="width:{{progress}}%;" use-theme>' +
38
				'<span class="sr-only">{{progress}}% {{completed_text}}</span>' +
39
				'<span ng-if="index && total" class="progress-label" use-theme type="\'color\'" color="\'true\'">{{index}} / {{total}}</span>' +
40
				'<span ng-if="!index && !total" class="progress-label" use-theme type="\'color\'" color="\'true\'">{{progress}}%</span>' +
41
				'</div>' +
42
				'</div>',
43
				scope: {
44
					progress: '=progressBar',
45
					index: '=index',
46
					total: '=total'
47
				},
48
49
				link: function (scope) {
50
					$translate(['complete']).then(function (translations) {
51
						scope.completed_text = translations.complete;
52
					});
53
				}
54
			};
55
		}]);
56
}());