@kigi/components 1.33.4-beta.1 → 1.34.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/components/mbg-homescreen/cards/index.ts +0 -2
- package/src/components/mbg-homescreen/charts/bar-line/bar-line.html +1 -7
- package/src/components/mbg-homescreen/charts/bar-line/bar-line.ts +1 -5
- package/src/components/mbg-homescreen/charts/bar-line-pie/bar-line-pie.html +1 -7
- package/src/components/mbg-homescreen/charts/bar-line-pie/bar-line-pie.ts +1 -5
- package/src/components/mbg-homescreen/charts/line/line.html +1 -7
- package/src/components/mbg-homescreen/charts/line/line.scss +0 -1
- package/src/components/mbg-homescreen/charts/line/line.ts +19 -32
- package/src/components/mbg-homescreen/index.ts +8 -9
- package/src/components/mbg-homescreen/mbg-homescreen.html +33 -44
- package/src/components/mbg-homescreen/mbg-homescreen.scss +6 -54
- package/src/components/mbg-homescreen/mbg-homescreen.ts +1 -20
- package/src/components/mbg-select/mbg-select.ts +1 -1
- package/src/components/mbg-status-label/mbg-status-label.ts +0 -7
- package/src/components/mbg-homescreen/cards/chart-wrapper/chart-wrapper.html +0 -17
- package/src/components/mbg-homescreen/cards/chart-wrapper/chart-wrapper.scss +0 -30
- package/src/components/mbg-homescreen/cards/chart-wrapper/chart-wrapper.ts +0 -22
- package/src/components/mbg-homescreen/cards/panel/panel.html +0 -53
- package/src/components/mbg-homescreen/cards/panel/panel.scss +0 -74
- package/src/components/mbg-homescreen/cards/panel/panel.ts +0 -74
package/package.json
CHANGED
|
@@ -1,11 +1,5 @@
|
|
|
1
1
|
<div class="mb-h-charts-container">
|
|
2
|
-
|
|
3
|
-
<mbg-chart-wrapper panels="$ctrl.panels"
|
|
4
|
-
loading="$ctrl.loading"
|
|
5
|
-
display-values="$ctrl.displayValues"
|
|
6
|
-
allowed-to-see="$ctrl.allowedToSee"
|
|
7
|
-
allowed-call-back="$ctrl.allowedCallBack()"></mbg-chart-wrapper>
|
|
8
|
-
|
|
2
|
+
<div class="home-chart"> </div>
|
|
9
3
|
<div ng-show="!$ctrl.hasData()"
|
|
10
4
|
class="empty">
|
|
11
5
|
<svg xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
@@ -236,16 +236,12 @@ class MbgChartBarLineController {
|
|
|
236
236
|
}
|
|
237
237
|
}
|
|
238
238
|
|
|
239
|
-
MbgChartBarLineController
|
|
239
|
+
MbgChartBarLineController.$inject = ['$scope', '$element', '$attrs', '$timeout']
|
|
240
240
|
|
|
241
241
|
const mbgChartBarLine = {
|
|
242
242
|
bindings: {
|
|
243
243
|
chart: '=',
|
|
244
|
-
panels: '=',
|
|
245
|
-
loading: '=?',
|
|
246
244
|
displayValues: '=?',
|
|
247
|
-
allowedToSee: '=?',
|
|
248
|
-
allowedCallBack: '&?',
|
|
249
245
|
},
|
|
250
246
|
template,
|
|
251
247
|
controller: MbgChartBarLineController,
|
|
@@ -1,11 +1,5 @@
|
|
|
1
1
|
<div class="mb-h-charts-container">
|
|
2
|
-
|
|
3
|
-
<mbg-chart-wrapper panels="$ctrl.panels"
|
|
4
|
-
loading="$ctrl.loading"
|
|
5
|
-
display-values="$ctrl.displayValues"
|
|
6
|
-
allowed-to-see="$ctrl.allowedToSee"
|
|
7
|
-
allowed-call-back="$ctrl.allowedCallBack()"></mbg-chart-wrapper>
|
|
8
|
-
|
|
2
|
+
<div class="home-chart"> </div>
|
|
9
3
|
<div ng-show="!$ctrl.hasData()"
|
|
10
4
|
class="empty">
|
|
11
5
|
<svg xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
@@ -261,16 +261,12 @@ class MbgChartBarLinePieController {
|
|
|
261
261
|
}
|
|
262
262
|
}
|
|
263
263
|
|
|
264
|
-
MbgChartBarLinePieController
|
|
264
|
+
MbgChartBarLinePieController.$inject = ['$scope', '$element', '$attrs', '$timeout']
|
|
265
265
|
|
|
266
266
|
const mbgChartBarLinePie = {
|
|
267
267
|
bindings: {
|
|
268
268
|
chart: '=',
|
|
269
|
-
panels: '=',
|
|
270
|
-
loading: '=?',
|
|
271
269
|
displayValues: '=?',
|
|
272
|
-
allowedToSee: '=?',
|
|
273
|
-
allowedCallBack: '&?',
|
|
274
270
|
},
|
|
275
271
|
template,
|
|
276
272
|
controller: MbgChartBarLinePieController,
|
|
@@ -1,11 +1,5 @@
|
|
|
1
1
|
<div class="mb-h-charts-container">
|
|
2
|
-
|
|
3
|
-
<mbg-chart-wrapper panels="$ctrl.panels"
|
|
4
|
-
loading="$ctrl.loading"
|
|
5
|
-
display-values="$ctrl.displayValues"
|
|
6
|
-
allowed-to-see="$ctrl.allowedToSee"
|
|
7
|
-
allowed-call-back="$ctrl.allowedCallBack()"></mbg-chart-wrapper>
|
|
8
|
-
|
|
2
|
+
<div class="home-chart"> </div>
|
|
9
3
|
<div ng-show="!$ctrl.hasData()"
|
|
10
4
|
class="empty">
|
|
11
5
|
<svg xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
@@ -45,7 +45,6 @@ class MbgChartLineController {
|
|
|
45
45
|
this.$element[0].querySelector('.home-chart'),
|
|
46
46
|
this.getHighchartConfig(),
|
|
47
47
|
)
|
|
48
|
-
|
|
49
48
|
this.hasData = () => {
|
|
50
49
|
const finds =
|
|
51
50
|
chartInstance.series.reduce((value, serie) => {
|
|
@@ -211,36 +210,28 @@ class MbgChartLineController {
|
|
|
211
210
|
} else {
|
|
212
211
|
arrayChartColors = this.chart.chartColor
|
|
213
212
|
}
|
|
214
|
-
|
|
215
213
|
series = arrayChartColors.map((chartColor, i) => {
|
|
216
|
-
const defaultStops = chartColor.fillColor
|
|
217
|
-
? chartColor.fillColor
|
|
218
|
-
: [
|
|
219
|
-
[0, 'rgba(253,147,0,8)'],
|
|
220
|
-
[1, 'rgba(247,41,14,8)'],
|
|
221
|
-
]
|
|
222
|
-
const props = chartColor.isDefault
|
|
223
|
-
? {
|
|
224
|
-
lineWidth: 0,
|
|
225
|
-
lineColor: 'transparent',
|
|
226
|
-
zIndex: 1,
|
|
227
|
-
fillColor: {
|
|
228
|
-
linearGradient: [0, 0, 0, 500],
|
|
229
|
-
stops: defaultStops,
|
|
230
|
-
},
|
|
231
|
-
opacity: 0.5,
|
|
232
|
-
}
|
|
233
|
-
: {
|
|
234
|
-
lineWidth: 2,
|
|
235
|
-
fillColor: 'transparent',
|
|
236
|
-
zIndex: 2,
|
|
237
|
-
}
|
|
238
|
-
|
|
239
214
|
return {
|
|
240
215
|
type: 'areaspline',
|
|
216
|
+
lineWidth: 0,
|
|
241
217
|
color: chartColor.fillColor ? chartColor.fillColor[0][1] : 'rgba(255,147,43,1)',
|
|
242
|
-
|
|
243
|
-
|
|
218
|
+
lineColor: 'transparent',
|
|
219
|
+
marker: {
|
|
220
|
+
enabled: false,
|
|
221
|
+
lineColor: '#fff',
|
|
222
|
+
lineWidth: 2,
|
|
223
|
+
},
|
|
224
|
+
fillOpacity: 0.75,
|
|
225
|
+
opacity: 0.5,
|
|
226
|
+
fillColor: {
|
|
227
|
+
linearGradient: [0, 0, 0, 400],
|
|
228
|
+
stops: chartColor.fillColor
|
|
229
|
+
? chartColor.fillColor
|
|
230
|
+
: [
|
|
231
|
+
[0, 'rgba(253,147,0,0.8)'],
|
|
232
|
+
[1, 'rgba(247,41,14,0.8)'],
|
|
233
|
+
],
|
|
234
|
+
},
|
|
244
235
|
name: this.chart.series[i].name,
|
|
245
236
|
data: [],
|
|
246
237
|
}
|
|
@@ -257,16 +248,12 @@ class MbgChartLineController {
|
|
|
257
248
|
}
|
|
258
249
|
}
|
|
259
250
|
|
|
260
|
-
MbgChartLineController
|
|
251
|
+
MbgChartLineController.$inject = ['$scope', '$element', '$attrs', '$timeout']
|
|
261
252
|
|
|
262
253
|
const mbgChartLine = {
|
|
263
254
|
bindings: {
|
|
264
255
|
chart: '=',
|
|
265
|
-
panels: '=',
|
|
266
|
-
loading: '=?',
|
|
267
256
|
displayValues: '=?',
|
|
268
|
-
allowedToSee: '=?',
|
|
269
|
-
allowedCallBack: '&?',
|
|
270
257
|
},
|
|
271
258
|
template,
|
|
272
259
|
controller: MbgChartLineController,
|
|
@@ -1,16 +1,15 @@
|
|
|
1
1
|
import * as angular from 'angular'
|
|
2
2
|
import { mbgHomescreen } from './mbg-homescreen'
|
|
3
|
-
import {
|
|
3
|
+
import { mbgCardTypeone } from './cards'
|
|
4
4
|
import { mbgChartLine, mbgChartBarLine, mbgChartBarLinePie } from './charts'
|
|
5
5
|
|
|
6
6
|
const mbgHomeScreenModule = angular
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
.component('mbgChartWrapper', mbgChartWrapper).name
|
|
7
|
+
.module('mbg.components.mbgHomescreen', [])
|
|
8
|
+
.component('mbgHomescreen', mbgHomescreen)
|
|
9
|
+
.component('mbgCardTypeone', mbgCardTypeone)
|
|
10
|
+
.component('mbgChartLine', mbgChartLine)
|
|
11
|
+
.component('mbgChartBarLine', mbgChartBarLine)
|
|
12
|
+
.component('mbgChartBarLinePie', mbgChartBarLinePie)
|
|
13
|
+
.name
|
|
15
14
|
|
|
16
15
|
export { mbgHomeScreenModule }
|
|
@@ -1,10 +1,5 @@
|
|
|
1
1
|
<div class="mh-container"
|
|
2
|
-
ng-
|
|
3
|
-
|
|
4
|
-
<div class="overlay"
|
|
5
|
-
ng-if="$ctrl.openedFilters"
|
|
6
|
-
ng-click="$ctrl.closeFilters($event)"></div>
|
|
7
|
-
|
|
2
|
+
ng-show="!$ctrl.loading">
|
|
8
3
|
<div class="mbg-h-tabs">
|
|
9
4
|
<div class="mbg-h-t-tab"
|
|
10
5
|
ng-repeat="tab in $ctrl.tabs"
|
|
@@ -12,59 +7,32 @@
|
|
|
12
7
|
ng-class="{ 'active' : tab.active }">
|
|
13
8
|
{{ tab.name }}
|
|
14
9
|
</div>
|
|
15
|
-
|
|
16
|
-
<div class="homescreen-filter"
|
|
17
|
-
ng-click="$ctrl.onToggleFilters($event)">
|
|
18
|
-
<i class="fa fa-filter"
|
|
19
|
-
aria-hidden="true"></i>
|
|
20
|
-
</div>
|
|
21
10
|
</div>
|
|
22
|
-
|
|
23
|
-
|
|
24
11
|
<div class="homescreen-filters"
|
|
25
|
-
ng-if="$ctrl.
|
|
26
|
-
<
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
<
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
style="margin: 0 5px 14px 0;">
|
|
37
|
-
<mbg-input-date ng-model="item.value"
|
|
38
|
-
ng-change="$ctrl.onChangeFilter()"
|
|
39
|
-
calendar="true"
|
|
40
|
-
placeholder="{{ item.placeholder }}"></mbg-input-date>
|
|
41
|
-
</div>
|
|
12
|
+
ng-if="$ctrl.tabs && $ctrl.tabs[$ctrl.activeIndex].active && $ctrl.tabs[$ctrl.activeIndex].filters">
|
|
13
|
+
<div ng-repeat="item in $ctrl.tabs[$ctrl.activeIndex].filters">
|
|
14
|
+
<button ng-class="{'active': item.active}"
|
|
15
|
+
ng-if="item.type === 'BUTTON'"
|
|
16
|
+
ng-click="$ctrl.selectFilter(item)">{{item.name}}</button>
|
|
17
|
+
<div ng-if="item.type === 'DATE'"
|
|
18
|
+
style="margin: 0 5px 14px 0;">
|
|
19
|
+
<mbg-input-date ng-model="item.value"
|
|
20
|
+
ng-change="$ctrl.onChangeFilter()"
|
|
21
|
+
calendar="true"
|
|
22
|
+
placeholder="{{ item.placeholder }}"></mbg-input-date>
|
|
42
23
|
</div>
|
|
43
24
|
</div>
|
|
44
25
|
|
|
45
26
|
</div>
|
|
46
|
-
|
|
47
27
|
<div class="charts">
|
|
48
28
|
<mbg-chart-line chart="$ctrl.chart"
|
|
49
|
-
panels="$ctrl.cards"
|
|
50
29
|
display-values="$ctrl.displayValues"
|
|
51
|
-
loading="$ctrl.loading"
|
|
52
|
-
allowed-to-see="$ctrl.allowedToSee"
|
|
53
|
-
allowed-call-back="$ctrl.allowedCallBack()"
|
|
54
30
|
ng-if="$ctrl.chart && $ctrl.chart.type == 'line'"></mbg-chart-line>
|
|
55
31
|
<mbg-chart-bar-line chart="$ctrl.chart"
|
|
56
|
-
panels="$ctrl.cards"
|
|
57
32
|
display-values="$ctrl.displayValues"
|
|
58
|
-
loading="$ctrl.loading"
|
|
59
|
-
allowed-to-see="$ctrl.allowedToSee"
|
|
60
|
-
allowed-call-back="$ctrl.allowedCallBack()"
|
|
61
33
|
ng-if="$ctrl.chart && $ctrl.chart.type == 'barline'"></mbg-chart-bar-line>
|
|
62
34
|
<mbg-chart-bar-line-pie chart="$ctrl.chart"
|
|
63
|
-
panels="$ctrl.cards"
|
|
64
35
|
display-values="$ctrl.displayValues"
|
|
65
|
-
loading="$ctrl.loading"
|
|
66
|
-
allowed-to-see="$ctrl.allowedToSee"
|
|
67
|
-
allowed-call-back="$ctrl.allowedCallBack()"
|
|
68
36
|
ng-if="$ctrl.chart && $ctrl.chart.type == 'barlinepie'"></mbg-chart-bar-line-pie>
|
|
69
37
|
<div class="display-values">
|
|
70
38
|
<a ng-show="!$ctrl.displayValues"
|
|
@@ -73,6 +41,13 @@
|
|
|
73
41
|
ng-click="$ctrl.handleDisplayValues()"><i class="fas fa-eye-slash"></i> <span>Esconder valores</span></a>
|
|
74
42
|
</div>
|
|
75
43
|
</div>
|
|
44
|
+
<div class="mbg-h-card-container">
|
|
45
|
+
<mbg-card-typeone ng-repeat="card in $ctrl.cards"
|
|
46
|
+
allowed-to-see="$ctrl.allowedToSee"
|
|
47
|
+
display-values="$ctrl.displayValues"
|
|
48
|
+
allowed-call-back="$ctrl.allowedCallBack()"
|
|
49
|
+
card="card"></mbg-card-typeone>
|
|
50
|
+
</div>
|
|
76
51
|
|
|
77
52
|
</div>
|
|
78
53
|
|
|
@@ -85,4 +60,18 @@
|
|
|
85
60
|
<div class="fake-chart">
|
|
86
61
|
<mbg-skeleton></mbg-skeleton>
|
|
87
62
|
</div>
|
|
63
|
+
<div class="mbg-h-card-container">
|
|
64
|
+
<div class="fake-card">
|
|
65
|
+
<mbg-skeleton></mbg-skeleton>
|
|
66
|
+
</div>
|
|
67
|
+
<div class="fake-card">
|
|
68
|
+
<mbg-skeleton></mbg-skeleton>
|
|
69
|
+
</div>
|
|
70
|
+
<div class="fake-card">
|
|
71
|
+
<mbg-skeleton></mbg-skeleton>
|
|
72
|
+
</div>
|
|
73
|
+
<div class="fake-card">
|
|
74
|
+
<mbg-skeleton></mbg-skeleton>
|
|
75
|
+
</div>
|
|
76
|
+
</div>
|
|
88
77
|
</div>
|
|
@@ -1,13 +1,4 @@
|
|
|
1
1
|
mbg-homescreen {
|
|
2
|
-
.overlay {
|
|
3
|
-
position: absolute;
|
|
4
|
-
top: 0;
|
|
5
|
-
left: 0;
|
|
6
|
-
width: 100%;
|
|
7
|
-
height: 100%;
|
|
8
|
-
z-index: 9;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
2
|
.charts {
|
|
12
3
|
.display-values {
|
|
13
4
|
display: flex;
|
|
@@ -16,7 +7,6 @@ mbg-homescreen {
|
|
|
16
7
|
transition: all 300ms ease;
|
|
17
8
|
opacity: 0;
|
|
18
9
|
cursor: pointer;
|
|
19
|
-
width: 90%;
|
|
20
10
|
|
|
21
11
|
a {
|
|
22
12
|
color: var(--neutral2);
|
|
@@ -28,55 +18,15 @@ mbg-homescreen {
|
|
|
28
18
|
|
|
29
19
|
&:hover {
|
|
30
20
|
.display-values {
|
|
31
|
-
transform: translateY(
|
|
21
|
+
transform: translateY(10px);
|
|
32
22
|
opacity: 1;
|
|
33
23
|
}
|
|
34
24
|
}
|
|
35
25
|
}
|
|
36
|
-
|
|
37
|
-
.homescreen-filter{
|
|
38
|
-
position: absolute;
|
|
39
|
-
right: 3px;
|
|
40
|
-
top: .5px;
|
|
41
|
-
padding: 10px;
|
|
42
|
-
background: var(--primary);
|
|
43
|
-
border-radius: 100px;
|
|
44
|
-
width: 48px;
|
|
45
|
-
height: 48px;
|
|
46
|
-
text-align: center;
|
|
47
|
-
font-size: 30px;
|
|
26
|
+
.homescreen-filters {
|
|
48
27
|
display: flex;
|
|
49
|
-
justify-content: center;
|
|
50
28
|
align-items: center;
|
|
51
|
-
|
|
52
|
-
cursor: pointer;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
.homescreen-filters {
|
|
56
|
-
position: absolute;
|
|
57
|
-
right: 24px;
|
|
58
|
-
top: 74px;
|
|
59
|
-
z-index: 10;
|
|
60
|
-
|
|
61
|
-
span {
|
|
62
|
-
color: var(--neutral2);
|
|
63
|
-
padding: 12px;
|
|
64
|
-
display: inline-block;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
background-color: white;
|
|
68
|
-
border-radius: 10px;
|
|
69
|
-
height: 100px;
|
|
70
|
-
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.25);
|
|
71
|
-
|
|
72
|
-
.homescreen-filters-body {
|
|
73
|
-
display: flex;
|
|
74
|
-
align-items: center;
|
|
75
|
-
justify-content: center;
|
|
76
|
-
gap: 12px;
|
|
77
|
-
padding: 0 12px;
|
|
78
|
-
}
|
|
79
|
-
|
|
29
|
+
justify-content: center;
|
|
80
30
|
|
|
81
31
|
button {
|
|
82
32
|
height: 35px;
|
|
@@ -84,6 +34,8 @@ mbg-homescreen {
|
|
|
84
34
|
color: var(--primary);
|
|
85
35
|
background-color: #fff;
|
|
86
36
|
border: 2px solid var(--primary);
|
|
37
|
+
margin-right: 14px;
|
|
38
|
+
margin-bottom: 14px;
|
|
87
39
|
transition: all 200ms ease;
|
|
88
40
|
border-radius: 35px;
|
|
89
41
|
|
|
@@ -96,7 +48,7 @@ mbg-homescreen {
|
|
|
96
48
|
.mh-container {
|
|
97
49
|
width: 100%;
|
|
98
50
|
height: auto;
|
|
99
|
-
padding:
|
|
51
|
+
padding: 15px;
|
|
100
52
|
|
|
101
53
|
.mh-panel-container {
|
|
102
54
|
background-color: white;
|
|
@@ -14,15 +14,8 @@ class MbgHomescreenController {
|
|
|
14
14
|
private displayValues: boolean
|
|
15
15
|
private activeIndex: number
|
|
16
16
|
private activeFilter: any
|
|
17
|
-
private openedFilters = false
|
|
18
|
-
private panels: {
|
|
19
|
-
icon: string
|
|
20
|
-
description: string
|
|
21
|
-
value: number
|
|
22
|
-
isCurrency: boolean
|
|
23
|
-
}[]
|
|
24
17
|
|
|
25
|
-
constructor(public $scope, public $element, public $attrs, public $timeout) {}
|
|
18
|
+
constructor(public $scope, public $element, public $attrs, public $timeout) { }
|
|
26
19
|
|
|
27
20
|
$onInit() {
|
|
28
21
|
this.$scope.$watch('$ctrl.config', (data) => {
|
|
@@ -36,17 +29,6 @@ class MbgHomescreenController {
|
|
|
36
29
|
})
|
|
37
30
|
}
|
|
38
31
|
|
|
39
|
-
onToggleFilters(event) {
|
|
40
|
-
event.stopPropagation()
|
|
41
|
-
this.openedFilters = !this.openedFilters
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
closeFilters() {
|
|
45
|
-
if (this.openedFilters) {
|
|
46
|
-
this.openedFilters = false
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
|
|
50
32
|
onChangeFilter() {
|
|
51
33
|
this.$timeout(() => {
|
|
52
34
|
if (this.tabs[this.activeIndex].executeFilter) {
|
|
@@ -65,7 +47,6 @@ class MbgHomescreenController {
|
|
|
65
47
|
item.active = true
|
|
66
48
|
if (this.tabs[this.activeIndex].executeFilter) {
|
|
67
49
|
this.tabs[this.activeIndex].executeFilter(this.config)
|
|
68
|
-
this.openedFilters = false
|
|
69
50
|
}
|
|
70
51
|
}
|
|
71
52
|
}
|
|
@@ -140,7 +140,7 @@ class MbgSelectController {
|
|
|
140
140
|
this.rejectFetch = () => {
|
|
141
141
|
cancelled = true
|
|
142
142
|
}
|
|
143
|
-
const response = this.fetch({ query: this.inputValue ||
|
|
143
|
+
const response = this.fetch({ query: this.inputValue || '' })
|
|
144
144
|
if (response && response.then) {
|
|
145
145
|
response.then((data) => {
|
|
146
146
|
if (!cancelled) {
|
|
@@ -71,7 +71,6 @@ class MbgStatusLabelController {
|
|
|
71
71
|
this.label = 'Inutilizada'
|
|
72
72
|
break
|
|
73
73
|
case 'TODO':
|
|
74
|
-
case 'OPEN':
|
|
75
74
|
this.label = 'Aberta'
|
|
76
75
|
break
|
|
77
76
|
case 'PROCESSED':
|
|
@@ -82,9 +81,6 @@ class MbgStatusLabelController {
|
|
|
82
81
|
break
|
|
83
82
|
case 'NOT_PROCESSED':
|
|
84
83
|
this.label = 'Não processado'
|
|
85
|
-
break
|
|
86
|
-
default:
|
|
87
|
-
this.label = undefined
|
|
88
84
|
}
|
|
89
85
|
}
|
|
90
86
|
|
|
@@ -120,7 +116,6 @@ class MbgStatusLabelController {
|
|
|
120
116
|
case 'ENVIADA':
|
|
121
117
|
case 'NAO_ENVIADA':
|
|
122
118
|
case 'TODO':
|
|
123
|
-
case 'OPEN':
|
|
124
119
|
this.labelClass = 'light'
|
|
125
120
|
break
|
|
126
121
|
case 'REVERSED':
|
|
@@ -131,8 +126,6 @@ class MbgStatusLabelController {
|
|
|
131
126
|
case 'IN_PROGRESS':
|
|
132
127
|
this.labelClass = 'primary'
|
|
133
128
|
break
|
|
134
|
-
default:
|
|
135
|
-
this.labelClass = undefined
|
|
136
129
|
}
|
|
137
130
|
}
|
|
138
131
|
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<div class="mb-h-chart-wrapper">
|
|
2
|
-
<div class="home-chart"> </div>
|
|
3
|
-
<div class="divider"></div>
|
|
4
|
-
<div class="home-cards">
|
|
5
|
-
<mbg-card-panel ng-repeat="panel in $ctrl.panels"
|
|
6
|
-
loading="$ctrl.loading"
|
|
7
|
-
display-values="$ctrl.displayValues"
|
|
8
|
-
allowed-to-see="$ctrl.allowedToSee"
|
|
9
|
-
allowed-call-back="$ctrl.allowedCallBack()"
|
|
10
|
-
panel="panel">
|
|
11
|
-
<i class="{{ panel.icon }}"
|
|
12
|
-
aria-hidden="true"></i>
|
|
13
|
-
</mbg-card-panel>
|
|
14
|
-
|
|
15
|
-
</div>
|
|
16
|
-
|
|
17
|
-
</div>
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
mbg-chart-wrapper {
|
|
2
|
-
.mb-h-chart-wrapper {
|
|
3
|
-
display: flex;
|
|
4
|
-
align-items: center;
|
|
5
|
-
|
|
6
|
-
.home-chart {
|
|
7
|
-
height: 400px;
|
|
8
|
-
width: 100%;
|
|
9
|
-
overflow: hidden;
|
|
10
|
-
user-select: none;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.divider {
|
|
14
|
-
height: 360px;
|
|
15
|
-
width: 1px;
|
|
16
|
-
background: var(--color2);
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
.home-cards {
|
|
20
|
-
display: flex;
|
|
21
|
-
flex-direction: column;
|
|
22
|
-
justify-content: space-evenly;
|
|
23
|
-
|
|
24
|
-
width: 300px;
|
|
25
|
-
padding: 8px;
|
|
26
|
-
gap: 4px;
|
|
27
|
-
height: 400px;
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import './chart-wrapper.scss'
|
|
2
|
-
import template from './chart-wrapper.html'
|
|
3
|
-
class MbgChartWrapperController {
|
|
4
|
-
constructor() {}
|
|
5
|
-
$onInit() {}
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
MbgChartWrapperController['$inject'] = []
|
|
9
|
-
|
|
10
|
-
const mbgChartWrapper = {
|
|
11
|
-
bindings: {
|
|
12
|
-
loading: '=?',
|
|
13
|
-
panels: '=',
|
|
14
|
-
displayValues: '=?',
|
|
15
|
-
allowedToSee: '=?',
|
|
16
|
-
allowedCallBack: '&?',
|
|
17
|
-
},
|
|
18
|
-
template,
|
|
19
|
-
controller: MbgChartWrapperController,
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
export { mbgChartWrapper }
|
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
<div class="mbg-h-c-panel">
|
|
2
|
-
<div class="panel-container">
|
|
3
|
-
<div class="panel-icon"
|
|
4
|
-
ng-transclude></div>
|
|
5
|
-
<div class="panel-content">
|
|
6
|
-
<div class="description-container">
|
|
7
|
-
<p class="description">{{ $ctrl.panel.text }}</p>
|
|
8
|
-
<div class="mbg-h-c-tone-s-icon"
|
|
9
|
-
ng-click="$ctrl.toggleShowValue()">
|
|
10
|
-
<i ng-if="$ctrl.hideValue === true"
|
|
11
|
-
disable-animate
|
|
12
|
-
class="far fa-eye"></i>
|
|
13
|
-
<i ng-if="$ctrl.hideValue !== true"
|
|
14
|
-
disable-animate
|
|
15
|
-
class="far fa-eye-slash"></i>
|
|
16
|
-
</div>
|
|
17
|
-
</div>
|
|
18
|
-
<!-- quando valores estão visiveis -->
|
|
19
|
-
<div class="footer"
|
|
20
|
-
ng-show="!$ctrl.hideValue"
|
|
21
|
-
disable-animate>
|
|
22
|
-
<p class="value"
|
|
23
|
-
ng-class="{'positive': $ctrl.panel.isCurrency && $ctrl.panel.value >= 0,
|
|
24
|
-
'negative': $ctrl.panel.isCurrency && $ctrl.panel.value < 0}"
|
|
25
|
-
ng-if="$ctrl.panel.isCurrency">{{ $ctrl.panel.value || 0 | currency: 'R$ ' }}
|
|
26
|
-
</p>
|
|
27
|
-
<p class="value"
|
|
28
|
-
ng-if="!$ctrl.panel.isCurrency">{{ $ctrl.panel.value || 0}}
|
|
29
|
-
</p>
|
|
30
|
-
<span ng-if="$ctrl.panel.value > 0"
|
|
31
|
-
class="positive"><i class="fa fa-arrow-up"
|
|
32
|
-
aria-hidden="true"></i></i></span>
|
|
33
|
-
<span ng-if="!$ctrl.panel.positive < 0"
|
|
34
|
-
class="negative"><i class="fa fa-arrow-down"
|
|
35
|
-
aria-hidden="true"></i></span>
|
|
36
|
-
</div>
|
|
37
|
-
|
|
38
|
-
<!-- quando valores estão ocultos -->
|
|
39
|
-
<div class="footer"
|
|
40
|
-
ng-show="$ctrl.hideValue"
|
|
41
|
-
disable-animate>
|
|
42
|
-
<p class="value">{{ $ctrl.randomEmoji }}</p>
|
|
43
|
-
|
|
44
|
-
<span ng-if="$ctrl.panel.value > 0"
|
|
45
|
-
class="positive"><i class="fa fa-arrow-up"
|
|
46
|
-
aria-hidden="true"></i></i></span>
|
|
47
|
-
<span ng-if="!$ctrl.panel.positive < 0"
|
|
48
|
-
class="negative"><i class="fa fa-arrow-down"
|
|
49
|
-
aria-hidden="true"></i></span>
|
|
50
|
-
</div>
|
|
51
|
-
</div>
|
|
52
|
-
</div>
|
|
53
|
-
</div>
|
|
@@ -1,74 +0,0 @@
|
|
|
1
|
-
mbg-card-panel {
|
|
2
|
-
.mbg-h-c-panel {
|
|
3
|
-
border: 1px solid var(--neutral3);
|
|
4
|
-
border-radius: 12px;
|
|
5
|
-
padding: 8px;
|
|
6
|
-
|
|
7
|
-
.panel-container {
|
|
8
|
-
display: flex;
|
|
9
|
-
align-items: center;
|
|
10
|
-
gap: 12px;
|
|
11
|
-
|
|
12
|
-
color: var(--neutral2);
|
|
13
|
-
|
|
14
|
-
.panel-icon {
|
|
15
|
-
display: flex;
|
|
16
|
-
justify-content: center;
|
|
17
|
-
align-items: center;
|
|
18
|
-
width: 40px;
|
|
19
|
-
height: 40px;
|
|
20
|
-
border-radius: 50%;
|
|
21
|
-
background-color: var(--color2);
|
|
22
|
-
color: var(--neutral2);
|
|
23
|
-
padding: 4px;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
.panel-content {
|
|
27
|
-
flex-grow: 1;
|
|
28
|
-
color: var(--titleColor);
|
|
29
|
-
|
|
30
|
-
.description-container {
|
|
31
|
-
display: flex;
|
|
32
|
-
justify-content: space-between;
|
|
33
|
-
|
|
34
|
-
.mbg-h-c-tone-s-icon {
|
|
35
|
-
transition: opacity 500ms ease;
|
|
36
|
-
opacity: 0;
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
.description {
|
|
41
|
-
font-size: 14px;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
.footer {
|
|
45
|
-
display: flex;
|
|
46
|
-
align-items: center;
|
|
47
|
-
|
|
48
|
-
.value {
|
|
49
|
-
flex-grow: 1;
|
|
50
|
-
font-weight: bold;
|
|
51
|
-
line-height: 1.2;
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
.positive {
|
|
57
|
-
color: var(--success);
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
.negative {
|
|
61
|
-
color: var(--error);
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
&:hover {
|
|
65
|
-
.panel-container {
|
|
66
|
-
.panel-content {
|
|
67
|
-
.mbg-h-c-tone-s-icon {
|
|
68
|
-
opacity: 1;
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
}
|
|
@@ -1,74 +0,0 @@
|
|
|
1
|
-
import './panel.scss'
|
|
2
|
-
import template from './panel.html'
|
|
3
|
-
|
|
4
|
-
class MbgCardPanelController {
|
|
5
|
-
public loading
|
|
6
|
-
public panel
|
|
7
|
-
public hideValue: boolean
|
|
8
|
-
public randomEmoji: string
|
|
9
|
-
public allowedToSee: boolean
|
|
10
|
-
private allowedCallBack: Function
|
|
11
|
-
|
|
12
|
-
constructor(public $scope, public $element, public $attrs, public $timeout) {}
|
|
13
|
-
$onInit() {
|
|
14
|
-
this.syncValue()
|
|
15
|
-
this.$scope.$watch('$ctrl.displayValues', (data) => {
|
|
16
|
-
this.randomEmoji = this.generateRandomEmoji()
|
|
17
|
-
this.hideValue = !data
|
|
18
|
-
})
|
|
19
|
-
|
|
20
|
-
this.randomEmoji = this.generateRandomEmoji()
|
|
21
|
-
|
|
22
|
-
this.panel.setNewValue = (value) => {
|
|
23
|
-
this.setValue(value)
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
setValue = (value) => {
|
|
28
|
-
this.$timeout(() => {
|
|
29
|
-
this.panel.value = value
|
|
30
|
-
this.panel.loading = false
|
|
31
|
-
}, 1000)
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
syncValue() {
|
|
35
|
-
if (this.panel.sync) {
|
|
36
|
-
this.panel.loading = true
|
|
37
|
-
this.panel.sync(this)
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
generateRandomEmoji = () => {
|
|
42
|
-
const emojis = ['👏👏👏', '🙈🙉🙊', '🎉🎉🎉', '😎😎😎', '🔐🔐🔐', '🚀🚀🚀', '🤖🤖🤖']
|
|
43
|
-
const rand = Math.floor(Math.random() * emojis.length)
|
|
44
|
-
return emojis[rand]
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
toggleShowValue = () => {
|
|
48
|
-
if (this.allowedToSee !== undefined && !this.allowedToSee) {
|
|
49
|
-
if (this.allowedCallBack) {
|
|
50
|
-
this.allowedCallBack()
|
|
51
|
-
}
|
|
52
|
-
return
|
|
53
|
-
}
|
|
54
|
-
this.randomEmoji = this.generateRandomEmoji()
|
|
55
|
-
this.hideValue = !this.hideValue
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
MbgCardPanelController['$inject'] = ['$scope', '$element', '$attrs', '$timeout']
|
|
60
|
-
|
|
61
|
-
const mbgCardPanel = {
|
|
62
|
-
transclude: true,
|
|
63
|
-
bindings: {
|
|
64
|
-
loading: '=?',
|
|
65
|
-
panel: '=',
|
|
66
|
-
displayValues: '=?',
|
|
67
|
-
allowedToSee: '=?',
|
|
68
|
-
allowedCallBack: '&?',
|
|
69
|
-
},
|
|
70
|
-
template,
|
|
71
|
-
controller: MbgCardPanelController,
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
export { mbgCardPanel }
|