@provoly/dashboard 0.18.10 → 0.19.1

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.
Files changed (74) hide show
  1. package/README.md +1 -1
  2. package/assets/svgs/code-box.svg +1 -0
  3. package/dataset/components/dataset-card/dataset-card.component.d.ts +3 -3
  4. package/dataset/style/_o-pry-dataset.scss +1 -1
  5. package/esm2022/dataset/components/dataset-card/dataset-card.component.mjs +2 -2
  6. package/esm2022/dataset/components/dataset-detail/dataset-detail.component.mjs +2 -1
  7. package/esm2022/dataset/style/css.component.mjs +2 -2
  8. package/esm2022/filters/autocomplete/autocomplete.component.mjs +41 -0
  9. package/esm2022/filters/autocomplete/autocomplete.module.mjs +24 -0
  10. package/esm2022/filters/autocomplete/provoly-dashboard-filters-autocomplete.mjs +5 -0
  11. package/esm2022/filters/autocomplete/public-api.mjs +4 -0
  12. package/esm2022/filters/autocomplete/style/css.component.mjs +11 -0
  13. package/esm2022/lib/core/components/about/about.component.mjs +3 -3
  14. package/esm2022/lib/core/components/select/select.component.mjs +4 -8
  15. package/esm2022/lib/core/components/snackbar/snackbar.service.mjs +4 -1
  16. package/esm2022/lib/core/errors/http-error-interceptor.service.mjs +4 -5
  17. package/esm2022/lib/core/i18n/en.translations.mjs +3 -2
  18. package/esm2022/lib/core/i18n/fr.translations.mjs +3 -2
  19. package/esm2022/lib/core/model/widget-aggregated-chart-manifest.interface.mjs +1 -1
  20. package/esm2022/lib/core/model/widget-map-manifest.interface.mjs +1 -1
  21. package/esm2022/lib/core/store/aggregation/backend-aggregation.service.mjs +2 -2
  22. package/esm2022/lib/core/store/search/search.service.mjs +8 -2
  23. package/esm2022/lib/dashboard/dashboard.module.mjs +8 -3
  24. package/esm2022/lib/dashboard/filter/components/filter-group/filter-group.component.mjs +44 -0
  25. package/esm2022/lib/dashboard/filter/public-api.mjs +3 -1
  26. package/esm2022/lib/dashboard/filter/style/css.component.mjs +11 -0
  27. package/esm2022/lib/dashboard/store/dashboard.effects.mjs +3 -2
  28. package/esm2022/lib/dashboard/store/wms.service.mjs +1 -1
  29. package/esm2022/toolbox/components/filter-settings/filter-settings.component.mjs +3 -1
  30. package/esm2022/widgets/widget-aggregated-chart/component/widget-aggregated-chart.component.mjs +41 -41
  31. package/esm2022/widgets/widget-aggregated-chart/i18n/en.translations.mjs +10 -1
  32. package/esm2022/widgets/widget-aggregated-chart/i18n/fr.translations.mjs +10 -1
  33. package/esm2022/widgets/widget-map/component/widget-map.component.mjs +95 -115
  34. package/esm2022/widgets/widget-map/utils/widget-map.utils.mjs +35 -2
  35. package/esm2022/widgets/widget-map/utils/xml-utils.class.mjs +15 -13
  36. package/fesm2022/provoly-dashboard-dataset.mjs +4 -3
  37. package/fesm2022/provoly-dashboard-dataset.mjs.map +1 -1
  38. package/fesm2022/provoly-dashboard-filters-autocomplete.mjs +75 -0
  39. package/fesm2022/provoly-dashboard-filters-autocomplete.mjs.map +1 -0
  40. package/fesm2022/provoly-dashboard-toolbox.mjs +2 -0
  41. package/fesm2022/provoly-dashboard-toolbox.mjs.map +1 -1
  42. package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs +58 -40
  43. package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs.map +1 -1
  44. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs +138 -125
  45. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
  46. package/fesm2022/provoly-dashboard.mjs +72 -21
  47. package/fesm2022/provoly-dashboard.mjs.map +1 -1
  48. package/filters/autocomplete/autocomplete.component.d.ts +16 -0
  49. package/filters/autocomplete/autocomplete.module.d.ts +14 -0
  50. package/filters/autocomplete/index.d.ts +5 -0
  51. package/filters/autocomplete/public-api.d.ts +3 -0
  52. package/filters/autocomplete/style/_m-autocomplete.scss +7 -0
  53. package/filters/autocomplete/style/css.component.d.ts +5 -0
  54. package/lib/core/components/select/select.component.d.ts +0 -1
  55. package/lib/core/components/snackbar/snackbar.service.d.ts +1 -0
  56. package/lib/core/i18n/en.translations.d.ts +1 -0
  57. package/lib/core/i18n/fr.translations.d.ts +1 -0
  58. package/lib/core/model/widget-aggregated-chart-manifest.interface.d.ts +1 -1
  59. package/lib/core/model/widget-map-manifest.interface.d.ts +1 -1
  60. package/lib/core/store/search/search.service.d.ts +6 -0
  61. package/lib/dashboard/dashboard.module.d.ts +17 -15
  62. package/lib/dashboard/filter/components/filter-group/filter-group.component.d.ts +17 -0
  63. package/lib/dashboard/filter/public-api.d.ts +2 -0
  64. package/lib/dashboard/filter/style/_o-pry-filter-group.scss +41 -0
  65. package/lib/dashboard/filter/style/css.component.d.ts +5 -0
  66. package/lib/dashboard/store/wms.service.d.ts +1 -1
  67. package/package.json +20 -14
  68. package/styles/layout/_o-workspace.scss +0 -29
  69. package/widgets/widget-aggregated-chart/component/widget-aggregated-chart.component.d.ts +13 -6
  70. package/widgets/widget-aggregated-chart/i18n/en.translations.d.ts +9 -0
  71. package/widgets/widget-aggregated-chart/i18n/fr.translations.d.ts +9 -0
  72. package/widgets/widget-map/component/widget-map.component.d.ts +5 -7
  73. package/widgets/widget-map/utils/widget-map.utils.d.ts +7 -1
  74. package/widgets/widget-map/utils/xml-utils.class.d.ts +1 -1
@@ -0,0 +1,75 @@
1
+ import * as i3 from '@angular/common';
2
+ import { CommonModule } from '@angular/common';
3
+ import * as i0 from '@angular/core';
4
+ import { Component, ViewEncapsulation, NgModule } from '@angular/core';
5
+ import * as i4 from '@angular/forms';
6
+ import { ReactiveFormsModule, FormsModule } from '@angular/forms';
7
+ import * as i2 from '@provoly/dashboard';
8
+ import { BaseFilterComponent, BaseFilterModule, PrySelectModule } from '@provoly/dashboard';
9
+ import { BehaviorSubject, switchMap } from 'rxjs';
10
+ import { distinctUntilChanged, debounceTime } from 'rxjs/operators';
11
+ import equal from 'fast-deep-equal/es6';
12
+ import * as i1 from '@ngrx/store';
13
+
14
+ class PryAutocompleteCssComponent {
15
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.6", ngImport: i0, type: PryAutocompleteCssComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
16
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.6", type: PryAutocompleteCssComponent, selector: "pry-autocomplete-css", ngImport: i0, template: '', isInline: true, styles: [".m-form-label-field.-list{margin-bottom:0}\n"], encapsulation: i0.ViewEncapsulation.None }); }
17
+ }
18
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.6", ngImport: i0, type: PryAutocompleteCssComponent, decorators: [{
19
+ type: Component,
20
+ args: [{ selector: 'pry-autocomplete-css', template: '', encapsulation: ViewEncapsulation.None, styles: [".m-form-label-field.-list{margin-bottom:0}\n"] }]
21
+ }] });
22
+
23
+ class AutocompleteComponent extends BaseFilterComponent {
24
+ constructor(store, searchService) {
25
+ super(store);
26
+ this.searchService = searchService;
27
+ this.search$ = new BehaviorSubject('');
28
+ this.type = 'autocomplete';
29
+ }
30
+ ngOnInit() {
31
+ super.ngOnInit();
32
+ this.search$.next(this._value);
33
+ this.autocomplete$ = this.search$.pipe(distinctUntilChanged((p, v) => equal(p, v)), debounceTime(500), switchMap((search) => this.searchService.autocomplete(this.filter?.attributes, search)));
34
+ }
35
+ setFilter(value) {
36
+ if (value !== this.filter?.value) {
37
+ super.updateFilter(value);
38
+ }
39
+ }
40
+ updateSearch($event) {
41
+ // @ts-ignore
42
+ const value = $event ? $event.target.value : '';
43
+ this.search$.next(value);
44
+ }
45
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.6", ngImport: i0, type: AutocompleteComponent, deps: [{ token: i1.Store }, { token: i2.SearchService }], target: i0.ɵɵFactoryTarget.Component }); }
46
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.6", type: AutocompleteComponent, selector: "pry-autocomplete", usesInheritance: true, ngImport: i0, template: "<pry-autocomplete-css></pry-autocomplete-css>\n<div class=\"m-filter__input-wrapper m-filter__input-wrapper--dropdown\" *ngIf=\"filter\" (keyup)=\"updateSearch($event)\">\n <label class=\"a-label m-filter__label\" for=\"{{ filter.name }}\">{{ filter.name }}&nbsp;:&nbsp;</label>\n <pry-select\n [id]=\"filter.name\"\n [items]=\"autocomplete$ | async\"\n [ngModel]=\"filter.value\"\n (ngModelChange)=\"setFilter($event)\"\n [clearable]=\"true\"\n [autocomplete]=\"true\"\n [itemsAsOption]=\"false\"\n aria-labelledby=\"item-label\"\n (blur)=\"updateSearch($event)\"\n ></pry-select>\n</div>\n", dependencies: [{ kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i4.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: i2.PrySelectComponent, selector: "pry-select", inputs: ["labelTranslate", "baseTranslate", "translationFn", "translationFnArgs", "clearable", "multiple", "multipleClearRight", "closeOnSelect", "placeholder", "isForm", "required", "name", "readonly", "items", "itemsAsOption", "bindData", "bindValue", "bindLabel", "bindIcon", "iconSize", "templateLabel", "templateOption", "autocomplete"] }, { kind: "component", type: PryAutocompleteCssComponent, selector: "pry-autocomplete-css" }, { kind: "pipe", type: i3.AsyncPipe, name: "async" }] }); }
47
+ }
48
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.6", ngImport: i0, type: AutocompleteComponent, decorators: [{
49
+ type: Component,
50
+ args: [{ selector: 'pry-autocomplete', template: "<pry-autocomplete-css></pry-autocomplete-css>\n<div class=\"m-filter__input-wrapper m-filter__input-wrapper--dropdown\" *ngIf=\"filter\" (keyup)=\"updateSearch($event)\">\n <label class=\"a-label m-filter__label\" for=\"{{ filter.name }}\">{{ filter.name }}&nbsp;:&nbsp;</label>\n <pry-select\n [id]=\"filter.name\"\n [items]=\"autocomplete$ | async\"\n [ngModel]=\"filter.value\"\n (ngModelChange)=\"setFilter($event)\"\n [clearable]=\"true\"\n [autocomplete]=\"true\"\n [itemsAsOption]=\"false\"\n aria-labelledby=\"item-label\"\n (blur)=\"updateSearch($event)\"\n ></pry-select>\n</div>\n" }]
51
+ }], ctorParameters: function () { return [{ type: i1.Store }, { type: i2.SearchService }]; } });
52
+
53
+ class PryAutocompleteModule extends BaseFilterModule {
54
+ getComponent() {
55
+ return AutocompleteComponent;
56
+ }
57
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.6", ngImport: i0, type: PryAutocompleteModule, deps: null, target: i0.ɵɵFactoryTarget.NgModule }); }
58
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.1.6", ngImport: i0, type: PryAutocompleteModule, declarations: [AutocompleteComponent, PryAutocompleteCssComponent], imports: [CommonModule, ReactiveFormsModule, FormsModule, PrySelectModule], exports: [AutocompleteComponent] }); }
59
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.1.6", ngImport: i0, type: PryAutocompleteModule, imports: [CommonModule, ReactiveFormsModule, FormsModule, PrySelectModule] }); }
60
+ }
61
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.6", ngImport: i0, type: PryAutocompleteModule, decorators: [{
62
+ type: NgModule,
63
+ args: [{
64
+ declarations: [AutocompleteComponent, PryAutocompleteCssComponent],
65
+ exports: [AutocompleteComponent],
66
+ imports: [CommonModule, ReactiveFormsModule, FormsModule, PrySelectModule]
67
+ }]
68
+ }] });
69
+
70
+ /**
71
+ * Generated bundle index. Do not edit.
72
+ */
73
+
74
+ export { AutocompleteComponent, PryAutocompleteCssComponent, PryAutocompleteModule };
75
+ //# sourceMappingURL=provoly-dashboard-filters-autocomplete.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"provoly-dashboard-filters-autocomplete.mjs","sources":["../../../../projects/provoly/dashboard/filters/autocomplete/style/css.component.ts","../../../../projects/provoly/dashboard/filters/autocomplete/autocomplete.component.ts","../../../../projects/provoly/dashboard/filters/autocomplete/autocomplete.component.html","../../../../projects/provoly/dashboard/filters/autocomplete/autocomplete.module.ts","../../../../projects/provoly/dashboard/filters/autocomplete/provoly-dashboard-filters-autocomplete.ts"],"sourcesContent":["import { Component, ViewEncapsulation } from '@angular/core';\n\n@Component({\n selector: 'pry-autocomplete-css',\n template: '',\n styleUrls: ['./_m-autocomplete.scss'],\n encapsulation: ViewEncapsulation.None\n})\nexport class PryAutocompleteCssComponent {}\n","import { Component, OnDestroy, OnInit } from '@angular/core';\nimport { Store } from '@ngrx/store';\nimport { BaseFilterComponent, SearchService } from '@provoly/dashboard';\nimport { BehaviorSubject, Observable, switchMap } from 'rxjs';\nimport { debounceTime, distinctUntilChanged } from 'rxjs/operators';\nimport equal from 'fast-deep-equal/es6';\n\n@Component({\n selector: 'pry-autocomplete',\n templateUrl: './autocomplete.component.html'\n})\nexport class AutocompleteComponent extends BaseFilterComponent implements OnInit, OnDestroy {\n search$ = new BehaviorSubject<string>('');\n autocomplete$?: Observable<string[]>;\n\n constructor(store: Store, private searchService: SearchService) {\n super(store);\n this.type = 'autocomplete';\n }\n\n override ngOnInit() {\n super.ngOnInit();\n this.search$.next(this._value);\n this.autocomplete$ = this.search$.pipe(\n distinctUntilChanged((p, v) => equal(p, v)),\n debounceTime(500),\n switchMap((search) => this.searchService.autocomplete(this.filter?.attributes, search))\n );\n }\n\n setFilter(value: string) {\n if (value !== this.filter?.value) {\n super.updateFilter(value);\n }\n }\n\n updateSearch($event?: Event) {\n // @ts-ignore\n const value = $event ? $event.target!.value : '';\n this.search$.next(value);\n }\n}\n","<pry-autocomplete-css></pry-autocomplete-css>\n<div class=\"m-filter__input-wrapper m-filter__input-wrapper--dropdown\" *ngIf=\"filter\" (keyup)=\"updateSearch($event)\">\n <label class=\"a-label m-filter__label\" for=\"{{ filter.name }}\">{{ filter.name }}&nbsp;:&nbsp;</label>\n <pry-select\n [id]=\"filter.name\"\n [items]=\"autocomplete$ | async\"\n [ngModel]=\"filter.value\"\n (ngModelChange)=\"setFilter($event)\"\n [clearable]=\"true\"\n [autocomplete]=\"true\"\n [itemsAsOption]=\"false\"\n aria-labelledby=\"item-label\"\n (blur)=\"updateSearch($event)\"\n ></pry-select>\n</div>\n","import { CommonModule } from '@angular/common';\nimport { NgModule, Type } from '@angular/core';\nimport { FormsModule, ReactiveFormsModule } from '@angular/forms';\nimport { BaseFilterComponent, BaseFilterModule, PrySelectModule } from '@provoly/dashboard';\nimport { AutocompleteComponent } from './autocomplete.component';\nimport { PryAutocompleteCssComponent } from './style/css.component';\n\n@NgModule({\n declarations: [AutocompleteComponent, PryAutocompleteCssComponent],\n exports: [AutocompleteComponent],\n imports: [CommonModule, ReactiveFormsModule, FormsModule, PrySelectModule]\n})\nexport class PryAutocompleteModule extends BaseFilterModule {\n override getComponent(): Type<BaseFilterComponent> {\n return AutocompleteComponent as Type<AutocompleteComponent>;\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["i5.PryAutocompleteCssComponent"],"mappings":"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"}
@@ -319,6 +319,8 @@ class PryFilterSettingsComponent extends ToolboxActionComponent {
319
319
  return ['EQUALS', 'NOT_EQUALS', 'GREATER_THAN', 'LOWER_THAN'].includes(operator.value);
320
320
  case 'text':
321
321
  return ['CONTAINS', 'EQUALS', 'NOT_EQUALS', 'START_WITH', 'END_WITH'].includes(operator.value);
322
+ case 'autocomplete':
323
+ return ['EQUALS'].includes(operator.value);
322
324
  default:
323
325
  return operator;
324
326
  }