@the-liberators/ngx-scrumteamsurvey-tools 2.2.81 → 2.2.82
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/esm2022/lib/results/components/age-indicator/age-indicator.component.mjs +14 -11
- package/fesm2022/the-liberators-ngx-scrumteamsurvey-tools.mjs +13 -10
- package/fesm2022/the-liberators-ngx-scrumteamsurvey-tools.mjs.map +1 -1
- package/lib/results/components/age-indicator/age-indicator.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -7,29 +7,32 @@ export class AgeIndicatorComponent {
|
|
|
7
7
|
}
|
|
8
8
|
ngOnInit() {
|
|
9
9
|
var measureDate = new Date(this.lastMeasured);
|
|
10
|
-
|
|
11
|
-
if (lastMeasuredMonths > 12) {
|
|
12
|
-
lastMeasuredMonths
|
|
10
|
+
this.lastMeasuredMonths = Math.max(0, (new Date().getFullYear() - measureDate.getFullYear()) * 12 - measureDate.getMonth() + new Date().getMonth());
|
|
11
|
+
if (this.lastMeasuredMonths > 12) {
|
|
12
|
+
this.lastMeasuredMonths = 12;
|
|
13
13
|
}
|
|
14
|
-
this.
|
|
15
|
-
|
|
16
|
-
|
|
14
|
+
if (this.lastMeasuredMonths < 1) {
|
|
15
|
+
this.lastMeasuredMonths = 1;
|
|
16
|
+
}
|
|
17
|
+
this.lastMeasuredOpacity = 1 - (this.lastMeasuredMonths / 14);
|
|
18
|
+
console.log(this.lastMeasuredMonths);
|
|
19
|
+
if (this.lastMeasuredMonths <= 1) {
|
|
17
20
|
this.lastMeasuredTooltip = 'This factor was last measured 1 month or less ago. It is fresh data.';
|
|
18
21
|
}
|
|
19
|
-
else if (lastMeasuredMonths >= 12) {
|
|
22
|
+
else if (this.lastMeasuredMonths >= 12) {
|
|
20
23
|
this.lastMeasuredTooltip = 'This factor was last measured 12 month or more ago. We recommend to measure this again to keep data fresh.';
|
|
21
24
|
}
|
|
22
25
|
else {
|
|
23
|
-
this.lastMeasuredTooltip = 'This factor was last measured ' + lastMeasuredMonths + ' month or more ago. The fresher your data, the more reliable it is.';
|
|
26
|
+
this.lastMeasuredTooltip = 'This factor was last measured ' + this.lastMeasuredMonths + ' month or more ago. The fresher your data, the more reliable it is.';
|
|
24
27
|
}
|
|
25
28
|
}
|
|
26
29
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.1", ngImport: i0, type: AgeIndicatorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
27
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.1", type: AgeIndicatorComponent, selector: "age-indicator", inputs: { lastMeasured: "lastMeasured" }, ngImport: i0, template: "<div class=\"age-indicator\" [style.opacity]=\"lastMeasuredOpacity\" [matTooltip]=\"lastMeasuredTooltip\" *ngIf=\"
|
|
30
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.1", type: AgeIndicatorComponent, selector: "age-indicator", inputs: { lastMeasured: "lastMeasured" }, ngImport: i0, template: "<div class=\"age-indicator\" [style.opacity]=\"lastMeasuredOpacity\" [matTooltip]=\"lastMeasuredTooltip\" *ngIf=\"lastMeasuredMonths > 0\">\n <div class=\"age-indicator-dot\" *ngFor=\"let e of [].constructor(lastMeasuredMonths); let i = index\"></div>\n</div>\n", styles: [".smallTextUppercase{font-family:StevieSansThin,sans-serif;font-style:normal;font-weight:400;font-size:15px;line-height:140%;text-transform:uppercase;line-height:100%}\n"], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }] }); }
|
|
28
31
|
}
|
|
29
32
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.1", ngImport: i0, type: AgeIndicatorComponent, decorators: [{
|
|
30
33
|
type: Component,
|
|
31
|
-
args: [{ selector: 'age-indicator', template: "<div class=\"age-indicator\" [style.opacity]=\"lastMeasuredOpacity\" [matTooltip]=\"lastMeasuredTooltip\" *ngIf=\"
|
|
34
|
+
args: [{ selector: 'age-indicator', template: "<div class=\"age-indicator\" [style.opacity]=\"lastMeasuredOpacity\" [matTooltip]=\"lastMeasuredTooltip\" *ngIf=\"lastMeasuredMonths > 0\">\n <div class=\"age-indicator-dot\" *ngFor=\"let e of [].constructor(lastMeasuredMonths); let i = index\"></div>\n</div>\n", styles: [".smallTextUppercase{font-family:StevieSansThin,sans-serif;font-style:normal;font-weight:400;font-size:15px;line-height:140%;text-transform:uppercase;line-height:100%}\n"] }]
|
|
32
35
|
}], ctorParameters: () => [], propDecorators: { lastMeasured: [{
|
|
33
36
|
type: Input
|
|
34
37
|
}] } });
|
|
35
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
38
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWdlLWluZGljYXRvci5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9uZ3gtc2NydW10ZWFtc3VydmV5LXRvb2xzL3NyYy9saWIvcmVzdWx0cy9jb21wb25lbnRzL2FnZS1pbmRpY2F0b3IvYWdlLWluZGljYXRvci5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9uZ3gtc2NydW10ZWFtc3VydmV5LXRvb2xzL3NyYy9saWIvcmVzdWx0cy9jb21wb25lbnRzL2FnZS1pbmRpY2F0b3IvYWdlLWluZGljYXRvci5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBVSxNQUFNLGVBQWUsQ0FBQzs7OztBQU96RCxNQUFNLE9BQU8scUJBQXFCO0lBTS9CO0lBQ0EsQ0FBQztJQUVNLFFBQVE7UUFDWixJQUFJLFdBQVcsR0FBRyxJQUFJLElBQUksQ0FBQyxJQUFJLENBQUMsWUFBWSxDQUFDLENBQUM7UUFDOUMsSUFBSSxDQUFDLGtCQUFrQixHQUFHLElBQUksQ0FBQyxHQUFHLENBQUMsQ0FBQyxFQUFFLENBQUMsSUFBSSxJQUFJLEVBQUUsQ0FBQyxXQUFXLEVBQUUsR0FBRyxXQUFXLENBQUMsV0FBVyxFQUFFLENBQUMsR0FBRyxFQUFFLEdBQUcsV0FBVyxDQUFDLFFBQVEsRUFBRSxHQUFHLElBQUksSUFBSSxFQUFFLENBQUMsUUFBUSxFQUFFLENBQUMsQ0FBQztRQUNwSixJQUFJLElBQUksQ0FBQyxrQkFBa0IsR0FBRyxFQUFFLEVBQUUsQ0FBQztZQUFDLElBQUksQ0FBQyxrQkFBa0IsR0FBRyxFQUFFLENBQUM7UUFBQyxDQUFDO1FBQ25FLElBQUksSUFBSSxDQUFDLGtCQUFrQixHQUFHLENBQUMsRUFBRSxDQUFDO1lBQUMsSUFBSSxDQUFDLGtCQUFrQixHQUFHLENBQUMsQ0FBQztRQUFDLENBQUM7UUFDakUsSUFBSSxDQUFDLG1CQUFtQixHQUFHLENBQUMsR0FBRyxDQUFFLElBQUksQ0FBQyxrQkFBa0IsR0FBRyxFQUFFLENBQUMsQ0FBQztRQUUvRCxPQUFPLENBQUMsR0FBRyxDQUFDLElBQUksQ0FBQyxrQkFBa0IsQ0FBQyxDQUFDO1FBRXJDLElBQUksSUFBSSxDQUFDLGtCQUFrQixJQUFJLENBQUMsRUFBRSxDQUFDO1lBQ2hDLElBQUksQ0FBQyxtQkFBbUIsR0FBRyxzRUFBc0UsQ0FBQztRQUNyRyxDQUFDO2FBQ0ksSUFBSSxJQUFJLENBQUMsa0JBQWtCLElBQUksRUFBRSxFQUFFLENBQUM7WUFDdEMsSUFBSSxDQUFDLG1CQUFtQixHQUFHLDRHQUE0RyxDQUFDO1FBQzNJLENBQUM7YUFDSSxDQUFDO1lBQ0gsSUFBSSxDQUFDLG1CQUFtQixHQUFHLGdDQUFnQyxHQUFHLElBQUksQ0FBQyxrQkFBa0IsR0FBRyxxRUFBcUUsQ0FBQztRQUNqSyxDQUFDO0lBQ0wsQ0FBQzs4R0EzQlUscUJBQXFCO2tHQUFyQixxQkFBcUIsK0ZDUGxDLHlRQUdBOzsyRkRJYSxxQkFBcUI7a0JBTGpDLFNBQVM7K0JBQ0UsZUFBZTt3REFLZixZQUFZO3NCQUFwQixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBJbnB1dCwgT25Jbml0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2FnZS1pbmRpY2F0b3InLFxuICAgdGVtcGxhdGVVcmw6ICcuL2FnZS1pbmRpY2F0b3IuY29tcG9uZW50Lmh0bWwnLFxuICAgc3R5bGVVcmxzOiBbJy4vYWdlLWluZGljYXRvci5jb21wb25lbnQubGVzcyddLFxufSlcbmV4cG9ydCBjbGFzcyBBZ2VJbmRpY2F0b3JDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xuICAgQElucHV0KCkgbGFzdE1lYXN1cmVkOiBEYXRlO1xuICAgcHVibGljIGxhc3RNZWFzdXJlZE1vbnRoczogbnVtYmVyO1xuICAgcHVibGljIGxhc3RNZWFzdXJlZE9wYWNpdHk6IG51bWJlcjtcbiAgIHB1YmxpYyBsYXN0TWVhc3VyZWRUb29sdGlwOiBzdHJpbmc7XG5cbiAgIGNvbnN0cnVjdG9yKCkge1xuICAgfVxuICBcbiAgIHB1YmxpYyBuZ09uSW5pdCgpIHtcbiAgICAgIHZhciBtZWFzdXJlRGF0ZSA9IG5ldyBEYXRlKHRoaXMubGFzdE1lYXN1cmVkKTtcbiAgICAgIHRoaXMubGFzdE1lYXN1cmVkTW9udGhzID0gTWF0aC5tYXgoMCwgKG5ldyBEYXRlKCkuZ2V0RnVsbFllYXIoKSAtIG1lYXN1cmVEYXRlLmdldEZ1bGxZZWFyKCkpICogMTIgLSBtZWFzdXJlRGF0ZS5nZXRNb250aCgpICsgbmV3IERhdGUoKS5nZXRNb250aCgpKTtcbiAgICAgIGlmICh0aGlzLmxhc3RNZWFzdXJlZE1vbnRocyA+IDEyKSB7IHRoaXMubGFzdE1lYXN1cmVkTW9udGhzID0gMTI7IH1cbiAgICAgIGlmICh0aGlzLmxhc3RNZWFzdXJlZE1vbnRocyA8IDEpIHsgdGhpcy5sYXN0TWVhc3VyZWRNb250aHMgPSAxOyB9XG4gICAgICB0aGlzLmxhc3RNZWFzdXJlZE9wYWNpdHkgPSAxIC0gKCB0aGlzLmxhc3RNZWFzdXJlZE1vbnRocyAvIDE0KTtcblxuICAgICAgY29uc29sZS5sb2codGhpcy5sYXN0TWVhc3VyZWRNb250aHMpO1xuXG4gICAgICBpZiAodGhpcy5sYXN0TWVhc3VyZWRNb250aHMgPD0gMSkge1xuICAgICAgICAgdGhpcy5sYXN0TWVhc3VyZWRUb29sdGlwID0gJ1RoaXMgZmFjdG9yIHdhcyBsYXN0IG1lYXN1cmVkIDEgbW9udGggb3IgbGVzcyBhZ28uIEl0IGlzIGZyZXNoIGRhdGEuJztcbiAgICAgIH1cbiAgICAgIGVsc2UgaWYgKHRoaXMubGFzdE1lYXN1cmVkTW9udGhzID49IDEyKSB7XG4gICAgICAgICB0aGlzLmxhc3RNZWFzdXJlZFRvb2x0aXAgPSAnVGhpcyBmYWN0b3Igd2FzIGxhc3QgbWVhc3VyZWQgMTIgbW9udGggb3IgbW9yZSBhZ28uIFdlIHJlY29tbWVuZCB0byBtZWFzdXJlIHRoaXMgYWdhaW4gdG8ga2VlcCBkYXRhIGZyZXNoLic7XG4gICAgICB9XG4gICAgICBlbHNlIHtcbiAgICAgICAgIHRoaXMubGFzdE1lYXN1cmVkVG9vbHRpcCA9ICdUaGlzIGZhY3RvciB3YXMgbGFzdCBtZWFzdXJlZCAnICsgdGhpcy5sYXN0TWVhc3VyZWRNb250aHMgKyAnIG1vbnRoIG9yIG1vcmUgYWdvLiBUaGUgZnJlc2hlciB5b3VyIGRhdGEsIHRoZSBtb3JlIHJlbGlhYmxlIGl0IGlzLic7XG4gICAgICB9XG4gIH1cbiAgXG59XG4iLCI8ZGl2IGNsYXNzPVwiYWdlLWluZGljYXRvclwiIFtzdHlsZS5vcGFjaXR5XT1cImxhc3RNZWFzdXJlZE9wYWNpdHlcIiBbbWF0VG9vbHRpcF09XCJsYXN0TWVhc3VyZWRUb29sdGlwXCIgKm5nSWY9XCJsYXN0TWVhc3VyZWRNb250aHMgPiAwXCI+XG4gICA8ZGl2IGNsYXNzPVwiYWdlLWluZGljYXRvci1kb3RcIiAqbmdGb3I9XCJsZXQgZSBvZiBbXS5jb25zdHJ1Y3RvcihsYXN0TWVhc3VyZWRNb250aHMpOyBsZXQgaSA9IGluZGV4XCI+PC9kaXY+XG48L2Rpdj5cbiJdfQ==
|
|
@@ -5568,28 +5568,31 @@ class AgeIndicatorComponent {
|
|
|
5568
5568
|
}
|
|
5569
5569
|
ngOnInit() {
|
|
5570
5570
|
var measureDate = new Date(this.lastMeasured);
|
|
5571
|
-
|
|
5572
|
-
if (lastMeasuredMonths > 12) {
|
|
5573
|
-
lastMeasuredMonths
|
|
5571
|
+
this.lastMeasuredMonths = Math.max(0, (new Date().getFullYear() - measureDate.getFullYear()) * 12 - measureDate.getMonth() + new Date().getMonth());
|
|
5572
|
+
if (this.lastMeasuredMonths > 12) {
|
|
5573
|
+
this.lastMeasuredMonths = 12;
|
|
5574
5574
|
}
|
|
5575
|
-
this.
|
|
5576
|
-
|
|
5577
|
-
|
|
5575
|
+
if (this.lastMeasuredMonths < 1) {
|
|
5576
|
+
this.lastMeasuredMonths = 1;
|
|
5577
|
+
}
|
|
5578
|
+
this.lastMeasuredOpacity = 1 - (this.lastMeasuredMonths / 14);
|
|
5579
|
+
console.log(this.lastMeasuredMonths);
|
|
5580
|
+
if (this.lastMeasuredMonths <= 1) {
|
|
5578
5581
|
this.lastMeasuredTooltip = 'This factor was last measured 1 month or less ago. It is fresh data.';
|
|
5579
5582
|
}
|
|
5580
|
-
else if (lastMeasuredMonths >= 12) {
|
|
5583
|
+
else if (this.lastMeasuredMonths >= 12) {
|
|
5581
5584
|
this.lastMeasuredTooltip = 'This factor was last measured 12 month or more ago. We recommend to measure this again to keep data fresh.';
|
|
5582
5585
|
}
|
|
5583
5586
|
else {
|
|
5584
|
-
this.lastMeasuredTooltip = 'This factor was last measured ' + lastMeasuredMonths + ' month or more ago. The fresher your data, the more reliable it is.';
|
|
5587
|
+
this.lastMeasuredTooltip = 'This factor was last measured ' + this.lastMeasuredMonths + ' month or more ago. The fresher your data, the more reliable it is.';
|
|
5585
5588
|
}
|
|
5586
5589
|
}
|
|
5587
5590
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.1", ngImport: i0, type: AgeIndicatorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5588
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.1", type: AgeIndicatorComponent, selector: "age-indicator", inputs: { lastMeasured: "lastMeasured" }, ngImport: i0, template: "<div class=\"age-indicator\" [style.opacity]=\"lastMeasuredOpacity\" [matTooltip]=\"lastMeasuredTooltip\" *ngIf=\"
|
|
5591
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.1", type: AgeIndicatorComponent, selector: "age-indicator", inputs: { lastMeasured: "lastMeasured" }, ngImport: i0, template: "<div class=\"age-indicator\" [style.opacity]=\"lastMeasuredOpacity\" [matTooltip]=\"lastMeasuredTooltip\" *ngIf=\"lastMeasuredMonths > 0\">\n <div class=\"age-indicator-dot\" *ngFor=\"let e of [].constructor(lastMeasuredMonths); let i = index\"></div>\n</div>\n", styles: [".smallTextUppercase{font-family:StevieSansThin,sans-serif;font-style:normal;font-weight:400;font-size:15px;line-height:140%;text-transform:uppercase;line-height:100%}\n"], dependencies: [{ kind: "directive", type: i1$1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }] }); }
|
|
5589
5592
|
}
|
|
5590
5593
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.1", ngImport: i0, type: AgeIndicatorComponent, decorators: [{
|
|
5591
5594
|
type: Component,
|
|
5592
|
-
args: [{ selector: 'age-indicator', template: "<div class=\"age-indicator\" [style.opacity]=\"lastMeasuredOpacity\" [matTooltip]=\"lastMeasuredTooltip\" *ngIf=\"
|
|
5595
|
+
args: [{ selector: 'age-indicator', template: "<div class=\"age-indicator\" [style.opacity]=\"lastMeasuredOpacity\" [matTooltip]=\"lastMeasuredTooltip\" *ngIf=\"lastMeasuredMonths > 0\">\n <div class=\"age-indicator-dot\" *ngFor=\"let e of [].constructor(lastMeasuredMonths); let i = index\"></div>\n</div>\n", styles: [".smallTextUppercase{font-family:StevieSansThin,sans-serif;font-style:normal;font-weight:400;font-size:15px;line-height:140%;text-transform:uppercase;line-height:100%}\n"] }]
|
|
5593
5596
|
}], ctorParameters: () => [], propDecorators: { lastMeasured: [{
|
|
5594
5597
|
type: Input
|
|
5595
5598
|
}] } });
|