@lowcodeunit/applications-flow-common 1.36.220-social-rework → 1.36.221-social-rework
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/esm2020/lcu.api.mjs +2 -1
- package/esm2020/lib/applications-flow.module.mjs +8 -3
- package/esm2020/lib/elements/feed-filter/feed-filter.component.mjs +151 -0
- package/esm2020/lib/models/user-feed.model.mjs +3 -1
- package/esm2020/lib/services/applications-flow.service.mjs +4 -3
- package/esm2020/lib/services/eac.service.mjs +3 -3
- package/esm2020/lib/services/project.service.mjs +10 -8
- package/esm2020/lib/state/applications-flow.state.mjs +1 -1
- package/fesm2015/lowcodeunit-applications-flow-common.mjs +167 -15
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +165 -15
- package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/lcu.api.d.ts +1 -0
- package/lib/applications-flow.module.d.ts +11 -10
- package/lib/elements/feed-filter/feed-filter.component.d.ts +25 -0
- package/lib/models/user-feed.model.d.ts +6 -1
- package/lib/services/applications-flow.service.d.ts +1 -1
- package/lib/services/eac.service.d.ts +1 -1
- package/lib/services/project.service.d.ts +1 -1
- package/lib/state/applications-flow.state.d.ts +1 -0
- package/package.json +1 -1
|
@@ -8,7 +8,7 @@ import * as i2 from '@lcu/common';
|
|
|
8
8
|
import { StateContext, Guid, LCUElementContext, LcuElementComponent, DAFService, FathymSharedModule, MaterialModule, BaseResponse } from '@lcu/common';
|
|
9
9
|
import * as i2$1 from '@angular/router';
|
|
10
10
|
import * as i1$2 from '@angular/forms';
|
|
11
|
-
import { Validators, FormGroup, FormControl, FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
11
|
+
import { Validators, FormGroup, FormControl, FormArray, FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
12
12
|
import { FlexLayoutModule } from '@angular/flex-layout';
|
|
13
13
|
import * as i3 from '@lowcodeunit/app-host-common';
|
|
14
14
|
import { AppHostModule } from '@lowcodeunit/app-host-common';
|
|
@@ -294,9 +294,10 @@ class ApplicationsFlowService {
|
|
|
294
294
|
headers: this.loadHeaders(),
|
|
295
295
|
});
|
|
296
296
|
}
|
|
297
|
-
LoadUserFeed(page, pageSize, project, applications) {
|
|
297
|
+
LoadUserFeed(page, pageSize, types, project, applications) {
|
|
298
|
+
// console.log('types at LoadUserFeed: ', types);
|
|
298
299
|
var apps = JSON.stringify(applications || []);
|
|
299
|
-
return this.http.get(`${this.apiRoot}/api/lowcodeunit/userfeed?page=${page}&pageSize=${pageSize}&project=${project}&applications=${apps}`, {
|
|
300
|
+
return this.http.get(`${this.apiRoot}/api/lowcodeunit/userfeed?page=${page}&pageSize=${pageSize}&types=${types}&project=${project}&applications=${apps}`, {
|
|
300
301
|
headers: this.loadHeaders(),
|
|
301
302
|
});
|
|
302
303
|
}
|
|
@@ -384,7 +385,7 @@ class ProjectService {
|
|
|
384
385
|
resolve(response.Status);
|
|
385
386
|
yield Promise.all([
|
|
386
387
|
this.LoadEnterpriseAsCode(state),
|
|
387
|
-
this.LoadUserFeed(1, 25, false, state),
|
|
388
|
+
this.LoadUserFeed(1, 25, 'types=all', false, state),
|
|
388
389
|
]);
|
|
389
390
|
}
|
|
390
391
|
else {
|
|
@@ -539,20 +540,22 @@ class ProjectService {
|
|
|
539
540
|
});
|
|
540
541
|
});
|
|
541
542
|
}
|
|
542
|
-
LoadUserFeed(page, pageSize, forCheck = false, state) {
|
|
543
|
+
LoadUserFeed(page, pageSize, filterStr, forCheck = false, state) {
|
|
543
544
|
return __awaiter(this, void 0, void 0, function* () {
|
|
544
545
|
return new Promise((resolve, reject) => {
|
|
545
546
|
state.LoadingFeed = !forCheck;
|
|
546
547
|
let paramMap = this.activatedRoute.snapshot.children[0].paramMap;
|
|
547
548
|
let result = this.loadApplicationsForFeed(state, paramMap);
|
|
548
549
|
this.appsFlowSvc
|
|
549
|
-
.LoadUserFeed(page, pageSize, result === null || result === void 0 ? void 0 : result.Project, result === null || result === void 0 ? void 0 : result.Applications)
|
|
550
|
+
.LoadUserFeed(page, pageSize, filterStr, result === null || result === void 0 ? void 0 : result.Project, result === null || result === void 0 ? void 0 : result.Applications)
|
|
550
551
|
.subscribe((response) => __awaiter(this, void 0, void 0, function* () {
|
|
551
552
|
var _a;
|
|
552
553
|
state.LoadingFeed = false;
|
|
553
554
|
if (response.Status.Code === 0) {
|
|
555
|
+
// console.log('user feed response: ', response);
|
|
554
556
|
if (!forCheck) {
|
|
555
557
|
state.Advertisements = response.Advertisements;
|
|
558
|
+
state.FeedFilters = response.ItemTypes;
|
|
556
559
|
state.Feed = response.Items;
|
|
557
560
|
state.FeedSourceControlLookups =
|
|
558
561
|
response.SourceControlLookups;
|
|
@@ -606,7 +609,7 @@ class ProjectService {
|
|
|
606
609
|
resolve(response.Status);
|
|
607
610
|
yield Promise.all([
|
|
608
611
|
this.LoadEnterpriseAsCode(state),
|
|
609
|
-
this.LoadUserFeed(1, 25, false, state),
|
|
612
|
+
this.LoadUserFeed(1, 25, 'types=all', false, state),
|
|
610
613
|
]);
|
|
611
614
|
}
|
|
612
615
|
else {
|
|
@@ -631,7 +634,7 @@ class ProjectService {
|
|
|
631
634
|
resolve(response.Status);
|
|
632
635
|
yield Promise.all([
|
|
633
636
|
this.LoadEnterpriseAsCode(state),
|
|
634
|
-
this.LoadUserFeed(1, 25, false, state),
|
|
637
|
+
this.LoadUserFeed(1, 25, 'types=all', false, state),
|
|
635
638
|
]);
|
|
636
639
|
}
|
|
637
640
|
else {
|
|
@@ -681,7 +684,7 @@ class ProjectService {
|
|
|
681
684
|
resolve(response.Status);
|
|
682
685
|
yield Promise.all([
|
|
683
686
|
this.LoadEnterpriseAsCode(state),
|
|
684
|
-
this.LoadUserFeed(1, 25, false, state),
|
|
687
|
+
this.LoadUserFeed(1, 25, 'types=all', false, state),
|
|
685
688
|
]);
|
|
686
689
|
}
|
|
687
690
|
else {
|
|
@@ -708,7 +711,7 @@ class ProjectService {
|
|
|
708
711
|
resolve(response.Status);
|
|
709
712
|
yield Promise.all([
|
|
710
713
|
this.LoadEnterpriseAsCode(state),
|
|
711
|
-
this.LoadUserFeed(1, 25, false, state),
|
|
714
|
+
this.LoadUserFeed(1, 25, 'types=all', false, state),
|
|
712
715
|
]);
|
|
713
716
|
}
|
|
714
717
|
else {
|
|
@@ -991,9 +994,9 @@ class EaCService {
|
|
|
991
994
|
yield this.projectService.GetActiveEnterprise(this.State);
|
|
992
995
|
});
|
|
993
996
|
}
|
|
994
|
-
LoadUserFeed(page, pageSize, forCheck = false) {
|
|
997
|
+
LoadUserFeed(page, pageSize, forCheck = false, filterStr = '') {
|
|
995
998
|
return __awaiter(this, void 0, void 0, function* () {
|
|
996
|
-
yield this.projectService.LoadUserFeed(page, pageSize, forCheck, this.State);
|
|
999
|
+
yield this.projectService.LoadUserFeed(page, pageSize, filterStr, forCheck, this.State);
|
|
997
1000
|
});
|
|
998
1001
|
}
|
|
999
1002
|
GenerateRoutedApplications(applications) {
|
|
@@ -7695,6 +7698,149 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
7695
7698
|
args: ['advertisement']
|
|
7696
7699
|
}] } });
|
|
7697
7700
|
|
|
7701
|
+
class FeedFilterComponent {
|
|
7702
|
+
constructor(eacSvc, formBuilder) {
|
|
7703
|
+
this.eacSvc = eacSvc;
|
|
7704
|
+
this.formBuilder = formBuilder;
|
|
7705
|
+
this.FilterFormGroup = this.formBuilder.group({
|
|
7706
|
+
filters: new FormArray([]),
|
|
7707
|
+
});
|
|
7708
|
+
this.Filters = new Array();
|
|
7709
|
+
}
|
|
7710
|
+
get filtersFormArray() {
|
|
7711
|
+
return this.FilterFormGroup.controls.filters;
|
|
7712
|
+
}
|
|
7713
|
+
ngOnInit() {
|
|
7714
|
+
var _a, _b, _c;
|
|
7715
|
+
if (((_a = this.FilterTypes) === null || _a === void 0 ? void 0 : _a.length) > 0) {
|
|
7716
|
+
this.filterString = this.setFilterString(this.FilterTypes);
|
|
7717
|
+
}
|
|
7718
|
+
if (((_b = this.filterString) === null || _b === void 0 ? void 0 : _b.length) > 0) {
|
|
7719
|
+
this.Filters = this.buildFilterObject(this.filterString);
|
|
7720
|
+
}
|
|
7721
|
+
if (((_c = this.Filters) === null || _c === void 0 ? void 0 : _c.length) > 0) {
|
|
7722
|
+
this.addCheckboxes();
|
|
7723
|
+
}
|
|
7724
|
+
}
|
|
7725
|
+
ngOnChanges() {
|
|
7726
|
+
var _a, _b;
|
|
7727
|
+
if (((_a = this.FilterTypes) === null || _a === void 0 ? void 0 : _a.length) > ((_b = this.Filters) === null || _b === void 0 ? void 0 : _b.length)) {
|
|
7728
|
+
this.filterString = this.setFilterString(this.FilterTypes);
|
|
7729
|
+
this.Filters = this.buildFilterObject(this.filterString);
|
|
7730
|
+
this.addCheckboxes();
|
|
7731
|
+
}
|
|
7732
|
+
// if (this.filterString?.length > 0) {
|
|
7733
|
+
// }
|
|
7734
|
+
// if (this.Filters?.length > 0) {
|
|
7735
|
+
// }
|
|
7736
|
+
}
|
|
7737
|
+
addCheckboxes() {
|
|
7738
|
+
this.filtersFormArray.clear();
|
|
7739
|
+
this.Filters.forEach((filter) => this.filtersFormArray.push(new FormControl(filter.Value)));
|
|
7740
|
+
}
|
|
7741
|
+
buildFilterObject(fstring) {
|
|
7742
|
+
let filterList = fstring.split(';');
|
|
7743
|
+
let filterObjList = new Array();
|
|
7744
|
+
filterList.forEach((itm) => {
|
|
7745
|
+
if (itm.length > 0) {
|
|
7746
|
+
filterObjList.push(JSON.parse(itm));
|
|
7747
|
+
}
|
|
7748
|
+
});
|
|
7749
|
+
return filterObjList;
|
|
7750
|
+
}
|
|
7751
|
+
setFilterString(fTypes) {
|
|
7752
|
+
let fString = '';
|
|
7753
|
+
let filters = fTypes;
|
|
7754
|
+
if (localStorage.getItem('activeFilter')) {
|
|
7755
|
+
let activeF = localStorage.getItem('activeFilter').split(',');
|
|
7756
|
+
activeF.forEach((f) => {
|
|
7757
|
+
if (f.includes('-')) {
|
|
7758
|
+
let i = activeF.indexOf(f);
|
|
7759
|
+
f = f.replace('-', ' ');
|
|
7760
|
+
activeF[i] = f;
|
|
7761
|
+
}
|
|
7762
|
+
});
|
|
7763
|
+
filters.forEach((filter) => {
|
|
7764
|
+
if (activeF.includes(filter.toLowerCase())) {
|
|
7765
|
+
fString += '{ "Name":"' + filter + '","Value":true };';
|
|
7766
|
+
}
|
|
7767
|
+
else if (activeF.includes(filter.toLowerCase()) &&
|
|
7768
|
+
filters.indexOf(filter) === filters.length - 1) {
|
|
7769
|
+
fString += '{ "Name":"' + filter + '","Value":true }';
|
|
7770
|
+
}
|
|
7771
|
+
else if (filters.indexOf(filter) === filters.length - 1) {
|
|
7772
|
+
fString += '{ "Name":"' + filter + '","Value":false }';
|
|
7773
|
+
}
|
|
7774
|
+
else {
|
|
7775
|
+
fString += '{ "Name":"' + filter + '","Value":false };';
|
|
7776
|
+
}
|
|
7777
|
+
});
|
|
7778
|
+
}
|
|
7779
|
+
else {
|
|
7780
|
+
filters.forEach((filter) => {
|
|
7781
|
+
if (filter.toLowerCase() === 'all') {
|
|
7782
|
+
fString += '{ "Name":"' + filter + '","Value":true };';
|
|
7783
|
+
}
|
|
7784
|
+
else if (filters.indexOf(filter) === filters.length - 1) {
|
|
7785
|
+
fString += '{ "Name":"' + filter + '","Value":true }';
|
|
7786
|
+
}
|
|
7787
|
+
else {
|
|
7788
|
+
fString += '{ "Name":"' + filter + '","Value":true };';
|
|
7789
|
+
}
|
|
7790
|
+
});
|
|
7791
|
+
}
|
|
7792
|
+
return fString;
|
|
7793
|
+
}
|
|
7794
|
+
ToggleFilter(name) {
|
|
7795
|
+
let filt = this.Filters.find((filter) => filter.Name === name);
|
|
7796
|
+
let allFilt = this.Filters.find((filter) => filter.Name.toLowerCase() === 'all');
|
|
7797
|
+
if (name.toLowerCase() === 'all') {
|
|
7798
|
+
allFilt.Value = !allFilt.Value;
|
|
7799
|
+
this.Filters.forEach((filter) => {
|
|
7800
|
+
if (filter.Name.toLowerCase() !== 'all') {
|
|
7801
|
+
filter.Value = allFilt.Value;
|
|
7802
|
+
}
|
|
7803
|
+
});
|
|
7804
|
+
}
|
|
7805
|
+
else if (filt.Name === name) {
|
|
7806
|
+
filt.Value = !filt.Value;
|
|
7807
|
+
if (allFilt.Value === true) {
|
|
7808
|
+
allFilt.Value = false;
|
|
7809
|
+
}
|
|
7810
|
+
}
|
|
7811
|
+
this.addCheckboxes();
|
|
7812
|
+
}
|
|
7813
|
+
Apply() {
|
|
7814
|
+
let types = '';
|
|
7815
|
+
this.Filters.forEach((fil) => {
|
|
7816
|
+
if (fil.Value === true) {
|
|
7817
|
+
let temp = fil.Name;
|
|
7818
|
+
if (temp.includes(' ')) {
|
|
7819
|
+
temp = temp.replace(' ', '-');
|
|
7820
|
+
}
|
|
7821
|
+
types += temp.toLowerCase() + ',';
|
|
7822
|
+
}
|
|
7823
|
+
});
|
|
7824
|
+
if (types.charAt(types.length - 1) === ',') {
|
|
7825
|
+
types = types.substring(0, types.length - 1);
|
|
7826
|
+
}
|
|
7827
|
+
this.StoreActiveFilter(types);
|
|
7828
|
+
this.eacSvc.LoadUserFeed(1, 25, false, types);
|
|
7829
|
+
}
|
|
7830
|
+
StoreActiveFilter(types) {
|
|
7831
|
+
localStorage.setItem('activeFilter', types);
|
|
7832
|
+
}
|
|
7833
|
+
}
|
|
7834
|
+
FeedFilterComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: FeedFilterComponent, deps: [{ token: EaCService }, { token: i1$2.FormBuilder }], target: i0.ɵɵFactoryTarget.Component });
|
|
7835
|
+
FeedFilterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: FeedFilterComponent, selector: "lcu-feed-filter", inputs: { FilterTypes: ["filter-types", "FilterTypes"] }, usesOnChanges: true, ngImport: i0, template: "<div class=\"filter-area\" fxLayout=\"row\" fxLayoutAlign=\"center center\">\n <div class=\"seperator\"></div>\n <div class=\"filter-text\">Filter feed by:</div>\n <button\n mat-icon-button\n [matMenuTriggerFor]=\"menu\"\n aria-label=\"View Filters\"\n [disabled]=\"Filters?.length === 0\"\n #trigger=\"matMenuTrigger\"\n (menuOpened)=\"MenuOpen = trigger.menuOpen\"\n (menuClosed)=\"MenuOpen = trigger.menuOpen\"\n >\n <mat-icon *ngIf=\"!MenuOpen\">expand_more</mat-icon>\n <mat-icon *ngIf=\"MenuOpen\">expand_less</mat-icon>\n </button>\n <mat-menu #menu=\"matMenu\" xPosition=\"before\">\n <form\n [formGroup]=\"FilterFormGroup\"\n fxLayout=\"column\"\n (ngSubmit)=\"Apply()\"\n >\n <label\n class=\"filter-label\"\n formArrayName=\"filters\"\n *ngFor=\"let filter of filtersFormArray.controls; let i = index\"\n (click)=\"$event.stopPropagation()\"\n >\n <input\n type=\"checkbox\"\n [formControlName]=\"i\"\n (click)=\"\n $event.stopPropagation(); ToggleFilter(Filters[i].Name)\n \"\n />\n {{ Filters[i].Name }}\n\n <span class=\"checkmark\"></span>\n </label>\n <button class=\"filter-button\">Apply</button>\n </form>\n </mat-menu>\n</div>\n", styles: [".filter-area{margin:0 20px}.seperator{width:83%;margin:5px;border-top:1px solid black}.filter-text{font-size:8px}.filter-label{margin:0 10px;cursor:pointer}.filter-button{margin:10px}\n"], components: [{ type: i4.MatButton, selector: "button[mat-button], button[mat-raised-button], button[mat-icon-button], button[mat-fab], button[mat-mini-fab], button[mat-stroked-button], button[mat-flat-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { type: i5.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { type: i4$3.MatMenu, selector: "mat-menu", exportAs: ["matMenu"] }], directives: [{ type: i8.DefaultLayoutDirective, selector: " [fxLayout], [fxLayout.xs], [fxLayout.sm], [fxLayout.md], [fxLayout.lg], [fxLayout.xl], [fxLayout.lt-sm], [fxLayout.lt-md], [fxLayout.lt-lg], [fxLayout.lt-xl], [fxLayout.gt-xs], [fxLayout.gt-sm], [fxLayout.gt-md], [fxLayout.gt-lg]", inputs: ["fxLayout", "fxLayout.xs", "fxLayout.sm", "fxLayout.md", "fxLayout.lg", "fxLayout.xl", "fxLayout.lt-sm", "fxLayout.lt-md", "fxLayout.lt-lg", "fxLayout.lt-xl", "fxLayout.gt-xs", "fxLayout.gt-sm", "fxLayout.gt-md", "fxLayout.gt-lg"] }, { type: i8.DefaultLayoutAlignDirective, selector: " [fxLayoutAlign], [fxLayoutAlign.xs], [fxLayoutAlign.sm], [fxLayoutAlign.md], [fxLayoutAlign.lg], [fxLayoutAlign.xl], [fxLayoutAlign.lt-sm], [fxLayoutAlign.lt-md], [fxLayoutAlign.lt-lg], [fxLayoutAlign.lt-xl], [fxLayoutAlign.gt-xs], [fxLayoutAlign.gt-sm], [fxLayoutAlign.gt-md], [fxLayoutAlign.gt-lg]", inputs: ["fxLayoutAlign", "fxLayoutAlign.xs", "fxLayoutAlign.sm", "fxLayoutAlign.md", "fxLayoutAlign.lg", "fxLayoutAlign.xl", "fxLayoutAlign.lt-sm", "fxLayoutAlign.lt-md", "fxLayoutAlign.lt-lg", "fxLayoutAlign.lt-xl", "fxLayoutAlign.gt-xs", "fxLayoutAlign.gt-sm", "fxLayoutAlign.gt-md", "fxLayoutAlign.gt-lg"] }, { type: i4$3.MatMenuTrigger, selector: "[mat-menu-trigger-for], [matMenuTriggerFor]", exportAs: ["matMenuTrigger"] }, { type: i9.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1$2.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { type: i1$2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { type: i1$2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { type: i9.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i1$2.FormArrayName, selector: "[formArrayName]", inputs: ["formArrayName"] }, { type: i1$2.CheckboxControlValueAccessor, selector: "input[type=checkbox][formControlName],input[type=checkbox][formControl],input[type=checkbox][ngModel]" }, { type: i1$2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i1$2.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }] });
|
|
7836
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: FeedFilterComponent, decorators: [{
|
|
7837
|
+
type: Component,
|
|
7838
|
+
args: [{ selector: 'lcu-feed-filter', template: "<div class=\"filter-area\" fxLayout=\"row\" fxLayoutAlign=\"center center\">\n <div class=\"seperator\"></div>\n <div class=\"filter-text\">Filter feed by:</div>\n <button\n mat-icon-button\n [matMenuTriggerFor]=\"menu\"\n aria-label=\"View Filters\"\n [disabled]=\"Filters?.length === 0\"\n #trigger=\"matMenuTrigger\"\n (menuOpened)=\"MenuOpen = trigger.menuOpen\"\n (menuClosed)=\"MenuOpen = trigger.menuOpen\"\n >\n <mat-icon *ngIf=\"!MenuOpen\">expand_more</mat-icon>\n <mat-icon *ngIf=\"MenuOpen\">expand_less</mat-icon>\n </button>\n <mat-menu #menu=\"matMenu\" xPosition=\"before\">\n <form\n [formGroup]=\"FilterFormGroup\"\n fxLayout=\"column\"\n (ngSubmit)=\"Apply()\"\n >\n <label\n class=\"filter-label\"\n formArrayName=\"filters\"\n *ngFor=\"let filter of filtersFormArray.controls; let i = index\"\n (click)=\"$event.stopPropagation()\"\n >\n <input\n type=\"checkbox\"\n [formControlName]=\"i\"\n (click)=\"\n $event.stopPropagation(); ToggleFilter(Filters[i].Name)\n \"\n />\n {{ Filters[i].Name }}\n\n <span class=\"checkmark\"></span>\n </label>\n <button class=\"filter-button\">Apply</button>\n </form>\n </mat-menu>\n</div>\n", styles: [".filter-area{margin:0 20px}.seperator{width:83%;margin:5px;border-top:1px solid black}.filter-text{font-size:8px}.filter-label{margin:0 10px;cursor:pointer}.filter-button{margin:10px}\n"] }]
|
|
7839
|
+
}], ctorParameters: function () { return [{ type: EaCService }, { type: i1$2.FormBuilder }]; }, propDecorators: { FilterTypes: [{
|
|
7840
|
+
type: Input,
|
|
7841
|
+
args: ['filter-types']
|
|
7842
|
+
}] } });
|
|
7843
|
+
|
|
7698
7844
|
class ApplicationsFlowModule {
|
|
7699
7845
|
static forRoot() {
|
|
7700
7846
|
return {
|
|
@@ -7770,7 +7916,8 @@ ApplicationsFlowModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0",
|
|
|
7770
7916
|
ConnectedSourceComponent,
|
|
7771
7917
|
UserAccountDialogComponent,
|
|
7772
7918
|
ProductDiscoveryCardComponent,
|
|
7773
|
-
AdvertisementCardComponent
|
|
7919
|
+
AdvertisementCardComponent,
|
|
7920
|
+
FeedFilterComponent], imports: [AngularEditorModule,
|
|
7774
7921
|
ClipboardModule,
|
|
7775
7922
|
FathymSharedModule,
|
|
7776
7923
|
FormsModule,
|
|
@@ -7839,7 +7986,8 @@ ApplicationsFlowModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0",
|
|
|
7839
7986
|
ConnectedSourceComponent,
|
|
7840
7987
|
UserAccountDialogComponent,
|
|
7841
7988
|
ProductDiscoveryCardComponent,
|
|
7842
|
-
AdvertisementCardComponent
|
|
7989
|
+
AdvertisementCardComponent,
|
|
7990
|
+
FeedFilterComponent] });
|
|
7843
7991
|
ApplicationsFlowModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: ApplicationsFlowModule, imports: [[
|
|
7844
7992
|
AngularEditorModule,
|
|
7845
7993
|
ClipboardModule,
|
|
@@ -7917,6 +8065,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
7917
8065
|
UserAccountDialogComponent,
|
|
7918
8066
|
ProductDiscoveryCardComponent,
|
|
7919
8067
|
AdvertisementCardComponent,
|
|
8068
|
+
FeedFilterComponent,
|
|
7920
8069
|
],
|
|
7921
8070
|
imports: [
|
|
7922
8071
|
AngularEditorModule,
|
|
@@ -7993,6 +8142,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
7993
8142
|
UserAccountDialogComponent,
|
|
7994
8143
|
ProductDiscoveryCardComponent,
|
|
7995
8144
|
AdvertisementCardComponent,
|
|
8145
|
+
FeedFilterComponent,
|
|
7996
8146
|
],
|
|
7997
8147
|
entryComponents: [
|
|
7998
8148
|
ApplicationsFlowProjectsElementComponent,
|
|
@@ -8063,6 +8213,8 @@ class FeedItemTab {
|
|
|
8063
8213
|
}
|
|
8064
8214
|
class FeedEntry {
|
|
8065
8215
|
}
|
|
8216
|
+
class ItemType {
|
|
8217
|
+
}
|
|
8066
8218
|
|
|
8067
8219
|
class ActionsModel {
|
|
8068
8220
|
}
|
|
@@ -8086,5 +8238,5 @@ class FormModel {
|
|
|
8086
8238
|
* Generated bundle index. Do not edit.
|
|
8087
8239
|
*/
|
|
8088
8240
|
|
|
8089
|
-
export { ActionsModel, Advertisement, AdvertisementCardComponent, AnalyticsCardComponent, ApplicationsFlowModule, ApplicationsFlowProjectsContext, ApplicationsFlowProjectsElementComponent, ApplicationsFlowProjectsElementState, ApplicationsFlowService, ApplicationsFlowState, ApplicationsFlowStateContext, AppsFlowComponent, BaseFormComponent, BaseFormConfigModel, BaseFormTestComponent, BreadcrumbComponent, BuildPipelineDialogComponent, BuildPipelineFormComponent, BuildsComponent, CardCarouselComponent, CardFormConfigModel, ConnectedSourceComponent, CreateProjectWizardComponent, CustomDomainDialogComponent, DFSModifiersComponent, DFSModifiersDialogComponent, DFSModifiersFormComponent, DevOpsComponent, DevSettingsPresetModel, DevopsSourceControlFormComponent, DomainModel, DomainsComponent, DynamicTabsComponent, DynamicTabsModel, EaCService, EditApplicationDialogComponent, EditApplicationFormComponent, EditProjectDialogComponent, EditProjectFormComponent, EmulatedDevicesToggleComponent, FeedCardSmComponent, FeedCommentFormComponent, FeedEntry, FeedHeaderComponent, FeedHeaderDialogComponent, FeedItem, FeedItemAction, FeedItemContributor, FeedItemTab, FormActionsModel, FormCardComponent, FormModel, FormValuesModel, FormsService, GitAuthComponent, GitHubBranch, GitHubOrganization, GitHubRepository, GitHubSetupState, GitHubWorkflowRun, HeaderComponent, HostingDetailsFormGroupComponent, IoTEnsembleService, License, LicenseAndBillingResponse, MainFeedCardComponent, NPMService, NewApplicationDialogComponent, NpmPackageSelectComponent, PageHeaderComponent, Plan, Price, ProcessorDetailsDialogComponent, ProcessorDetailsFormComponent, ProductDiscoveryCardComponent, ProjectActionsModel, ProjectHostingDetails, ProjectHostingOption, ProjectHostingOptionInput, ProjectInfoCardComponent, ProjectItemsComponent, ProjectNameComponent, ProjectService, ProjectTabsComponent, RecentActivitiesComponent, RootDirectoryComponent, SELECTOR_APPLICATIONS_FLOW_PROJECTS_ELEMENT, SaveApplicationAsCodeEventRequest, SaveDFSModifierEventRequest, SaveEnvironmentAsCodeEventRequest, SaveProjectAsCodeEventRequest, SecurityToggleComponent, SkeletonFeedCardComponent, SlottedCardComponent, SourceControlDialogComponent, SourceControlFormComponent, SourceControlFormControlsComponent, StateConfigDialogComponent, StateConfigFormComponent, ThreeColumnComponent, TwoColumnHeaderComponent, UnpackLowCodeUnitRequest, UpgradeDialogComponent, UserAccountDialogComponent, UserFeedResponse };
|
|
8241
|
+
export { ActionsModel, Advertisement, AdvertisementCardComponent, AnalyticsCardComponent, ApplicationsFlowModule, ApplicationsFlowProjectsContext, ApplicationsFlowProjectsElementComponent, ApplicationsFlowProjectsElementState, ApplicationsFlowService, ApplicationsFlowState, ApplicationsFlowStateContext, AppsFlowComponent, BaseFormComponent, BaseFormConfigModel, BaseFormTestComponent, BreadcrumbComponent, BuildPipelineDialogComponent, BuildPipelineFormComponent, BuildsComponent, CardCarouselComponent, CardFormConfigModel, ConnectedSourceComponent, CreateProjectWizardComponent, CustomDomainDialogComponent, DFSModifiersComponent, DFSModifiersDialogComponent, DFSModifiersFormComponent, DevOpsComponent, DevSettingsPresetModel, DevopsSourceControlFormComponent, DomainModel, DomainsComponent, DynamicTabsComponent, DynamicTabsModel, EaCService, EditApplicationDialogComponent, EditApplicationFormComponent, EditProjectDialogComponent, EditProjectFormComponent, EmulatedDevicesToggleComponent, FeedCardSmComponent, FeedCommentFormComponent, FeedEntry, FeedFilterComponent, FeedHeaderComponent, FeedHeaderDialogComponent, FeedItem, FeedItemAction, FeedItemContributor, FeedItemTab, FormActionsModel, FormCardComponent, FormModel, FormValuesModel, FormsService, GitAuthComponent, GitHubBranch, GitHubOrganization, GitHubRepository, GitHubSetupState, GitHubWorkflowRun, HeaderComponent, HostingDetailsFormGroupComponent, IoTEnsembleService, ItemType, License, LicenseAndBillingResponse, MainFeedCardComponent, NPMService, NewApplicationDialogComponent, NpmPackageSelectComponent, PageHeaderComponent, Plan, Price, ProcessorDetailsDialogComponent, ProcessorDetailsFormComponent, ProductDiscoveryCardComponent, ProjectActionsModel, ProjectHostingDetails, ProjectHostingOption, ProjectHostingOptionInput, ProjectInfoCardComponent, ProjectItemsComponent, ProjectNameComponent, ProjectService, ProjectTabsComponent, RecentActivitiesComponent, RootDirectoryComponent, SELECTOR_APPLICATIONS_FLOW_PROJECTS_ELEMENT, SaveApplicationAsCodeEventRequest, SaveDFSModifierEventRequest, SaveEnvironmentAsCodeEventRequest, SaveProjectAsCodeEventRequest, SecurityToggleComponent, SkeletonFeedCardComponent, SlottedCardComponent, SourceControlDialogComponent, SourceControlFormComponent, SourceControlFormControlsComponent, StateConfigDialogComponent, StateConfigFormComponent, ThreeColumnComponent, TwoColumnHeaderComponent, UnpackLowCodeUnitRequest, UpgradeDialogComponent, UserAccountDialogComponent, UserFeedResponse };
|
|
8090
8242
|
//# sourceMappingURL=lowcodeunit-applications-flow-common.mjs.map
|