@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
|
@@ -7,7 +7,7 @@ import * as i2 from '@lcu/common';
|
|
|
7
7
|
import { StateContext, Guid, LCUElementContext, LcuElementComponent, DAFService, FathymSharedModule, MaterialModule, BaseResponse } from '@lcu/common';
|
|
8
8
|
import * as i2$1 from '@angular/router';
|
|
9
9
|
import * as i1$2 from '@angular/forms';
|
|
10
|
-
import { Validators, FormGroup, FormControl, FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
10
|
+
import { Validators, FormGroup, FormControl, FormArray, FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
11
11
|
import { FlexLayoutModule } from '@angular/flex-layout';
|
|
12
12
|
import * as i3 from '@lowcodeunit/app-host-common';
|
|
13
13
|
import { AppHostModule } from '@lowcodeunit/app-host-common';
|
|
@@ -293,9 +293,10 @@ class ApplicationsFlowService {
|
|
|
293
293
|
headers: this.loadHeaders(),
|
|
294
294
|
});
|
|
295
295
|
}
|
|
296
|
-
LoadUserFeed(page, pageSize, project, applications) {
|
|
296
|
+
LoadUserFeed(page, pageSize, types, project, applications) {
|
|
297
|
+
// console.log('types at LoadUserFeed: ', types);
|
|
297
298
|
var apps = JSON.stringify(applications || []);
|
|
298
|
-
return this.http.get(`${this.apiRoot}/api/lowcodeunit/userfeed?page=${page}&pageSize=${pageSize}&project=${project}&applications=${apps}`, {
|
|
299
|
+
return this.http.get(`${this.apiRoot}/api/lowcodeunit/userfeed?page=${page}&pageSize=${pageSize}&types=${types}&project=${project}&applications=${apps}`, {
|
|
299
300
|
headers: this.loadHeaders(),
|
|
300
301
|
});
|
|
301
302
|
}
|
|
@@ -382,7 +383,7 @@ class ProjectService {
|
|
|
382
383
|
resolve(response.Status);
|
|
383
384
|
await Promise.all([
|
|
384
385
|
this.LoadEnterpriseAsCode(state),
|
|
385
|
-
this.LoadUserFeed(1, 25, false, state),
|
|
386
|
+
this.LoadUserFeed(1, 25, 'types=all', false, state),
|
|
386
387
|
]);
|
|
387
388
|
}
|
|
388
389
|
else {
|
|
@@ -531,18 +532,20 @@ class ProjectService {
|
|
|
531
532
|
});
|
|
532
533
|
});
|
|
533
534
|
}
|
|
534
|
-
async LoadUserFeed(page, pageSize, forCheck = false, state) {
|
|
535
|
+
async LoadUserFeed(page, pageSize, filterStr, forCheck = false, state) {
|
|
535
536
|
return new Promise((resolve, reject) => {
|
|
536
537
|
state.LoadingFeed = !forCheck;
|
|
537
538
|
let paramMap = this.activatedRoute.snapshot.children[0].paramMap;
|
|
538
539
|
let result = this.loadApplicationsForFeed(state, paramMap);
|
|
539
540
|
this.appsFlowSvc
|
|
540
|
-
.LoadUserFeed(page, pageSize, result?.Project, result?.Applications)
|
|
541
|
+
.LoadUserFeed(page, pageSize, filterStr, result?.Project, result?.Applications)
|
|
541
542
|
.subscribe(async (response) => {
|
|
542
543
|
state.LoadingFeed = false;
|
|
543
544
|
if (response.Status.Code === 0) {
|
|
545
|
+
// console.log('user feed response: ', response);
|
|
544
546
|
if (!forCheck) {
|
|
545
547
|
state.Advertisements = response.Advertisements;
|
|
548
|
+
state.FeedFilters = response.ItemTypes;
|
|
546
549
|
state.Feed = response.Items;
|
|
547
550
|
state.FeedSourceControlLookups =
|
|
548
551
|
response.SourceControlLookups;
|
|
@@ -592,7 +595,7 @@ class ProjectService {
|
|
|
592
595
|
resolve(response.Status);
|
|
593
596
|
await Promise.all([
|
|
594
597
|
this.LoadEnterpriseAsCode(state),
|
|
595
|
-
this.LoadUserFeed(1, 25, false, state),
|
|
598
|
+
this.LoadUserFeed(1, 25, 'types=all', false, state),
|
|
596
599
|
]);
|
|
597
600
|
}
|
|
598
601
|
else {
|
|
@@ -615,7 +618,7 @@ class ProjectService {
|
|
|
615
618
|
resolve(response.Status);
|
|
616
619
|
await Promise.all([
|
|
617
620
|
this.LoadEnterpriseAsCode(state),
|
|
618
|
-
this.LoadUserFeed(1, 25, false, state),
|
|
621
|
+
this.LoadUserFeed(1, 25, 'types=all', false, state),
|
|
619
622
|
]);
|
|
620
623
|
}
|
|
621
624
|
else {
|
|
@@ -663,7 +666,7 @@ class ProjectService {
|
|
|
663
666
|
resolve(response.Status);
|
|
664
667
|
await Promise.all([
|
|
665
668
|
this.LoadEnterpriseAsCode(state),
|
|
666
|
-
this.LoadUserFeed(1, 25, false, state),
|
|
669
|
+
this.LoadUserFeed(1, 25, 'types=all', false, state),
|
|
667
670
|
]);
|
|
668
671
|
}
|
|
669
672
|
else {
|
|
@@ -689,7 +692,7 @@ class ProjectService {
|
|
|
689
692
|
resolve(response.Status);
|
|
690
693
|
await Promise.all([
|
|
691
694
|
this.LoadEnterpriseAsCode(state),
|
|
692
|
-
this.LoadUserFeed(1, 25, false, state),
|
|
695
|
+
this.LoadUserFeed(1, 25, 'types=all', false, state),
|
|
693
696
|
]);
|
|
694
697
|
}
|
|
695
698
|
else {
|
|
@@ -955,8 +958,8 @@ class EaCService {
|
|
|
955
958
|
async GetActiveEnterprise() {
|
|
956
959
|
await this.projectService.GetActiveEnterprise(this.State);
|
|
957
960
|
}
|
|
958
|
-
async LoadUserFeed(page, pageSize, forCheck = false) {
|
|
959
|
-
await this.projectService.LoadUserFeed(page, pageSize, forCheck, this.State);
|
|
961
|
+
async LoadUserFeed(page, pageSize, forCheck = false, filterStr = '') {
|
|
962
|
+
await this.projectService.LoadUserFeed(page, pageSize, filterStr, forCheck, this.State);
|
|
960
963
|
}
|
|
961
964
|
GenerateRoutedApplications(applications) {
|
|
962
965
|
return this.projectService.GenerateRoutedApplications(applications, this.State);
|
|
@@ -7475,6 +7478,147 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
7475
7478
|
args: ['advertisement']
|
|
7476
7479
|
}] } });
|
|
7477
7480
|
|
|
7481
|
+
class FeedFilterComponent {
|
|
7482
|
+
constructor(eacSvc, formBuilder) {
|
|
7483
|
+
this.eacSvc = eacSvc;
|
|
7484
|
+
this.formBuilder = formBuilder;
|
|
7485
|
+
this.FilterFormGroup = this.formBuilder.group({
|
|
7486
|
+
filters: new FormArray([]),
|
|
7487
|
+
});
|
|
7488
|
+
this.Filters = new Array();
|
|
7489
|
+
}
|
|
7490
|
+
get filtersFormArray() {
|
|
7491
|
+
return this.FilterFormGroup.controls.filters;
|
|
7492
|
+
}
|
|
7493
|
+
ngOnInit() {
|
|
7494
|
+
if (this.FilterTypes?.length > 0) {
|
|
7495
|
+
this.filterString = this.setFilterString(this.FilterTypes);
|
|
7496
|
+
}
|
|
7497
|
+
if (this.filterString?.length > 0) {
|
|
7498
|
+
this.Filters = this.buildFilterObject(this.filterString);
|
|
7499
|
+
}
|
|
7500
|
+
if (this.Filters?.length > 0) {
|
|
7501
|
+
this.addCheckboxes();
|
|
7502
|
+
}
|
|
7503
|
+
}
|
|
7504
|
+
ngOnChanges() {
|
|
7505
|
+
if (this.FilterTypes?.length > this.Filters?.length) {
|
|
7506
|
+
this.filterString = this.setFilterString(this.FilterTypes);
|
|
7507
|
+
this.Filters = this.buildFilterObject(this.filterString);
|
|
7508
|
+
this.addCheckboxes();
|
|
7509
|
+
}
|
|
7510
|
+
// if (this.filterString?.length > 0) {
|
|
7511
|
+
// }
|
|
7512
|
+
// if (this.Filters?.length > 0) {
|
|
7513
|
+
// }
|
|
7514
|
+
}
|
|
7515
|
+
addCheckboxes() {
|
|
7516
|
+
this.filtersFormArray.clear();
|
|
7517
|
+
this.Filters.forEach((filter) => this.filtersFormArray.push(new FormControl(filter.Value)));
|
|
7518
|
+
}
|
|
7519
|
+
buildFilterObject(fstring) {
|
|
7520
|
+
let filterList = fstring.split(';');
|
|
7521
|
+
let filterObjList = new Array();
|
|
7522
|
+
filterList.forEach((itm) => {
|
|
7523
|
+
if (itm.length > 0) {
|
|
7524
|
+
filterObjList.push(JSON.parse(itm));
|
|
7525
|
+
}
|
|
7526
|
+
});
|
|
7527
|
+
return filterObjList;
|
|
7528
|
+
}
|
|
7529
|
+
setFilterString(fTypes) {
|
|
7530
|
+
let fString = '';
|
|
7531
|
+
let filters = fTypes;
|
|
7532
|
+
if (localStorage.getItem('activeFilter')) {
|
|
7533
|
+
let activeF = localStorage.getItem('activeFilter').split(',');
|
|
7534
|
+
activeF.forEach((f) => {
|
|
7535
|
+
if (f.includes('-')) {
|
|
7536
|
+
let i = activeF.indexOf(f);
|
|
7537
|
+
f = f.replace('-', ' ');
|
|
7538
|
+
activeF[i] = f;
|
|
7539
|
+
}
|
|
7540
|
+
});
|
|
7541
|
+
filters.forEach((filter) => {
|
|
7542
|
+
if (activeF.includes(filter.toLowerCase())) {
|
|
7543
|
+
fString += '{ "Name":"' + filter + '","Value":true };';
|
|
7544
|
+
}
|
|
7545
|
+
else if (activeF.includes(filter.toLowerCase()) &&
|
|
7546
|
+
filters.indexOf(filter) === filters.length - 1) {
|
|
7547
|
+
fString += '{ "Name":"' + filter + '","Value":true }';
|
|
7548
|
+
}
|
|
7549
|
+
else if (filters.indexOf(filter) === filters.length - 1) {
|
|
7550
|
+
fString += '{ "Name":"' + filter + '","Value":false }';
|
|
7551
|
+
}
|
|
7552
|
+
else {
|
|
7553
|
+
fString += '{ "Name":"' + filter + '","Value":false };';
|
|
7554
|
+
}
|
|
7555
|
+
});
|
|
7556
|
+
}
|
|
7557
|
+
else {
|
|
7558
|
+
filters.forEach((filter) => {
|
|
7559
|
+
if (filter.toLowerCase() === 'all') {
|
|
7560
|
+
fString += '{ "Name":"' + filter + '","Value":true };';
|
|
7561
|
+
}
|
|
7562
|
+
else if (filters.indexOf(filter) === filters.length - 1) {
|
|
7563
|
+
fString += '{ "Name":"' + filter + '","Value":true }';
|
|
7564
|
+
}
|
|
7565
|
+
else {
|
|
7566
|
+
fString += '{ "Name":"' + filter + '","Value":true };';
|
|
7567
|
+
}
|
|
7568
|
+
});
|
|
7569
|
+
}
|
|
7570
|
+
return fString;
|
|
7571
|
+
}
|
|
7572
|
+
ToggleFilter(name) {
|
|
7573
|
+
let filt = this.Filters.find((filter) => filter.Name === name);
|
|
7574
|
+
let allFilt = this.Filters.find((filter) => filter.Name.toLowerCase() === 'all');
|
|
7575
|
+
if (name.toLowerCase() === 'all') {
|
|
7576
|
+
allFilt.Value = !allFilt.Value;
|
|
7577
|
+
this.Filters.forEach((filter) => {
|
|
7578
|
+
if (filter.Name.toLowerCase() !== 'all') {
|
|
7579
|
+
filter.Value = allFilt.Value;
|
|
7580
|
+
}
|
|
7581
|
+
});
|
|
7582
|
+
}
|
|
7583
|
+
else if (filt.Name === name) {
|
|
7584
|
+
filt.Value = !filt.Value;
|
|
7585
|
+
if (allFilt.Value === true) {
|
|
7586
|
+
allFilt.Value = false;
|
|
7587
|
+
}
|
|
7588
|
+
}
|
|
7589
|
+
this.addCheckboxes();
|
|
7590
|
+
}
|
|
7591
|
+
Apply() {
|
|
7592
|
+
let types = '';
|
|
7593
|
+
this.Filters.forEach((fil) => {
|
|
7594
|
+
if (fil.Value === true) {
|
|
7595
|
+
let temp = fil.Name;
|
|
7596
|
+
if (temp.includes(' ')) {
|
|
7597
|
+
temp = temp.replace(' ', '-');
|
|
7598
|
+
}
|
|
7599
|
+
types += temp.toLowerCase() + ',';
|
|
7600
|
+
}
|
|
7601
|
+
});
|
|
7602
|
+
if (types.charAt(types.length - 1) === ',') {
|
|
7603
|
+
types = types.substring(0, types.length - 1);
|
|
7604
|
+
}
|
|
7605
|
+
this.StoreActiveFilter(types);
|
|
7606
|
+
this.eacSvc.LoadUserFeed(1, 25, false, types);
|
|
7607
|
+
}
|
|
7608
|
+
StoreActiveFilter(types) {
|
|
7609
|
+
localStorage.setItem('activeFilter', types);
|
|
7610
|
+
}
|
|
7611
|
+
}
|
|
7612
|
+
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 });
|
|
7613
|
+
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"] }] });
|
|
7614
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: FeedFilterComponent, decorators: [{
|
|
7615
|
+
type: Component,
|
|
7616
|
+
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"] }]
|
|
7617
|
+
}], ctorParameters: function () { return [{ type: EaCService }, { type: i1$2.FormBuilder }]; }, propDecorators: { FilterTypes: [{
|
|
7618
|
+
type: Input,
|
|
7619
|
+
args: ['filter-types']
|
|
7620
|
+
}] } });
|
|
7621
|
+
|
|
7478
7622
|
class ApplicationsFlowModule {
|
|
7479
7623
|
static forRoot() {
|
|
7480
7624
|
return {
|
|
@@ -7550,7 +7694,8 @@ ApplicationsFlowModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0",
|
|
|
7550
7694
|
ConnectedSourceComponent,
|
|
7551
7695
|
UserAccountDialogComponent,
|
|
7552
7696
|
ProductDiscoveryCardComponent,
|
|
7553
|
-
AdvertisementCardComponent
|
|
7697
|
+
AdvertisementCardComponent,
|
|
7698
|
+
FeedFilterComponent], imports: [AngularEditorModule,
|
|
7554
7699
|
ClipboardModule,
|
|
7555
7700
|
FathymSharedModule,
|
|
7556
7701
|
FormsModule,
|
|
@@ -7619,7 +7764,8 @@ ApplicationsFlowModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0",
|
|
|
7619
7764
|
ConnectedSourceComponent,
|
|
7620
7765
|
UserAccountDialogComponent,
|
|
7621
7766
|
ProductDiscoveryCardComponent,
|
|
7622
|
-
AdvertisementCardComponent
|
|
7767
|
+
AdvertisementCardComponent,
|
|
7768
|
+
FeedFilterComponent] });
|
|
7623
7769
|
ApplicationsFlowModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: ApplicationsFlowModule, imports: [[
|
|
7624
7770
|
AngularEditorModule,
|
|
7625
7771
|
ClipboardModule,
|
|
@@ -7697,6 +7843,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
7697
7843
|
UserAccountDialogComponent,
|
|
7698
7844
|
ProductDiscoveryCardComponent,
|
|
7699
7845
|
AdvertisementCardComponent,
|
|
7846
|
+
FeedFilterComponent,
|
|
7700
7847
|
],
|
|
7701
7848
|
imports: [
|
|
7702
7849
|
AngularEditorModule,
|
|
@@ -7773,6 +7920,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
7773
7920
|
UserAccountDialogComponent,
|
|
7774
7921
|
ProductDiscoveryCardComponent,
|
|
7775
7922
|
AdvertisementCardComponent,
|
|
7923
|
+
FeedFilterComponent,
|
|
7776
7924
|
],
|
|
7777
7925
|
entryComponents: [
|
|
7778
7926
|
ApplicationsFlowProjectsElementComponent,
|
|
@@ -7843,6 +7991,8 @@ class FeedItemTab {
|
|
|
7843
7991
|
}
|
|
7844
7992
|
class FeedEntry {
|
|
7845
7993
|
}
|
|
7994
|
+
class ItemType {
|
|
7995
|
+
}
|
|
7846
7996
|
|
|
7847
7997
|
class ActionsModel {
|
|
7848
7998
|
}
|
|
@@ -7866,5 +8016,5 @@ class FormModel {
|
|
|
7866
8016
|
* Generated bundle index. Do not edit.
|
|
7867
8017
|
*/
|
|
7868
8018
|
|
|
7869
|
-
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 };
|
|
8019
|
+
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 };
|
|
7870
8020
|
//# sourceMappingURL=lowcodeunit-applications-flow-common.mjs.map
|