@dignite-ng/expand.cms 0.0.22 → 0.0.24
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/config/cms-config.module.mjs +6 -7
- package/esm2022/config/dignite-ng-expand.cms-config.mjs +1 -1
- package/esm2022/config/enums/index.mjs +1 -1
- package/esm2022/config/enums/route-names.mjs +1 -1
- package/esm2022/config/providers/index.mjs +1 -1
- package/esm2022/config/providers/route.provider.mjs +1 -1
- package/esm2022/config/public-api.mjs +1 -1
- package/esm2022/dignite-ng-expand.cms.mjs +1 -1
- package/esm2022/lib/cms-routing.module.mjs +6 -8
- package/esm2022/lib/cms.module.mjs +19 -52
- package/esm2022/lib/components/admin/entries/create-or-edit-entries.component.mjs +40 -48
- package/esm2022/lib/components/admin/entries/create-or-update-entry-input-base.mjs +20 -20
- package/esm2022/lib/components/admin/entries/create.component.mjs +22 -27
- package/esm2022/lib/components/admin/entries/edit.component.mjs +28 -36
- package/esm2022/lib/components/admin/entries/entries.component.mjs +42 -48
- package/esm2022/lib/components/admin/entries/index.mjs +1 -1
- package/esm2022/lib/components/admin/fields/create-field.component.mjs +16 -21
- package/esm2022/lib/components/admin/fields/create-or-edit-field.component.mjs +12 -22
- package/esm2022/lib/components/admin/fields/create-or-update-field-input-base.mjs +13 -13
- package/esm2022/lib/components/admin/fields/edit-field.component.mjs +19 -27
- package/esm2022/lib/components/admin/fields/field-group.component.mjs +23 -30
- package/esm2022/lib/components/admin/fields/fields.component.mjs +23 -27
- package/esm2022/lib/components/admin/fields/index.mjs +1 -1
- package/esm2022/lib/components/admin/index.mjs +1 -1
- package/esm2022/lib/components/admin/sections/create-or-update-sections-input-base.mjs +15 -15
- package/esm2022/lib/components/admin/sections/entry-types/create-or-edit.-entry-type-input-base.mjs +26 -26
- package/esm2022/lib/components/admin/sections/entry-types/create-or-edit.component.mjs +42 -71
- package/esm2022/lib/components/admin/sections/entry-types/index.mjs +1 -1
- package/esm2022/lib/components/admin/sections/index.mjs +1 -1
- package/esm2022/lib/components/admin/sections/sections.component.mjs +33 -46
- package/esm2022/lib/components/admin/sites/create-or-update-sites-input-base.mjs +6 -11
- package/esm2022/lib/components/admin/sites/index.mjs +1 -1
- package/esm2022/lib/components/admin/sites/sites.component.mjs +26 -47
- package/esm2022/lib/components/dynamic-form/entry/entry-config.component.mjs +17 -28
- package/esm2022/lib/components/dynamic-form/entry/entry-config.mjs +7 -7
- package/esm2022/lib/components/dynamic-form/entry/entry-control.component.mjs +13 -24
- package/esm2022/lib/components/dynamic-form/entry/index.mjs +1 -1
- package/esm2022/lib/components/dynamic-form/form-control-group.mjs +1 -4
- package/esm2022/lib/components/dynamic-form/index.mjs +1 -1
- package/esm2022/lib/components/dynamic-form/matrix/index.mjs +1 -1
- package/esm2022/lib/components/dynamic-form/matrix/matrix-config.component.mjs +19 -37
- package/esm2022/lib/components/dynamic-form/matrix/matrix-config.mjs +16 -16
- package/esm2022/lib/components/dynamic-form/matrix/matrix-control.component.mjs +12 -28
- package/esm2022/lib/components/dynamic-form/table/index.mjs +1 -1
- package/esm2022/lib/components/dynamic-form/table/table-config.component.mjs +14 -36
- package/esm2022/lib/components/dynamic-form/table/table-config.mjs +15 -15
- package/esm2022/lib/components/dynamic-form/table/table-control.component.mjs +11 -25
- package/esm2022/lib/components/index.mjs +1 -1
- package/esm2022/lib/constants/styles.mjs +4 -29
- package/esm2022/lib/enums/ecms-component.mjs +1 -1
- package/esm2022/lib/enums/index.mjs +1 -1
- package/esm2022/lib/proxy/admin/dynamic-forms/form-admin.service.mjs +12 -13
- package/esm2022/lib/proxy/admin/dynamic-forms/index.mjs +1 -1
- package/esm2022/lib/proxy/admin/dynamic-forms/models.mjs +1 -1
- package/esm2022/lib/proxy/admin/entries/entry-admin.service.mjs +55 -56
- package/esm2022/lib/proxy/admin/entries/index.mjs +1 -1
- package/esm2022/lib/proxy/admin/entries/models.mjs +1 -1
- package/esm2022/lib/proxy/admin/fields/field-admin.service.mjs +35 -36
- package/esm2022/lib/proxy/admin/fields/field-group-admin.service.mjs +31 -32
- package/esm2022/lib/proxy/admin/fields/index.mjs +1 -1
- package/esm2022/lib/proxy/admin/fields/models.mjs +1 -1
- package/esm2022/lib/proxy/admin/sections/entry-type-admin.service.mjs +31 -32
- package/esm2022/lib/proxy/admin/sections/index.mjs +1 -1
- package/esm2022/lib/proxy/admin/sections/models.mjs +1 -1
- package/esm2022/lib/proxy/admin/sections/section-admin.service.mjs +41 -42
- package/esm2022/lib/proxy/admin/sites/index.mjs +1 -1
- package/esm2022/lib/proxy/admin/sites/models.mjs +1 -1
- package/esm2022/lib/proxy/admin/sites/site-admin.service.mjs +39 -40
- package/esm2022/lib/proxy/dignite/abp/data/index.mjs +1 -1
- package/esm2022/lib/proxy/dignite/abp/data/models.mjs +1 -1
- package/esm2022/lib/proxy/entries/entry-status.enum.mjs +1 -1
- package/esm2022/lib/proxy/entries/index.mjs +1 -1
- package/esm2022/lib/proxy/fields/models.mjs +1 -1
- package/esm2022/lib/proxy/sections/index.mjs +1 -1
- package/esm2022/lib/proxy/sections/models.mjs +1 -1
- package/esm2022/lib/proxy/sections/section-type.enum.mjs +1 -1
- package/esm2022/lib/proxy/sites/models.mjs +1 -1
- package/esm2022/lib/proxy/volo/cms-kit/users/models.mjs +1 -1
- package/esm2022/lib/services/appent-content.mjs +1 -1
- package/esm2022/lib/services/cms-api.service.mjs +7 -8
- package/esm2022/lib/services/cms.service.mjs +8 -9
- package/esm2022/lib/services/field-abstracts.service.mjs +12 -13
- package/esm2022/lib/services/index.mjs +1 -1
- package/esm2022/lib/services/simple-reuse-strategy.mjs +4 -2
- package/esm2022/lib/services/update-list.service.mjs +9 -9
- package/esm2022/lib/toolbar/index.mjs +1 -1
- package/esm2022/lib/toolbar/toolbar-btn-default-action.mjs +1 -1
- package/esm2022/lib/toolbar/toolbar-config.mjs +1 -2
- package/esm2022/public-api.mjs +5 -8
- package/fesm2022/dignite-ng-expand.cms-config.mjs +4 -4
- package/fesm2022/dignite-ng-expand.cms-config.mjs.map +1 -1
- package/fesm2022/dignite-ng-expand.cms.mjs +701 -1286
- package/fesm2022/dignite-ng-expand.cms.mjs.map +1 -1
- package/lib/cms.module.d.ts +6 -11
- package/lib/components/admin/entries/edit.component.d.ts +1 -3
- package/lib/components/admin/fields/create-or-edit-field.component.d.ts +0 -1
- package/lib/components/admin/sites/create-or-update-sites-input-base.d.ts +0 -4
- package/lib/constants/styles.d.ts +1 -1
- package/package.json +2 -4
- package/public-api.d.ts +2 -7
- package/esm2022/lib/constants/index.mjs +0 -2
- package/esm2022/lib/proxy/admin/index.mjs +0 -7
- package/esm2022/lib/proxy/dignite/abp/index.mjs +0 -3
- package/esm2022/lib/proxy/dignite/file-explorer/directories/file-descriptor.service.mjs +0 -48
- package/esm2022/lib/proxy/dignite/file-explorer/directories/index.mjs +0 -3
- package/esm2022/lib/proxy/dignite/file-explorer/directories/models.mjs +0 -2
- package/esm2022/lib/proxy/dignite/file-explorer/files/file-descriptor.service.mjs +0 -60
- package/esm2022/lib/proxy/dignite/file-explorer/files/index.mjs +0 -3
- package/esm2022/lib/proxy/dignite/file-explorer/files/models.mjs +0 -2
- package/esm2022/lib/proxy/dignite/file-explorer/index.mjs +0 -4
- package/esm2022/lib/proxy/dignite/index.mjs +0 -4
- package/esm2022/lib/proxy/fields/index.mjs +0 -2
- package/esm2022/lib/proxy/index.mjs +0 -10
- package/esm2022/lib/proxy/microsoft/asp-net-core/index.mjs +0 -3
- package/esm2022/lib/proxy/microsoft/asp-net-core/mvc/index.mjs +0 -2
- package/esm2022/lib/proxy/microsoft/asp-net-core/mvc/models.mjs +0 -2
- package/esm2022/lib/proxy/microsoft/extensions/index.mjs +0 -3
- package/esm2022/lib/proxy/microsoft/extensions/primitives/index.mjs +0 -2
- package/esm2022/lib/proxy/microsoft/extensions/primitives/models.mjs +0 -2
- package/esm2022/lib/proxy/microsoft/index.mjs +0 -5
- package/esm2022/lib/proxy/microsoft/net/http/headers/index.mjs +0 -2
- package/esm2022/lib/proxy/microsoft/net/http/headers/models.mjs +0 -2
- package/esm2022/lib/proxy/microsoft/net/http/index.mjs +0 -3
- package/esm2022/lib/proxy/microsoft/net/index.mjs +0 -3
- package/esm2022/lib/proxy/sites/index.mjs +0 -2
- package/esm2022/lib/proxy/volo/abp/content/index.mjs +0 -2
- package/esm2022/lib/proxy/volo/abp/content/models.mjs +0 -2
- package/esm2022/lib/proxy/volo/abp/index.mjs +0 -3
- package/esm2022/lib/proxy/volo/cms-kit/index.mjs +0 -3
- package/esm2022/lib/proxy/volo/cms-kit/users/index.mjs +0 -2
- package/esm2022/lib/proxy/volo/index.mjs +0 -4
- package/lib/constants/index.d.ts +0 -1
- package/lib/proxy/admin/index.d.ts +0 -6
- package/lib/proxy/dignite/abp/index.d.ts +0 -2
- package/lib/proxy/dignite/file-explorer/directories/file-descriptor.service.d.ts +0 -17
- package/lib/proxy/dignite/file-explorer/directories/index.d.ts +0 -2
- package/lib/proxy/dignite/file-explorer/directories/models.d.ts +0 -29
- package/lib/proxy/dignite/file-explorer/files/file-descriptor.service.d.ts +0 -20
- package/lib/proxy/dignite/file-explorer/files/index.d.ts +0 -2
- package/lib/proxy/dignite/file-explorer/files/models.d.ts +0 -50
- package/lib/proxy/dignite/file-explorer/index.d.ts +0 -3
- package/lib/proxy/dignite/index.d.ts +0 -3
- package/lib/proxy/fields/index.d.ts +0 -1
- package/lib/proxy/index.d.ts +0 -9
- package/lib/proxy/microsoft/asp-net-core/index.d.ts +0 -2
- package/lib/proxy/microsoft/asp-net-core/mvc/index.d.ts +0 -1
- package/lib/proxy/microsoft/asp-net-core/mvc/models.d.ts +0 -10
- package/lib/proxy/microsoft/extensions/index.d.ts +0 -2
- package/lib/proxy/microsoft/extensions/primitives/index.d.ts +0 -1
- package/lib/proxy/microsoft/extensions/primitives/models.d.ts +0 -8
- package/lib/proxy/microsoft/index.d.ts +0 -4
- package/lib/proxy/microsoft/net/http/headers/index.d.ts +0 -1
- package/lib/proxy/microsoft/net/http/headers/models.d.ts +0 -6
- package/lib/proxy/microsoft/net/http/index.d.ts +0 -2
- package/lib/proxy/microsoft/net/index.d.ts +0 -2
- package/lib/proxy/sites/index.d.ts +0 -1
- package/lib/proxy/volo/abp/content/index.d.ts +0 -1
- package/lib/proxy/volo/abp/content/models.d.ts +0 -5
- package/lib/proxy/volo/abp/index.d.ts +0 -2
- package/lib/proxy/volo/cms-kit/index.d.ts +0 -2
- package/lib/proxy/volo/cms-kit/users/index.d.ts +0 -1
- package/lib/proxy/volo/index.d.ts +0 -3
|
@@ -1,302 +1,264 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { Injectable, EventEmitter, inject, Component, ViewContainerRef, Input, ViewChildren, ViewChild, Output, InjectionToken, RendererFactory2, NgModule } from '@angular/core';
|
|
3
3
|
import * as i1 from '@abp/ng.core';
|
|
4
4
|
import { mapEnumToOptions, ListService, LIST_QUERY_DEBOUNCE_TIME, ConfigStateService, AuthGuard, PermissionGuard, LazyModuleFactory, CoreModule } from '@abp/ng.core';
|
|
5
5
|
import * as i3 from '@abp/ng.theme.shared';
|
|
6
6
|
import { ThemeSharedModule } from '@abp/ng.theme.shared';
|
|
7
7
|
import * as i3$1 from '@angular/router';
|
|
8
|
-
import { RouterModule
|
|
8
|
+
import { RouterModule } from '@angular/router';
|
|
9
9
|
import * as i1$1 from '@angular/forms';
|
|
10
|
-
import { FormBuilder, Validators, FormGroup, FormControl, FormArray, FormsModule
|
|
10
|
+
import { FormBuilder, Validators, FormGroup, FormControl, FormArray, FormsModule } from '@angular/forms';
|
|
11
11
|
import * as i7 from '@swimlane/ngx-datatable';
|
|
12
12
|
import { ColumnMode } from '@swimlane/ngx-datatable';
|
|
13
13
|
import { finalize } from 'rxjs/operators';
|
|
14
|
-
import { EXTENSIONS_IDENTIFIER, ToolbarAction, ExtensionsService, getObjectExtensionEntitiesFromStore, mapEntitiesToContributors, mergeWithDefaultActions
|
|
14
|
+
import { EXTENSIONS_IDENTIFIER, ToolbarAction, ExtensionsService, getObjectExtensionEntitiesFromStore, mapEntitiesToContributors, mergeWithDefaultActions } from '@abp/ng.theme.shared/extensions';
|
|
15
15
|
import * as i2 from '@angular/common';
|
|
16
16
|
import * as i7$1 from '@ngx-validate/core';
|
|
17
|
-
import { NgxValidateCoreModule } from '@ngx-validate/core';
|
|
18
17
|
import * as i10 from '@ng-bootstrap/ng-bootstrap';
|
|
19
|
-
import {
|
|
20
|
-
import * as
|
|
18
|
+
import { NgbNavModule, NgbAccordionModule, NgbDropdownModule } from '@ng-bootstrap/ng-bootstrap';
|
|
19
|
+
import * as i12 from '@abp/ng.components/page';
|
|
21
20
|
import { PageModule } from '@abp/ng.components/page';
|
|
22
|
-
import { pinyin } from 'pinyin-pro';
|
|
23
21
|
import * as i1$2 from '@angular/platform-browser';
|
|
22
|
+
import { pinyin } from 'pinyin-pro';
|
|
24
23
|
import * as i8 from '@dignite-ng/expand.dynamic-form';
|
|
25
|
-
import {
|
|
24
|
+
import { DynamicFormModule } from '@dignite-ng/expand.dynamic-form';
|
|
26
25
|
import * as i4 from 'ng-zorro-antd/select';
|
|
27
26
|
import { NzSelectModule } from 'ng-zorro-antd/select';
|
|
28
|
-
import * as i7$2 from 'ng-zorro-antd/table';
|
|
29
|
-
import { NzTableModule } from 'ng-zorro-antd/table';
|
|
30
27
|
import { map, tap } from 'rxjs';
|
|
31
|
-
import {
|
|
32
|
-
import { CommercialUiConfigModule } from '@volo/abp.commercial.ng.ui/config';
|
|
33
|
-
import { ScrollingModule } from '@angular/cdk/scrolling';
|
|
34
|
-
|
|
35
|
-
var EntryStatus;
|
|
36
|
-
(function (EntryStatus) {
|
|
37
|
-
EntryStatus[EntryStatus["Draft"] = 0] = "Draft";
|
|
38
|
-
EntryStatus[EntryStatus["Published"] = 1] = "Published";
|
|
39
|
-
})(EntryStatus || (EntryStatus = {}));
|
|
40
|
-
const entryStatusOptions = mapEnumToOptions(EntryStatus);
|
|
41
|
-
|
|
42
|
-
var index$s = /*#__PURE__*/Object.freeze({
|
|
43
|
-
__proto__: null,
|
|
44
|
-
get EntryStatus () { return EntryStatus; },
|
|
45
|
-
entryStatusOptions: entryStatusOptions
|
|
46
|
-
});
|
|
47
|
-
|
|
48
|
-
var ECmsComponent;
|
|
49
|
-
(function (ECmsComponent) {
|
|
50
|
-
ECmsComponent["Entries"] = "Cms.Entries";
|
|
51
|
-
ECmsComponent["Entries_Create"] = "Cms.Entries.Create";
|
|
52
|
-
ECmsComponent["Entries_Edit"] = "Cms.Entries.Edit";
|
|
53
|
-
ECmsComponent["Fields"] = "Cms.Fields";
|
|
54
|
-
ECmsComponent["FieldsCreate"] = "Cms.Fields.Create";
|
|
55
|
-
ECmsComponent["FieldsEdit"] = "Cms.Fields.Edit";
|
|
56
|
-
ECmsComponent["Sites"] = "Cms.Sites";
|
|
57
|
-
ECmsComponent["Sections"] = "Cms.Sections";
|
|
58
|
-
ECmsComponent["SectionsCreateOrEdit"] = "Cms.Sections.Create.Or.Edit";
|
|
59
|
-
})(ECmsComponent || (ECmsComponent = {}));
|
|
60
|
-
|
|
61
|
-
class UpdateListService {
|
|
62
|
-
updateListEvent = new EventEmitter();
|
|
63
|
-
constructor() { }
|
|
64
|
-
updateList() {
|
|
65
|
-
this.updateListEvent.emit();
|
|
66
|
-
}
|
|
67
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: UpdateListService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
68
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: UpdateListService, providedIn: 'root' });
|
|
69
|
-
}
|
|
70
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: UpdateListService, decorators: [{
|
|
71
|
-
type: Injectable,
|
|
72
|
-
args: [{
|
|
73
|
-
providedIn: 'root'
|
|
74
|
-
}]
|
|
75
|
-
}], ctorParameters: function () { return []; } });
|
|
28
|
+
import { fielFieldControlGroup } from '@dignite-ng/expand.file-explorer';
|
|
76
29
|
|
|
77
30
|
class EntryAdminService {
|
|
78
|
-
restService;
|
|
79
|
-
apiName = 'CmsAdmin';
|
|
80
|
-
activate = (id, config) => this.restService.request({
|
|
81
|
-
method: 'POST',
|
|
82
|
-
url: `/api/cms-admin/entries/activate/${id}`,
|
|
83
|
-
}, { apiName: this.apiName, ...config });
|
|
84
|
-
create = (input, config) => this.restService.request({
|
|
85
|
-
method: 'POST',
|
|
86
|
-
url: '/api/cms-admin/entries?api-version=1.0',
|
|
87
|
-
body: input,
|
|
88
|
-
}, { apiName: this.apiName, ...config });
|
|
89
|
-
delete = (id, config) => this.restService.request({
|
|
90
|
-
method: 'DELETE',
|
|
91
|
-
url: `/api/cms-admin/entries/${id}`,
|
|
92
|
-
}, { apiName: this.apiName, ...config });
|
|
93
|
-
cultureExistWithSingleSection = (input, config) => this.restService.request({
|
|
94
|
-
method: 'GET',
|
|
95
|
-
url: '/api/cms-admin/entries/culture-exists-with-single-section',
|
|
96
|
-
params: { culture: input.culture, sectionId: input.sectionId, entryTypeId: input.entryTypeId },
|
|
97
|
-
}, { apiName: this.apiName, ...config });
|
|
98
|
-
get = (id, config) => this.restService.request({
|
|
99
|
-
method: 'GET',
|
|
100
|
-
url: `/api/cms-admin/entries/${id}`,
|
|
101
|
-
}, { apiName: this.apiName, ...config });
|
|
102
|
-
getAllVersions = (id, config) => this.restService.request({
|
|
103
|
-
method: 'GET',
|
|
104
|
-
url: `/api/cms-admin/entries/${id}/all-versions`,
|
|
105
|
-
}, { apiName: this.apiName, ...config });
|
|
106
|
-
getList = (input, config) => this.restService.request({
|
|
107
|
-
method: 'GET',
|
|
108
|
-
url: '/api/cms-admin/entries',
|
|
109
|
-
params: { culture: input.culture, sectionId: input.sectionId, entryTypeId: input.entryTypeId, startPublishDate: input.startPublishDate, expiryPublishDate: input.expiryPublishDate, filter: input.filter, status: input.status, creatorId: input.creatorId, sorting: input.sorting, skipCount: input.skipCount, maxResultCount: input.maxResultCount },
|
|
110
|
-
}, { apiName: this.apiName, ...config });
|
|
111
|
-
move = (id, input, config) => this.restService.request({
|
|
112
|
-
method: 'POST',
|
|
113
|
-
url: `/api/cms-admin/entries/move/${id}`,
|
|
114
|
-
body: input,
|
|
115
|
-
}, { apiName: this.apiName, ...config });
|
|
116
|
-
slugExists = (input, config) => this.restService.request({
|
|
117
|
-
method: 'GET',
|
|
118
|
-
url: '/api/cms-admin/entries/slug-exists',
|
|
119
|
-
params: { culture: input.culture, sectionId: input.sectionId, slug: input.slug },
|
|
120
|
-
}, { apiName: this.apiName, ...config });
|
|
121
|
-
update = (id, input, config) => this.restService.request({
|
|
122
|
-
method: 'PUT',
|
|
123
|
-
url: '/api/cms-admin/entries',
|
|
124
|
-
params: { id },
|
|
125
|
-
body: input,
|
|
126
|
-
}, { apiName: this.apiName, ...config });
|
|
127
31
|
constructor(restService) {
|
|
128
32
|
this.restService = restService;
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
33
|
+
this.apiName = 'CmsAdmin';
|
|
34
|
+
this.activate = (id, config) => this.restService.request({
|
|
35
|
+
method: 'POST',
|
|
36
|
+
url: `/api/cms-admin/entries/activate/${id}`,
|
|
37
|
+
}, { apiName: this.apiName, ...config });
|
|
38
|
+
this.create = (input, config) => this.restService.request({
|
|
39
|
+
method: 'POST',
|
|
40
|
+
url: '/api/cms-admin/entries?api-version=1.0',
|
|
41
|
+
body: input,
|
|
42
|
+
}, { apiName: this.apiName, ...config });
|
|
43
|
+
this.delete = (id, config) => this.restService.request({
|
|
44
|
+
method: 'DELETE',
|
|
45
|
+
url: `/api/cms-admin/entries/${id}`,
|
|
46
|
+
}, { apiName: this.apiName, ...config });
|
|
47
|
+
this.cultureExistWithSingleSection = (input, config) => this.restService.request({
|
|
48
|
+
method: 'GET',
|
|
49
|
+
url: '/api/cms-admin/entries/culture-exists-with-single-section',
|
|
50
|
+
params: { culture: input.culture, sectionId: input.sectionId, entryTypeId: input.entryTypeId },
|
|
51
|
+
}, { apiName: this.apiName, ...config });
|
|
52
|
+
this.get = (id, config) => this.restService.request({
|
|
53
|
+
method: 'GET',
|
|
54
|
+
url: `/api/cms-admin/entries/${id}`,
|
|
55
|
+
}, { apiName: this.apiName, ...config });
|
|
56
|
+
this.getAllVersions = (id, config) => this.restService.request({
|
|
57
|
+
method: 'GET',
|
|
58
|
+
url: `/api/cms-admin/entries/${id}/all-versions`,
|
|
59
|
+
}, { apiName: this.apiName, ...config });
|
|
60
|
+
this.getList = (input, config) => this.restService.request({
|
|
61
|
+
method: 'GET',
|
|
62
|
+
url: '/api/cms-admin/entries',
|
|
63
|
+
params: { culture: input.culture, sectionId: input.sectionId, entryTypeId: input.entryTypeId, startPublishDate: input.startPublishDate, expiryPublishDate: input.expiryPublishDate, filter: input.filter, status: input.status, creatorId: input.creatorId, sorting: input.sorting, skipCount: input.skipCount, maxResultCount: input.maxResultCount },
|
|
64
|
+
}, { apiName: this.apiName, ...config });
|
|
65
|
+
this.move = (id, input, config) => this.restService.request({
|
|
66
|
+
method: 'POST',
|
|
67
|
+
url: `/api/cms-admin/entries/move/${id}`,
|
|
68
|
+
body: input,
|
|
69
|
+
}, { apiName: this.apiName, ...config });
|
|
70
|
+
this.slugExists = (input, config) => this.restService.request({
|
|
71
|
+
method: 'GET',
|
|
72
|
+
url: '/api/cms-admin/entries/slug-exists',
|
|
73
|
+
params: { culture: input.culture, sectionId: input.sectionId, slug: input.slug },
|
|
74
|
+
}, { apiName: this.apiName, ...config });
|
|
75
|
+
this.update = (id, input, config) => this.restService.request({
|
|
76
|
+
method: 'PUT',
|
|
77
|
+
url: '/api/cms-admin/entries',
|
|
78
|
+
params: { id },
|
|
79
|
+
body: input,
|
|
80
|
+
}, { apiName: this.apiName, ...config });
|
|
81
|
+
}
|
|
82
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: EntryAdminService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
83
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: EntryAdminService, providedIn: 'root' }); }
|
|
132
84
|
}
|
|
133
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
85
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: EntryAdminService, decorators: [{
|
|
134
86
|
type: Injectable,
|
|
135
87
|
args: [{
|
|
136
88
|
providedIn: 'root',
|
|
137
89
|
}]
|
|
138
|
-
}], ctorParameters:
|
|
139
|
-
|
|
140
|
-
var index$r = /*#__PURE__*/Object.freeze({
|
|
141
|
-
__proto__: null,
|
|
142
|
-
EntryAdminService: EntryAdminService
|
|
143
|
-
});
|
|
90
|
+
}], ctorParameters: () => [{ type: i1.RestService }] });
|
|
144
91
|
|
|
145
92
|
class SiteAdminService {
|
|
146
|
-
restService;
|
|
147
|
-
apiName = 'CmsAdmin';
|
|
148
|
-
create = (input, config) => this.restService.request({
|
|
149
|
-
method: 'POST',
|
|
150
|
-
url: '/api/cms-admin/sites',
|
|
151
|
-
body: input,
|
|
152
|
-
}, { apiName: this.apiName, ...config });
|
|
153
|
-
delete = (id, config) => this.restService.request({
|
|
154
|
-
method: 'DELETE',
|
|
155
|
-
url: `/api/cms-admin/sites/${id}`,
|
|
156
|
-
}, { apiName: this.apiName, ...config });
|
|
157
|
-
get = (id, config) => this.restService.request({
|
|
158
|
-
method: 'GET',
|
|
159
|
-
url: `/api/cms-admin/sites/${id}`,
|
|
160
|
-
}, { apiName: this.apiName, ...config });
|
|
161
|
-
getList = (input, config) => this.restService.request({
|
|
162
|
-
method: 'GET',
|
|
163
|
-
url: '/api/cms-admin/sites',
|
|
164
|
-
params: { filter: input.filter, isActive: input.isActive },
|
|
165
|
-
}, { apiName: this.apiName, ...config });
|
|
166
|
-
hostExists = (name, config) => this.restService.request({
|
|
167
|
-
method: 'GET',
|
|
168
|
-
url: `/api/cms-admin/sites/host-exists/${name}`,
|
|
169
|
-
}, { apiName: this.apiName, ...config });
|
|
170
|
-
nameExists = (name, config) => this.restService.request({
|
|
171
|
-
method: 'GET',
|
|
172
|
-
url: `/api/cms-admin/sites/name-exists/${name}`,
|
|
173
|
-
}, { apiName: this.apiName, ...config });
|
|
174
|
-
update = (id, input, config) => this.restService.request({
|
|
175
|
-
method: 'PUT',
|
|
176
|
-
url: `/api/cms-admin/sites/${id}`,
|
|
177
|
-
body: input,
|
|
178
|
-
}, { apiName: this.apiName, ...config });
|
|
179
93
|
constructor(restService) {
|
|
180
94
|
this.restService = restService;
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
95
|
+
this.apiName = 'CmsAdmin';
|
|
96
|
+
this.create = (input, config) => this.restService.request({
|
|
97
|
+
method: 'POST',
|
|
98
|
+
url: '/api/cms-admin/sites',
|
|
99
|
+
body: input,
|
|
100
|
+
}, { apiName: this.apiName, ...config });
|
|
101
|
+
this.delete = (id, config) => this.restService.request({
|
|
102
|
+
method: 'DELETE',
|
|
103
|
+
url: `/api/cms-admin/sites/${id}`,
|
|
104
|
+
}, { apiName: this.apiName, ...config });
|
|
105
|
+
this.get = (id, config) => this.restService.request({
|
|
106
|
+
method: 'GET',
|
|
107
|
+
url: `/api/cms-admin/sites/${id}`,
|
|
108
|
+
}, { apiName: this.apiName, ...config });
|
|
109
|
+
this.getList = (input, config) => this.restService.request({
|
|
110
|
+
method: 'GET',
|
|
111
|
+
url: '/api/cms-admin/sites',
|
|
112
|
+
params: { filter: input.filter, isActive: input.isActive },
|
|
113
|
+
}, { apiName: this.apiName, ...config });
|
|
114
|
+
this.hostExists = (name, config) => this.restService.request({
|
|
115
|
+
method: 'GET',
|
|
116
|
+
url: `/api/cms-admin/sites/host-exists/${name}`,
|
|
117
|
+
}, { apiName: this.apiName, ...config });
|
|
118
|
+
this.nameExists = (name, config) => this.restService.request({
|
|
119
|
+
method: 'GET',
|
|
120
|
+
url: `/api/cms-admin/sites/name-exists/${name}`,
|
|
121
|
+
}, { apiName: this.apiName, ...config });
|
|
122
|
+
this.update = (id, input, config) => this.restService.request({
|
|
123
|
+
method: 'PUT',
|
|
124
|
+
url: `/api/cms-admin/sites/${id}`,
|
|
125
|
+
body: input,
|
|
126
|
+
}, { apiName: this.apiName, ...config });
|
|
127
|
+
}
|
|
128
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: SiteAdminService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
129
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: SiteAdminService, providedIn: 'root' }); }
|
|
184
130
|
}
|
|
185
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
131
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: SiteAdminService, decorators: [{
|
|
186
132
|
type: Injectable,
|
|
187
133
|
args: [{
|
|
188
134
|
providedIn: 'root',
|
|
189
135
|
}]
|
|
190
|
-
}], ctorParameters:
|
|
191
|
-
|
|
192
|
-
var index$q = /*#__PURE__*/Object.freeze({
|
|
193
|
-
__proto__: null,
|
|
194
|
-
SiteAdminService: SiteAdminService
|
|
195
|
-
});
|
|
136
|
+
}], ctorParameters: () => [{ type: i1.RestService }] });
|
|
196
137
|
|
|
197
138
|
class EntryTypeAdminService {
|
|
198
|
-
restService;
|
|
199
|
-
apiName = 'CmsAdmin';
|
|
200
|
-
create = (input, config) => this.restService.request({
|
|
201
|
-
method: 'POST',
|
|
202
|
-
url: '/api/cms-admin/entry-types',
|
|
203
|
-
body: input,
|
|
204
|
-
}, { apiName: this.apiName, ...config });
|
|
205
|
-
delete = (id, config) => this.restService.request({
|
|
206
|
-
method: 'DELETE',
|
|
207
|
-
url: `/api/cms-admin/entry-types/${id}`,
|
|
208
|
-
}, { apiName: this.apiName, ...config });
|
|
209
|
-
get = (id, config) => this.restService.request({
|
|
210
|
-
method: 'GET',
|
|
211
|
-
url: `/api/cms-admin/entry-types/${id}`,
|
|
212
|
-
}, { apiName: this.apiName, ...config });
|
|
213
|
-
nameExists = (input, config) => this.restService.request({
|
|
214
|
-
method: 'GET',
|
|
215
|
-
url: '/api/cms-admin/entry-types/name-exists',
|
|
216
|
-
params: { sectionId: input.sectionId, name: input.name },
|
|
217
|
-
}, { apiName: this.apiName, ...config });
|
|
218
|
-
update = (id, input, config) => this.restService.request({
|
|
219
|
-
method: 'PUT',
|
|
220
|
-
url: `/api/cms-admin/entry-types/${id}`,
|
|
221
|
-
body: input,
|
|
222
|
-
}, { apiName: this.apiName, ...config });
|
|
223
139
|
constructor(restService) {
|
|
224
140
|
this.restService = restService;
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
141
|
+
this.apiName = 'CmsAdmin';
|
|
142
|
+
this.create = (input, config) => this.restService.request({
|
|
143
|
+
method: 'POST',
|
|
144
|
+
url: '/api/cms-admin/entry-types',
|
|
145
|
+
body: input,
|
|
146
|
+
}, { apiName: this.apiName, ...config });
|
|
147
|
+
this.delete = (id, config) => this.restService.request({
|
|
148
|
+
method: 'DELETE',
|
|
149
|
+
url: `/api/cms-admin/entry-types/${id}`,
|
|
150
|
+
}, { apiName: this.apiName, ...config });
|
|
151
|
+
this.get = (id, config) => this.restService.request({
|
|
152
|
+
method: 'GET',
|
|
153
|
+
url: `/api/cms-admin/entry-types/${id}`,
|
|
154
|
+
}, { apiName: this.apiName, ...config });
|
|
155
|
+
this.nameExists = (input, config) => this.restService.request({
|
|
156
|
+
method: 'GET',
|
|
157
|
+
url: '/api/cms-admin/entry-types/name-exists',
|
|
158
|
+
params: { sectionId: input.sectionId, name: input.name },
|
|
159
|
+
}, { apiName: this.apiName, ...config });
|
|
160
|
+
this.update = (id, input, config) => this.restService.request({
|
|
161
|
+
method: 'PUT',
|
|
162
|
+
url: `/api/cms-admin/entry-types/${id}`,
|
|
163
|
+
body: input,
|
|
164
|
+
}, { apiName: this.apiName, ...config });
|
|
165
|
+
}
|
|
166
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: EntryTypeAdminService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
167
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: EntryTypeAdminService, providedIn: 'root' }); }
|
|
228
168
|
}
|
|
229
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
169
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: EntryTypeAdminService, decorators: [{
|
|
230
170
|
type: Injectable,
|
|
231
171
|
args: [{
|
|
232
172
|
providedIn: 'root',
|
|
233
173
|
}]
|
|
234
|
-
}], ctorParameters:
|
|
174
|
+
}], ctorParameters: () => [{ type: i1.RestService }] });
|
|
235
175
|
|
|
236
176
|
class SectionAdminService {
|
|
237
|
-
restService;
|
|
238
|
-
apiName = 'CmsAdmin';
|
|
239
|
-
create = (input, config) => this.restService.request({
|
|
240
|
-
method: 'POST',
|
|
241
|
-
url: '/api/cms-admin/sections',
|
|
242
|
-
body: input,
|
|
243
|
-
}, { apiName: this.apiName, ...config });
|
|
244
|
-
delete = (id, config) => this.restService.request({
|
|
245
|
-
method: 'DELETE',
|
|
246
|
-
url: `/api/cms-admin/sections/${id}`,
|
|
247
|
-
}, { apiName: this.apiName, ...config });
|
|
248
|
-
get = (id, config) => this.restService.request({
|
|
249
|
-
method: 'GET',
|
|
250
|
-
url: `/api/cms-admin/sections/${id}`,
|
|
251
|
-
}, { apiName: this.apiName, ...config });
|
|
252
|
-
getList = (input, config) => this.restService.request({
|
|
253
|
-
method: 'GET',
|
|
254
|
-
url: '/api/cms-admin/sections',
|
|
255
|
-
params: { siteId: input.siteId, filter: input.filter, isActive: input.isActive, sorting: input.sorting, skipCount: input.skipCount, maxResultCount: input.maxResultCount },
|
|
256
|
-
}, { apiName: this.apiName, ...config });
|
|
257
|
-
nameExists = (input, config) => this.restService.request({
|
|
258
|
-
method: 'GET',
|
|
259
|
-
url: '/api/cms-admin/sections/name-exists',
|
|
260
|
-
params: { siteId: input.siteId, name: input.name },
|
|
261
|
-
}, { apiName: this.apiName, ...config });
|
|
262
|
-
routeExists = (input, config) => this.restService.request({
|
|
263
|
-
method: 'GET',
|
|
264
|
-
url: '/api/cms-admin/sections/route-exists',
|
|
265
|
-
params: { siteId: input.siteId, route: input.route },
|
|
266
|
-
}, { apiName: this.apiName, ...config });
|
|
267
|
-
update = (id, input, config) => this.restService.request({
|
|
268
|
-
method: 'PUT',
|
|
269
|
-
url: `/api/cms-admin/sections/${id}`,
|
|
270
|
-
body: input,
|
|
271
|
-
}, { apiName: this.apiName, ...config });
|
|
272
177
|
constructor(restService) {
|
|
273
178
|
this.restService = restService;
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
179
|
+
this.apiName = 'CmsAdmin';
|
|
180
|
+
this.create = (input, config) => this.restService.request({
|
|
181
|
+
method: 'POST',
|
|
182
|
+
url: '/api/cms-admin/sections',
|
|
183
|
+
body: input,
|
|
184
|
+
}, { apiName: this.apiName, ...config });
|
|
185
|
+
this.delete = (id, config) => this.restService.request({
|
|
186
|
+
method: 'DELETE',
|
|
187
|
+
url: `/api/cms-admin/sections/${id}`,
|
|
188
|
+
}, { apiName: this.apiName, ...config });
|
|
189
|
+
this.get = (id, config) => this.restService.request({
|
|
190
|
+
method: 'GET',
|
|
191
|
+
url: `/api/cms-admin/sections/${id}`,
|
|
192
|
+
}, { apiName: this.apiName, ...config });
|
|
193
|
+
this.getList = (input, config) => this.restService.request({
|
|
194
|
+
method: 'GET',
|
|
195
|
+
url: '/api/cms-admin/sections',
|
|
196
|
+
params: { siteId: input.siteId, filter: input.filter, isActive: input.isActive, sorting: input.sorting, skipCount: input.skipCount, maxResultCount: input.maxResultCount },
|
|
197
|
+
}, { apiName: this.apiName, ...config });
|
|
198
|
+
this.nameExists = (input, config) => this.restService.request({
|
|
199
|
+
method: 'GET',
|
|
200
|
+
url: '/api/cms-admin/sections/name-exists',
|
|
201
|
+
params: { siteId: input.siteId, name: input.name },
|
|
202
|
+
}, { apiName: this.apiName, ...config });
|
|
203
|
+
this.routeExists = (input, config) => this.restService.request({
|
|
204
|
+
method: 'GET',
|
|
205
|
+
url: '/api/cms-admin/sections/route-exists',
|
|
206
|
+
params: { siteId: input.siteId, route: input.route },
|
|
207
|
+
}, { apiName: this.apiName, ...config });
|
|
208
|
+
this.update = (id, input, config) => this.restService.request({
|
|
209
|
+
method: 'PUT',
|
|
210
|
+
url: `/api/cms-admin/sections/${id}`,
|
|
211
|
+
body: input,
|
|
212
|
+
}, { apiName: this.apiName, ...config });
|
|
213
|
+
}
|
|
214
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: SectionAdminService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
215
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: SectionAdminService, providedIn: 'root' }); }
|
|
277
216
|
}
|
|
278
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
217
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: SectionAdminService, decorators: [{
|
|
279
218
|
type: Injectable,
|
|
280
219
|
args: [{
|
|
281
220
|
providedIn: 'root',
|
|
282
221
|
}]
|
|
283
|
-
}], ctorParameters:
|
|
222
|
+
}], ctorParameters: () => [{ type: i1.RestService }] });
|
|
284
223
|
|
|
285
|
-
var
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
});
|
|
224
|
+
var EntryStatus;
|
|
225
|
+
(function (EntryStatus) {
|
|
226
|
+
EntryStatus[EntryStatus["Draft"] = 0] = "Draft";
|
|
227
|
+
EntryStatus[EntryStatus["Published"] = 1] = "Published";
|
|
228
|
+
})(EntryStatus || (EntryStatus = {}));
|
|
229
|
+
const entryStatusOptions = mapEnumToOptions(EntryStatus);
|
|
230
|
+
|
|
231
|
+
var ECmsComponent;
|
|
232
|
+
(function (ECmsComponent) {
|
|
233
|
+
ECmsComponent["Entries"] = "Cms.Entries";
|
|
234
|
+
ECmsComponent["Entries_Create"] = "Cms.Entries.Create";
|
|
235
|
+
ECmsComponent["Entries_Edit"] = "Cms.Entries.Edit";
|
|
236
|
+
ECmsComponent["Fields"] = "Cms.Fields";
|
|
237
|
+
ECmsComponent["FieldsCreate"] = "Cms.Fields.Create";
|
|
238
|
+
ECmsComponent["FieldsEdit"] = "Cms.Fields.Edit";
|
|
239
|
+
ECmsComponent["Sites"] = "Cms.Sites";
|
|
240
|
+
ECmsComponent["Sections"] = "Cms.Sections";
|
|
241
|
+
ECmsComponent["SectionsCreateOrEdit"] = "Cms.Sections.Create.Or.Edit";
|
|
242
|
+
})(ECmsComponent || (ECmsComponent = {}));
|
|
243
|
+
|
|
244
|
+
class UpdateListService {
|
|
245
|
+
constructor() {
|
|
246
|
+
this.updateListEvent = new EventEmitter();
|
|
247
|
+
}
|
|
248
|
+
updateList() {
|
|
249
|
+
this.updateListEvent.emit();
|
|
250
|
+
}
|
|
251
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: UpdateListService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
252
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: UpdateListService, providedIn: 'root' }); }
|
|
253
|
+
}
|
|
254
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: UpdateListService, decorators: [{
|
|
255
|
+
type: Injectable,
|
|
256
|
+
args: [{
|
|
257
|
+
providedIn: 'root'
|
|
258
|
+
}]
|
|
259
|
+
}], ctorParameters: () => [] });
|
|
290
260
|
|
|
291
261
|
class EntriesComponent {
|
|
292
|
-
_EntryAdminService;
|
|
293
|
-
_SiteAdminService;
|
|
294
|
-
_SectionAdminService;
|
|
295
|
-
toaster;
|
|
296
|
-
confirmation;
|
|
297
|
-
configState;
|
|
298
|
-
router;
|
|
299
|
-
_LocalizationService;
|
|
300
262
|
constructor(_EntryAdminService, _SiteAdminService, _SectionAdminService, toaster, confirmation, configState, router, _LocalizationService) {
|
|
301
263
|
this._EntryAdminService = _EntryAdminService;
|
|
302
264
|
this._SiteAdminService = _SiteAdminService;
|
|
@@ -306,28 +268,41 @@ class EntriesComponent {
|
|
|
306
268
|
this.configState = configState;
|
|
307
269
|
this.router = router;
|
|
308
270
|
this._LocalizationService = _LocalizationService;
|
|
271
|
+
this.fb = inject(FormBuilder);
|
|
272
|
+
this._UpdateListService = inject(UpdateListService);
|
|
273
|
+
this.list = inject(ListService);
|
|
274
|
+
/**站点列表 */
|
|
275
|
+
this.siteList = [];
|
|
276
|
+
/**选择的站点id */
|
|
277
|
+
this.siteId = '';
|
|
278
|
+
/**站点下的版块 */
|
|
279
|
+
this.SiteOfSectionList = [];
|
|
280
|
+
/**版块下的语言列表 */
|
|
281
|
+
this.sectionLanguagesList = [];
|
|
282
|
+
/**版块下的条目类型列表 */
|
|
283
|
+
this.entryTypeList = [];
|
|
284
|
+
/**状态编码 */
|
|
285
|
+
this._entryStatusOptions = entryStatusOptions;
|
|
286
|
+
/**列表相关 */
|
|
287
|
+
this.ColumnMode = ColumnMode;
|
|
288
|
+
this.data = {
|
|
289
|
+
items: [],
|
|
290
|
+
totalCount: 0,
|
|
291
|
+
};
|
|
292
|
+
this.filters = {};
|
|
293
|
+
this.filtersForm = this.fb.group({
|
|
294
|
+
siteId: [''],
|
|
295
|
+
sectionId: [''],
|
|
296
|
+
culture: [''],
|
|
297
|
+
filter: [''],
|
|
298
|
+
});
|
|
309
299
|
}
|
|
310
|
-
fb = inject(FormBuilder);
|
|
311
|
-
_UpdateListService = inject(UpdateListService);
|
|
312
|
-
list = inject(ListService);
|
|
313
300
|
ngOnInit() {
|
|
314
301
|
this.getPageDate();
|
|
315
302
|
this._UpdateListService.updateListEvent.subscribe(() => {
|
|
316
303
|
this.list.get();
|
|
317
304
|
});
|
|
318
305
|
}
|
|
319
|
-
/**站点列表 */
|
|
320
|
-
siteList = [];
|
|
321
|
-
/**选择的站点id */
|
|
322
|
-
siteId = '';
|
|
323
|
-
/**站点下的版块 */
|
|
324
|
-
SiteOfSectionList = [];
|
|
325
|
-
/**版块下的语言列表 */
|
|
326
|
-
sectionLanguagesList = [];
|
|
327
|
-
/**版块下的条目类型列表 */
|
|
328
|
-
entryTypeList = [];
|
|
329
|
-
/**状态编码 */
|
|
330
|
-
_entryStatusOptions = entryStatusOptions;
|
|
331
306
|
/**获取页面数据 */
|
|
332
307
|
async getPageDate() {
|
|
333
308
|
await this.getsiteList();
|
|
@@ -385,8 +360,6 @@ class EntriesComponent {
|
|
|
385
360
|
/**获取版块下的语言列表 */
|
|
386
361
|
getSectionLanguagesList() {
|
|
387
362
|
return new Promise((resolve, rejects) => {
|
|
388
|
-
// 板块列表 */
|
|
389
|
-
let SiteOfSectionList = this.SiteOfSectionList;
|
|
390
363
|
//获取所有语言 */
|
|
391
364
|
let languages = this.configState.getDeep('localization.languages');
|
|
392
365
|
//当前选择的板块id
|
|
@@ -416,19 +389,6 @@ class EntriesComponent {
|
|
|
416
389
|
queryParams: { cultureName: this.filters.culture, sectionId: this.filters.sectionId, entryTypeId: this.entryTypeList[0].id }
|
|
417
390
|
});
|
|
418
391
|
}
|
|
419
|
-
/**列表相关 */
|
|
420
|
-
ColumnMode = ColumnMode;
|
|
421
|
-
data = {
|
|
422
|
-
items: [],
|
|
423
|
-
totalCount: 0,
|
|
424
|
-
};
|
|
425
|
-
filters = {};
|
|
426
|
-
filtersForm = this.fb.group({
|
|
427
|
-
siteId: [''],
|
|
428
|
-
sectionId: [''],
|
|
429
|
-
culture: [''],
|
|
430
|
-
filter: [''],
|
|
431
|
-
});
|
|
432
392
|
hookToQuery() {
|
|
433
393
|
const getData = (query) => this._EntryAdminService.getList({
|
|
434
394
|
...query,
|
|
@@ -451,8 +411,8 @@ class EntriesComponent {
|
|
|
451
411
|
}
|
|
452
412
|
});
|
|
453
413
|
}
|
|
454
|
-
static
|
|
455
|
-
static
|
|
414
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: EntriesComponent, deps: [{ token: EntryAdminService }, { token: SiteAdminService }, { token: SectionAdminService }, { token: i3.ToasterService }, { token: i3.ConfirmationService }, { token: i1.ConfigStateService }, { token: i3$1.Router }, { token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
415
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.9", type: EntriesComponent, selector: "cms-entries", providers: [
|
|
456
416
|
ListService,
|
|
457
417
|
// Provide this token if you want a different debounce time.
|
|
458
418
|
// Default is 300. Cannot be 0. Any value below 100 is not recommended.
|
|
@@ -461,9 +421,9 @@ class EntriesComponent {
|
|
|
461
421
|
provide: EXTENSIONS_IDENTIFIER,
|
|
462
422
|
useValue: ECmsComponent.Entries,
|
|
463
423
|
},
|
|
464
|
-
], ngImport: i0, template: "<abp-page [title]=\"'Cms::Entries' | abpLocalization\" [toolbar]=\"true\">\r\n <abp-page-toolbar-container *ngIf=\"entryTypeList.length < 1\" class=\"col \"></abp-page-toolbar-container>\r\n <abp-page-toolbar-container *ngIf=\"entryTypeList.length > 1\" class=\"col \">\r\n <div class=\"row justify-content-end mx-0 gap-2\" *abpPermission=\"'CmsAdmin.Entry.Create'\">\r\n <div class=\"col-auto px-0 pt-0\">\r\n <div ngbDropdown class=\"d-inline-block\">\r\n <button type=\"button\" class=\"btn btn-primary btn-sm ms-2\" id=\"dropdownBasic1\" ngbDropdownToggle>\r\n <i class=\"fa fa-plus pe-1\" aria-hidden=\"true\"></i>{{'Cms::New' | abpLocalization}}\r\n </button>\r\n <div ngbDropdownMenu aria-labelledby=\"dropdownBasic1\">\r\n <ng-container *ngFor=\"let item of entryTypeList\">\r\n <button ngbDropdownItem [routerLink]=\"['/cms/admin/entries/create']\"\r\n [queryParams]=\"{cultureName: filters.culture,sectionId:filters.sectionId,entryTypeId:item.id}\">{{item.displayName}}</button>\r\n </ng-container>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </abp-page-toolbar-container>\r\n <div id=\"sites-page\" class=\"sites-page\">\r\n <div class=\"card\">\r\n <div class=\"card-body px-2 py-sm-2 border-bottom\">\r\n <div class=\"input-group\" [formGroup]=\"filtersForm\">\r\n <select class=\"form-select col-auto\" formControlName=\"siteId\" (change)=\"siteIdChange()\">\r\n <ng-container *ngFor=\"let item of siteList\">\r\n <option [value]=\"item.id\">{{item.displayName}}</option>\r\n </ng-container>\r\n </select>\r\n <select class=\"form-select col-auto\" formControlName=\"sectionId\" (change)=\"sectionIdChange()\">\r\n <ng-container *ngFor=\"let item of SiteOfSectionList\">\r\n <option [value]=\"item.id\">{{item.displayName}}</option>\r\n </ng-container>\r\n </select>\r\n <select class=\"form-select col-auto\" formControlName=\"culture\" (change)=\"cultureChange()\">\r\n <ng-container *ngFor=\"let item of sectionLanguagesList\">\r\n <option [value]=\"item.cultureName\">{{item.displayName}}</option>\r\n </ng-container>\r\n </select>\r\n <input type=\"text\" class=\"form-control\" formControlName=\"filter\"\r\n [placeholder]=\"'AbpUi::Search' | abpLocalization\" />\r\n <button class=\"btn btn-primary px-3\" type=\"button\" id=\"button-addon2\" (click)=\"resetData()\">\r\n <i class=\"fa fa-search\"></i>\r\n </button>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"card mb-0\">\r\n\r\n <div class=\"card-body p-0\">\r\n <div class=\"table-responsive table-fixed-header\">\r\n <ngx-datatable class=\"material container-height\" [rows]=\"data.items\" [list]=\"list\"\r\n [columnMode]=\"'force'\" [headerHeight]=\"50\" [footerHeight]=\"50\" rowHeight=\"auto\"\r\n [scrollbarV]=\"true\" [virtualization]=\"false\" [externalPaging]=\"true\"\r\n [count]=\"data.totalCount\">\r\n <ngx-datatable-column [name]=\"'Cms::EntryType' | abpLocalization\" prop=\"entryTypeId\">\r\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\r\n <ng-container *ngFor=\"let item of entryTypeList\">\r\n <ng-container *ngIf=\"item.id === value\">{{item.displayName}}</ng-container>\r\n </ng-container>\r\n </ng-template>\r\n </ngx-datatable-column>\r\n <ngx-datatable-column [name]=\"'Cms::Title' | abpLocalization\" prop=\"title\">\r\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\r\n {{ value }}\r\n </ng-template>\r\n </ngx-datatable-column>\r\n <ngx-datatable-column [name]=\"'Cms::Slug' | abpLocalization\" prop=\"slug\">\r\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\r\n {{ value }}\r\n </ng-template>\r\n </ngx-datatable-column>\r\n <ngx-datatable-column [name]=\"'Cms::Status' | abpLocalization\" prop=\"status\">\r\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\r\n <ng-container *ngFor=\"let item of _entryStatusOptions\">\r\n <ng-container *ngIf=\"item.value=== value\">{{ 'Cms::Enum:EntryStatus:'+item.key |\r\n abpLocalization }}</ng-container>\r\n </ng-container>\r\n </ng-template>\r\n </ngx-datatable-column>\r\n <ngx-datatable-column [name]=\"'Cms::PublishTime' | abpLocalization\" prop=\"publishTime\">\r\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\r\n {{value | date: 'YYYY/MM/dd HH:m:s' }}\r\n </ng-template>\r\n </ngx-datatable-column>\r\n <ngx-datatable-column [sortable]=\"false\">\r\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\r\n <div ngbDropdown container=\"body\">\r\n <button type=\"button\" class=\"btn btn-outline-primary btn-sm\" ngbDropdownToggle>\r\n {{'AbpUi::Actions' | abpLocalization}}\r\n </button>\r\n <div ngbDropdownMenu>\r\n <button ngbDropdownItem\r\n routerLink=\"/cms/admin/entries/{{row.id}}/edit\">{{'AbpUi::Edit' |\r\n abpLocalization}}</button>\r\n <button ngbDropdownItem (click)=\"deletefield(row)\">{{'AbpUi::Delete' |\r\n abpLocalization}}</button>\r\n </div>\r\n </div>\r\n </ng-template>\r\n </ngx-datatable-column>\r\n </ngx-datatable>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</abp-page>", styles: ["::ng-deep .sites-page .dignite_page{background:transparent}::ng-deep .sites-page .list-group-flush>.list-group-item:first-child{border-top-width:var(--bs-list-group-border-width)}::ng-deep .sites-page .card-header input{flex:2 1 auto}::ng-deep .sites-page .card-header .form-select{padding:.475rem 3.75rem .475rem 1.25rem}::ng-deep .sites-page .container-height{height:calc(100vh - 220px)}::ng-deep .sites-page .morentr{border:2px solid transparent}::ng-deep .sites-page .borderdrag{border:2px solid var(--ck-color-selector-column-resizer-hover)!important}::ng-deep .sites-page .borderdragtd{background-color:var(--ck-color-selector-column-resizer-hover)!important}::ng-deep .sites-page .testtr{border-color:transparent}::ng-deep .sites-page .testtr td{padding:2px}::ng-deep .sites-page .testtr:hover{background-color:transparent}.cdk-drag-preview{display:table;box-sizing:border-box;border-radius:4px;box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.cdk-drag-placeholder{opacity:0}.cdk-drag-animating{transition:transform .25s cubic-bezier(0,0,.2,1)}.example-box:last-child{border:none}.example-list.cdk-drop-list-dragging .example-box:not(.cdk-drag-placeholder){transition:transform .25s cubic-bezier(0,0,.2,1)}::ng-deep .sites-modal-form .form-control{padding:.4rem 1.25rem}\n"], dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i1$1.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i1$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1$1.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: i3$1.RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }, { kind: "directive", type: i1.PermissionDirective, selector: "[abpPermission]", inputs: ["abpPermission", "abpPermissionRunChangeDetection"] }, { kind: "component", type: i7.DatatableComponent, selector: "ngx-datatable", inputs: ["targetMarkerTemplate", "rows", "groupRowsBy", "groupedRows", "columns", "selected", "scrollbarV", "scrollbarH", "rowHeight", "columnMode", "headerHeight", "footerHeight", "externalPaging", "externalSorting", "limit", "count", "offset", "loadingIndicator", "selectionType", "reorderable", "swapColumns", "sortType", "sorts", "cssClasses", "messages", "rowClass", "selectCheck", "displayCheck", "groupExpansionDefault", "trackByProp", "selectAllRowsOnPage", "virtualization", "treeFromRelation", "treeToRelation", "summaryRow", "summaryHeight", "summaryPosition", "rowIdentity"], outputs: ["scroll", "activate", "select", "sort", "page", "reorder", "resize", "tableContextmenu", "treeAction"] }, { kind: "directive", type: i7.DataTableColumnDirective, selector: "ngx-datatable-column", inputs: ["name", "prop", "frozenLeft", "frozenRight", "flexGrow", "resizeable", "comparator", "pipe", "sortable", "draggable", "canAutoResize", "minWidth", "width", "maxWidth", "checkboxable", "headerCheckboxable", "headerClass", "cellClass", "isTreeColumn", "treeLevelIndent", "summaryFunc", "summaryTemplate", "cellTemplate", "headerTemplate", "treeToggleTemplate"] }, { kind: "directive", type: i7.DataTableColumnCellDirective, selector: "[ngx-datatable-cell-template]" }, { kind: "directive", type: i7$1.ValidationGroupDirective, selector: "[formGroup],[formGroupName]", exportAs: ["validationGroup"] }, { kind: "directive", type: i7$1.ValidationDirective, selector: "[formControl],[formControlName]", exportAs: ["validationDirective"] }, { kind: "directive", type: i3.NgxDatatableListDirective, selector: "ngx-datatable[list]", inputs: ["list"], exportAs: ["ngxDatatableList"] }, { kind: "directive", type: i10.NgbDropdown, selector: "[ngbDropdown]", inputs: ["autoClose", "dropdownClass", "open", "placement", "popperOptions", "container", "display"], outputs: ["openChange"], exportAs: ["ngbDropdown"] }, { kind: "directive", type: i10.NgbDropdownToggle, selector: "[ngbDropdownToggle]" }, { kind: "directive", type: i10.NgbDropdownMenu, selector: "[ngbDropdownMenu]" }, { kind: "directive", type: i10.NgbDropdownItem, selector: "[ngbDropdownItem]", inputs: ["disabled"] }, { kind: "component", type: i9.PageComponent, selector: "abp-page", inputs: ["title", "toolbar", "breadcrumb"] }, { kind: "component", type: i9.PageToolbarContainerComponent, selector: "abp-page-toolbar-container" }, { kind: "pipe", type: i2.DatePipe, name: "date" }, { kind: "pipe", type: i1.LocalizationPipe, name: "abpLocalization" }] });
|
|
424
|
+
], ngImport: i0, template: "<abp-page [title]=\"'Cms::Entries' | abpLocalization\" [toolbar]=\"true\">\r\n <abp-page-toolbar-container *ngIf=\"entryTypeList.length < 1\" class=\"col \"></abp-page-toolbar-container>\r\n <abp-page-toolbar-container *ngIf=\"entryTypeList.length > 1\" class=\"col \">\r\n <div class=\"row justify-content-end mx-0 gap-2\" *abpPermission=\"'CmsAdmin.Entry.Create'\">\r\n <div class=\"col-auto px-0 pt-0\">\r\n <div ngbDropdown class=\"d-inline-block\">\r\n <button type=\"button\" class=\"btn btn-primary btn-sm ms-2\" id=\"dropdownBasic1\" ngbDropdownToggle>\r\n <i class=\"fa fa-plus pe-1\" aria-hidden=\"true\"></i>{{'Cms::New' | abpLocalization}}\r\n </button>\r\n <div ngbDropdownMenu aria-labelledby=\"dropdownBasic1\">\r\n <ng-container *ngFor=\"let item of entryTypeList\">\r\n <button ngbDropdownItem [routerLink]=\"['/cms/admin/entries/create']\"\r\n [queryParams]=\"{cultureName: filters.culture,sectionId:filters.sectionId,entryTypeId:item.id}\">{{item.displayName}}</button>\r\n </ng-container>\r\n </div>\r\n </div> \r\n </div>\r\n </div>\r\n </abp-page-toolbar-container>\r\n <div id=\"sites-page\" class=\"sites-page\">\r\n <div class=\"card\">\r\n <div class=\"card-body px-2 py-sm-2 border-bottom\">\r\n <div class=\"input-group\" [formGroup]=\"filtersForm\">\r\n <select class=\"form-select col-auto\" formControlName=\"siteId\" (change)=\"siteIdChange()\">\r\n <ng-container *ngFor=\"let item of siteList\">\r\n <option [value]=\"item.id\">{{item.displayName}}</option>\r\n </ng-container>\r\n </select> \r\n <select class=\"form-select col-auto\" formControlName=\"sectionId\" (change)=\"sectionIdChange()\">\r\n <ng-container *ngFor=\"let item of SiteOfSectionList\">\r\n <option [value]=\"item.id\">{{item.displayName}}</option>\r\n </ng-container>\r\n </select> \r\n <select class=\"form-select col-auto\" formControlName=\"culture\" (change)=\"cultureChange()\">\r\n <ng-container *ngFor=\"let item of sectionLanguagesList\">\r\n <option [value]=\"item.cultureName\">{{item.displayName}}</option>\r\n </ng-container>\r\n </select>\r\n <input type=\"text\" class=\"form-control\" formControlName=\"filter\"\r\n [placeholder]=\"'AbpUi::Search' | abpLocalization\" />\r\n <button class=\"btn btn-primary px-3\" type=\"button\" id=\"button-addon2\" (click)=\"resetData()\">\r\n <i class=\"fa fa-search\"></i>\r\n </button>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"card mb-0\">\r\n <div class=\"card-body p-0\">\r\n <div class=\"table-responsive table-fixed-header\">\r\n <ngx-datatable class=\"material container-height\" [rows]=\"data.items\" [list]=\"list\"\r\n [columnMode]=\"'force'\" [headerHeight]=\"50\" [footerHeight]=\"50\" rowHeight=\"auto\"\r\n [scrollbarV]=\"true\" [virtualization]=\"false\" [externalPaging]=\"true\"\r\n [count]=\"data.totalCount\">\r\n <ngx-datatable-column [name]=\"'Cms::EntryType' | abpLocalization\" prop=\"entryTypeId\">\r\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\r\n <ng-container *ngFor=\"let item of entryTypeList\">\r\n <ng-container *ngIf=\"item.id === value\">{{item.displayName}}</ng-container>\r\n </ng-container>\r\n </ng-template>\r\n </ngx-datatable-column>\r\n <ngx-datatable-column [name]=\"'Cms::Title' | abpLocalization\" prop=\"title\">\r\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\r\n {{ value }}\r\n </ng-template>\r\n </ngx-datatable-column>\r\n <ngx-datatable-column [name]=\"'Cms::Slug' | abpLocalization\" prop=\"slug\">\r\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\r\n {{ value }}\r\n </ng-template>\r\n </ngx-datatable-column>\r\n <ngx-datatable-column [name]=\"'Cms::Status' | abpLocalization\" prop=\"status\">\r\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\r\n <ng-container *ngFor=\"let item of _entryStatusOptions\">\r\n <ng-container *ngIf=\"item.value=== value\">{{ 'Cms::Enum:EntryStatus:'+item.key |\r\n abpLocalization }}</ng-container>\r\n </ng-container>\r\n </ng-template>\r\n </ngx-datatable-column>\r\n <ngx-datatable-column [name]=\"'Cms::PublishTime' | abpLocalization\" prop=\"publishTime\">\r\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\r\n {{value | date: 'YYYY/MM/dd HH:mm:s' }}\r\n </ng-template>\r\n </ngx-datatable-column>\r\n <ngx-datatable-column [sortable]=\"false\">\r\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\r\n <div ngbDropdown container=\"body\">\r\n <button type=\"button\" class=\"btn btn-outline-primary btn-sm\" ngbDropdownToggle>\r\n {{'AbpUi::Actions' | abpLocalization}}\r\n </button>\r\n <div ngbDropdownMenu>\r\n <button ngbDropdownItem\r\n routerLink=\"/cms/admin/entries/{{row.id}}/edit\">{{'AbpUi::Edit' |\r\n abpLocalization}}</button>\r\n <button ngbDropdownItem (click)=\"deletefield(row)\">{{'AbpUi::Delete' |\r\n abpLocalization}}</button>\r\n </div>\r\n </div>\r\n </ng-template>\r\n </ngx-datatable-column>\r\n </ngx-datatable>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</abp-page>", styles: ["::ng-deep .sites-page .dignite_page{background:transparent}::ng-deep .sites-page .list-group-flush>.list-group-item:first-child{border-top-width:var(--bs-list-group-border-width)}::ng-deep .sites-page .card-header input{flex:2 1 auto}::ng-deep .sites-page .card-header .form-select{padding:.475rem 3.75rem .475rem 1.25rem}::ng-deep .sites-page .container-height{height:calc(100vh - 220px)}::ng-deep .sites-page .morentr{border:2px solid transparent}::ng-deep .sites-page .borderdrag{border:2px solid var(--ck-color-selector-column-resizer-hover)!important}::ng-deep .sites-page .borderdragtd{background-color:var(--ck-color-selector-column-resizer-hover)!important}::ng-deep .sites-page .testtr{border-color:transparent}::ng-deep .sites-page .testtr td{padding:2px}::ng-deep .sites-page .testtr:hover{background-color:transparent}.cdk-drag-preview{display:table;box-sizing:border-box;border-radius:4px;box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.cdk-drag-placeholder{opacity:0}.cdk-drag-animating{transition:transform .25s cubic-bezier(0,0,.2,1)}.example-box:last-child{border:0}.example-list.cdk-drop-list-dragging .example-box:not(.cdk-drag-placeholder){transition:transform .25s cubic-bezier(0,0,.2,1)}::ng-deep .sites-modal-form .form-control{padding:.4rem 1.25rem}\n"], dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i1$1.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i1$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1$1.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: i3$1.RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }, { kind: "directive", type: i1.PermissionDirective, selector: "[abpPermission]", inputs: ["abpPermission", "abpPermissionRunChangeDetection"] }, { kind: "component", type: i7.DatatableComponent, selector: "ngx-datatable", inputs: ["targetMarkerTemplate", "rows", "groupRowsBy", "groupedRows", "columns", "selected", "scrollbarV", "scrollbarH", "rowHeight", "columnMode", "headerHeight", "footerHeight", "externalPaging", "externalSorting", "limit", "count", "offset", "loadingIndicator", "selectionType", "reorderable", "swapColumns", "sortType", "sorts", "cssClasses", "messages", "rowClass", "selectCheck", "displayCheck", "groupExpansionDefault", "trackByProp", "selectAllRowsOnPage", "virtualization", "treeFromRelation", "treeToRelation", "summaryRow", "summaryHeight", "summaryPosition", "rowIdentity"], outputs: ["scroll", "activate", "select", "sort", "page", "reorder", "resize", "tableContextmenu", "treeAction"] }, { kind: "directive", type: i7.DataTableColumnDirective, selector: "ngx-datatable-column", inputs: ["name", "prop", "frozenLeft", "frozenRight", "flexGrow", "resizeable", "comparator", "pipe", "sortable", "draggable", "canAutoResize", "minWidth", "width", "maxWidth", "checkboxable", "headerCheckboxable", "headerClass", "cellClass", "isTreeColumn", "treeLevelIndent", "summaryFunc", "summaryTemplate", "cellTemplate", "headerTemplate", "treeToggleTemplate"] }, { kind: "directive", type: i7.DataTableColumnCellDirective, selector: "[ngx-datatable-cell-template]" }, { kind: "directive", type: i7$1.ValidationGroupDirective, selector: "[formGroup],[formGroupName]", exportAs: ["validationGroup"] }, { kind: "directive", type: i7$1.ValidationDirective, selector: "[formControl],[formControlName]", exportAs: ["validationDirective"] }, { kind: "directive", type: i3.NgxDatatableListDirective, selector: "ngx-datatable[list]", inputs: ["list"], exportAs: ["ngxDatatableList"] }, { kind: "directive", type: i10.NgbDropdown, selector: "[ngbDropdown]", inputs: ["autoClose", "dropdownClass", "open", "placement", "popperOptions", "container", "display"], outputs: ["openChange"], exportAs: ["ngbDropdown"] }, { kind: "directive", type: i10.NgbDropdownToggle, selector: "[ngbDropdownToggle]" }, { kind: "directive", type: i10.NgbDropdownMenu, selector: "[ngbDropdownMenu]" }, { kind: "directive", type: i10.NgbDropdownItem, selector: "[ngbDropdownItem]", inputs: ["tabindex", "disabled"] }, { kind: "directive", type: i10.NgbDropdownButtonItem, selector: "button[ngbDropdownItem]" }, { kind: "component", type: i12.PageComponent, selector: "abp-page", inputs: ["title", "toolbar", "breadcrumb"] }, { kind: "component", type: i12.PageToolbarContainerComponent, selector: "abp-page-toolbar-container" }, { kind: "pipe", type: i2.DatePipe, name: "date" }, { kind: "pipe", type: i1.LocalizationPipe, name: "abpLocalization" }] }); }
|
|
465
425
|
}
|
|
466
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
426
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: EntriesComponent, decorators: [{
|
|
467
427
|
type: Component,
|
|
468
428
|
args: [{ selector: 'cms-entries', providers: [
|
|
469
429
|
ListService,
|
|
@@ -474,30 +434,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
474
434
|
provide: EXTENSIONS_IDENTIFIER,
|
|
475
435
|
useValue: ECmsComponent.Entries,
|
|
476
436
|
},
|
|
477
|
-
], template: "<abp-page [title]=\"'Cms::Entries' | abpLocalization\" [toolbar]=\"true\">\r\n <abp-page-toolbar-container *ngIf=\"entryTypeList.length < 1\" class=\"col \"></abp-page-toolbar-container>\r\n <abp-page-toolbar-container *ngIf=\"entryTypeList.length > 1\" class=\"col \">\r\n <div class=\"row justify-content-end mx-0 gap-2\" *abpPermission=\"'CmsAdmin.Entry.Create'\">\r\n <div class=\"col-auto px-0 pt-0\">\r\n <div ngbDropdown class=\"d-inline-block\">\r\n <button type=\"button\" class=\"btn btn-primary btn-sm ms-2\" id=\"dropdownBasic1\" ngbDropdownToggle>\r\n <i class=\"fa fa-plus pe-1\" aria-hidden=\"true\"></i>{{'Cms::New' | abpLocalization}}\r\n </button>\r\n <div ngbDropdownMenu aria-labelledby=\"dropdownBasic1\">\r\n <ng-container *ngFor=\"let item of entryTypeList\">\r\n <button ngbDropdownItem [routerLink]=\"['/cms/admin/entries/create']\"\r\n [queryParams]=\"{cultureName: filters.culture,sectionId:filters.sectionId,entryTypeId:item.id}\">{{item.displayName}}</button>\r\n </ng-container>\r\n </div>\r\n </div
|
|
478
|
-
}], ctorParameters:
|
|
437
|
+
], template: "<abp-page [title]=\"'Cms::Entries' | abpLocalization\" [toolbar]=\"true\">\r\n <abp-page-toolbar-container *ngIf=\"entryTypeList.length < 1\" class=\"col \"></abp-page-toolbar-container>\r\n <abp-page-toolbar-container *ngIf=\"entryTypeList.length > 1\" class=\"col \">\r\n <div class=\"row justify-content-end mx-0 gap-2\" *abpPermission=\"'CmsAdmin.Entry.Create'\">\r\n <div class=\"col-auto px-0 pt-0\">\r\n <div ngbDropdown class=\"d-inline-block\">\r\n <button type=\"button\" class=\"btn btn-primary btn-sm ms-2\" id=\"dropdownBasic1\" ngbDropdownToggle>\r\n <i class=\"fa fa-plus pe-1\" aria-hidden=\"true\"></i>{{'Cms::New' | abpLocalization}}\r\n </button>\r\n <div ngbDropdownMenu aria-labelledby=\"dropdownBasic1\">\r\n <ng-container *ngFor=\"let item of entryTypeList\">\r\n <button ngbDropdownItem [routerLink]=\"['/cms/admin/entries/create']\"\r\n [queryParams]=\"{cultureName: filters.culture,sectionId:filters.sectionId,entryTypeId:item.id}\">{{item.displayName}}</button>\r\n </ng-container>\r\n </div>\r\n </div> \r\n </div>\r\n </div>\r\n </abp-page-toolbar-container>\r\n <div id=\"sites-page\" class=\"sites-page\">\r\n <div class=\"card\">\r\n <div class=\"card-body px-2 py-sm-2 border-bottom\">\r\n <div class=\"input-group\" [formGroup]=\"filtersForm\">\r\n <select class=\"form-select col-auto\" formControlName=\"siteId\" (change)=\"siteIdChange()\">\r\n <ng-container *ngFor=\"let item of siteList\">\r\n <option [value]=\"item.id\">{{item.displayName}}</option>\r\n </ng-container>\r\n </select> \r\n <select class=\"form-select col-auto\" formControlName=\"sectionId\" (change)=\"sectionIdChange()\">\r\n <ng-container *ngFor=\"let item of SiteOfSectionList\">\r\n <option [value]=\"item.id\">{{item.displayName}}</option>\r\n </ng-container>\r\n </select> \r\n <select class=\"form-select col-auto\" formControlName=\"culture\" (change)=\"cultureChange()\">\r\n <ng-container *ngFor=\"let item of sectionLanguagesList\">\r\n <option [value]=\"item.cultureName\">{{item.displayName}}</option>\r\n </ng-container>\r\n </select>\r\n <input type=\"text\" class=\"form-control\" formControlName=\"filter\"\r\n [placeholder]=\"'AbpUi::Search' | abpLocalization\" />\r\n <button class=\"btn btn-primary px-3\" type=\"button\" id=\"button-addon2\" (click)=\"resetData()\">\r\n <i class=\"fa fa-search\"></i>\r\n </button>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"card mb-0\">\r\n <div class=\"card-body p-0\">\r\n <div class=\"table-responsive table-fixed-header\">\r\n <ngx-datatable class=\"material container-height\" [rows]=\"data.items\" [list]=\"list\"\r\n [columnMode]=\"'force'\" [headerHeight]=\"50\" [footerHeight]=\"50\" rowHeight=\"auto\"\r\n [scrollbarV]=\"true\" [virtualization]=\"false\" [externalPaging]=\"true\"\r\n [count]=\"data.totalCount\">\r\n <ngx-datatable-column [name]=\"'Cms::EntryType' | abpLocalization\" prop=\"entryTypeId\">\r\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\r\n <ng-container *ngFor=\"let item of entryTypeList\">\r\n <ng-container *ngIf=\"item.id === value\">{{item.displayName}}</ng-container>\r\n </ng-container>\r\n </ng-template>\r\n </ngx-datatable-column>\r\n <ngx-datatable-column [name]=\"'Cms::Title' | abpLocalization\" prop=\"title\">\r\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\r\n {{ value }}\r\n </ng-template>\r\n </ngx-datatable-column>\r\n <ngx-datatable-column [name]=\"'Cms::Slug' | abpLocalization\" prop=\"slug\">\r\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\r\n {{ value }}\r\n </ng-template>\r\n </ngx-datatable-column>\r\n <ngx-datatable-column [name]=\"'Cms::Status' | abpLocalization\" prop=\"status\">\r\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\r\n <ng-container *ngFor=\"let item of _entryStatusOptions\">\r\n <ng-container *ngIf=\"item.value=== value\">{{ 'Cms::Enum:EntryStatus:'+item.key |\r\n abpLocalization }}</ng-container>\r\n </ng-container>\r\n </ng-template>\r\n </ngx-datatable-column>\r\n <ngx-datatable-column [name]=\"'Cms::PublishTime' | abpLocalization\" prop=\"publishTime\">\r\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\r\n {{value | date: 'YYYY/MM/dd HH:mm:s' }}\r\n </ng-template>\r\n </ngx-datatable-column>\r\n <ngx-datatable-column [sortable]=\"false\">\r\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\r\n <div ngbDropdown container=\"body\">\r\n <button type=\"button\" class=\"btn btn-outline-primary btn-sm\" ngbDropdownToggle>\r\n {{'AbpUi::Actions' | abpLocalization}}\r\n </button>\r\n <div ngbDropdownMenu>\r\n <button ngbDropdownItem\r\n routerLink=\"/cms/admin/entries/{{row.id}}/edit\">{{'AbpUi::Edit' |\r\n abpLocalization}}</button>\r\n <button ngbDropdownItem (click)=\"deletefield(row)\">{{'AbpUi::Delete' |\r\n abpLocalization}}</button>\r\n </div>\r\n </div>\r\n </ng-template>\r\n </ngx-datatable-column>\r\n </ngx-datatable>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</abp-page>", styles: ["::ng-deep .sites-page .dignite_page{background:transparent}::ng-deep .sites-page .list-group-flush>.list-group-item:first-child{border-top-width:var(--bs-list-group-border-width)}::ng-deep .sites-page .card-header input{flex:2 1 auto}::ng-deep .sites-page .card-header .form-select{padding:.475rem 3.75rem .475rem 1.25rem}::ng-deep .sites-page .container-height{height:calc(100vh - 220px)}::ng-deep .sites-page .morentr{border:2px solid transparent}::ng-deep .sites-page .borderdrag{border:2px solid var(--ck-color-selector-column-resizer-hover)!important}::ng-deep .sites-page .borderdragtd{background-color:var(--ck-color-selector-column-resizer-hover)!important}::ng-deep .sites-page .testtr{border-color:transparent}::ng-deep .sites-page .testtr td{padding:2px}::ng-deep .sites-page .testtr:hover{background-color:transparent}.cdk-drag-preview{display:table;box-sizing:border-box;border-radius:4px;box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.cdk-drag-placeholder{opacity:0}.cdk-drag-animating{transition:transform .25s cubic-bezier(0,0,.2,1)}.example-box:last-child{border:0}.example-list.cdk-drop-list-dragging .example-box:not(.cdk-drag-placeholder){transition:transform .25s cubic-bezier(0,0,.2,1)}::ng-deep .sites-modal-form .form-control{padding:.4rem 1.25rem}\n"] }]
|
|
438
|
+
}], ctorParameters: () => [{ type: EntryAdminService }, { type: SiteAdminService }, { type: SectionAdminService }, { type: i3.ToasterService }, { type: i3.ConfirmationService }, { type: i1.ConfigStateService }, { type: i3$1.Router }, { type: i1.LocalizationService }] });
|
|
479
439
|
|
|
480
440
|
class CreateOrUpdateEntryInputBase {
|
|
481
|
-
/**语言 */
|
|
482
|
-
culture = ['', [Validators.required]];
|
|
483
|
-
/**条目id */
|
|
484
|
-
entryTypeId = [''];
|
|
485
|
-
/**标题 */
|
|
486
|
-
title = ['', [Validators.required]];
|
|
487
|
-
/**别名 */
|
|
488
|
-
slug = ['', [Validators.required]];
|
|
489
|
-
/**是否是草稿 */
|
|
490
|
-
draft = ['', []];
|
|
491
|
-
/**发布时间 */
|
|
492
|
-
publishTime = ['', [Validators.required]];
|
|
493
|
-
/**上级目录 */
|
|
494
|
-
parentId = [null];
|
|
495
|
-
/**修订说明 */
|
|
496
|
-
versionNotes = [null];
|
|
497
|
-
/**版本 */
|
|
498
|
-
initialVersionId = [null];
|
|
499
|
-
extraProperties = new FormGroup({});
|
|
500
441
|
constructor(data) {
|
|
442
|
+
/**语言 */
|
|
443
|
+
this.culture = ['', [Validators.required]];
|
|
444
|
+
/**条目id */
|
|
445
|
+
this.entryTypeId = [''];
|
|
446
|
+
/**标题 */
|
|
447
|
+
this.title = ['', [Validators.required]];
|
|
448
|
+
/**别名 */
|
|
449
|
+
this.slug = ['', [Validators.required]];
|
|
450
|
+
/**是否是草稿 */
|
|
451
|
+
this.draft = ['', []];
|
|
452
|
+
/**发布时间 */
|
|
453
|
+
this.publishTime = ['', [Validators.required]];
|
|
454
|
+
/**上级目录 */
|
|
455
|
+
this.parentId = [null];
|
|
456
|
+
/**修订说明 */
|
|
457
|
+
this.versionNotes = [null];
|
|
458
|
+
/**版本 */
|
|
459
|
+
this.initialVersionId = [null];
|
|
460
|
+
this.extraProperties = new FormGroup({});
|
|
501
461
|
if (data) {
|
|
502
462
|
for (const key in data) {
|
|
503
463
|
if (data.hasOwnProperty(key)) {
|
|
@@ -509,86 +469,77 @@ class CreateOrUpdateEntryInputBase {
|
|
|
509
469
|
}
|
|
510
470
|
|
|
511
471
|
class FieldGroupAdminService {
|
|
512
|
-
restService;
|
|
513
|
-
apiName = 'CmsAdmin';
|
|
514
|
-
create = (input, config) => this.restService.request({
|
|
515
|
-
method: 'POST',
|
|
516
|
-
url: '/api/cms-admin/field-groups',
|
|
517
|
-
body: input,
|
|
518
|
-
}, { apiName: this.apiName, ...config });
|
|
519
|
-
delete = (id, config) => this.restService.request({
|
|
520
|
-
method: 'DELETE',
|
|
521
|
-
url: `/api/cms-admin/field-groups/${id}`,
|
|
522
|
-
}, { apiName: this.apiName, ...config });
|
|
523
|
-
get = (id, config) => this.restService.request({
|
|
524
|
-
method: 'GET',
|
|
525
|
-
url: `/api/cms-admin/field-groups/${id}`,
|
|
526
|
-
}, { apiName: this.apiName, ...config });
|
|
527
|
-
getList = (input, config) => this.restService.request({
|
|
528
|
-
method: 'GET',
|
|
529
|
-
url: '/api/cms-admin/field-groups',
|
|
530
|
-
params: { input },
|
|
531
|
-
}, { apiName: this.apiName, ...config });
|
|
532
|
-
update = (id, input, config) => this.restService.request({
|
|
533
|
-
method: 'PUT',
|
|
534
|
-
url: `/api/cms-admin/field-groups/${id}`,
|
|
535
|
-
body: input,
|
|
536
|
-
}, { apiName: this.apiName, ...config });
|
|
537
472
|
constructor(restService) {
|
|
538
473
|
this.restService = restService;
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
474
|
+
this.apiName = 'CmsAdmin';
|
|
475
|
+
this.create = (input, config) => this.restService.request({
|
|
476
|
+
method: 'POST',
|
|
477
|
+
url: '/api/cms-admin/field-groups',
|
|
478
|
+
body: input,
|
|
479
|
+
}, { apiName: this.apiName, ...config });
|
|
480
|
+
this.delete = (id, config) => this.restService.request({
|
|
481
|
+
method: 'DELETE',
|
|
482
|
+
url: `/api/cms-admin/field-groups/${id}`,
|
|
483
|
+
}, { apiName: this.apiName, ...config });
|
|
484
|
+
this.get = (id, config) => this.restService.request({
|
|
485
|
+
method: 'GET',
|
|
486
|
+
url: `/api/cms-admin/field-groups/${id}`,
|
|
487
|
+
}, { apiName: this.apiName, ...config });
|
|
488
|
+
this.getList = (input, config) => this.restService.request({
|
|
489
|
+
method: 'GET',
|
|
490
|
+
url: '/api/cms-admin/field-groups',
|
|
491
|
+
params: { input },
|
|
492
|
+
}, { apiName: this.apiName, ...config });
|
|
493
|
+
this.update = (id, input, config) => this.restService.request({
|
|
494
|
+
method: 'PUT',
|
|
495
|
+
url: `/api/cms-admin/field-groups/${id}`,
|
|
496
|
+
body: input,
|
|
497
|
+
}, { apiName: this.apiName, ...config });
|
|
498
|
+
}
|
|
499
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: FieldGroupAdminService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
500
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: FieldGroupAdminService, providedIn: 'root' }); }
|
|
542
501
|
}
|
|
543
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
502
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: FieldGroupAdminService, decorators: [{
|
|
544
503
|
type: Injectable,
|
|
545
504
|
args: [{
|
|
546
505
|
providedIn: 'root',
|
|
547
506
|
}]
|
|
548
|
-
}], ctorParameters:
|
|
507
|
+
}], ctorParameters: () => [{ type: i1.RestService }] });
|
|
549
508
|
|
|
550
509
|
class FormAdminService {
|
|
551
|
-
restService;
|
|
552
|
-
apiName = 'CmsAdmin';
|
|
553
|
-
getFormControls = (config) => this.restService.request({
|
|
554
|
-
method: 'GET',
|
|
555
|
-
url: '/api/cms-admin/dynamic-forms/forms',
|
|
556
|
-
}, { apiName: this.apiName, ...config });
|
|
557
510
|
constructor(restService) {
|
|
558
511
|
this.restService = restService;
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
512
|
+
this.apiName = 'CmsAdmin';
|
|
513
|
+
this.getFormControls = (config) => this.restService.request({
|
|
514
|
+
method: 'GET',
|
|
515
|
+
url: '/api/cms-admin/dynamic-forms/forms',
|
|
516
|
+
}, { apiName: this.apiName, ...config });
|
|
517
|
+
}
|
|
518
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: FormAdminService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
519
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: FormAdminService, providedIn: 'root' }); }
|
|
562
520
|
}
|
|
563
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
521
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: FormAdminService, decorators: [{
|
|
564
522
|
type: Injectable,
|
|
565
523
|
args: [{
|
|
566
524
|
providedIn: 'root',
|
|
567
525
|
}]
|
|
568
|
-
}], ctorParameters:
|
|
569
|
-
|
|
570
|
-
var index$o = /*#__PURE__*/Object.freeze({
|
|
571
|
-
__proto__: null,
|
|
572
|
-
FormAdminService: FormAdminService
|
|
573
|
-
});
|
|
526
|
+
}], ctorParameters: () => [{ type: i1.RestService }] });
|
|
574
527
|
|
|
575
528
|
class FieldAbstractsService {
|
|
576
|
-
_FieldGroupAdminService;
|
|
577
|
-
_FormAdminService;
|
|
578
529
|
constructor(_FieldGroupAdminService, _FormAdminService) {
|
|
579
530
|
this._FieldGroupAdminService = _FieldGroupAdminService;
|
|
580
531
|
this._FormAdminService = _FormAdminService;
|
|
532
|
+
/**字段分组列表 */
|
|
533
|
+
this.fieldGroupList = [];
|
|
534
|
+
/**表单控件类型 */
|
|
535
|
+
this.fromControlList = [];
|
|
581
536
|
}
|
|
582
|
-
/**字段分组列表 */
|
|
583
|
-
fieldGroupList = [];
|
|
584
537
|
/**获取字段分组列表 */
|
|
585
538
|
getfieldGroupList() {
|
|
586
539
|
this._FieldGroupAdminService.getList({}).subscribe(res => {
|
|
587
540
|
this.fieldGroupList = res.items;
|
|
588
541
|
});
|
|
589
542
|
}
|
|
590
|
-
/**表单控件类型 */
|
|
591
|
-
fromControlList = [];
|
|
592
543
|
/**获取表单控件类型 */
|
|
593
544
|
getFromControlList() {
|
|
594
545
|
return new Promise((resolve, reject) => {
|
|
@@ -602,37 +553,35 @@ class FieldAbstractsService {
|
|
|
602
553
|
// return this.fromControlList.filter(el => el.name !== typeName)
|
|
603
554
|
return this.fromControlList;
|
|
604
555
|
}
|
|
605
|
-
static
|
|
606
|
-
static
|
|
556
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: FieldAbstractsService, deps: [{ token: FieldGroupAdminService }, { token: FormAdminService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
557
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: FieldAbstractsService, providedIn: 'root' }); }
|
|
607
558
|
}
|
|
608
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
559
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: FieldAbstractsService, decorators: [{
|
|
609
560
|
type: Injectable,
|
|
610
561
|
args: [{
|
|
611
562
|
providedIn: 'root'
|
|
612
563
|
}]
|
|
613
|
-
}], ctorParameters:
|
|
564
|
+
}], ctorParameters: () => [{ type: FieldGroupAdminService }, { type: FormAdminService }] });
|
|
614
565
|
|
|
615
566
|
class CmsService {
|
|
616
|
-
restService;
|
|
617
|
-
apiName = 'Cms';
|
|
618
567
|
constructor(restService) {
|
|
619
568
|
this.restService = restService;
|
|
569
|
+
this.apiName = 'Cms';
|
|
620
570
|
}
|
|
621
571
|
sample() {
|
|
622
572
|
return this.restService.request({ method: 'GET', url: '/api/Cms/sample' }, { apiName: this.apiName });
|
|
623
573
|
}
|
|
624
|
-
static
|
|
625
|
-
static
|
|
574
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: CmsService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
575
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: CmsService, providedIn: 'root' }); }
|
|
626
576
|
}
|
|
627
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
577
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: CmsService, decorators: [{
|
|
628
578
|
type: Injectable,
|
|
629
579
|
args: [{
|
|
630
580
|
providedIn: 'root',
|
|
631
581
|
}]
|
|
632
|
-
}], ctorParameters:
|
|
582
|
+
}], ctorParameters: () => [{ type: i1.RestService }] });
|
|
633
583
|
|
|
634
584
|
class CmsApiService {
|
|
635
|
-
titleService;
|
|
636
585
|
constructor(titleService) {
|
|
637
586
|
this.titleService = titleService;
|
|
638
587
|
}
|
|
@@ -696,18 +645,20 @@ class CmsApiService {
|
|
|
696
645
|
}
|
|
697
646
|
return result;
|
|
698
647
|
}
|
|
699
|
-
static
|
|
700
|
-
static
|
|
648
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: CmsApiService, deps: [{ token: i1$2.Title }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
649
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: CmsApiService, providedIn: 'root' }); }
|
|
701
650
|
}
|
|
702
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
651
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: CmsApiService, decorators: [{
|
|
703
652
|
type: Injectable,
|
|
704
653
|
args: [{
|
|
705
654
|
providedIn: 'root'
|
|
706
655
|
}]
|
|
707
|
-
}], ctorParameters:
|
|
656
|
+
}], ctorParameters: () => [{ type: i1$2.Title }] });
|
|
708
657
|
|
|
709
658
|
class SimpleReuseStrategy {
|
|
710
|
-
|
|
659
|
+
constructor() {
|
|
660
|
+
this.handlers = {};
|
|
661
|
+
}
|
|
711
662
|
//表示对路由允许复用
|
|
712
663
|
shouldDetach(route) {
|
|
713
664
|
//默认对所有路由复用 可通过给路由配置项增加data: { keep: true }来进行选择性使用,代码如下
|
|
@@ -750,15 +701,6 @@ class SimpleReuseStrategy {
|
|
|
750
701
|
}
|
|
751
702
|
|
|
752
703
|
class CreateOrEditEntriesComponent {
|
|
753
|
-
toaster;
|
|
754
|
-
_location;
|
|
755
|
-
configState;
|
|
756
|
-
_SectionAdminService;
|
|
757
|
-
_EntryAdminService;
|
|
758
|
-
datePipe;
|
|
759
|
-
_LocalizationService;
|
|
760
|
-
router;
|
|
761
|
-
_CmsApiService;
|
|
762
704
|
constructor(toaster, _location, configState, _SectionAdminService, _EntryAdminService, datePipe, _LocalizationService, router, _CmsApiService) {
|
|
763
705
|
this.toaster = toaster;
|
|
764
706
|
this._location = _location;
|
|
@@ -769,43 +711,42 @@ class CreateOrEditEntriesComponent {
|
|
|
769
711
|
this._LocalizationService = _LocalizationService;
|
|
770
712
|
this.router = router;
|
|
771
713
|
this._CmsApiService = _CmsApiService;
|
|
714
|
+
/**语言 */
|
|
715
|
+
this.cultureName = '';
|
|
716
|
+
/**条目id */
|
|
717
|
+
this.entryTypeId = '';
|
|
718
|
+
/**新建版本的版本id,同条目id */
|
|
719
|
+
this.RevisionEntryId = '';
|
|
720
|
+
/**选择的条目项 */
|
|
721
|
+
this.entryTypesItem = '';
|
|
722
|
+
/**版块id */
|
|
723
|
+
this.sectionId = '';
|
|
724
|
+
/**版块详情 */
|
|
725
|
+
this.SectionSelect = '';
|
|
726
|
+
/**语言列表 */
|
|
727
|
+
this.languagesList = [];
|
|
728
|
+
/**条目类型列表-用于选择上级条目 */
|
|
729
|
+
this.entryTypesList = [];
|
|
730
|
+
/**版本列表 */
|
|
731
|
+
this.AllVersionsList = [];
|
|
732
|
+
/**是否是编辑 */
|
|
733
|
+
this.isEdit = false;
|
|
734
|
+
/**来自父组件的传值 */
|
|
735
|
+
this.FromParentQueryParams = '';
|
|
736
|
+
/**指定id的条目信息 */
|
|
737
|
+
this.entrySelect = '';
|
|
738
|
+
this.time = 0;
|
|
772
739
|
}
|
|
773
|
-
/**语言 */
|
|
774
|
-
cultureName = '';
|
|
775
|
-
/**条目id */
|
|
776
|
-
entryTypeId = '';
|
|
777
|
-
/**新建版本的版本id,同条目id */
|
|
778
|
-
RevisionEntryId = '';
|
|
779
|
-
/**选择的条目项 */
|
|
780
|
-
entryTypesItem = '';
|
|
781
|
-
/**版块id */
|
|
782
|
-
sectionId = '';
|
|
783
|
-
/**版块详情 */
|
|
784
|
-
SectionSelect = '';
|
|
785
|
-
/**语言列表 */
|
|
786
|
-
languagesList = [];
|
|
787
|
-
/**条目类型列表-用于选择上级条目 */
|
|
788
|
-
entryTypesList = [];
|
|
789
|
-
/**版本列表 */
|
|
790
|
-
AllVersionsList = [];
|
|
791
|
-
/**是否是编辑 */
|
|
792
|
-
isEdit = false;
|
|
793
|
-
/**来自父组件的传值 */
|
|
794
|
-
FromParentQueryParams = '';
|
|
795
740
|
set ParentQueryParams(v) {
|
|
796
741
|
if (v) {
|
|
797
742
|
this.FromParentQueryParams = v;
|
|
798
743
|
}
|
|
799
744
|
}
|
|
800
|
-
/**表单实体 */
|
|
801
|
-
_entity;
|
|
802
745
|
set entity(v) {
|
|
803
746
|
if (v) {
|
|
804
747
|
this._entity = v;
|
|
805
748
|
}
|
|
806
749
|
}
|
|
807
|
-
/**指定id的条目信息 */
|
|
808
|
-
entrySelect = '';
|
|
809
750
|
set parentEntrySelect(v) {
|
|
810
751
|
if (v) {
|
|
811
752
|
let V_extraProperties = this._CmsApiService.deepClone(this.convertExtraProperties(v.extraProperties));
|
|
@@ -870,9 +811,6 @@ class CreateOrEditEntriesComponent {
|
|
|
870
811
|
await this.getAllVersionsList();
|
|
871
812
|
}
|
|
872
813
|
}
|
|
873
|
-
/**表单控件模板-动态表单配置组件 */
|
|
874
|
-
FormDynamicontrolRef;
|
|
875
|
-
// private _CreateDynamicComponentsService = inject(CreateDynamicComponentsService)
|
|
876
814
|
/**定义自定义异步验证 */
|
|
877
815
|
cultureAsyncValidator_test() {
|
|
878
816
|
return (ctrl) => {
|
|
@@ -906,7 +844,6 @@ class CreateOrEditEntriesComponent {
|
|
|
906
844
|
this.cultureName = source.culture || source.cultureName;
|
|
907
845
|
this.sectionId = source.sectionId;
|
|
908
846
|
}
|
|
909
|
-
time = 0;
|
|
910
847
|
/**定义自定义异步验证 */
|
|
911
848
|
repetitionAsyncValidator() {
|
|
912
849
|
return (ctrl) => {
|
|
@@ -1000,13 +937,13 @@ class CreateOrEditEntriesComponent {
|
|
|
1000
937
|
this.getAllVersionsList();
|
|
1001
938
|
});
|
|
1002
939
|
}
|
|
1003
|
-
static
|
|
1004
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CreateOrEditEntriesComponent, selector: "cms-create-or-edit-entries", inputs: { isEdit: "isEdit", ParentQueryParams: "ParentQueryParams", entity: "entity", parentEntrySelect: "parentEntrySelect" }, viewQueries: [{ propertyName: "FormDynamicontrolRef", predicate: ["FormDynamicontrolRef"], descendants: true, read: ViewContainerRef }], ngImport: i0, template: "<div class=\"create-or-edit-entry-page\" [formGroup]=\"_entity\">\n <div class=\"container \">\n <div class=\"row\">\n <div class=\"col-md-8 \">\n <div class=\"card p-2\">\n <div class=\"mb-2\">\n <label class=\"form-label\" for=\"title\">{{'Cms::Title' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" (blur)=\"setTitleToSlugBlur($event)\"\n formControlName=\"title\">\n </div>\n <template #FormDynamicRef></template>\n <ng-container *ngFor=\"let item of entryTypesItem?.fieldTabs;let i =index\">\n <ng-container *ngFor=\"let el of item.fields;let i1 =index\">\n <ng-container *ngIf=\"el&&_entity\">\n <df-dynamic [entity]=\"_entity\" [fields]=\"el\"\n [selected]=\"entrySelect ? entrySelect.extraProperties[el.field.name] : ''\"\n [parentFiledName]=\"'extraProperties'\" [culture]=\"cultureinput.value\" ></df-dynamic>\n\n\n </ng-container>\n </ng-container>\n </ng-container>\n </div>\n </div>\n <div class=\"col-md-4 \">\n <div class=\"card mb-0 p-2\">\n <div class=\"mb-2\">\n <label class=\"form-label\" for=\"slug\">{{'Cms::Slug' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"slug\">\n <div class=\"text-danger invalid-feedback\" *ngIf=\"sluginput.errors?.repetition\">\n {{sluginput.errors?.repetition}}\n </div>\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\" for=\"culture\">{{'AbpUi::Languages' | abpLocalization}}</label>\n <select class=\"form-select\" formControlName=\"culture\">\n <ng-container *ngFor=\"let item of languagesList;let i =index\">\n <option [value]=\"item.cultureName\">{{item.displayName}}</option>\n </ng-container>\n </select>\n <input type=\"text\" formControlName=\"culture_shadow\"\n style=\"position: absolute;z-index: -1;opacity: 0;\">\n <div class=\"text-danger invalid-feedback\" *ngIf=\"culture_shadowInput.errors?.repetition\">\n {{culture_shadowInput.errors?.repetition}}\n </div>\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\" for=\"parentId\">{{'Cms::ParentEntry' | abpLocalization}}</label>\n <select class=\"form-select\" formControlName=\"parentId\">\n <option value=\"\"></option>\n <ng-container *ngFor=\"let item of entryTypesList;let i =index\">\n <option [value]=\"item.id\">{{item.displayName}}</option>\n </ng-container>\n </select>\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\" for=\"publishTime\">{{'Cms::PublishTime' | abpLocalization}}</label>\n <input type=\"datetime-local\" class=\"form-control\" step=\"1\" formControlName=\"publishTime\">\n </div>\n <div class=\"mb-2\" *ngIf=\"isEdit\">\n <label class=\"form-label\" for=\"publishTime\">{{'Cms::Version' | abpLocalization}}</label>\n <ul class=\"list-group\">\n <ng-container *ngFor=\"let item of AllVersionsList\">\n <li class=\"list-group-item flex-between\">\n <div>\n {{item.initialVersionId?(item.creationTime| date: 'YYYY/MM/dd HH:m:s'):('Cms::InitialVersion' | abpLocalization)}}\n <span class=\"badge text-bg-success ms-1\"\n *ngIf=\"item.isActivatedVersion\">{{'Cms::IsActive' | abpLocalization}}</span>\n <span class=\"badge text-bg-primary ms-1\"\n *ngIf=\"item.id === RevisionEntryId\">{{'Cms::Editing' |\n abpLocalization}}</span>\n </div>\n <div>\n <div ngbDropdown class=\"d-inline-block\">\n <button type=\"button\" class=\"btn btn-link-primary p-2 \"\n style=\"line-height: 0;\" id=\"dropdownBasic1\" ngbDropdownToggle>\n </button>\n <div ngbDropdownMenu aria-labelledby=\"dropdownBasic1\">\n <button ngbDropdownItem type=\"button\" *ngIf=\"!item.isActivatedVersion\"\n (click)=\"ActivatedVersion(item.id)\">\n <i class=\"fas fa-check me-1\"></i>{{'Cms::IsActive' |\n abpLocalization}}\n </button>\n <button ngbDropdownItem type=\"button\"\n routerLink=\"/cms/admin/entries/create\"\n [queryParams]=\"{RevisionEntryId:item.id}\">\n <i class=\"fas fa-plus me-1\"></i>{{'Cms::NewVersion' |\n abpLocalization}}\n </button>\n <button ngbDropdownItem type=\"button\" (click.stop)=\"toEditUrl(item.id)\"\n *ngIf=\"item.id !== RevisionEntryId\">\n <i class=\"fas fa-edit me-1\"></i>{{'AbpUi::Edit' | abpLocalization}}\n </button>\n <button ngbDropdownItem type=\"button\"\n (click.stop)=\"delectVersion(item.id)\"\n *ngIf=\"item.initialVersionId&&!item.isActivatedVersion&&item.id !== RevisionEntryId\">\n <i class=\"fas fa-trash me-1\"></i>{{'AbpUi::Delete' |\n abpLocalization}}\n </button>\n </div>\n </div>\n </div>\n </li>\n </ng-container>\n </ul>\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\" for=\"versionNotes\">{{'Cms::RevisionNotes' | abpLocalization}}</label>\n <textarea class=\"form-control\" formControlName=\"versionNotes\" rows=\"3\"></textarea>\n </div>\n </div>\n </div>\n </div>\n </div>\n</div>", styles: ["::ng-deep .create-or-edit-entry-page .dignite_page{height:calc(100vh - 125px);overflow:auto;background:transparent}::ng-deep .create-or-edit-entry-page .form-control,::ng-deep .create-or-edit-entry-page .form-select{padding:.475rem 1.25rem}::ng-deep .create-or-edit-entry-page .cursor-move{cursor:move}::ng-deep .create-or-edit-entry-page .bordernNavs{border:var(--bs-border-width) solid var(--lpx-border-color);padding-left:inherit;padding-right:inherit}::ng-deep .create-or-edit-entry-page .flex-between{display:flex;align-items:center;justify-content:space-between}\n"], dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i1$1.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i1$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1$1.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: i3$1.RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }, { kind: "directive", type: i1.StopPropagationDirective, selector: "[click.stop]", outputs: ["click.stop"] }, { kind: "directive", type: i7$1.ValidationGroupDirective, selector: "[formGroup],[formGroupName]", exportAs: ["validationGroup"] }, { kind: "directive", type: i7$1.ValidationDirective, selector: "[formControl],[formControlName]", exportAs: ["validationDirective"] }, { kind: "directive", type: i10.NgbDropdown, selector: "[ngbDropdown]", inputs: ["autoClose", "dropdownClass", "open", "placement", "popperOptions", "container", "display"], outputs: ["openChange"], exportAs: ["ngbDropdown"] }, { kind: "directive", type: i10.NgbDropdownToggle, selector: "[ngbDropdownToggle]" }, { kind: "directive", type: i10.NgbDropdownMenu, selector: "[ngbDropdownMenu]" }, { kind: "directive", type: i10.NgbDropdownItem, selector: "[ngbDropdownItem]", inputs: ["disabled"] }, { kind: "component", type: i8.DynamicComponent, selector: "df-dynamic", inputs: ["selected", "type", "entity", "culture", "parentFiledName", "fields"] }, { kind: "pipe", type: i2.DatePipe, name: "date" }, { kind: "pipe", type: i1.LocalizationPipe, name: "abpLocalization" }] });
|
|
940
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: CreateOrEditEntriesComponent, deps: [{ token: i3.ToasterService }, { token: i2.Location }, { token: i1.ConfigStateService }, { token: SectionAdminService }, { token: EntryAdminService }, { token: i2.DatePipe }, { token: i1.LocalizationService }, { token: i3$1.Router }, { token: CmsApiService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
941
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.9", type: CreateOrEditEntriesComponent, selector: "cms-create-or-edit-entries", inputs: { isEdit: "isEdit", ParentQueryParams: "ParentQueryParams", entity: "entity", parentEntrySelect: "parentEntrySelect" }, viewQueries: [{ propertyName: "FormDynamicontrolRef", predicate: ["FormDynamicontrolRef"], descendants: true, read: ViewContainerRef }], ngImport: i0, template: "<div class=\"create-or-edit-entry-page\" [formGroup]=\"_entity\">\n <div class=\"container \">\n <div class=\"row\">\n <div class=\"col-md-8 \">\n <div class=\"card p-2\">\n <div class=\"mb-2\">\n <label class=\"form-label\" for=\"title\">{{'Cms::Title' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" (blur)=\"setTitleToSlugBlur($event)\"\n formControlName=\"title\">\n </div>\n <template #FormDynamicRef></template>\n <ng-container *ngFor=\"let item of entryTypesItem?.fieldTabs;let i =index\">\n <ng-container *ngFor=\"let el of item.fields;let i1 =index\">\n <ng-container *ngIf=\"el&&_entity\">\n <df-dynamic [entity]=\"_entity\" [fields]=\"el\"\n [selected]=\"entrySelect ? entrySelect.extraProperties[el.field.name] : ''\"\n [parentFiledName]=\"'extraProperties'\" [culture]=\"cultureinput.value\"></df-dynamic>\n </ng-container>\n </ng-container>\n </ng-container>\n </div>\n </div>\n <div class=\"col-md-4 \">\n <div class=\"card mb-0 p-2\">\n <div class=\"mb-2\">\n <label class=\"form-label\" for=\"slug\">{{'Cms::Slug' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"slug\">\n <div class=\"text-danger invalid-feedback\" *ngIf=\"sluginput.errors?.repetition\">\n {{sluginput.errors?.repetition}}\n </div>\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\" for=\"culture\">{{'AbpUi::Languages' | abpLocalization}}</label>\n <select class=\"form-select\" formControlName=\"culture\">\n <ng-container *ngFor=\"let item of languagesList;let i =index\">\n <option [value]=\"item.cultureName\">{{item.displayName}}</option>\n </ng-container>\n </select>\n <input type=\"text\" formControlName=\"culture_shadow\"\n style=\"position: absolute;z-index: -1;opacity: 0;\">\n <div class=\"text-danger invalid-feedback\" *ngIf=\"culture_shadowInput.errors?.repetition\">\n {{culture_shadowInput.errors?.repetition}}\n </div>\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\" for=\"parentId\">{{'Cms::ParentEntry' | abpLocalization}}</label>\n <select class=\"form-select\" formControlName=\"parentId\">\n <option value=\"\"></option>\n <ng-container *ngFor=\"let item of entryTypesList;let i =index\">\n <option [value]=\"item.id\">{{item.displayName}}</option>\n </ng-container>\n </select>\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\" for=\"publishTime\">{{'Cms::PublishTime' | abpLocalization}}</label>\n <input type=\"datetime-local\" class=\"form-control\" step=\"1\" formControlName=\"publishTime\">\n </div>\n <div class=\"mb-2\" *ngIf=\"isEdit\">\n <label class=\"form-label\" for=\"publishTime\">{{'Cms::Version' | abpLocalization}}</label>\n <ul class=\"list-group\">\n <ng-container *ngFor=\"let item of AllVersionsList\">\n <li class=\"list-group-item flex-between\">\n <div>\n {{item.initialVersionId?(item.creationTime| date: 'YYYY/MM/dd HH:mm:s'):('Cms::InitialVersion' | abpLocalization)}}\n <span class=\"badge text-bg-success ms-1\"\n *ngIf=\"item.isActivatedVersion\">{{'Cms::IsActive' | abpLocalization}}</span>\n <span class=\"badge text-bg-primary ms-1\"\n *ngIf=\"item.id === RevisionEntryId\">{{'Cms::Editing' |\n abpLocalization}}</span>\n </div>\n <div>\n <div ngbDropdown class=\"d-inline-block\">\n <button type=\"button\" class=\"btn btn-link-primary p-2 \"\n style=\"line-height: 0;\" id=\"dropdownBasic1\" ngbDropdownToggle>\n </button>\n <div ngbDropdownMenu aria-labelledby=\"dropdownBasic1\">\n <button ngbDropdownItem type=\"button\" *ngIf=\"!item.isActivatedVersion\"\n (click)=\"ActivatedVersion(item.id)\">\n <i class=\"fas fa-check me-1\"></i>{{'Cms::IsActive' |\n abpLocalization}}\n </button>\n <button ngbDropdownItem type=\"button\"\n routerLink=\"/cms/admin/entries/create\"\n [queryParams]=\"{RevisionEntryId:item.id}\">\n <i class=\"fas fa-plus me-1\"></i>{{'Cms::NewVersion' |\n abpLocalization}}\n </button>\n <button ngbDropdownItem type=\"button\" (click.stop)=\"toEditUrl(item.id)\"\n *ngIf=\"item.id !== RevisionEntryId\">\n <i class=\"fas fa-edit me-1\"></i>{{'AbpUi::Edit' | abpLocalization}}\n </button>\n <button ngbDropdownItem type=\"button\"\n (click.stop)=\"delectVersion(item.id)\"\n *ngIf=\"item.initialVersionId&&!item.isActivatedVersion&&item.id !== RevisionEntryId\">\n <i class=\"fas fa-trash me-1\"></i>{{'AbpUi::Delete' |\n abpLocalization}}\n </button>\n </div>\n </div>\n </div>\n </li>\n </ng-container>\n </ul>\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\" for=\"versionNotes\">{{'Cms::RevisionNotes' | abpLocalization}}</label>\n <textarea class=\"form-control\" formControlName=\"versionNotes\" rows=\"3\"></textarea>\n </div>\n </div>\n </div>\n </div>\n </div>\n</div>", styles: ["::ng-deep .create-or-edit-entry-page .dignite_page{height:calc(100vh - 125px);overflow:auto;background:transparent}::ng-deep .create-or-edit-entry-page .form-control,::ng-deep .create-or-edit-entry-page .form-select{padding:.475rem 1.25rem}::ng-deep .create-or-edit-entry-page .cursor-move{cursor:move}::ng-deep .create-or-edit-entry-page .bordernNavs{border:var(--bs-border-width) solid var(--lpx-border-color);padding-left:inherit;padding-right:inherit}::ng-deep .create-or-edit-entry-page .flex-between{display:flex;align-items:center;justify-content:space-between}\n"], dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i1$1.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i1$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1$1.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: i3$1.RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }, { kind: "directive", type: i1.StopPropagationDirective, selector: "[click.stop]", outputs: ["click.stop"] }, { kind: "directive", type: i7$1.ValidationGroupDirective, selector: "[formGroup],[formGroupName]", exportAs: ["validationGroup"] }, { kind: "directive", type: i7$1.ValidationDirective, selector: "[formControl],[formControlName]", exportAs: ["validationDirective"] }, { kind: "directive", type: i10.NgbDropdown, selector: "[ngbDropdown]", inputs: ["autoClose", "dropdownClass", "open", "placement", "popperOptions", "container", "display"], outputs: ["openChange"], exportAs: ["ngbDropdown"] }, { kind: "directive", type: i10.NgbDropdownToggle, selector: "[ngbDropdownToggle]" }, { kind: "directive", type: i10.NgbDropdownMenu, selector: "[ngbDropdownMenu]" }, { kind: "directive", type: i10.NgbDropdownItem, selector: "[ngbDropdownItem]", inputs: ["tabindex", "disabled"] }, { kind: "directive", type: i10.NgbDropdownButtonItem, selector: "button[ngbDropdownItem]" }, { kind: "component", type: i8.DynamicComponent, selector: "df-dynamic", inputs: ["selected", "type", "entity", "culture", "parentFiledName", "fields"] }, { kind: "pipe", type: i2.DatePipe, name: "date" }, { kind: "pipe", type: i1.LocalizationPipe, name: "abpLocalization" }] }); }
|
|
1005
942
|
}
|
|
1006
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
943
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: CreateOrEditEntriesComponent, decorators: [{
|
|
1007
944
|
type: Component,
|
|
1008
|
-
args: [{ selector: 'cms-create-or-edit-entries', template: "<div class=\"create-or-edit-entry-page\" [formGroup]=\"_entity\">\n <div class=\"container \">\n <div class=\"row\">\n <div class=\"col-md-8 \">\n <div class=\"card p-2\">\n <div class=\"mb-2\">\n <label class=\"form-label\" for=\"title\">{{'Cms::Title' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" (blur)=\"setTitleToSlugBlur($event)\"\n formControlName=\"title\">\n </div>\n <template #FormDynamicRef></template>\n <ng-container *ngFor=\"let item of entryTypesItem?.fieldTabs;let i =index\">\n <ng-container *ngFor=\"let el of item.fields;let i1 =index\">\n <ng-container *ngIf=\"el&&_entity\">\n <df-dynamic [entity]=\"_entity\" [fields]=\"el\"\n [selected]=\"entrySelect ? entrySelect.extraProperties[el.field.name] : ''\"\n [parentFiledName]=\"'extraProperties'\" [culture]=\"cultureinput.value\"
|
|
1009
|
-
}], ctorParameters:
|
|
945
|
+
args: [{ selector: 'cms-create-or-edit-entries', template: "<div class=\"create-or-edit-entry-page\" [formGroup]=\"_entity\">\n <div class=\"container \">\n <div class=\"row\">\n <div class=\"col-md-8 \">\n <div class=\"card p-2\">\n <div class=\"mb-2\">\n <label class=\"form-label\" for=\"title\">{{'Cms::Title' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" (blur)=\"setTitleToSlugBlur($event)\"\n formControlName=\"title\">\n </div>\n <template #FormDynamicRef></template>\n <ng-container *ngFor=\"let item of entryTypesItem?.fieldTabs;let i =index\">\n <ng-container *ngFor=\"let el of item.fields;let i1 =index\">\n <ng-container *ngIf=\"el&&_entity\">\n <df-dynamic [entity]=\"_entity\" [fields]=\"el\"\n [selected]=\"entrySelect ? entrySelect.extraProperties[el.field.name] : ''\"\n [parentFiledName]=\"'extraProperties'\" [culture]=\"cultureinput.value\"></df-dynamic>\n </ng-container>\n </ng-container>\n </ng-container>\n </div>\n </div>\n <div class=\"col-md-4 \">\n <div class=\"card mb-0 p-2\">\n <div class=\"mb-2\">\n <label class=\"form-label\" for=\"slug\">{{'Cms::Slug' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"slug\">\n <div class=\"text-danger invalid-feedback\" *ngIf=\"sluginput.errors?.repetition\">\n {{sluginput.errors?.repetition}}\n </div>\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\" for=\"culture\">{{'AbpUi::Languages' | abpLocalization}}</label>\n <select class=\"form-select\" formControlName=\"culture\">\n <ng-container *ngFor=\"let item of languagesList;let i =index\">\n <option [value]=\"item.cultureName\">{{item.displayName}}</option>\n </ng-container>\n </select>\n <input type=\"text\" formControlName=\"culture_shadow\"\n style=\"position: absolute;z-index: -1;opacity: 0;\">\n <div class=\"text-danger invalid-feedback\" *ngIf=\"culture_shadowInput.errors?.repetition\">\n {{culture_shadowInput.errors?.repetition}}\n </div>\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\" for=\"parentId\">{{'Cms::ParentEntry' | abpLocalization}}</label>\n <select class=\"form-select\" formControlName=\"parentId\">\n <option value=\"\"></option>\n <ng-container *ngFor=\"let item of entryTypesList;let i =index\">\n <option [value]=\"item.id\">{{item.displayName}}</option>\n </ng-container>\n </select>\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\" for=\"publishTime\">{{'Cms::PublishTime' | abpLocalization}}</label>\n <input type=\"datetime-local\" class=\"form-control\" step=\"1\" formControlName=\"publishTime\">\n </div>\n <div class=\"mb-2\" *ngIf=\"isEdit\">\n <label class=\"form-label\" for=\"publishTime\">{{'Cms::Version' | abpLocalization}}</label>\n <ul class=\"list-group\">\n <ng-container *ngFor=\"let item of AllVersionsList\">\n <li class=\"list-group-item flex-between\">\n <div>\n {{item.initialVersionId?(item.creationTime| date: 'YYYY/MM/dd HH:mm:s'):('Cms::InitialVersion' | abpLocalization)}}\n <span class=\"badge text-bg-success ms-1\"\n *ngIf=\"item.isActivatedVersion\">{{'Cms::IsActive' | abpLocalization}}</span>\n <span class=\"badge text-bg-primary ms-1\"\n *ngIf=\"item.id === RevisionEntryId\">{{'Cms::Editing' |\n abpLocalization}}</span>\n </div>\n <div>\n <div ngbDropdown class=\"d-inline-block\">\n <button type=\"button\" class=\"btn btn-link-primary p-2 \"\n style=\"line-height: 0;\" id=\"dropdownBasic1\" ngbDropdownToggle>\n </button>\n <div ngbDropdownMenu aria-labelledby=\"dropdownBasic1\">\n <button ngbDropdownItem type=\"button\" *ngIf=\"!item.isActivatedVersion\"\n (click)=\"ActivatedVersion(item.id)\">\n <i class=\"fas fa-check me-1\"></i>{{'Cms::IsActive' |\n abpLocalization}}\n </button>\n <button ngbDropdownItem type=\"button\"\n routerLink=\"/cms/admin/entries/create\"\n [queryParams]=\"{RevisionEntryId:item.id}\">\n <i class=\"fas fa-plus me-1\"></i>{{'Cms::NewVersion' |\n abpLocalization}}\n </button>\n <button ngbDropdownItem type=\"button\" (click.stop)=\"toEditUrl(item.id)\"\n *ngIf=\"item.id !== RevisionEntryId\">\n <i class=\"fas fa-edit me-1\"></i>{{'AbpUi::Edit' | abpLocalization}}\n </button>\n <button ngbDropdownItem type=\"button\"\n (click.stop)=\"delectVersion(item.id)\"\n *ngIf=\"item.initialVersionId&&!item.isActivatedVersion&&item.id !== RevisionEntryId\">\n <i class=\"fas fa-trash me-1\"></i>{{'AbpUi::Delete' |\n abpLocalization}}\n </button>\n </div>\n </div>\n </div>\n </li>\n </ng-container>\n </ul>\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\" for=\"versionNotes\">{{'Cms::RevisionNotes' | abpLocalization}}</label>\n <textarea class=\"form-control\" formControlName=\"versionNotes\" rows=\"3\"></textarea>\n </div>\n </div>\n </div>\n </div>\n </div>\n</div>", styles: ["::ng-deep .create-or-edit-entry-page .dignite_page{height:calc(100vh - 125px);overflow:auto;background:transparent}::ng-deep .create-or-edit-entry-page .form-control,::ng-deep .create-or-edit-entry-page .form-select{padding:.475rem 1.25rem}::ng-deep .create-or-edit-entry-page .cursor-move{cursor:move}::ng-deep .create-or-edit-entry-page .bordernNavs{border:var(--bs-border-width) solid var(--lpx-border-color);padding-left:inherit;padding-right:inherit}::ng-deep .create-or-edit-entry-page .flex-between{display:flex;align-items:center;justify-content:space-between}\n"] }]
|
|
946
|
+
}], ctorParameters: () => [{ type: i3.ToasterService }, { type: i2.Location }, { type: i1.ConfigStateService }, { type: SectionAdminService }, { type: EntryAdminService }, { type: i2.DatePipe }, { type: i1.LocalizationService }, { type: i3$1.Router }, { type: CmsApiService }], propDecorators: { isEdit: [{
|
|
1010
947
|
type: Input
|
|
1011
948
|
}], ParentQueryParams: [{
|
|
1012
949
|
type: Input
|
|
@@ -1020,12 +957,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1020
957
|
}] } });
|
|
1021
958
|
|
|
1022
959
|
class CreateComponent {
|
|
1023
|
-
toaster;
|
|
1024
|
-
_location;
|
|
1025
|
-
route;
|
|
1026
|
-
_EntryAdminService;
|
|
1027
|
-
_LocalizationService;
|
|
1028
|
-
router;
|
|
1029
960
|
constructor(toaster, _location, route, _EntryAdminService, _LocalizationService, router) {
|
|
1030
961
|
this.toaster = toaster;
|
|
1031
962
|
this._location = _location;
|
|
@@ -1033,19 +964,15 @@ class CreateComponent {
|
|
|
1033
964
|
this._EntryAdminService = _EntryAdminService;
|
|
1034
965
|
this._LocalizationService = _LocalizationService;
|
|
1035
966
|
this.router = router;
|
|
967
|
+
this.fb = inject(FormBuilder);
|
|
968
|
+
this._updateListService = inject(UpdateListService);
|
|
969
|
+
/**是否是草稿 */
|
|
970
|
+
this.draftType = false;
|
|
971
|
+
/**页面传值用于传递到子组件 */
|
|
972
|
+
this.queryParams = '';
|
|
973
|
+
/**指定id的条目信息 */
|
|
974
|
+
this.entrySelect = '';
|
|
1036
975
|
}
|
|
1037
|
-
fb = inject(FormBuilder);
|
|
1038
|
-
_updateListService = inject(UpdateListService);
|
|
1039
|
-
/**表单实体 */
|
|
1040
|
-
newEntity;
|
|
1041
|
-
/**是否是草稿 */
|
|
1042
|
-
draftType = false;
|
|
1043
|
-
/**页面传值用于传递到子组件 */
|
|
1044
|
-
queryParams = '';
|
|
1045
|
-
/**指定id的条目信息 */
|
|
1046
|
-
entrySelect = '';
|
|
1047
|
-
/**获取提交按钮替身,用于真实触发表单提交 */
|
|
1048
|
-
submitclick;
|
|
1049
976
|
async ngOnInit() {
|
|
1050
977
|
this.queryParams = this.route.snapshot.queryParams;
|
|
1051
978
|
this.newEntity = this.fb.group(new CreateOrUpdateEntryInputBase());
|
|
@@ -1069,6 +996,7 @@ class CreateComponent {
|
|
|
1069
996
|
let input = this.newEntity.value;
|
|
1070
997
|
input.publishTime = new Date(new Date(input.publishTime).getTime() + (8 * 60 * 60 * 1000)).toISOString();
|
|
1071
998
|
input.culture = this.newEntity.get('culture').value;
|
|
999
|
+
console.log(input, '保存', this.newEntity);
|
|
1072
1000
|
if (!this.newEntity.valid)
|
|
1073
1001
|
return;
|
|
1074
1002
|
this._EntryAdminService.create(input).subscribe(res => {
|
|
@@ -1088,15 +1016,15 @@ class CreateComponent {
|
|
|
1088
1016
|
backTo() {
|
|
1089
1017
|
this._location.back();
|
|
1090
1018
|
}
|
|
1091
|
-
static
|
|
1092
|
-
static
|
|
1019
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: CreateComponent, deps: [{ token: i3.ToasterService }, { token: i2.Location }, { token: i3$1.ActivatedRoute }, { token: EntryAdminService }, { token: i1.LocalizationService }, { token: i3$1.Router }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1020
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.9", type: CreateComponent, selector: "cms-create", providers: [
|
|
1093
1021
|
{
|
|
1094
1022
|
provide: EXTENSIONS_IDENTIFIER,
|
|
1095
1023
|
useValue: ECmsComponent.Entries_Create,
|
|
1096
1024
|
},
|
|
1097
|
-
], viewQueries: [{ propertyName: "submitclick", first: true, predicate: ["submitclick"], descendants: true, static: true }], ngImport: i0, template: "<form class=\"row g-3 needs-validation\" [formGroup]=\"newEntity\" (ngSubmit)=\"save(draftType)\">\n <abp-page [title]=\"'Cms::New'| abpLocalization\" [toolbar]=\"true\">\n <button type=\"submit\" style=\"display: none;\" #submitclick></button>\n <ng-container *ngIf=\"entrySelect; else elseTemplate\">\n <cms-create-or-edit-entries [entity]=\"newEntity\" [ParentQueryParams]=\"queryParams\"\n [parentEntrySelect]=\"entrySelect\" ></cms-create-or-edit-entries>\n </ng-container>\n <ng-template #elseTemplate>\n <cms-create-or-edit-entries [entity]=\"newEntity\"\n [ParentQueryParams]=\"queryParams\" ></cms-create-or-edit-entries>\n </ng-template>\n </abp-page>\n</form>", styles: ["::ng-deep .create-or-edit-entry-page .dignite_page{height:calc(100vh - 125px);overflow:auto;background:transparent}::ng-deep .create-or-edit-entry-page .form-control,::ng-deep .create-or-edit-entry-page .form-select{padding:.475rem 1.25rem}::ng-deep .create-or-edit-entry-page .cursor-move{cursor:move}::ng-deep .create-or-edit-entry-page .bordernNavs{border:var(--bs-border-width) solid var(--lpx-border-color);padding-left:inherit;padding-right:inherit}\n"], dependencies: [{ kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1.FormSubmitDirective, selector: "form[ngSubmit][formGroup]", inputs: ["debounce", "notValidateOnSubmit", "markAsDirtyWhenSubmit"], outputs: ["ngSubmit"] }, { kind: "directive", type: i7$1.ValidationGroupDirective, selector: "[formGroup],[formGroupName]", exportAs: ["validationGroup"] }, { kind: "component", type:
|
|
1025
|
+
], viewQueries: [{ propertyName: "submitclick", first: true, predicate: ["submitclick"], descendants: true, static: true }], ngImport: i0, template: "<form class=\"row g-3 needs-validation\" [formGroup]=\"newEntity\" (ngSubmit)=\"save(draftType)\">\n <abp-page [title]=\"'Cms::New'| abpLocalization\" [toolbar]=\"true\">\n <button type=\"submit\" style=\"display: none;\" #submitclick></button>\n <ng-container *ngIf=\"entrySelect; else elseTemplate\">\n <cms-create-or-edit-entries [entity]=\"newEntity\" [ParentQueryParams]=\"queryParams\"\n [parentEntrySelect]=\"entrySelect\" ></cms-create-or-edit-entries>\n </ng-container>\n <ng-template #elseTemplate>\n <cms-create-or-edit-entries [entity]=\"newEntity\"\n [ParentQueryParams]=\"queryParams\" ></cms-create-or-edit-entries>\n </ng-template>\n </abp-page>\n</form>", styles: ["::ng-deep .create-or-edit-entry-page .dignite_page{height:calc(100vh - 125px);overflow:auto;background:transparent}::ng-deep .create-or-edit-entry-page .form-control,::ng-deep .create-or-edit-entry-page .form-select{padding:.475rem 1.25rem}::ng-deep .create-or-edit-entry-page .cursor-move{cursor:move}::ng-deep .create-or-edit-entry-page .bordernNavs{border:var(--bs-border-width) solid var(--lpx-border-color);padding-left:inherit;padding-right:inherit}\n"], dependencies: [{ kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1.FormSubmitDirective, selector: "form[ngSubmit][formGroup]", inputs: ["debounce", "notValidateOnSubmit", "markAsDirtyWhenSubmit"], outputs: ["ngSubmit"] }, { kind: "directive", type: i7$1.ValidationGroupDirective, selector: "[formGroup],[formGroupName]", exportAs: ["validationGroup"] }, { kind: "component", type: i12.PageComponent, selector: "abp-page", inputs: ["title", "toolbar", "breadcrumb"] }, { kind: "component", type: CreateOrEditEntriesComponent, selector: "cms-create-or-edit-entries", inputs: ["isEdit", "ParentQueryParams", "entity", "parentEntrySelect"] }, { kind: "pipe", type: i1.LocalizationPipe, name: "abpLocalization" }] }); }
|
|
1098
1026
|
}
|
|
1099
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1027
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: CreateComponent, decorators: [{
|
|
1100
1028
|
type: Component,
|
|
1101
1029
|
args: [{ selector: 'cms-create', providers: [
|
|
1102
1030
|
{
|
|
@@ -1104,40 +1032,29 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1104
1032
|
useValue: ECmsComponent.Entries_Create,
|
|
1105
1033
|
},
|
|
1106
1034
|
], template: "<form class=\"row g-3 needs-validation\" [formGroup]=\"newEntity\" (ngSubmit)=\"save(draftType)\">\n <abp-page [title]=\"'Cms::New'| abpLocalization\" [toolbar]=\"true\">\n <button type=\"submit\" style=\"display: none;\" #submitclick></button>\n <ng-container *ngIf=\"entrySelect; else elseTemplate\">\n <cms-create-or-edit-entries [entity]=\"newEntity\" [ParentQueryParams]=\"queryParams\"\n [parentEntrySelect]=\"entrySelect\" ></cms-create-or-edit-entries>\n </ng-container>\n <ng-template #elseTemplate>\n <cms-create-or-edit-entries [entity]=\"newEntity\"\n [ParentQueryParams]=\"queryParams\" ></cms-create-or-edit-entries>\n </ng-template>\n </abp-page>\n</form>", styles: ["::ng-deep .create-or-edit-entry-page .dignite_page{height:calc(100vh - 125px);overflow:auto;background:transparent}::ng-deep .create-or-edit-entry-page .form-control,::ng-deep .create-or-edit-entry-page .form-select{padding:.475rem 1.25rem}::ng-deep .create-or-edit-entry-page .cursor-move{cursor:move}::ng-deep .create-or-edit-entry-page .bordernNavs{border:var(--bs-border-width) solid var(--lpx-border-color);padding-left:inherit;padding-right:inherit}\n"] }]
|
|
1107
|
-
}], ctorParameters:
|
|
1035
|
+
}], ctorParameters: () => [{ type: i3.ToasterService }, { type: i2.Location }, { type: i3$1.ActivatedRoute }, { type: EntryAdminService }, { type: i1.LocalizationService }, { type: i3$1.Router }], propDecorators: { submitclick: [{
|
|
1108
1036
|
type: ViewChild,
|
|
1109
1037
|
args: ['submitclick', { static: true }]
|
|
1110
1038
|
}] } });
|
|
1111
1039
|
|
|
1040
|
+
/* eslint-disable @angular-eslint/use-lifecycle-interface */
|
|
1112
1041
|
class EditComponent {
|
|
1113
|
-
toaster
|
|
1114
|
-
_location;
|
|
1115
|
-
route;
|
|
1116
|
-
_EntryAdminService;
|
|
1117
|
-
router;
|
|
1118
|
-
_LocalizationService;
|
|
1119
|
-
_CmsApiService;
|
|
1120
|
-
constructor(toaster, _location, route, _EntryAdminService, router, _LocalizationService, _CmsApiService) {
|
|
1042
|
+
constructor(toaster, _location, route, _EntryAdminService, router, _LocalizationService) {
|
|
1121
1043
|
this.toaster = toaster;
|
|
1122
1044
|
this._location = _location;
|
|
1123
1045
|
this.route = route;
|
|
1124
1046
|
this._EntryAdminService = _EntryAdminService;
|
|
1125
1047
|
this.router = router;
|
|
1126
1048
|
this._LocalizationService = _LocalizationService;
|
|
1127
|
-
this.
|
|
1049
|
+
this.fb = inject(FormBuilder);
|
|
1050
|
+
this._updateListService = inject(UpdateListService);
|
|
1051
|
+
/**是否是草稿 */
|
|
1052
|
+
this.draftType = false;
|
|
1053
|
+
/**页面传值用于传递到子组件 */
|
|
1054
|
+
this.queryParams = '' || {};
|
|
1055
|
+
/**指定id的条目信息 */
|
|
1056
|
+
this.entrySelect = '';
|
|
1128
1057
|
}
|
|
1129
|
-
fb = inject(FormBuilder);
|
|
1130
|
-
_updateListService = inject(UpdateListService);
|
|
1131
|
-
/**表单实体 */
|
|
1132
|
-
newEntity;
|
|
1133
|
-
/**是否是草稿 */
|
|
1134
|
-
draftType = false;
|
|
1135
|
-
/**页面传值用于传递到子组件 */
|
|
1136
|
-
queryParams = '' || {};
|
|
1137
|
-
/**指定id的条目信息 */
|
|
1138
|
-
entrySelect = '';
|
|
1139
|
-
/**获取提交按钮替身,用于真实触发表单提交 */
|
|
1140
|
-
submitclick;
|
|
1141
1058
|
async ngOnInit() {
|
|
1142
1059
|
this.queryParams.RevisionEntryId = this.route.snapshot.params.entrieId;
|
|
1143
1060
|
this.newEntity = this.fb.group(new CreateOrUpdateEntryInputBase());
|
|
@@ -1180,83 +1097,70 @@ class EditComponent {
|
|
|
1180
1097
|
backTo() {
|
|
1181
1098
|
this._location.back();
|
|
1182
1099
|
}
|
|
1183
|
-
static
|
|
1184
|
-
static
|
|
1100
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: EditComponent, deps: [{ token: i3.ToasterService }, { token: i2.Location }, { token: i3$1.ActivatedRoute }, { token: EntryAdminService }, { token: i3$1.Router }, { token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1101
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.9", type: EditComponent, selector: "cms-edit", providers: [
|
|
1185
1102
|
{
|
|
1186
1103
|
provide: EXTENSIONS_IDENTIFIER,
|
|
1187
1104
|
useValue: ECmsComponent.Entries_Edit,
|
|
1188
1105
|
},
|
|
1189
|
-
], viewQueries: [{ propertyName: "submitclick", first: true, predicate: ["submitclick"], descendants: true, static: true }], ngImport: i0, template: "<form class=\"row g-3 needs-validation\" [formGroup]=\"newEntity\" (ngSubmit)=\"save(draftType)\">\n <abp-page [title]=\"'AbpUi::Edit'| abpLocalization\" [toolbar]=\"true\">\n <button type=\"submit\" style=\"display: none
|
|
1106
|
+
], viewQueries: [{ propertyName: "submitclick", first: true, predicate: ["submitclick"], descendants: true, static: true }], ngImport: i0, template: "<form class=\"row g-3 needs-validation\" [formGroup]=\"newEntity\" (ngSubmit)=\"save(draftType)\">\n <abp-page [title]=\"'AbpUi::Edit' | abpLocalization\" [toolbar]=\"true\">\n <button type=\"submit\" style=\"display: none\" #submitclick></button>\n <ng-container *ngIf=\"entrySelect\">\n <cms-create-or-edit-entries [entity]=\"newEntity\" [ParentQueryParams]=\"queryParams\"\n [parentEntrySelect]=\"entrySelect\" [isEdit]=\"true\"></cms-create-or-edit-entries>\n </ng-container>\n </abp-page>\n</form>", styles: ["::ng-deep .edit-entry-page .dignite_page{height:calc(100vh - 125px);overflow:auto;background:transparent}::ng-deep .edit-entry-page .form-control,::ng-deep .edit-entry-page .form-select{padding:.475rem 1.25rem}::ng-deep .edit-entry-page .cursor-move{cursor:move}::ng-deep .edit-entry-page .bordernNavs{border:var(--bs-border-width) solid var(--lpx-border-color);padding-left:inherit;padding-right:inherit}::ng-deep .edit-entry-page .flex-between{display:flex;align-items:center;justify-content:space-between}\n"], dependencies: [{ kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1.FormSubmitDirective, selector: "form[ngSubmit][formGroup]", inputs: ["debounce", "notValidateOnSubmit", "markAsDirtyWhenSubmit"], outputs: ["ngSubmit"] }, { kind: "directive", type: i7$1.ValidationGroupDirective, selector: "[formGroup],[formGroupName]", exportAs: ["validationGroup"] }, { kind: "component", type: i12.PageComponent, selector: "abp-page", inputs: ["title", "toolbar", "breadcrumb"] }, { kind: "component", type: CreateOrEditEntriesComponent, selector: "cms-create-or-edit-entries", inputs: ["isEdit", "ParentQueryParams", "entity", "parentEntrySelect"] }, { kind: "pipe", type: i1.LocalizationPipe, name: "abpLocalization" }] }); }
|
|
1190
1107
|
}
|
|
1191
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1108
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: EditComponent, decorators: [{
|
|
1192
1109
|
type: Component,
|
|
1193
1110
|
args: [{ selector: 'cms-edit', providers: [
|
|
1194
1111
|
{
|
|
1195
1112
|
provide: EXTENSIONS_IDENTIFIER,
|
|
1196
1113
|
useValue: ECmsComponent.Entries_Edit,
|
|
1197
1114
|
},
|
|
1198
|
-
], template: "<form class=\"row g-3 needs-validation\" [formGroup]=\"newEntity\" (ngSubmit)=\"save(draftType)\">\n <abp-page [title]=\"'AbpUi::Edit'| abpLocalization\" [toolbar]=\"true\">\n <button type=\"submit\" style=\"display: none
|
|
1199
|
-
}], ctorParameters:
|
|
1115
|
+
], template: "<form class=\"row g-3 needs-validation\" [formGroup]=\"newEntity\" (ngSubmit)=\"save(draftType)\">\n <abp-page [title]=\"'AbpUi::Edit' | abpLocalization\" [toolbar]=\"true\">\n <button type=\"submit\" style=\"display: none\" #submitclick></button>\n <ng-container *ngIf=\"entrySelect\">\n <cms-create-or-edit-entries [entity]=\"newEntity\" [ParentQueryParams]=\"queryParams\"\n [parentEntrySelect]=\"entrySelect\" [isEdit]=\"true\"></cms-create-or-edit-entries>\n </ng-container>\n </abp-page>\n</form>", styles: ["::ng-deep .edit-entry-page .dignite_page{height:calc(100vh - 125px);overflow:auto;background:transparent}::ng-deep .edit-entry-page .form-control,::ng-deep .edit-entry-page .form-select{padding:.475rem 1.25rem}::ng-deep .edit-entry-page .cursor-move{cursor:move}::ng-deep .edit-entry-page .bordernNavs{border:var(--bs-border-width) solid var(--lpx-border-color);padding-left:inherit;padding-right:inherit}::ng-deep .edit-entry-page .flex-between{display:flex;align-items:center;justify-content:space-between}\n"] }]
|
|
1116
|
+
}], ctorParameters: () => [{ type: i3.ToasterService }, { type: i2.Location }, { type: i3$1.ActivatedRoute }, { type: EntryAdminService }, { type: i3$1.Router }, { type: i1.LocalizationService }], propDecorators: { submitclick: [{
|
|
1200
1117
|
type: ViewChild,
|
|
1201
1118
|
args: ['submitclick', { static: true }]
|
|
1202
1119
|
}] } });
|
|
1203
1120
|
|
|
1204
1121
|
class FieldAdminService {
|
|
1205
|
-
restService;
|
|
1206
|
-
apiName = 'CmsAdmin';
|
|
1207
|
-
create = (input, config) => this.restService.request({
|
|
1208
|
-
method: 'POST',
|
|
1209
|
-
url: '/api/cms-admin/fields',
|
|
1210
|
-
body: input,
|
|
1211
|
-
}, { apiName: this.apiName, ...config });
|
|
1212
|
-
delete = (id, config) => this.restService.request({
|
|
1213
|
-
method: 'DELETE',
|
|
1214
|
-
url: `/api/cms-admin/fields/${id}`,
|
|
1215
|
-
}, { apiName: this.apiName, ...config });
|
|
1216
|
-
get = (id, config) => this.restService.request({
|
|
1217
|
-
method: 'GET',
|
|
1218
|
-
url: `/api/cms-admin/fields/${id}`,
|
|
1219
|
-
}, { apiName: this.apiName, ...config });
|
|
1220
|
-
getList = (input, config) => this.restService.request({
|
|
1221
|
-
method: 'GET',
|
|
1222
|
-
url: '/api/cms-admin/fields',
|
|
1223
|
-
params: { filter: input.filter, groupId: input.groupId, sorting: input.sorting, skipCount: input.skipCount, maxResultCount: input.maxResultCount },
|
|
1224
|
-
}, { apiName: this.apiName, ...config });
|
|
1225
|
-
nameExists = (name, config) => this.restService.request({
|
|
1226
|
-
method: 'GET',
|
|
1227
|
-
url: `/api/cms-admin/fields/name-exists/${name}`,
|
|
1228
|
-
}, { apiName: this.apiName, ...config });
|
|
1229
|
-
update = (id, input, config) => this.restService.request({
|
|
1230
|
-
method: 'PUT',
|
|
1231
|
-
url: `/api/cms-admin/fields/${id}`,
|
|
1232
|
-
body: input,
|
|
1233
|
-
}, { apiName: this.apiName, ...config });
|
|
1234
1122
|
constructor(restService) {
|
|
1235
1123
|
this.restService = restService;
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1124
|
+
this.apiName = 'CmsAdmin';
|
|
1125
|
+
this.create = (input, config) => this.restService.request({
|
|
1126
|
+
method: 'POST',
|
|
1127
|
+
url: '/api/cms-admin/fields',
|
|
1128
|
+
body: input,
|
|
1129
|
+
}, { apiName: this.apiName, ...config });
|
|
1130
|
+
this.delete = (id, config) => this.restService.request({
|
|
1131
|
+
method: 'DELETE',
|
|
1132
|
+
url: `/api/cms-admin/fields/${id}`,
|
|
1133
|
+
}, { apiName: this.apiName, ...config });
|
|
1134
|
+
this.get = (id, config) => this.restService.request({
|
|
1135
|
+
method: 'GET',
|
|
1136
|
+
url: `/api/cms-admin/fields/${id}`,
|
|
1137
|
+
}, { apiName: this.apiName, ...config });
|
|
1138
|
+
this.getList = (input, config) => this.restService.request({
|
|
1139
|
+
method: 'GET',
|
|
1140
|
+
url: '/api/cms-admin/fields',
|
|
1141
|
+
params: { filter: input.filter, groupId: input.groupId, sorting: input.sorting, skipCount: input.skipCount, maxResultCount: input.maxResultCount },
|
|
1142
|
+
}, { apiName: this.apiName, ...config });
|
|
1143
|
+
this.nameExists = (name, config) => this.restService.request({
|
|
1144
|
+
method: 'GET',
|
|
1145
|
+
url: `/api/cms-admin/fields/name-exists/${name}`,
|
|
1146
|
+
}, { apiName: this.apiName, ...config });
|
|
1147
|
+
this.update = (id, input, config) => this.restService.request({
|
|
1148
|
+
method: 'PUT',
|
|
1149
|
+
url: `/api/cms-admin/fields/${id}`,
|
|
1150
|
+
body: input,
|
|
1151
|
+
}, { apiName: this.apiName, ...config });
|
|
1152
|
+
}
|
|
1153
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: FieldAdminService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1154
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: FieldAdminService, providedIn: 'root' }); }
|
|
1239
1155
|
}
|
|
1240
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1156
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: FieldAdminService, decorators: [{
|
|
1241
1157
|
type: Injectable,
|
|
1242
1158
|
args: [{
|
|
1243
1159
|
providedIn: 'root',
|
|
1244
1160
|
}]
|
|
1245
|
-
}], ctorParameters:
|
|
1246
|
-
|
|
1247
|
-
var index$n = /*#__PURE__*/Object.freeze({
|
|
1248
|
-
__proto__: null,
|
|
1249
|
-
FieldAdminService: FieldAdminService,
|
|
1250
|
-
FieldGroupAdminService: FieldGroupAdminService
|
|
1251
|
-
});
|
|
1161
|
+
}], ctorParameters: () => [{ type: i1.RestService }] });
|
|
1252
1162
|
|
|
1253
1163
|
class FieldGroupComponent {
|
|
1254
|
-
fb;
|
|
1255
|
-
_FieldGroupAdminService;
|
|
1256
|
-
toaster;
|
|
1257
|
-
confirmation;
|
|
1258
|
-
_FieldAbstractsService;
|
|
1259
|
-
_LocalizationService;
|
|
1260
1164
|
constructor(fb, _FieldGroupAdminService, toaster, confirmation, _FieldAbstractsService, _LocalizationService) {
|
|
1261
1165
|
this.fb = fb;
|
|
1262
1166
|
this._FieldGroupAdminService = _FieldGroupAdminService;
|
|
@@ -1264,23 +1168,19 @@ class FieldGroupComponent {
|
|
|
1264
1168
|
this.confirmation = confirmation;
|
|
1265
1169
|
this._FieldAbstractsService = _FieldAbstractsService;
|
|
1266
1170
|
this._LocalizationService = _LocalizationService;
|
|
1171
|
+
/**表单已存在的值 */
|
|
1172
|
+
this.selected = {};
|
|
1173
|
+
/**选择的字段分组id */
|
|
1174
|
+
this.fieldGroupId = '';
|
|
1175
|
+
/**创建分组模态框状态 */
|
|
1176
|
+
this.createGroupOpen = false;
|
|
1177
|
+
/**用于确定模态的繁忙状态是否为真 */
|
|
1178
|
+
this.modalBusy = false;
|
|
1179
|
+
/**编辑分组模态框状态 */
|
|
1180
|
+
this.editGroupOpen = false;
|
|
1181
|
+
/**点击分组回调 */
|
|
1182
|
+
this.OnGroupClickBack = new EventEmitter();
|
|
1267
1183
|
}
|
|
1268
|
-
/**创建分组表单 */
|
|
1269
|
-
createForm;
|
|
1270
|
-
/** 编辑分组表单*/
|
|
1271
|
-
editGroupForm;
|
|
1272
|
-
/**表单已存在的值 */
|
|
1273
|
-
selected = {};
|
|
1274
|
-
/**选择的字段分组id */
|
|
1275
|
-
fieldGroupId = '';
|
|
1276
|
-
/**创建分组模态框状态 */
|
|
1277
|
-
createGroupOpen = false;
|
|
1278
|
-
/**用于确定模态的繁忙状态是否为真 */
|
|
1279
|
-
modalBusy = false;
|
|
1280
|
-
/**编辑分组模态框状态 */
|
|
1281
|
-
editGroupOpen = false;
|
|
1282
|
-
/**点击分组回调 */
|
|
1283
|
-
OnGroupClickBack = new EventEmitter();
|
|
1284
1184
|
ngOnInit() {
|
|
1285
1185
|
this._FieldAbstractsService.getfieldGroupList();
|
|
1286
1186
|
}
|
|
@@ -1352,24 +1252,17 @@ class FieldGroupComponent {
|
|
|
1352
1252
|
this.fieldGroupId = event;
|
|
1353
1253
|
this.OnGroupClickBack.emit(event);
|
|
1354
1254
|
}
|
|
1355
|
-
static
|
|
1356
|
-
static
|
|
1255
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: FieldGroupComponent, deps: [{ token: i1$1.FormBuilder }, { token: FieldGroupAdminService }, { token: i3.ToasterService }, { token: i3.ConfirmationService }, { token: FieldAbstractsService }, { token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1256
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.9", type: FieldGroupComponent, selector: "cms-field-group", outputs: { OnGroupClickBack: "OnGroupClickBack" }, ngImport: i0, template: "<div class=\"card-header px-2 py-sm-2 d-flex justify-content-between align-items-center\">\n <h6 class=\"h6 mb-0\">{{'Cms::FieldGroup' | abpLocalization}}</h6>\n <button type=\"button\" class=\"btn btn-link btn-sm ms-2\"><i class=\"fas fa-plus-circle\" aria-hidden=\"true\"\n (click)=\"createGroupBtn()\"></i></button>\n</div>\n<div class=\"card-body p-0\">\n <div class=\"container-height overflow-auto\">\n <ul class=\"list-group list-group-flush\">\n <li class=\"list-group-item list-group-item-action active\" [class.active]=\"fieldGroupId===''\"\n (click)=\"fieldGroupChange('')\">{{'Cms::AllFields' | abpLocalization}}</li>\n <ng-container *ngFor=\"let item of _FieldAbstractsService.fieldGroupList\">\n <li class=\"list-group-item list-group-item-action d-flex justify-content-between align-items-center\"\n [class.active]=\"fieldGroupId===item.id\" (click)=\"fieldGroupChange(item.id)\">\n <div>{{item.name}}</div>\n <div *ngIf=\"fieldGroupId===item.id\">\n <i class=\"fas fa-trash px-1\" role=\"button\" (click.stop)=\"deleteGroupbtn(item)\"></i>\n <i class=\"fas fa-edit px-1\" role=\"button\" (click.stop)=\"editGroupBtn(item.name)\"></i>\n </div>\n </li>\n </ng-container>\n </ul>\n </div>\n</div>\n\n<abp-modal [(visible)]=\"createGroupOpen\" [busy]=\"modalBusy\" (visibleChange)=\"createGroupVisibleChange($event)\">\n <ng-template #abpHeader>\n <h3>{{'Cms::New' | abpLocalization}}</h3>\n </ng-template>\n <ng-template #abpBody>\n <ng-template #loaderRef>\n <div class=\"text-center\"><i class=\"fa fa-pulse fa-spinner\" aria-hidden=\"true\"></i></div>\n </ng-template>\n <form *ngIf=\"createForm; else loaderRef\" [formGroup]=\"createForm\" (ngSubmit)=\"createSave()\">\n <div class=\"mb-3\">\n <label for=\"exampleFormControlInput1\" class=\"form-label\">{{'Cms::Name' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" id=\"exampleFormControlInput1\" formControlName=\"name\"\n placeholder=\"\">\n </div>\n </form>\n </ng-template>\n\n <ng-template #abpFooter>\n <button type=\"button\" class=\"btn btn-secondary\" abpClose>{{'AbpUi::Close' | abpLocalization}}</button>\n <abp-button iconClass=\"fa fa-check\" [disabled]=\"createForm?.invalid\" (click)=\"createSave()\">{{'AbpUi::Save' | abpLocalization}}</abp-button>\n </ng-template>\n</abp-modal>\n\n<abp-modal [(visible)]=\"editGroupOpen\" [busy]=\"modalBusy\" (visibleChange)=\"editGroupVisibleChange($event)\">\n <ng-template #abpHeader>\n <h3>{{'AbpUi::Edit' | abpLocalization}}</h3>\n </ng-template>\n <ng-template #abpBody>\n <ng-template #loaderRef>\n <div class=\"text-center\"><i class=\"fa fa-pulse fa-spinner\" aria-hidden=\"true\"></i></div>\n </ng-template>\n <form *ngIf=\"editGroupForm; else loaderRef\" [formGroup]=\"editGroupForm\" (ngSubmit)=\"editSave()\">\n <div class=\"mb-3\">\n <label for=\"exampleFormControlInput1\" class=\"form-label\">{{'Cms::Name' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" id=\"exampleFormControlInput1\" formControlName=\"name\"\n placeholder=\"\">\n </div>\n </form>\n </ng-template>\n\n <ng-template #abpFooter>\n <button type=\"button\" class=\"btn btn-secondary\" abpClose>{{'AbpUi::Close' | abpLocalization}}</button>\n <abp-button iconClass=\"fa fa-check\" [disabled]=\"editGroupForm?.invalid\" (click)=\"editSave()\">{{'AbpUi::Save' | abpLocalization}}</abp-button>\n </ng-template>\n</abp-modal>", styles: [""], dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: i1.FormSubmitDirective, selector: "form[ngSubmit][formGroup]", inputs: ["debounce", "notValidateOnSubmit", "markAsDirtyWhenSubmit"], outputs: ["ngSubmit"] }, { kind: "directive", type: i1.StopPropagationDirective, selector: "[click.stop]", outputs: ["click.stop"] }, { kind: "directive", type: i7$1.ValidationGroupDirective, selector: "[formGroup],[formGroupName]", exportAs: ["validationGroup"] }, { kind: "directive", type: i7$1.ValidationDirective, selector: "[formControl],[formControlName]", exportAs: ["validationDirective"] }, { kind: "component", type: i3.ButtonComponent, selector: "abp-button", inputs: ["buttonId", "buttonClass", "buttonType", "formName", "iconClass", "loading", "disabled", "attributes"], outputs: ["click", "focus", "blur", "abpClick", "abpFocus", "abpBlur"] }, { kind: "component", type: i3.ModalComponent, selector: "abp-modal", inputs: ["visible", "busy", "options", "suppressUnsavedChangesWarning"], outputs: ["visibleChange", "init", "appear", "disappear"] }, { kind: "directive", type: i3.ModalCloseDirective, selector: "[abpClose]" }, { kind: "pipe", type: i1.LocalizationPipe, name: "abpLocalization" }] }); }
|
|
1357
1257
|
}
|
|
1358
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1258
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: FieldGroupComponent, decorators: [{
|
|
1359
1259
|
type: Component,
|
|
1360
1260
|
args: [{ selector: 'cms-field-group', template: "<div class=\"card-header px-2 py-sm-2 d-flex justify-content-between align-items-center\">\n <h6 class=\"h6 mb-0\">{{'Cms::FieldGroup' | abpLocalization}}</h6>\n <button type=\"button\" class=\"btn btn-link btn-sm ms-2\"><i class=\"fas fa-plus-circle\" aria-hidden=\"true\"\n (click)=\"createGroupBtn()\"></i></button>\n</div>\n<div class=\"card-body p-0\">\n <div class=\"container-height overflow-auto\">\n <ul class=\"list-group list-group-flush\">\n <li class=\"list-group-item list-group-item-action active\" [class.active]=\"fieldGroupId===''\"\n (click)=\"fieldGroupChange('')\">{{'Cms::AllFields' | abpLocalization}}</li>\n <ng-container *ngFor=\"let item of _FieldAbstractsService.fieldGroupList\">\n <li class=\"list-group-item list-group-item-action d-flex justify-content-between align-items-center\"\n [class.active]=\"fieldGroupId===item.id\" (click)=\"fieldGroupChange(item.id)\">\n <div>{{item.name}}</div>\n <div *ngIf=\"fieldGroupId===item.id\">\n <i class=\"fas fa-trash px-1\" role=\"button\" (click.stop)=\"deleteGroupbtn(item)\"></i>\n <i class=\"fas fa-edit px-1\" role=\"button\" (click.stop)=\"editGroupBtn(item.name)\"></i>\n </div>\n </li>\n </ng-container>\n </ul>\n </div>\n</div>\n\n<abp-modal [(visible)]=\"createGroupOpen\" [busy]=\"modalBusy\" (visibleChange)=\"createGroupVisibleChange($event)\">\n <ng-template #abpHeader>\n <h3>{{'Cms::New' | abpLocalization}}</h3>\n </ng-template>\n <ng-template #abpBody>\n <ng-template #loaderRef>\n <div class=\"text-center\"><i class=\"fa fa-pulse fa-spinner\" aria-hidden=\"true\"></i></div>\n </ng-template>\n <form *ngIf=\"createForm; else loaderRef\" [formGroup]=\"createForm\" (ngSubmit)=\"createSave()\">\n <div class=\"mb-3\">\n <label for=\"exampleFormControlInput1\" class=\"form-label\">{{'Cms::Name' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" id=\"exampleFormControlInput1\" formControlName=\"name\"\n placeholder=\"\">\n </div>\n </form>\n </ng-template>\n\n <ng-template #abpFooter>\n <button type=\"button\" class=\"btn btn-secondary\" abpClose>{{'AbpUi::Close' | abpLocalization}}</button>\n <abp-button iconClass=\"fa fa-check\" [disabled]=\"createForm?.invalid\" (click)=\"createSave()\">{{'AbpUi::Save' | abpLocalization}}</abp-button>\n </ng-template>\n</abp-modal>\n\n<abp-modal [(visible)]=\"editGroupOpen\" [busy]=\"modalBusy\" (visibleChange)=\"editGroupVisibleChange($event)\">\n <ng-template #abpHeader>\n <h3>{{'AbpUi::Edit' | abpLocalization}}</h3>\n </ng-template>\n <ng-template #abpBody>\n <ng-template #loaderRef>\n <div class=\"text-center\"><i class=\"fa fa-pulse fa-spinner\" aria-hidden=\"true\"></i></div>\n </ng-template>\n <form *ngIf=\"editGroupForm; else loaderRef\" [formGroup]=\"editGroupForm\" (ngSubmit)=\"editSave()\">\n <div class=\"mb-3\">\n <label for=\"exampleFormControlInput1\" class=\"form-label\">{{'Cms::Name' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" id=\"exampleFormControlInput1\" formControlName=\"name\"\n placeholder=\"\">\n </div>\n </form>\n </ng-template>\n\n <ng-template #abpFooter>\n <button type=\"button\" class=\"btn btn-secondary\" abpClose>{{'AbpUi::Close' | abpLocalization}}</button>\n <abp-button iconClass=\"fa fa-check\" [disabled]=\"editGroupForm?.invalid\" (click)=\"editSave()\">{{'AbpUi::Save' | abpLocalization}}</abp-button>\n </ng-template>\n</abp-modal>" }]
|
|
1361
|
-
}], ctorParameters:
|
|
1261
|
+
}], ctorParameters: () => [{ type: i1$1.FormBuilder }, { type: FieldGroupAdminService }, { type: i3.ToasterService }, { type: i3.ConfirmationService }, { type: FieldAbstractsService }, { type: i1.LocalizationService }], propDecorators: { OnGroupClickBack: [{
|
|
1362
1262
|
type: Output
|
|
1363
1263
|
}] } });
|
|
1364
1264
|
|
|
1365
1265
|
class FieldsComponent {
|
|
1366
|
-
list;
|
|
1367
|
-
_FieldAdminService;
|
|
1368
|
-
toaster;
|
|
1369
|
-
confirmation;
|
|
1370
|
-
_LocalizationService;
|
|
1371
|
-
router;
|
|
1372
|
-
_CmsApiService;
|
|
1373
1266
|
constructor(list, _FieldAdminService, toaster, confirmation, _LocalizationService, router, _CmsApiService) {
|
|
1374
1267
|
this.list = list;
|
|
1375
1268
|
this._FieldAdminService = _FieldAdminService;
|
|
@@ -1378,17 +1271,17 @@ class FieldsComponent {
|
|
|
1378
1271
|
this._LocalizationService = _LocalizationService;
|
|
1379
1272
|
this.router = router;
|
|
1380
1273
|
this._CmsApiService = _CmsApiService;
|
|
1274
|
+
this._UpdateListService = inject(UpdateListService);
|
|
1275
|
+
/**表格单元格布局类型 */
|
|
1276
|
+
this.ColumnMode = ColumnMode;
|
|
1277
|
+
/**表格数据 */
|
|
1278
|
+
this.data = {
|
|
1279
|
+
items: [],
|
|
1280
|
+
totalCount: 0,
|
|
1281
|
+
};
|
|
1282
|
+
/**过滤器 */
|
|
1283
|
+
this.filters = {};
|
|
1381
1284
|
}
|
|
1382
|
-
_UpdateListService = inject(UpdateListService);
|
|
1383
|
-
/**表格单元格布局类型 */
|
|
1384
|
-
ColumnMode = ColumnMode;
|
|
1385
|
-
/**表格数据 */
|
|
1386
|
-
data = {
|
|
1387
|
-
items: [],
|
|
1388
|
-
totalCount: 0,
|
|
1389
|
-
};
|
|
1390
|
-
/**过滤器 */
|
|
1391
|
-
filters = {};
|
|
1392
1285
|
ngOnInit() {
|
|
1393
1286
|
this.hookToQuery();
|
|
1394
1287
|
this._UpdateListService.updateListEvent.subscribe(() => {
|
|
@@ -1431,8 +1324,8 @@ class FieldsComponent {
|
|
|
1431
1324
|
}
|
|
1432
1325
|
});
|
|
1433
1326
|
}
|
|
1434
|
-
static
|
|
1435
|
-
static
|
|
1327
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: FieldsComponent, deps: [{ token: i1.ListService }, { token: FieldAdminService }, { token: i3.ToasterService }, { token: i3.ConfirmationService }, { token: i1.LocalizationService }, { token: i3$1.Router }, { token: CmsApiService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1328
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.9", type: FieldsComponent, selector: "cms-fields", providers: [
|
|
1436
1329
|
// [Required]
|
|
1437
1330
|
ListService,
|
|
1438
1331
|
// [Optional]
|
|
@@ -1443,9 +1336,9 @@ class FieldsComponent {
|
|
|
1443
1336
|
provide: EXTENSIONS_IDENTIFIER,
|
|
1444
1337
|
useValue: ECmsComponent.Fields,
|
|
1445
1338
|
},
|
|
1446
|
-
], ngImport: i0, template: "<abp-page [title]=\"'Cms::Fields' | abpLocalization\" [toolbar]=\"true\">\n <div class=\"fields-page\">\n <div class=\"row \">\n <div class=\"col-3\">\n <div class=\"card mb-0\" style=\"height: 100%;\">\n <cms-field-group (OnGroupClickBack)=\"fieldGroupChange($event)\"></cms-field-group>\n </div>\n </div>\n <div class=\"col-9\">\n <div class=\"card mb-0\">\n <div class=\"card-header px-2 py-sm-2 border-bottom\">\n <div class=\"input-group\">\n <input type=\"text\" class=\"form-control\" [(ngModel)]=\"filters.filter\"\n [placeholder]=\"'AbpUi::Search' | abpLocalization\">\n <button class=\"btn btn-primary px-3\" type=\"button\" id=\"button-addon2\"\n (click)=\"list.get()\"><i class=\"fa fa-search\"></i></button>\n </div>\n </div>\n <div class=\"card-body p-0\">\n <div class=\"table-responsive table-fixed-header\">\n <ngx-datatable class=\"material container-height\" [rows]=\"data.items\" [list]=\"list\"\n [columnMode]=\"'force'\" [headerHeight]=\"50\" [footerHeight]=\"50\" rowHeight=\"auto\"\n [scrollbarV]=\"true\" [virtualization]=\"false\" [externalPaging]=\"true\"\n [count]=\"data.totalCount\">\n <ngx-datatable-column [name]=\"'Cms::DisplayName' | abpLocalization\" prop=\"displayName\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{ value }}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::Name' | abpLocalization\" prop=\"name\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{ value }}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::FormControlName' | abpLocalization\"\n prop=\"formControlName\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{ value }}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::Group' | abpLocalization\" prop=\"groupId\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{row.groupName}}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::CreationTime' | abpLocalization\" prop=\"creationTime\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{ value|date:'YYYY/MM/dd HH:
|
|
1339
|
+
], ngImport: i0, template: "<abp-page [title]=\"'Cms::Fields' | abpLocalization\" [toolbar]=\"true\">\n <div class=\"fields-page\">\n <div class=\"row \">\n <div class=\"col-3\">\n <div class=\"card mb-0\" style=\"height: 100%;\">\n <cms-field-group (OnGroupClickBack)=\"fieldGroupChange($event)\"></cms-field-group>\n </div>\n </div>\n <div class=\"col-9\">\n <div class=\"card mb-0\">\n <div class=\"card-header px-2 py-sm-2 border-bottom\">\n <div class=\"input-group\">\n <input type=\"text\" class=\"form-control\" [(ngModel)]=\"filters.filter\"\n [placeholder]=\"'AbpUi::Search' | abpLocalization\">\n <button class=\"btn btn-primary px-3\" type=\"button\" id=\"button-addon2\"\n (click)=\"list.get()\"><i class=\"fa fa-search\"></i></button>\n </div>\n </div>\n <div class=\"card-body p-0\">\n <div class=\"table-responsive table-fixed-header\">\n <ngx-datatable class=\"material container-height\" [rows]=\"data.items\" [list]=\"list\"\n [columnMode]=\"'force'\" [headerHeight]=\"50\" [footerHeight]=\"50\" rowHeight=\"auto\"\n [scrollbarV]=\"true\" [virtualization]=\"false\" [externalPaging]=\"true\"\n [count]=\"data.totalCount\">\n <ngx-datatable-column [name]=\"'Cms::DisplayName' | abpLocalization\" prop=\"displayName\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{ value }}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::Name' | abpLocalization\" prop=\"name\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{ value }}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::FormControlName' | abpLocalization\"\n prop=\"formControlName\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{ value }}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::Group' | abpLocalization\" prop=\"groupId\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{row.groupName}}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::CreationTime' | abpLocalization\" prop=\"creationTime\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{ value|date:'YYYY/MM/dd HH:mm:s' }}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [sortable]=\"false\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n <div ngbDropdown container=\"body\">\n <button type=\"button\" class=\"btn btn-outline-primary btn-sm\"\n ngbDropdownToggle> {{'AbpUi::Actions' | abpLocalization}}</button>\n <div ngbDropdownMenu>\n <button ngbDropdownItem\n routerLink=\"/cms/admin/fields/{{row.id}}/edit\">{{'AbpUi::Edit' | abpLocalization}}</button>\n <button ngbDropdownItem\n (click.stop)=\"deletefield(row)\">{{'AbpUi::Delete' | abpLocalization}}</button>\n </div>\n </div>\n </ng-template>\n </ngx-datatable-column>\n </ngx-datatable>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n\n</abp-page>", styles: ["::ng-deep .fields-page .dignite_page{background:transparent}::ng-deep .fields-page .list-group-flush>.list-group-item:first-child{border-top-width:var(--bs-list-group-border-width)}::ng-deep .fields-page .container-height{height:calc(100vh - 200px)}\n"], dependencies: [{ kind: "directive", type: i1$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i3$1.RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }, { kind: "directive", type: i1.StopPropagationDirective, selector: "[click.stop]", outputs: ["click.stop"] }, { kind: "component", type: i7.DatatableComponent, selector: "ngx-datatable", inputs: ["targetMarkerTemplate", "rows", "groupRowsBy", "groupedRows", "columns", "selected", "scrollbarV", "scrollbarH", "rowHeight", "columnMode", "headerHeight", "footerHeight", "externalPaging", "externalSorting", "limit", "count", "offset", "loadingIndicator", "selectionType", "reorderable", "swapColumns", "sortType", "sorts", "cssClasses", "messages", "rowClass", "selectCheck", "displayCheck", "groupExpansionDefault", "trackByProp", "selectAllRowsOnPage", "virtualization", "treeFromRelation", "treeToRelation", "summaryRow", "summaryHeight", "summaryPosition", "rowIdentity"], outputs: ["scroll", "activate", "select", "sort", "page", "reorder", "resize", "tableContextmenu", "treeAction"] }, { kind: "directive", type: i7.DataTableColumnDirective, selector: "ngx-datatable-column", inputs: ["name", "prop", "frozenLeft", "frozenRight", "flexGrow", "resizeable", "comparator", "pipe", "sortable", "draggable", "canAutoResize", "minWidth", "width", "maxWidth", "checkboxable", "headerCheckboxable", "headerClass", "cellClass", "isTreeColumn", "treeLevelIndent", "summaryFunc", "summaryTemplate", "cellTemplate", "headerTemplate", "treeToggleTemplate"] }, { kind: "directive", type: i7.DataTableColumnCellDirective, selector: "[ngx-datatable-cell-template]" }, { kind: "directive", type: i3.NgxDatatableListDirective, selector: "ngx-datatable[list]", inputs: ["list"], exportAs: ["ngxDatatableList"] }, { kind: "directive", type: i10.NgbDropdown, selector: "[ngbDropdown]", inputs: ["autoClose", "dropdownClass", "open", "placement", "popperOptions", "container", "display"], outputs: ["openChange"], exportAs: ["ngbDropdown"] }, { kind: "directive", type: i10.NgbDropdownToggle, selector: "[ngbDropdownToggle]" }, { kind: "directive", type: i10.NgbDropdownMenu, selector: "[ngbDropdownMenu]" }, { kind: "directive", type: i10.NgbDropdownItem, selector: "[ngbDropdownItem]", inputs: ["tabindex", "disabled"] }, { kind: "directive", type: i10.NgbDropdownButtonItem, selector: "button[ngbDropdownItem]" }, { kind: "component", type: i12.PageComponent, selector: "abp-page", inputs: ["title", "toolbar", "breadcrumb"] }, { kind: "component", type: FieldGroupComponent, selector: "cms-field-group", outputs: ["OnGroupClickBack"] }, { kind: "pipe", type: i2.DatePipe, name: "date" }, { kind: "pipe", type: i1.LocalizationPipe, name: "abpLocalization" }] }); }
|
|
1447
1340
|
}
|
|
1448
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1341
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: FieldsComponent, decorators: [{
|
|
1449
1342
|
type: Component,
|
|
1450
1343
|
args: [{ selector: 'cms-fields', providers: [
|
|
1451
1344
|
// [Required]
|
|
@@ -1458,23 +1351,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1458
1351
|
provide: EXTENSIONS_IDENTIFIER,
|
|
1459
1352
|
useValue: ECmsComponent.Fields,
|
|
1460
1353
|
},
|
|
1461
|
-
], template: "<abp-page [title]=\"'Cms::Fields' | abpLocalization\" [toolbar]=\"true\">\n <div class=\"fields-page\">\n <div class=\"row \">\n <div class=\"col-3\">\n <div class=\"card mb-0\" style=\"height: 100%;\">\n <cms-field-group (OnGroupClickBack)=\"fieldGroupChange($event)\"></cms-field-group>\n </div>\n </div>\n <div class=\"col-9\">\n <div class=\"card mb-0\">\n <div class=\"card-header px-2 py-sm-2 border-bottom\">\n <div class=\"input-group\">\n <input type=\"text\" class=\"form-control\" [(ngModel)]=\"filters.filter\"\n [placeholder]=\"'AbpUi::Search' | abpLocalization\">\n <button class=\"btn btn-primary px-3\" type=\"button\" id=\"button-addon2\"\n (click)=\"list.get()\"><i class=\"fa fa-search\"></i></button>\n </div>\n </div>\n <div class=\"card-body p-0\">\n <div class=\"table-responsive table-fixed-header\">\n <ngx-datatable class=\"material container-height\" [rows]=\"data.items\" [list]=\"list\"\n [columnMode]=\"'force'\" [headerHeight]=\"50\" [footerHeight]=\"50\" rowHeight=\"auto\"\n [scrollbarV]=\"true\" [virtualization]=\"false\" [externalPaging]=\"true\"\n [count]=\"data.totalCount\">\n <ngx-datatable-column [name]=\"'Cms::DisplayName' | abpLocalization\" prop=\"displayName\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{ value }}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::Name' | abpLocalization\" prop=\"name\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{ value }}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::FormControlName' | abpLocalization\"\n prop=\"formControlName\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{ value }}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::Group' | abpLocalization\" prop=\"groupId\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{row.groupName}}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::CreationTime' | abpLocalization\" prop=\"creationTime\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{ value|date:'YYYY/MM/dd HH:
|
|
1462
|
-
}], ctorParameters:
|
|
1354
|
+
], template: "<abp-page [title]=\"'Cms::Fields' | abpLocalization\" [toolbar]=\"true\">\n <div class=\"fields-page\">\n <div class=\"row \">\n <div class=\"col-3\">\n <div class=\"card mb-0\" style=\"height: 100%;\">\n <cms-field-group (OnGroupClickBack)=\"fieldGroupChange($event)\"></cms-field-group>\n </div>\n </div>\n <div class=\"col-9\">\n <div class=\"card mb-0\">\n <div class=\"card-header px-2 py-sm-2 border-bottom\">\n <div class=\"input-group\">\n <input type=\"text\" class=\"form-control\" [(ngModel)]=\"filters.filter\"\n [placeholder]=\"'AbpUi::Search' | abpLocalization\">\n <button class=\"btn btn-primary px-3\" type=\"button\" id=\"button-addon2\"\n (click)=\"list.get()\"><i class=\"fa fa-search\"></i></button>\n </div>\n </div>\n <div class=\"card-body p-0\">\n <div class=\"table-responsive table-fixed-header\">\n <ngx-datatable class=\"material container-height\" [rows]=\"data.items\" [list]=\"list\"\n [columnMode]=\"'force'\" [headerHeight]=\"50\" [footerHeight]=\"50\" rowHeight=\"auto\"\n [scrollbarV]=\"true\" [virtualization]=\"false\" [externalPaging]=\"true\"\n [count]=\"data.totalCount\">\n <ngx-datatable-column [name]=\"'Cms::DisplayName' | abpLocalization\" prop=\"displayName\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{ value }}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::Name' | abpLocalization\" prop=\"name\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{ value }}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::FormControlName' | abpLocalization\"\n prop=\"formControlName\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{ value }}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::Group' | abpLocalization\" prop=\"groupId\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{row.groupName}}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::CreationTime' | abpLocalization\" prop=\"creationTime\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{ value|date:'YYYY/MM/dd HH:mm:s' }}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [sortable]=\"false\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n <div ngbDropdown container=\"body\">\n <button type=\"button\" class=\"btn btn-outline-primary btn-sm\"\n ngbDropdownToggle> {{'AbpUi::Actions' | abpLocalization}}</button>\n <div ngbDropdownMenu>\n <button ngbDropdownItem\n routerLink=\"/cms/admin/fields/{{row.id}}/edit\">{{'AbpUi::Edit' | abpLocalization}}</button>\n <button ngbDropdownItem\n (click.stop)=\"deletefield(row)\">{{'AbpUi::Delete' | abpLocalization}}</button>\n </div>\n </div>\n </ng-template>\n </ngx-datatable-column>\n </ngx-datatable>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n\n</abp-page>", styles: ["::ng-deep .fields-page .dignite_page{background:transparent}::ng-deep .fields-page .list-group-flush>.list-group-item:first-child{border-top-width:var(--bs-list-group-border-width)}::ng-deep .fields-page .container-height{height:calc(100vh - 200px)}\n"] }]
|
|
1355
|
+
}], ctorParameters: () => [{ type: i1.ListService }, { type: FieldAdminService }, { type: i3.ToasterService }, { type: i3.ConfirmationService }, { type: i1.LocalizationService }, { type: i3$1.Router }, { type: CmsApiService }] });
|
|
1463
1356
|
|
|
1464
1357
|
class CreateOrUpdateFieldInputBase {
|
|
1465
|
-
/**分组id */
|
|
1466
|
-
groupId = ['', []];
|
|
1467
|
-
/**字段名称 Display name of this field */
|
|
1468
|
-
displayName = ['', [Validators.required]];
|
|
1469
|
-
/**字段唯一名称 Unique Name*/
|
|
1470
|
-
name = ['', [Validators.required]];
|
|
1471
|
-
/**描述 说明 */
|
|
1472
|
-
description = ['', []];
|
|
1473
|
-
/**FieldType字段类型 表单控件名称 */
|
|
1474
|
-
formControlName = [undefined, [Validators.required]];
|
|
1475
|
-
/**动态表单配置 */
|
|
1476
|
-
formConfiguration = new FormGroup({});
|
|
1477
1358
|
constructor(data) {
|
|
1359
|
+
/**分组id */
|
|
1360
|
+
this.groupId = ['', []];
|
|
1361
|
+
/**字段名称 Display name of this field */
|
|
1362
|
+
this.displayName = ['', [Validators.required]];
|
|
1363
|
+
/**字段唯一名称 Unique Name*/
|
|
1364
|
+
this.name = ['', [Validators.required]];
|
|
1365
|
+
/**描述 说明 */
|
|
1366
|
+
this.description = ['', []];
|
|
1367
|
+
/**FieldType字段类型 表单控件名称 */
|
|
1368
|
+
this.formControlName = [undefined, [Validators.required]];
|
|
1369
|
+
/**动态表单配置 */
|
|
1370
|
+
this.formConfiguration = new FormGroup({});
|
|
1478
1371
|
if (data) {
|
|
1479
1372
|
for (const key in data) {
|
|
1480
1373
|
if (data.hasOwnProperty(key)) {
|
|
@@ -1486,12 +1379,6 @@ class CreateOrUpdateFieldInputBase {
|
|
|
1486
1379
|
}
|
|
1487
1380
|
|
|
1488
1381
|
class CreateOrEditFieldComponent {
|
|
1489
|
-
_FieldAbstractsService;
|
|
1490
|
-
_CmsApiService;
|
|
1491
|
-
_FieldAdminService;
|
|
1492
|
-
_LocalizationService;
|
|
1493
|
-
/**表单控件模板-动态表单配置组件 */
|
|
1494
|
-
FormDynamicRef;
|
|
1495
1382
|
constructor(_FieldAbstractsService, _CmsApiService, _FieldAdminService, _LocalizationService) {
|
|
1496
1383
|
this._FieldAbstractsService = _FieldAbstractsService;
|
|
1497
1384
|
this._CmsApiService = _CmsApiService;
|
|
@@ -1501,8 +1388,6 @@ class CreateOrEditFieldComponent {
|
|
|
1501
1388
|
this._FieldAbstractsService.getfieldGroupList();
|
|
1502
1389
|
}
|
|
1503
1390
|
}
|
|
1504
|
-
/**表单实体 */
|
|
1505
|
-
_Entity;
|
|
1506
1391
|
set Entity(v) {
|
|
1507
1392
|
if (v) {
|
|
1508
1393
|
this._Entity = v;
|
|
@@ -1512,9 +1397,6 @@ class CreateOrEditFieldComponent {
|
|
|
1512
1397
|
get formControlName() {
|
|
1513
1398
|
return this._Entity.get('formControlName');
|
|
1514
1399
|
}
|
|
1515
|
-
/**选择的表单信息 */
|
|
1516
|
-
_selected_copy;
|
|
1517
|
-
_selected;
|
|
1518
1400
|
set selected(v) {
|
|
1519
1401
|
if (v) {
|
|
1520
1402
|
this._selected = v || '';
|
|
@@ -1522,7 +1404,6 @@ class CreateOrEditFieldComponent {
|
|
|
1522
1404
|
this.dataLoaded();
|
|
1523
1405
|
}
|
|
1524
1406
|
}
|
|
1525
|
-
_CreateDynamicComponentsService = inject(CreateDynamicComponentsService);
|
|
1526
1407
|
async dataLoaded() {
|
|
1527
1408
|
if (this._FieldAbstractsService.fromControlList.length == 0) {
|
|
1528
1409
|
await this._FieldAbstractsService.getFromControlList();
|
|
@@ -1578,13 +1459,13 @@ class CreateOrEditFieldComponent {
|
|
|
1578
1459
|
}
|
|
1579
1460
|
formControlNameChange() {
|
|
1580
1461
|
}
|
|
1581
|
-
static
|
|
1582
|
-
static
|
|
1462
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: CreateOrEditFieldComponent, deps: [{ token: FieldAbstractsService }, { token: CmsApiService }, { token: FieldAdminService }, { token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1463
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.9", type: CreateOrEditFieldComponent, selector: "cms-create-or-edit-field", inputs: { Entity: "Entity", selected: "selected" }, viewQueries: [{ propertyName: "FormDynamicRef", first: true, predicate: ["FormDynamicRef"], descendants: true, read: ViewContainerRef, static: true }], ngImport: i0, template: "<form [formGroup]=\"_Entity\">\n <div class=\"mb-2\">\n <label class=\"form-label\" for=\"groupId\">{{'Cms::FieldGroup' | abpLocalization}}</label>\n <select class=\"form-select\" formControlName=\"groupId\">\n <option value=\"\">{{'Cms::OptionalGrouping' | abpLocalization}}</option>\n <ng-container *ngFor=\"let item of _FieldAbstractsService.fieldGroupList\">\n <option [value]=\"item.id\">{{item.name}}</option>\n </ng-container>\n </select>\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\" for=\"displayName\">{{'DigniteAbpForms::FieldDisplayName' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"displayName\" (blur)=\"disPlayNameInputBlur($event)\">\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\" for=\"name\">{{'DigniteAbpForms::FieldName' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"name\" (input)=\"nameInputBlur($event)\">\n <div class=\"text-danger invalid-feedback\" *ngIf=\"nameInput.errors?.repetition\">\n {{nameInput.errors?.repetition}}\n </div>\n <div class=\"form-text\">{{'DigniteAbpForms::FieldNameHelpText' | abpLocalization}}</div>\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\" for=\"description\">{{'Cms::Description' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"description\">\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\" for=\"formControlName\">{{'Cms::FieldType' | abpLocalization}}</label>\n <select class=\"form-select\" formControlName=\"formControlName\" (change)=\"formControlNameChange()\">\n <ng-container *ngFor=\"let item of _FieldAbstractsService.fromControlList;let i =index\">\n <option [value]=\"item.name\">{{item.displayName}}</option>\n </ng-container>\n </select>\n </div>\n <ng-container *ngIf=\"_Entity.value.formControlName&&_Entity\"> \n <df-dynamic [type]=\"_Entity.value.formControlName\" [entity]=\"_Entity\" [selected]=\"_selected\"></df-dynamic>\n </ng-container>\n\n</form>", styles: [""], dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1$1.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i1$1.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i1$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1$1.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: i7$1.ValidationGroupDirective, selector: "[formGroup],[formGroupName]", exportAs: ["validationGroup"] }, { kind: "directive", type: i7$1.ValidationDirective, selector: "[formControl],[formControlName]", exportAs: ["validationDirective"] }, { kind: "component", type: i8.DynamicComponent, selector: "df-dynamic", inputs: ["selected", "type", "entity", "culture", "parentFiledName", "fields"] }, { kind: "pipe", type: i1.LocalizationPipe, name: "abpLocalization" }] }); }
|
|
1583
1464
|
}
|
|
1584
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1465
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: CreateOrEditFieldComponent, decorators: [{
|
|
1585
1466
|
type: Component,
|
|
1586
1467
|
args: [{ selector: 'cms-create-or-edit-field', template: "<form [formGroup]=\"_Entity\">\n <div class=\"mb-2\">\n <label class=\"form-label\" for=\"groupId\">{{'Cms::FieldGroup' | abpLocalization}}</label>\n <select class=\"form-select\" formControlName=\"groupId\">\n <option value=\"\">{{'Cms::OptionalGrouping' | abpLocalization}}</option>\n <ng-container *ngFor=\"let item of _FieldAbstractsService.fieldGroupList\">\n <option [value]=\"item.id\">{{item.name}}</option>\n </ng-container>\n </select>\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\" for=\"displayName\">{{'DigniteAbpForms::FieldDisplayName' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"displayName\" (blur)=\"disPlayNameInputBlur($event)\">\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\" for=\"name\">{{'DigniteAbpForms::FieldName' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"name\" (input)=\"nameInputBlur($event)\">\n <div class=\"text-danger invalid-feedback\" *ngIf=\"nameInput.errors?.repetition\">\n {{nameInput.errors?.repetition}}\n </div>\n <div class=\"form-text\">{{'DigniteAbpForms::FieldNameHelpText' | abpLocalization}}</div>\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\" for=\"description\">{{'Cms::Description' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"description\">\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\" for=\"formControlName\">{{'Cms::FieldType' | abpLocalization}}</label>\n <select class=\"form-select\" formControlName=\"formControlName\" (change)=\"formControlNameChange()\">\n <ng-container *ngFor=\"let item of _FieldAbstractsService.fromControlList;let i =index\">\n <option [value]=\"item.name\">{{item.displayName}}</option>\n </ng-container>\n </select>\n </div>\n <ng-container *ngIf=\"_Entity.value.formControlName&&_Entity\"> \n <df-dynamic [type]=\"_Entity.value.formControlName\" [entity]=\"_Entity\" [selected]=\"_selected\"></df-dynamic>\n </ng-container>\n\n</form>" }]
|
|
1587
|
-
}], ctorParameters:
|
|
1468
|
+
}], ctorParameters: () => [{ type: FieldAbstractsService }, { type: CmsApiService }, { type: FieldAdminService }, { type: i1.LocalizationService }], propDecorators: { FormDynamicRef: [{
|
|
1588
1469
|
type: ViewChild,
|
|
1589
1470
|
args: ['FormDynamicRef', { read: ViewContainerRef, static: true }]
|
|
1590
1471
|
}], Entity: [{
|
|
@@ -1594,13 +1475,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1594
1475
|
}] } });
|
|
1595
1476
|
|
|
1596
1477
|
class CreateFieldComponent {
|
|
1597
|
-
fb;
|
|
1598
|
-
_FieldAdminService;
|
|
1599
|
-
toaster;
|
|
1600
|
-
_location;
|
|
1601
|
-
_LocalizationService;
|
|
1602
|
-
_CmsApiService;
|
|
1603
|
-
router;
|
|
1604
1478
|
constructor(fb, _FieldAdminService, toaster, _location, _LocalizationService, _CmsApiService, router) {
|
|
1605
1479
|
this.fb = fb;
|
|
1606
1480
|
this._FieldAdminService = _FieldAdminService;
|
|
@@ -1609,12 +1483,8 @@ class CreateFieldComponent {
|
|
|
1609
1483
|
this._LocalizationService = _LocalizationService;
|
|
1610
1484
|
this._CmsApiService = _CmsApiService;
|
|
1611
1485
|
this.router = router;
|
|
1486
|
+
this._UpdateListService = inject(UpdateListService);
|
|
1612
1487
|
}
|
|
1613
|
-
_UpdateListService = inject(UpdateListService);
|
|
1614
|
-
/**表单实体 */
|
|
1615
|
-
newEntity;
|
|
1616
|
-
/**获取提交按钮替身,用于真实触发表单提交 */
|
|
1617
|
-
submitclick;
|
|
1618
1488
|
ngOnInit() {
|
|
1619
1489
|
//Called after the constructor, initializing input properties, and the first call to ngOnChanges.
|
|
1620
1490
|
//Add 'implements OnInit' to the class.
|
|
@@ -1637,15 +1507,15 @@ class CreateFieldComponent {
|
|
|
1637
1507
|
});
|
|
1638
1508
|
});
|
|
1639
1509
|
}
|
|
1640
|
-
static
|
|
1641
|
-
static
|
|
1510
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: CreateFieldComponent, deps: [{ token: i1$1.FormBuilder }, { token: FieldAdminService }, { token: i3.ToasterService }, { token: i2.Location }, { token: i1.LocalizationService }, { token: CmsApiService }, { token: i3$1.Router }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1511
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.9", type: CreateFieldComponent, selector: "cms-create-field", providers: [
|
|
1642
1512
|
{
|
|
1643
1513
|
provide: EXTENSIONS_IDENTIFIER,
|
|
1644
1514
|
useValue: ECmsComponent.FieldsCreate,
|
|
1645
1515
|
},
|
|
1646
|
-
], viewQueries: [{ propertyName: "submitclick", first: true, predicate: ["submitclick"], descendants: true, static: true }], ngImport: i0, template: "<form class=\"row g-3 needs-validation\" [formGroup]=\"newEntity\" (ngSubmit)=\"save()\">\n <abp-page [title]=\"'Cms::CreateField' | abpLocalization\" [toolbar]=\"true\">\n <div class=\"create-field-page\">\n <button type=\"submit\" style=\"display: none;\" #submitclick></button>\n <div class=\"card\">\n <div class=\"card-body\">\n <cms-create-or-edit-field [Entity]=\"newEntity\"></cms-create-or-edit-field>\n </div>\n </div>\n </div>\n </abp-page>\n</form>", styles: ["::ng-deep .create-field-page .dignite_page{height:calc(100vh - 125px);overflow:auto}::ng-deep .create-field-page .form-control,::ng-deep .create-field-page .form-select{padding:.475rem 1.25rem}\n"], dependencies: [{ kind: "directive", type: i1$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1.FormSubmitDirective, selector: "form[ngSubmit][formGroup]", inputs: ["debounce", "notValidateOnSubmit", "markAsDirtyWhenSubmit"], outputs: ["ngSubmit"] }, { kind: "directive", type: i7$1.ValidationGroupDirective, selector: "[formGroup],[formGroupName]", exportAs: ["validationGroup"] }, { kind: "component", type:
|
|
1516
|
+
], viewQueries: [{ propertyName: "submitclick", first: true, predicate: ["submitclick"], descendants: true, static: true }], ngImport: i0, template: "<form class=\"row g-3 needs-validation\" [formGroup]=\"newEntity\" (ngSubmit)=\"save()\">\n <abp-page [title]=\"'Cms::CreateField' | abpLocalization\" [toolbar]=\"true\">\n <div class=\"create-field-page\">\n <button type=\"submit\" style=\"display: none;\" #submitclick></button>\n <div class=\"card\">\n <div class=\"card-body\">\n <cms-create-or-edit-field [Entity]=\"newEntity\"></cms-create-or-edit-field>\n </div>\n </div>\n </div>\n </abp-page>\n</form>", styles: ["::ng-deep .create-field-page .dignite_page{height:calc(100vh - 125px);overflow:auto}::ng-deep .create-field-page .form-control,::ng-deep .create-field-page .form-select{padding:.475rem 1.25rem}\n"], dependencies: [{ kind: "directive", type: i1$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1.FormSubmitDirective, selector: "form[ngSubmit][formGroup]", inputs: ["debounce", "notValidateOnSubmit", "markAsDirtyWhenSubmit"], outputs: ["ngSubmit"] }, { kind: "directive", type: i7$1.ValidationGroupDirective, selector: "[formGroup],[formGroupName]", exportAs: ["validationGroup"] }, { kind: "component", type: i12.PageComponent, selector: "abp-page", inputs: ["title", "toolbar", "breadcrumb"] }, { kind: "component", type: CreateOrEditFieldComponent, selector: "cms-create-or-edit-field", inputs: ["Entity", "selected"] }, { kind: "pipe", type: i1.LocalizationPipe, name: "abpLocalization" }] }); }
|
|
1647
1517
|
}
|
|
1648
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1518
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: CreateFieldComponent, decorators: [{
|
|
1649
1519
|
type: Component,
|
|
1650
1520
|
args: [{ selector: 'cms-create-field', providers: [
|
|
1651
1521
|
{
|
|
@@ -1653,21 +1523,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1653
1523
|
useValue: ECmsComponent.FieldsCreate,
|
|
1654
1524
|
},
|
|
1655
1525
|
], template: "<form class=\"row g-3 needs-validation\" [formGroup]=\"newEntity\" (ngSubmit)=\"save()\">\n <abp-page [title]=\"'Cms::CreateField' | abpLocalization\" [toolbar]=\"true\">\n <div class=\"create-field-page\">\n <button type=\"submit\" style=\"display: none;\" #submitclick></button>\n <div class=\"card\">\n <div class=\"card-body\">\n <cms-create-or-edit-field [Entity]=\"newEntity\"></cms-create-or-edit-field>\n </div>\n </div>\n </div>\n </abp-page>\n</form>", styles: ["::ng-deep .create-field-page .dignite_page{height:calc(100vh - 125px);overflow:auto}::ng-deep .create-field-page .form-control,::ng-deep .create-field-page .form-select{padding:.475rem 1.25rem}\n"] }]
|
|
1656
|
-
}], ctorParameters:
|
|
1526
|
+
}], ctorParameters: () => [{ type: i1$1.FormBuilder }, { type: FieldAdminService }, { type: i3.ToasterService }, { type: i2.Location }, { type: i1.LocalizationService }, { type: CmsApiService }, { type: i3$1.Router }], propDecorators: { submitclick: [{
|
|
1657
1527
|
type: ViewChild,
|
|
1658
1528
|
args: ['submitclick', { static: true }]
|
|
1659
1529
|
}] } });
|
|
1660
1530
|
|
|
1661
1531
|
class EditFieldComponent {
|
|
1662
|
-
fb;
|
|
1663
|
-
_FieldAbstractsService;
|
|
1664
|
-
_FieldAdminService;
|
|
1665
|
-
route;
|
|
1666
|
-
toaster;
|
|
1667
|
-
_location;
|
|
1668
|
-
_LocalizationService;
|
|
1669
|
-
_CmsApiService;
|
|
1670
|
-
router;
|
|
1671
1532
|
constructor(fb, _FieldAbstractsService, _FieldAdminService, route, toaster, _location, _LocalizationService, _CmsApiService, router) {
|
|
1672
1533
|
this.fb = fb;
|
|
1673
1534
|
this._FieldAbstractsService = _FieldAbstractsService;
|
|
@@ -1678,15 +1539,10 @@ class EditFieldComponent {
|
|
|
1678
1539
|
this._LocalizationService = _LocalizationService;
|
|
1679
1540
|
this._CmsApiService = _CmsApiService;
|
|
1680
1541
|
this.router = router;
|
|
1542
|
+
/**字段id */
|
|
1543
|
+
this.fieldId = '';
|
|
1544
|
+
this._UpdateListService = inject(UpdateListService);
|
|
1681
1545
|
}
|
|
1682
|
-
/**表单实体 */
|
|
1683
|
-
newEntity;
|
|
1684
|
-
/**字段id */
|
|
1685
|
-
fieldId = '';
|
|
1686
|
-
/**字段详情 */
|
|
1687
|
-
fieldDetails;
|
|
1688
|
-
/**获取提交按钮替身,用于真实触发表单提交 */
|
|
1689
|
-
submitclick;
|
|
1690
1546
|
async ngOnInit() {
|
|
1691
1547
|
const _fieldId = this.route.snapshot.params.id;
|
|
1692
1548
|
if (_fieldId) {
|
|
@@ -1715,7 +1571,6 @@ class EditFieldComponent {
|
|
|
1715
1571
|
submitclickBtn() {
|
|
1716
1572
|
this.submitclick.nativeElement.click();
|
|
1717
1573
|
}
|
|
1718
|
-
_UpdateListService = inject(UpdateListService);
|
|
1719
1574
|
/**保存表单 */
|
|
1720
1575
|
save() {
|
|
1721
1576
|
let input = this.newEntity.value;
|
|
@@ -1729,15 +1584,15 @@ class EditFieldComponent {
|
|
|
1729
1584
|
});
|
|
1730
1585
|
}));
|
|
1731
1586
|
}
|
|
1732
|
-
static
|
|
1733
|
-
static
|
|
1587
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: EditFieldComponent, deps: [{ token: i1$1.FormBuilder }, { token: FieldAbstractsService }, { token: FieldAdminService }, { token: i3$1.ActivatedRoute }, { token: i3.ToasterService }, { token: i2.Location }, { token: i1.LocalizationService }, { token: CmsApiService }, { token: i3$1.Router }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1588
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.9", type: EditFieldComponent, selector: "cms-edit-field", providers: [
|
|
1734
1589
|
{
|
|
1735
1590
|
provide: EXTENSIONS_IDENTIFIER,
|
|
1736
1591
|
useValue: ECmsComponent.FieldsEdit,
|
|
1737
1592
|
},
|
|
1738
|
-
], viewQueries: [{ propertyName: "submitclick", first: true, predicate: ["submitclick"], descendants: true, static: true }], ngImport: i0, template: "<form class=\"row g-3 needs-validation\" [formGroup]=\"newEntity\" (ngSubmit)=\"save()\">\n <abp-page [title]=\"'Cms::EditField' | abpLocalization\" [toolbar]=\"true\">\n <div class=\"create-field-page\">\n <button type=\"submit\" style=\"display: none;\" #submitclick></button>\n <!-- <div class=\"p-3 bg-white rounded-1\"> -->\n <div class=\"card\">\n <div class=\"card-body\">\n <cms-create-or-edit-field [Entity]=\"newEntity\" [selected]=\"fieldDetails\"></cms-create-or-edit-field>\n </div>\n </div>\n </div>\n </abp-page>\n</form>", styles: [""], dependencies: [{ kind: "directive", type: i1$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1.FormSubmitDirective, selector: "form[ngSubmit][formGroup]", inputs: ["debounce", "notValidateOnSubmit", "markAsDirtyWhenSubmit"], outputs: ["ngSubmit"] }, { kind: "directive", type: i7$1.ValidationGroupDirective, selector: "[formGroup],[formGroupName]", exportAs: ["validationGroup"] }, { kind: "component", type:
|
|
1593
|
+
], viewQueries: [{ propertyName: "submitclick", first: true, predicate: ["submitclick"], descendants: true, static: true }], ngImport: i0, template: "<form class=\"row g-3 needs-validation\" [formGroup]=\"newEntity\" (ngSubmit)=\"save()\">\n <abp-page [title]=\"'Cms::EditField' | abpLocalization\" [toolbar]=\"true\">\n <div class=\"create-field-page\">\n <button type=\"submit\" style=\"display: none;\" #submitclick></button>\n <!-- <div class=\"p-3 bg-white rounded-1\"> -->\n <div class=\"card\">\n <div class=\"card-body\">\n <cms-create-or-edit-field [Entity]=\"newEntity\" [selected]=\"fieldDetails\"></cms-create-or-edit-field>\n </div>\n </div>\n </div>\n </abp-page>\n</form>", styles: [""], dependencies: [{ kind: "directive", type: i1$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1.FormSubmitDirective, selector: "form[ngSubmit][formGroup]", inputs: ["debounce", "notValidateOnSubmit", "markAsDirtyWhenSubmit"], outputs: ["ngSubmit"] }, { kind: "directive", type: i7$1.ValidationGroupDirective, selector: "[formGroup],[formGroupName]", exportAs: ["validationGroup"] }, { kind: "component", type: i12.PageComponent, selector: "abp-page", inputs: ["title", "toolbar", "breadcrumb"] }, { kind: "component", type: CreateOrEditFieldComponent, selector: "cms-create-or-edit-field", inputs: ["Entity", "selected"] }, { kind: "pipe", type: i1.LocalizationPipe, name: "abpLocalization" }] }); }
|
|
1739
1594
|
}
|
|
1740
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1595
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: EditFieldComponent, decorators: [{
|
|
1741
1596
|
type: Component,
|
|
1742
1597
|
args: [{ selector: 'cms-edit-field', providers: [
|
|
1743
1598
|
{
|
|
@@ -1745,23 +1600,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1745
1600
|
useValue: ECmsComponent.FieldsEdit,
|
|
1746
1601
|
},
|
|
1747
1602
|
], template: "<form class=\"row g-3 needs-validation\" [formGroup]=\"newEntity\" (ngSubmit)=\"save()\">\n <abp-page [title]=\"'Cms::EditField' | abpLocalization\" [toolbar]=\"true\">\n <div class=\"create-field-page\">\n <button type=\"submit\" style=\"display: none;\" #submitclick></button>\n <!-- <div class=\"p-3 bg-white rounded-1\"> -->\n <div class=\"card\">\n <div class=\"card-body\">\n <cms-create-or-edit-field [Entity]=\"newEntity\" [selected]=\"fieldDetails\"></cms-create-or-edit-field>\n </div>\n </div>\n </div>\n </abp-page>\n</form>" }]
|
|
1748
|
-
}], ctorParameters:
|
|
1603
|
+
}], ctorParameters: () => [{ type: i1$1.FormBuilder }, { type: FieldAbstractsService }, { type: FieldAdminService }, { type: i3$1.ActivatedRoute }, { type: i3.ToasterService }, { type: i2.Location }, { type: i1.LocalizationService }, { type: CmsApiService }, { type: i3$1.Router }], propDecorators: { submitclick: [{
|
|
1749
1604
|
type: ViewChild,
|
|
1750
1605
|
args: ['submitclick', { static: true }]
|
|
1751
1606
|
}] } });
|
|
1752
1607
|
|
|
1753
1608
|
class CreateOrUpdateSitesInputBase {
|
|
1754
|
-
/**字段名称 Display name of this field */
|
|
1755
|
-
displayName = ['', [Validators.required]];
|
|
1756
|
-
/**字段唯一名称 Unique Name*/
|
|
1757
|
-
name = ['', [Validators.required]];
|
|
1758
|
-
/**主机地址 */
|
|
1759
|
-
host = ['https://', [Validators.required]];
|
|
1760
|
-
/**是否激活 */
|
|
1761
|
-
isActive = [true, []];
|
|
1762
|
-
// 语言
|
|
1763
|
-
languages = [[], [Validators.required]];
|
|
1764
1609
|
constructor(data) {
|
|
1610
|
+
this.displayName = ['', [Validators.required]];
|
|
1611
|
+
this.name = ['', [Validators.required]];
|
|
1612
|
+
this.host = ['https://', [Validators.required]];
|
|
1613
|
+
this.isActive = [true, []];
|
|
1614
|
+
this.languages = [[], [Validators.required]];
|
|
1765
1615
|
if (data) {
|
|
1766
1616
|
for (const key in data) {
|
|
1767
1617
|
if (data.hasOwnProperty(key)) {
|
|
@@ -1772,16 +1622,7 @@ class CreateOrUpdateSitesInputBase {
|
|
|
1772
1622
|
}
|
|
1773
1623
|
}
|
|
1774
1624
|
|
|
1775
|
-
/* eslint-disable @angular-eslint/use-lifecycle-interface */
|
|
1776
1625
|
class SitesComponent {
|
|
1777
|
-
list;
|
|
1778
|
-
_SiteAdminService;
|
|
1779
|
-
toaster;
|
|
1780
|
-
confirmation;
|
|
1781
|
-
fb;
|
|
1782
|
-
configState;
|
|
1783
|
-
_LocalizationService;
|
|
1784
|
-
_CmsApiService;
|
|
1785
1626
|
constructor(list, _SiteAdminService, toaster, confirmation, fb, configState, _LocalizationService, _CmsApiService) {
|
|
1786
1627
|
this.list = list;
|
|
1787
1628
|
this._SiteAdminService = _SiteAdminService;
|
|
@@ -1791,28 +1632,20 @@ class SitesComponent {
|
|
|
1791
1632
|
this.configState = configState;
|
|
1792
1633
|
this._LocalizationService = _LocalizationService;
|
|
1793
1634
|
this._CmsApiService = _CmsApiService;
|
|
1635
|
+
/**创建站点模态框状态 */
|
|
1636
|
+
this.createSitesOpen = false;
|
|
1637
|
+
/**用于确定模态的繁忙状态是否为真 */
|
|
1638
|
+
this.modalBusy = false;
|
|
1639
|
+
this.ColumnMode = ColumnMode;
|
|
1640
|
+
this.data = {
|
|
1641
|
+
items: [],
|
|
1642
|
+
totalCount: 0,
|
|
1643
|
+
};
|
|
1644
|
+
this.filters = {};
|
|
1794
1645
|
}
|
|
1795
|
-
/**创建站点模态框状态 */
|
|
1796
|
-
createSitesOpen = false;
|
|
1797
|
-
/**用于确定模态的繁忙状态是否为真 */
|
|
1798
|
-
modalBusy = false;
|
|
1799
|
-
/**创建站点表单 */
|
|
1800
|
-
createOrEditForm;
|
|
1801
1646
|
get languagesInput() {
|
|
1802
1647
|
return this.createOrEditForm.get('languages').value;
|
|
1803
1648
|
}
|
|
1804
|
-
/**语言列表 */
|
|
1805
|
-
languages;
|
|
1806
|
-
/**站点给定的表单值 */
|
|
1807
|
-
selected;
|
|
1808
|
-
/**表单控件模板-动态赋值表单控件 */
|
|
1809
|
-
createModalSubmit;
|
|
1810
|
-
ColumnMode = ColumnMode;
|
|
1811
|
-
data = {
|
|
1812
|
-
items: [],
|
|
1813
|
-
totalCount: 0,
|
|
1814
|
-
};
|
|
1815
|
-
filters = {};
|
|
1816
1649
|
ngOnInit() {
|
|
1817
1650
|
this.hookToQuery();
|
|
1818
1651
|
}
|
|
@@ -1873,6 +1706,8 @@ class SitesComponent {
|
|
|
1873
1706
|
}
|
|
1874
1707
|
/**表单保存提交 */
|
|
1875
1708
|
createOrEditSave() {
|
|
1709
|
+
if (!this.createOrEditForm.valid)
|
|
1710
|
+
return;
|
|
1876
1711
|
if (this.selected) {
|
|
1877
1712
|
return this.EditSave();
|
|
1878
1713
|
}
|
|
@@ -2004,55 +1839,47 @@ class SitesComponent {
|
|
|
2004
1839
|
});
|
|
2005
1840
|
};
|
|
2006
1841
|
}
|
|
2007
|
-
static
|
|
2008
|
-
static
|
|
2009
|
-
// [Required]
|
|
1842
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: SitesComponent, deps: [{ token: i1.ListService }, { token: SiteAdminService }, { token: i3.ToasterService }, { token: i3.ConfirmationService }, { token: i1$1.FormBuilder }, { token: i1.ConfigStateService }, { token: i1.LocalizationService }, { token: CmsApiService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1843
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.9", type: SitesComponent, selector: "cms-sites", providers: [
|
|
2010
1844
|
ListService,
|
|
2011
|
-
// [Optional]
|
|
2012
|
-
// Provide this token if you want a different debounce time.
|
|
2013
|
-
// Default is 300. Cannot be 0. Any value below 100 is not recommended.
|
|
2014
1845
|
{ provide: LIST_QUERY_DEBOUNCE_TIME, useValue: 500 },
|
|
2015
1846
|
{
|
|
2016
1847
|
provide: EXTENSIONS_IDENTIFIER,
|
|
2017
1848
|
useValue: ECmsComponent.Sites,
|
|
2018
1849
|
},
|
|
2019
|
-
], viewQueries: [{ propertyName: "createModalSubmit", first: true, predicate: ["createModalSubmit"], descendants: true }], ngImport: i0, template: "<abp-page [title]=\"'Cms::Sites' | abpLocalization\" [toolbar]=\"true\">\n <div class=\"sites-page\">\n <div class=\"card\">\n <div class=\"card-body px-2 py-sm-2 border-bottom\">\n <div class=\"input-group\">\n <input type=\"text\" class=\"form-control\" [(ngModel)]=\"filters.filter\"\n [placeholder]=\"'AbpUi::Search' | abpLocalization\" />\n <button class=\"btn btn-primary px-3\" type=\"button\" id=\"button-addon2\" (click)=\"list.get()\">\n <i class=\"fa fa-search\"></i>\n </button>\n </div>\n </div>\n </div>\n <div class=\"card mb-0\">\n <div class=\"card-body p-0\">\n <div class=\"table-responsive table-fixed-header\">\n <ngx-datatable class=\"material container-height\" [rows]=\"data.items\" [list]=\"list\"\n [columnMode]=\"'force'\" [headerHeight]=\"50\" [footerHeight]=\"50\" rowHeight=\"auto\"\n [scrollbarV]=\"true\" [virtualization]=\"false\" [externalPaging]=\"true\" [count]=\"data.totalCount\">\n <ngx-datatable-column [name]=\"'Cms::DisplayName' | abpLocalization\" prop=\"displayName\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{ value }}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::Name' | abpLocalization\" prop=\"name\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{ value }}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::IsActive' | abpLocalization\" prop=\"isActive\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n <i class=\"fas fa-check text-success\" *ngIf=\"value\"></i>\n <i class=\"fas fa-times text-danger\" *ngIf=\"!value\"></i>\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::Host' | abpLocalization\" prop=\"host\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{ value }}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::CreationTime' | abpLocalization\" prop=\"creationTime\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{ value | date : 'yyyy-MM-dd hh-mm-ss' }}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [sortable]=\"false\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n <div ngbDropdown container=\"body\">\n <button type=\"button\" class=\"btn btn-outline-primary btn-sm\" ngbDropdownToggle>\n {{'AbpUi::Actions' | abpLocalization}}\n </button>\n <div ngbDropdownMenu>\n <button ngbDropdownItem\n (click)=\"EditSitesBtn(row)\">{{'AbpUi::Edit' | abpLocalization}}</button>\n <button ngbDropdownItem\n (click)=\"deletefield(row)\">{{'AbpUi::Delete' | abpLocalization}}</button>\n </div>\n </div>\n </ng-template>\n </ngx-datatable-column>\n </ngx-datatable>\n </div>\n </div>\n </div>\n\n\n </div>\n\n\n\n</abp-page>\n\n\n<!-- <dignite-page [title]=\"'Cms::Sites' | abpLocalization\" [back]=\"false\" [class]=\"'sites-page'\">\n <ng-template #pageHeader>\n <button type=\"button\" class=\"btn btn-primary btn-sm ms-2\" (click.stop)=\"createSitesBtn()\">\n <i class=\"fa fa-plus pe-1\" aria-hidden=\"true\"></i>{{'Cms::New' | abpLocalization}}\n </button>\n </ng-template>\n <ng-template #pageBody>\n \n </ng-template>\n</dignite-page> -->\n\n<abp-modal [(visible)]=\"createSitesOpen\" [busy]=\"modalBusy\" (visibleChange)=\"createGroupVisibleChange($event)\">\n <ng-template #abpHeader>\n <h3>{{selected?('AbpUi::Edit' | abpLocalization):('Cms::New' | abpLocalization)}}</h3>\n </ng-template>\n <ng-template #abpBody>\n <ng-template #loaderRef>\n <div class=\"text-center\"><i class=\"fa fa-pulse fa-spinner\" aria-hidden=\"true\"></i></div>\n </ng-template>\n <ng-container *ngIf=\"createOrEditForm; else loaderRef\">\n <form class=\"sites-modal-form\" #myForm=\"ngForm\" [formGroup]=\"createOrEditForm\"\n (ngSubmit)=\"createOrEditSave()\">\n <button type=\"submit\" #createModalSubmit style=\"display: none\"></button>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::DisplayName' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"displayName\"\n (blur)=\"disPlayNameInputBlur($event)\" />\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::Name' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"name\" />\n <div class=\"text-danger invalid-feedback\" *ngIf=\"nameInput.errors?.repetition\">\n {{nameInput.errors?.repetition}}\n </div>\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::Host' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"host\" />\n <div class=\"text-danger invalid-feedback\" *ngIf=\"hostInput.errors?.repetition\">\n {{hostInput.errors?.repetition}}\n </div>\n </div>\n <div class=\"mb-2\">\n <div class=\"form-check form-check-inline\">\n <input class=\"form-check-input\" type=\"checkbox\" value=\"true\" formControlName=\"isActive\"\n id=\"flexRadioDefault1\" />\n <label class=\"form-check-label\" for=\"flexRadioDefault1\"> {{'Cms::IsActive' | abpLocalization}}\n </label>\n </div>\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::Languages' | abpLocalization}}</label>\n <ul class=\"list-group list-group-flush\">\n <ng-container *ngFor=\"let item of languages; let i = index\">\n <li class=\"list-group-item d-flex justify-content-between align-items-center\">\n <div>\n <input class=\"form-check-input me-1\" type=\"checkbox\" [value]=\"item.cultureName\"\n id=\"firstRadio{{ i }}\" [checked]=\"item.ischecked\"\n (change)=\"languagesChange($event);!item.ischecked\" />\n <label class=\"form-check-label\" for=\"firstRadio{{ i }}\">{{ item.displayName\n }}</label>\n </div>\n <ng-container *ngIf=\"item.ischecked\">\n <div class=\"text-primary\" *ngIf=\"item.isDefault\">{{'Cms::Default' | abpLocalization}}\n </div>\n <div (click.stop)=\"setDefault(item)\" *ngIf=\"!item.isDefault\">\n {{'Cms::SetDefault' | abpLocalization}}</div>\n </ng-container>\n </li>\n </ng-container>\n </ul>\n </div>\n </form>\n </ng-container>\n </ng-template>\n <ng-template #abpFooter>\n <button type=\"button\" class=\"btn btn-secondary\" abpClose>{{'AbpUi::Close' | abpLocalization}}</button>\n <abp-button iconClass=\"fa fa-check\"\n (click)=\"createModalSubmit.nativeElement.click()\">{{'AbpUi::Save' | abpLocalization}}</abp-button>\n </ng-template>\n</abp-modal>", styles: ["::ng-deep .sites-page .dignite_page{background:transparent}::ng-deep .sites-page .list-group-flush>.list-group-item:first-child{border-top-width:var(--bs-list-group-border-width)}::ng-deep .sites-page .container-height{height:calc(100vh - 220px)}::ng-deep .sites-modal-form .form-control{padding:.4rem 1.25rem}\n"], dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1$1.CheckboxControlValueAccessor, selector: "input[type=checkbox][formControlName],input[type=checkbox][formControl],input[type=checkbox][ngModel]" }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i1$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: i1.FormSubmitDirective, selector: "form[ngSubmit][formGroup]", inputs: ["debounce", "notValidateOnSubmit", "markAsDirtyWhenSubmit"], outputs: ["ngSubmit"] }, { kind: "directive", type: i1.StopPropagationDirective, selector: "[click.stop]", outputs: ["click.stop"] }, { kind: "component", type: i7.DatatableComponent, selector: "ngx-datatable", inputs: ["targetMarkerTemplate", "rows", "groupRowsBy", "groupedRows", "columns", "selected", "scrollbarV", "scrollbarH", "rowHeight", "columnMode", "headerHeight", "footerHeight", "externalPaging", "externalSorting", "limit", "count", "offset", "loadingIndicator", "selectionType", "reorderable", "swapColumns", "sortType", "sorts", "cssClasses", "messages", "rowClass", "selectCheck", "displayCheck", "groupExpansionDefault", "trackByProp", "selectAllRowsOnPage", "virtualization", "treeFromRelation", "treeToRelation", "summaryRow", "summaryHeight", "summaryPosition", "rowIdentity"], outputs: ["scroll", "activate", "select", "sort", "page", "reorder", "resize", "tableContextmenu", "treeAction"] }, { kind: "directive", type: i7.DataTableColumnDirective, selector: "ngx-datatable-column", inputs: ["name", "prop", "frozenLeft", "frozenRight", "flexGrow", "resizeable", "comparator", "pipe", "sortable", "draggable", "canAutoResize", "minWidth", "width", "maxWidth", "checkboxable", "headerCheckboxable", "headerClass", "cellClass", "isTreeColumn", "treeLevelIndent", "summaryFunc", "summaryTemplate", "cellTemplate", "headerTemplate", "treeToggleTemplate"] }, { kind: "directive", type: i7.DataTableColumnCellDirective, selector: "[ngx-datatable-cell-template]" }, { kind: "directive", type: i7$1.ValidationGroupDirective, selector: "[formGroup],[formGroupName]", exportAs: ["validationGroup"] }, { kind: "directive", type: i7$1.ValidationDirective, selector: "[formControl],[formControlName]", exportAs: ["validationDirective"] }, { kind: "component", type: i3.ButtonComponent, selector: "abp-button", inputs: ["buttonId", "buttonClass", "buttonType", "formName", "iconClass", "loading", "disabled", "attributes"], outputs: ["click", "focus", "blur", "abpClick", "abpFocus", "abpBlur"] }, { kind: "component", type: i3.ModalComponent, selector: "abp-modal", inputs: ["visible", "busy", "options", "suppressUnsavedChangesWarning"], outputs: ["visibleChange", "init", "appear", "disappear"] }, { kind: "directive", type: i3.NgxDatatableListDirective, selector: "ngx-datatable[list]", inputs: ["list"], exportAs: ["ngxDatatableList"] }, { kind: "directive", type: i3.ModalCloseDirective, selector: "[abpClose]" }, { kind: "directive", type: i10.NgbDropdown, selector: "[ngbDropdown]", inputs: ["autoClose", "dropdownClass", "open", "placement", "popperOptions", "container", "display"], outputs: ["openChange"], exportAs: ["ngbDropdown"] }, { kind: "directive", type: i10.NgbDropdownToggle, selector: "[ngbDropdownToggle]" }, { kind: "directive", type: i10.NgbDropdownMenu, selector: "[ngbDropdownMenu]" }, { kind: "directive", type: i10.NgbDropdownItem, selector: "[ngbDropdownItem]", inputs: ["disabled"] }, { kind: "component", type: i9.PageComponent, selector: "abp-page", inputs: ["title", "toolbar", "breadcrumb"] }, { kind: "pipe", type: i2.DatePipe, name: "date" }, { kind: "pipe", type: i1.LocalizationPipe, name: "abpLocalization" }] });
|
|
1850
|
+
], viewQueries: [{ propertyName: "createModalSubmit", first: true, predicate: ["createModalSubmit"], descendants: true }], ngImport: i0, template: "<abp-page [title]=\"'Cms::Sites' | abpLocalization\" [toolbar]=\"true\">\n <div class=\"sites-page\">\n <div class=\"card\">\n <div class=\"card-body px-2 py-sm-2 border-bottom\">\n <div class=\"input-group\">\n <input type=\"text\" class=\"form-control\" [(ngModel)]=\"filters.filter\"\n [placeholder]=\"'AbpUi::Search' | abpLocalization\" />\n <button class=\"btn btn-primary px-3\" type=\"button\" id=\"button-addon2\" (click)=\"list.get()\">\n <i class=\"fa fa-search\"></i>\n </button>\n </div>\n </div>\n </div>\n <div class=\"card mb-0\">\n <div class=\"card-body p-0\">\n <div class=\"table-responsive table-fixed-header\">\n <ngx-datatable class=\"material container-height\" [rows]=\"data.items\" [list]=\"list\"\n [columnMode]=\"'force'\" [headerHeight]=\"50\" [footerHeight]=\"50\" rowHeight=\"auto\"\n [scrollbarV]=\"true\" [virtualization]=\"false\" [externalPaging]=\"true\" [count]=\"data.totalCount\">\n <ngx-datatable-column [name]=\"'Cms::DisplayName' | abpLocalization\" prop=\"displayName\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{ value }}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::Name' | abpLocalization\" prop=\"name\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{ value }}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::IsActive' | abpLocalization\" prop=\"isActive\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n <i class=\"fas fa-check text-success\" *ngIf=\"value\"></i>\n <i class=\"fas fa-times text-danger\" *ngIf=\"!value\"></i>\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::Host' | abpLocalization\" prop=\"host\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{ value }}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::CreationTime' | abpLocalization\" prop=\"creationTime\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{ value | date : 'yyyy-MM-dd hh:mm:ss' }}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [sortable]=\"false\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n <div ngbDropdown container=\"body\">\n <button type=\"button\" class=\"btn btn-outline-primary btn-sm\" ngbDropdownToggle>\n {{'AbpUi::Actions' | abpLocalization}}\n </button>\n <div ngbDropdownMenu>\n <button ngbDropdownItem\n (click)=\"EditSitesBtn(row)\">{{'AbpUi::Edit' | abpLocalization}}</button>\n <button ngbDropdownItem\n (click)=\"deletefield(row)\">{{'AbpUi::Delete' | abpLocalization}}</button>\n </div>\n </div>\n </ng-template>\n </ngx-datatable-column>\n </ngx-datatable>\n </div>\n </div>\n </div>\n </div>\n</abp-page>\n<abp-modal [(visible)]=\"createSitesOpen\" [busy]=\"modalBusy\" (visibleChange)=\"createGroupVisibleChange($event)\">\n <ng-template #abpHeader>\n <h3>{{selected?('AbpUi::Edit' | abpLocalization):('Cms::New' | abpLocalization)}}</h3>\n </ng-template>\n <ng-template #abpBody>\n <ng-template #loaderRef>\n <div class=\"text-center\"><i class=\"fa fa-pulse fa-spinner\" aria-hidden=\"true\"></i></div>\n </ng-template>\n <ng-container *ngIf=\"createOrEditForm; else loaderRef\">\n <form class=\"sites-modal-form\" #myForm=\"ngForm\" [formGroup]=\"createOrEditForm\"\n (ngSubmit)=\"createOrEditSave()\">\n <button type=\"submit\" #createModalSubmit style=\"display: none\"></button>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::DisplayName' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"displayName\"\n (blur)=\"disPlayNameInputBlur($event)\" />\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::Name' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"name\" />\n <div class=\"text-danger invalid-feedback\" *ngIf=\"nameInput.errors?.repetition\">\n {{nameInput.errors?.repetition}}\n </div>\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::Host' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"host\" />\n <div class=\"text-danger invalid-feedback\" *ngIf=\"hostInput.errors?.repetition\">\n {{hostInput.errors?.repetition}}\n </div>\n </div>\n <div class=\"mb-2\">\n <div class=\"form-check form-check-inline\">\n <input class=\"form-check-input\" type=\"checkbox\" value=\"true\" formControlName=\"isActive\"\n id=\"flexRadioDefault1\" />\n <label class=\"form-check-label\" for=\"flexRadioDefault1\"> {{'Cms::IsActive' | abpLocalization}}\n </label>\n </div>\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::Languages' | abpLocalization}}</label>\n <ul class=\"list-group list-group-flush\">\n <ng-container *ngFor=\"let item of languages; let i = index\">\n <li class=\"list-group-item d-flex justify-content-between align-items-center\">\n <div>\n <input class=\"form-check-input me-1\" type=\"checkbox\" [value]=\"item.cultureName\"\n id=\"firstRadio{{ i }}\" [checked]=\"item.ischecked\"\n (change)=\"languagesChange($event);!item.ischecked\" />\n <label class=\"form-check-label\" for=\"firstRadio{{ i }}\">{{ item.displayName\n }}</label>\n </div>\n <ng-container *ngIf=\"item.ischecked\">\n <div class=\"text-primary\" *ngIf=\"item.isDefault\">{{'Cms::Default' | abpLocalization}}\n </div>\n <div (click.stop)=\"setDefault(item)\" *ngIf=\"!item.isDefault\">\n {{'Cms::SetDefault' | abpLocalization}}</div>\n </ng-container>\n </li>\n </ng-container>\n </ul>\n </div>\n </form>\n </ng-container>\n </ng-template>\n <ng-template #abpFooter>\n <button type=\"button\" class=\"btn btn-secondary\" abpClose>{{'AbpUi::Close' | abpLocalization}}</button>\n <abp-button iconClass=\"fa fa-check\"\n (click)=\"createModalSubmit.nativeElement.click()\">{{'AbpUi::Save' | abpLocalization}}</abp-button>\n </ng-template>\n</abp-modal>", styles: ["::ng-deep .sites-page .dignite_page{background:transparent}::ng-deep .sites-page .list-group-flush>.list-group-item:first-child{border-top-width:var(--bs-list-group-border-width)}::ng-deep .sites-page .container-height{height:calc(100vh - 220px)}::ng-deep .sites-modal-form .form-control{padding:.4rem 1.25rem}\n"], dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1$1.CheckboxControlValueAccessor, selector: "input[type=checkbox][formControlName],input[type=checkbox][formControl],input[type=checkbox][ngModel]" }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i1$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: i1.FormSubmitDirective, selector: "form[ngSubmit][formGroup]", inputs: ["debounce", "notValidateOnSubmit", "markAsDirtyWhenSubmit"], outputs: ["ngSubmit"] }, { kind: "directive", type: i1.StopPropagationDirective, selector: "[click.stop]", outputs: ["click.stop"] }, { kind: "component", type: i7.DatatableComponent, selector: "ngx-datatable", inputs: ["targetMarkerTemplate", "rows", "groupRowsBy", "groupedRows", "columns", "selected", "scrollbarV", "scrollbarH", "rowHeight", "columnMode", "headerHeight", "footerHeight", "externalPaging", "externalSorting", "limit", "count", "offset", "loadingIndicator", "selectionType", "reorderable", "swapColumns", "sortType", "sorts", "cssClasses", "messages", "rowClass", "selectCheck", "displayCheck", "groupExpansionDefault", "trackByProp", "selectAllRowsOnPage", "virtualization", "treeFromRelation", "treeToRelation", "summaryRow", "summaryHeight", "summaryPosition", "rowIdentity"], outputs: ["scroll", "activate", "select", "sort", "page", "reorder", "resize", "tableContextmenu", "treeAction"] }, { kind: "directive", type: i7.DataTableColumnDirective, selector: "ngx-datatable-column", inputs: ["name", "prop", "frozenLeft", "frozenRight", "flexGrow", "resizeable", "comparator", "pipe", "sortable", "draggable", "canAutoResize", "minWidth", "width", "maxWidth", "checkboxable", "headerCheckboxable", "headerClass", "cellClass", "isTreeColumn", "treeLevelIndent", "summaryFunc", "summaryTemplate", "cellTemplate", "headerTemplate", "treeToggleTemplate"] }, { kind: "directive", type: i7.DataTableColumnCellDirective, selector: "[ngx-datatable-cell-template]" }, { kind: "directive", type: i7$1.ValidationGroupDirective, selector: "[formGroup],[formGroupName]", exportAs: ["validationGroup"] }, { kind: "directive", type: i7$1.ValidationDirective, selector: "[formControl],[formControlName]", exportAs: ["validationDirective"] }, { kind: "component", type: i3.ButtonComponent, selector: "abp-button", inputs: ["buttonId", "buttonClass", "buttonType", "formName", "iconClass", "loading", "disabled", "attributes"], outputs: ["click", "focus", "blur", "abpClick", "abpFocus", "abpBlur"] }, { kind: "component", type: i3.ModalComponent, selector: "abp-modal", inputs: ["visible", "busy", "options", "suppressUnsavedChangesWarning"], outputs: ["visibleChange", "init", "appear", "disappear"] }, { kind: "directive", type: i3.NgxDatatableListDirective, selector: "ngx-datatable[list]", inputs: ["list"], exportAs: ["ngxDatatableList"] }, { kind: "directive", type: i3.ModalCloseDirective, selector: "[abpClose]" }, { kind: "directive", type: i10.NgbDropdown, selector: "[ngbDropdown]", inputs: ["autoClose", "dropdownClass", "open", "placement", "popperOptions", "container", "display"], outputs: ["openChange"], exportAs: ["ngbDropdown"] }, { kind: "directive", type: i10.NgbDropdownToggle, selector: "[ngbDropdownToggle]" }, { kind: "directive", type: i10.NgbDropdownMenu, selector: "[ngbDropdownMenu]" }, { kind: "directive", type: i10.NgbDropdownItem, selector: "[ngbDropdownItem]", inputs: ["tabindex", "disabled"] }, { kind: "directive", type: i10.NgbDropdownButtonItem, selector: "button[ngbDropdownItem]" }, { kind: "component", type: i12.PageComponent, selector: "abp-page", inputs: ["title", "toolbar", "breadcrumb"] }, { kind: "pipe", type: i2.DatePipe, name: "date" }, { kind: "pipe", type: i1.LocalizationPipe, name: "abpLocalization" }] }); }
|
|
2020
1851
|
}
|
|
2021
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1852
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: SitesComponent, decorators: [{
|
|
2022
1853
|
type: Component,
|
|
2023
1854
|
args: [{ selector: 'cms-sites', providers: [
|
|
2024
|
-
// [Required]
|
|
2025
1855
|
ListService,
|
|
2026
|
-
// [Optional]
|
|
2027
|
-
// Provide this token if you want a different debounce time.
|
|
2028
|
-
// Default is 300. Cannot be 0. Any value below 100 is not recommended.
|
|
2029
1856
|
{ provide: LIST_QUERY_DEBOUNCE_TIME, useValue: 500 },
|
|
2030
1857
|
{
|
|
2031
1858
|
provide: EXTENSIONS_IDENTIFIER,
|
|
2032
1859
|
useValue: ECmsComponent.Sites,
|
|
2033
1860
|
},
|
|
2034
|
-
], template: "<abp-page [title]=\"'Cms::Sites' | abpLocalization\" [toolbar]=\"true\">\n <div class=\"sites-page\">\n <div class=\"card\">\n <div class=\"card-body px-2 py-sm-2 border-bottom\">\n <div class=\"input-group\">\n <input type=\"text\" class=\"form-control\" [(ngModel)]=\"filters.filter\"\n [placeholder]=\"'AbpUi::Search' | abpLocalization\" />\n <button class=\"btn btn-primary px-3\" type=\"button\" id=\"button-addon2\" (click)=\"list.get()\">\n <i class=\"fa fa-search\"></i>\n </button>\n </div>\n </div>\n </div>\n <div class=\"card mb-0\">\n <div class=\"card-body p-0\">\n <div class=\"table-responsive table-fixed-header\">\n <ngx-datatable class=\"material container-height\" [rows]=\"data.items\" [list]=\"list\"\n [columnMode]=\"'force'\" [headerHeight]=\"50\" [footerHeight]=\"50\" rowHeight=\"auto\"\n [scrollbarV]=\"true\" [virtualization]=\"false\" [externalPaging]=\"true\" [count]=\"data.totalCount\">\n <ngx-datatable-column [name]=\"'Cms::DisplayName' | abpLocalization\" prop=\"displayName\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{ value }}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::Name' | abpLocalization\" prop=\"name\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{ value }}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::IsActive' | abpLocalization\" prop=\"isActive\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n <i class=\"fas fa-check text-success\" *ngIf=\"value\"></i>\n <i class=\"fas fa-times text-danger\" *ngIf=\"!value\"></i>\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::Host' | abpLocalization\" prop=\"host\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{ value }}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::CreationTime' | abpLocalization\" prop=\"creationTime\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{ value | date : 'yyyy-MM-dd hh
|
|
2035
|
-
}], ctorParameters:
|
|
1861
|
+
], template: "<abp-page [title]=\"'Cms::Sites' | abpLocalization\" [toolbar]=\"true\">\n <div class=\"sites-page\">\n <div class=\"card\">\n <div class=\"card-body px-2 py-sm-2 border-bottom\">\n <div class=\"input-group\">\n <input type=\"text\" class=\"form-control\" [(ngModel)]=\"filters.filter\"\n [placeholder]=\"'AbpUi::Search' | abpLocalization\" />\n <button class=\"btn btn-primary px-3\" type=\"button\" id=\"button-addon2\" (click)=\"list.get()\">\n <i class=\"fa fa-search\"></i>\n </button>\n </div>\n </div>\n </div>\n <div class=\"card mb-0\">\n <div class=\"card-body p-0\">\n <div class=\"table-responsive table-fixed-header\">\n <ngx-datatable class=\"material container-height\" [rows]=\"data.items\" [list]=\"list\"\n [columnMode]=\"'force'\" [headerHeight]=\"50\" [footerHeight]=\"50\" rowHeight=\"auto\"\n [scrollbarV]=\"true\" [virtualization]=\"false\" [externalPaging]=\"true\" [count]=\"data.totalCount\">\n <ngx-datatable-column [name]=\"'Cms::DisplayName' | abpLocalization\" prop=\"displayName\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{ value }}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::Name' | abpLocalization\" prop=\"name\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{ value }}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::IsActive' | abpLocalization\" prop=\"isActive\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n <i class=\"fas fa-check text-success\" *ngIf=\"value\"></i>\n <i class=\"fas fa-times text-danger\" *ngIf=\"!value\"></i>\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::Host' | abpLocalization\" prop=\"host\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{ value }}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::CreationTime' | abpLocalization\" prop=\"creationTime\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{ value | date : 'yyyy-MM-dd hh:mm:ss' }}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [sortable]=\"false\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n <div ngbDropdown container=\"body\">\n <button type=\"button\" class=\"btn btn-outline-primary btn-sm\" ngbDropdownToggle>\n {{'AbpUi::Actions' | abpLocalization}}\n </button>\n <div ngbDropdownMenu>\n <button ngbDropdownItem\n (click)=\"EditSitesBtn(row)\">{{'AbpUi::Edit' | abpLocalization}}</button>\n <button ngbDropdownItem\n (click)=\"deletefield(row)\">{{'AbpUi::Delete' | abpLocalization}}</button>\n </div>\n </div>\n </ng-template>\n </ngx-datatable-column>\n </ngx-datatable>\n </div>\n </div>\n </div>\n </div>\n</abp-page>\n<abp-modal [(visible)]=\"createSitesOpen\" [busy]=\"modalBusy\" (visibleChange)=\"createGroupVisibleChange($event)\">\n <ng-template #abpHeader>\n <h3>{{selected?('AbpUi::Edit' | abpLocalization):('Cms::New' | abpLocalization)}}</h3>\n </ng-template>\n <ng-template #abpBody>\n <ng-template #loaderRef>\n <div class=\"text-center\"><i class=\"fa fa-pulse fa-spinner\" aria-hidden=\"true\"></i></div>\n </ng-template>\n <ng-container *ngIf=\"createOrEditForm; else loaderRef\">\n <form class=\"sites-modal-form\" #myForm=\"ngForm\" [formGroup]=\"createOrEditForm\"\n (ngSubmit)=\"createOrEditSave()\">\n <button type=\"submit\" #createModalSubmit style=\"display: none\"></button>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::DisplayName' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"displayName\"\n (blur)=\"disPlayNameInputBlur($event)\" />\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::Name' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"name\" />\n <div class=\"text-danger invalid-feedback\" *ngIf=\"nameInput.errors?.repetition\">\n {{nameInput.errors?.repetition}}\n </div>\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::Host' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"host\" />\n <div class=\"text-danger invalid-feedback\" *ngIf=\"hostInput.errors?.repetition\">\n {{hostInput.errors?.repetition}}\n </div>\n </div>\n <div class=\"mb-2\">\n <div class=\"form-check form-check-inline\">\n <input class=\"form-check-input\" type=\"checkbox\" value=\"true\" formControlName=\"isActive\"\n id=\"flexRadioDefault1\" />\n <label class=\"form-check-label\" for=\"flexRadioDefault1\"> {{'Cms::IsActive' | abpLocalization}}\n </label>\n </div>\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::Languages' | abpLocalization}}</label>\n <ul class=\"list-group list-group-flush\">\n <ng-container *ngFor=\"let item of languages; let i = index\">\n <li class=\"list-group-item d-flex justify-content-between align-items-center\">\n <div>\n <input class=\"form-check-input me-1\" type=\"checkbox\" [value]=\"item.cultureName\"\n id=\"firstRadio{{ i }}\" [checked]=\"item.ischecked\"\n (change)=\"languagesChange($event);!item.ischecked\" />\n <label class=\"form-check-label\" for=\"firstRadio{{ i }}\">{{ item.displayName\n }}</label>\n </div>\n <ng-container *ngIf=\"item.ischecked\">\n <div class=\"text-primary\" *ngIf=\"item.isDefault\">{{'Cms::Default' | abpLocalization}}\n </div>\n <div (click.stop)=\"setDefault(item)\" *ngIf=\"!item.isDefault\">\n {{'Cms::SetDefault' | abpLocalization}}</div>\n </ng-container>\n </li>\n </ng-container>\n </ul>\n </div>\n </form>\n </ng-container>\n </ng-template>\n <ng-template #abpFooter>\n <button type=\"button\" class=\"btn btn-secondary\" abpClose>{{'AbpUi::Close' | abpLocalization}}</button>\n <abp-button iconClass=\"fa fa-check\"\n (click)=\"createModalSubmit.nativeElement.click()\">{{'AbpUi::Save' | abpLocalization}}</abp-button>\n </ng-template>\n</abp-modal>", styles: ["::ng-deep .sites-page .dignite_page{background:transparent}::ng-deep .sites-page .list-group-flush>.list-group-item:first-child{border-top-width:var(--bs-list-group-border-width)}::ng-deep .sites-page .container-height{height:calc(100vh - 220px)}::ng-deep .sites-modal-form .form-control{padding:.4rem 1.25rem}\n"] }]
|
|
1862
|
+
}], ctorParameters: () => [{ type: i1.ListService }, { type: SiteAdminService }, { type: i3.ToasterService }, { type: i3.ConfirmationService }, { type: i1$1.FormBuilder }, { type: i1.ConfigStateService }, { type: i1.LocalizationService }, { type: CmsApiService }], propDecorators: { createModalSubmit: [{
|
|
2036
1863
|
type: ViewChild,
|
|
2037
1864
|
args: ['createModalSubmit', { static: false }]
|
|
2038
1865
|
}] } });
|
|
2039
1866
|
|
|
2040
1867
|
class CreateOrUpdateSectionsInputBase {
|
|
2041
|
-
/**版块类型 */
|
|
2042
|
-
type = [0, [Validators.required]];
|
|
2043
|
-
/**字段名称 Display name of this field */
|
|
2044
|
-
displayName = ['', [Validators.required]];
|
|
2045
|
-
/**字段唯一名称 Unique Name*/
|
|
2046
|
-
name = ['', [Validators.required]];
|
|
2047
|
-
/**条目路由 */
|
|
2048
|
-
route = ['', [Validators.required]];
|
|
2049
|
-
/**页面模板 */
|
|
2050
|
-
template = ['', [Validators.required]];
|
|
2051
|
-
/**是否默认 */
|
|
2052
|
-
isDefault = [false, []];
|
|
2053
|
-
/**是否激活 */
|
|
2054
|
-
isActive = [true, []];
|
|
2055
1868
|
constructor(data) {
|
|
1869
|
+
/**版块类型 */
|
|
1870
|
+
this.type = [0, [Validators.required]];
|
|
1871
|
+
/**字段名称 Display name of this field */
|
|
1872
|
+
this.displayName = ['', [Validators.required]];
|
|
1873
|
+
/**字段唯一名称 Unique Name*/
|
|
1874
|
+
this.name = ['', [Validators.required]];
|
|
1875
|
+
/**条目路由 */
|
|
1876
|
+
this.route = ['', [Validators.required]];
|
|
1877
|
+
/**页面模板 */
|
|
1878
|
+
this.template = ['', [Validators.required]];
|
|
1879
|
+
/**是否默认 */
|
|
1880
|
+
this.isDefault = [false, []];
|
|
1881
|
+
/**是否激活 */
|
|
1882
|
+
this.isActive = [true, []];
|
|
2056
1883
|
if (data) {
|
|
2057
1884
|
for (const key in data) {
|
|
2058
1885
|
if (data.hasOwnProperty(key)) {
|
|
@@ -2071,24 +1898,7 @@ var SectionType;
|
|
|
2071
1898
|
})(SectionType || (SectionType = {}));
|
|
2072
1899
|
const sectionTypeOptions = mapEnumToOptions(SectionType);
|
|
2073
1900
|
|
|
2074
|
-
var index$m = /*#__PURE__*/Object.freeze({
|
|
2075
|
-
__proto__: null,
|
|
2076
|
-
get SectionType () { return SectionType; },
|
|
2077
|
-
sectionTypeOptions: sectionTypeOptions
|
|
2078
|
-
});
|
|
2079
|
-
|
|
2080
1901
|
class SectionsComponent {
|
|
2081
|
-
list;
|
|
2082
|
-
_SectionAdminService;
|
|
2083
|
-
_SiteAdminService;
|
|
2084
|
-
toaster;
|
|
2085
|
-
confirmation;
|
|
2086
|
-
fb;
|
|
2087
|
-
configState;
|
|
2088
|
-
_EntryTypeAdminService;
|
|
2089
|
-
_LocalizationService;
|
|
2090
|
-
_CmsApiService;
|
|
2091
|
-
router;
|
|
2092
1902
|
constructor(list, _SectionAdminService, _SiteAdminService, toaster, confirmation, fb, configState, _EntryTypeAdminService, _LocalizationService, _CmsApiService, router) {
|
|
2093
1903
|
this.list = list;
|
|
2094
1904
|
this._SectionAdminService = _SectionAdminService;
|
|
@@ -2101,8 +1911,24 @@ class SectionsComponent {
|
|
|
2101
1911
|
this._LocalizationService = _LocalizationService;
|
|
2102
1912
|
this._CmsApiService = _CmsApiService;
|
|
2103
1913
|
this.router = router;
|
|
1914
|
+
this._UpdateListService = inject(UpdateListService);
|
|
1915
|
+
/**版块列表 */
|
|
1916
|
+
this.siteList = [];
|
|
1917
|
+
/*** */
|
|
1918
|
+
this.ColumnMode = ColumnMode;
|
|
1919
|
+
this.data = {
|
|
1920
|
+
items: [],
|
|
1921
|
+
totalCount: 0,
|
|
1922
|
+
};
|
|
1923
|
+
/** */
|
|
1924
|
+
this.filters = {};
|
|
1925
|
+
/**创建版块模态框状态 */
|
|
1926
|
+
this.visibleOpen = false;
|
|
1927
|
+
/**用于确定模态的繁忙状态是否为真 */
|
|
1928
|
+
this.modalBusy = false;
|
|
1929
|
+
this._SectionType = SectionType;
|
|
1930
|
+
this._sectionTypeOptions = sectionTypeOptions;
|
|
2104
1931
|
}
|
|
2105
|
-
_UpdateListService = inject(UpdateListService);
|
|
2106
1932
|
/**跳转编辑 */
|
|
2107
1933
|
jumpSectionsEdit(row, item) {
|
|
2108
1934
|
this.router.navigate([`/cms/admin/sections/${row.id}/entry-types/${item.id}/edit`], {});
|
|
@@ -2111,16 +1937,6 @@ class SectionsComponent {
|
|
|
2111
1937
|
jumpSectionsCreate(row) {
|
|
2112
1938
|
this.router.navigate([`/cms/admin/sections/${row.id}/entry-types/create`], {});
|
|
2113
1939
|
}
|
|
2114
|
-
/**版块列表 */
|
|
2115
|
-
siteList = [];
|
|
2116
|
-
/*** */
|
|
2117
|
-
ColumnMode = ColumnMode;
|
|
2118
|
-
data = {
|
|
2119
|
-
items: [],
|
|
2120
|
-
totalCount: 0,
|
|
2121
|
-
};
|
|
2122
|
-
/** */
|
|
2123
|
-
filters = {};
|
|
2124
1940
|
/**获取页面列表 */
|
|
2125
1941
|
hookToQuery() {
|
|
2126
1942
|
const getData = (query) => this._SectionAdminService.getList({
|
|
@@ -2153,18 +1969,6 @@ class SectionsComponent {
|
|
|
2153
1969
|
});
|
|
2154
1970
|
});
|
|
2155
1971
|
}
|
|
2156
|
-
/**创建版块模态框状态 */
|
|
2157
|
-
visibleOpen = false;
|
|
2158
|
-
/**用于确定模态的繁忙状态是否为真 */
|
|
2159
|
-
modalBusy = false;
|
|
2160
|
-
/**创建版块表单 */
|
|
2161
|
-
createOrEditForm;
|
|
2162
|
-
/**版块给定的表单值 */
|
|
2163
|
-
selected;
|
|
2164
|
-
_SectionType = SectionType;
|
|
2165
|
-
_sectionTypeOptions = sectionTypeOptions;
|
|
2166
|
-
/**表单控件模板-动态赋值表单控件 */
|
|
2167
|
-
createOrEditModalSubmitBtn;
|
|
2168
1972
|
/**创建版块模态框状态改变 */
|
|
2169
1973
|
VisibleChange(event) {
|
|
2170
1974
|
if (!event) {
|
|
@@ -2354,8 +2158,8 @@ class SectionsComponent {
|
|
|
2354
2158
|
});
|
|
2355
2159
|
};
|
|
2356
2160
|
}
|
|
2357
|
-
static
|
|
2358
|
-
static
|
|
2161
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: SectionsComponent, deps: [{ token: i1.ListService }, { token: SectionAdminService }, { token: SiteAdminService }, { token: i3.ToasterService }, { token: i3.ConfirmationService }, { token: i1$1.FormBuilder }, { token: i1.ConfigStateService }, { token: EntryTypeAdminService }, { token: i1.LocalizationService }, { token: CmsApiService }, { token: i3$1.Router }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2162
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.9", type: SectionsComponent, selector: "cms-sections", providers: [
|
|
2359
2163
|
// [Required]
|
|
2360
2164
|
ListService,
|
|
2361
2165
|
// [Optional]
|
|
@@ -2366,9 +2170,9 @@ class SectionsComponent {
|
|
|
2366
2170
|
provide: EXTENSIONS_IDENTIFIER,
|
|
2367
2171
|
useValue: ECmsComponent.Sections,
|
|
2368
2172
|
},
|
|
2369
|
-
], viewQueries: [{ propertyName: "createOrEditModalSubmitBtn", first: true, predicate: ["createOrEditModalSubmitBtn"], descendants: true }], ngImport: i0, template: "<abp-page [title]=\"'Cms::Sections' | abpLocalization\" [toolbar]=\"true\">\n <div class=\"sections-page\">\n\n <div class=\"card \">\n <div class=\"card-body px-2 py-sm-2 border-bottom\">\n <div class=\"input-group\">\n <select class=\"form-select col-auto\" [(ngModel)]=\"filters.siteId\" (change)=\"siteIdChange()\">\n <ng-container *ngFor=\"let item of siteList\">\n <option [value]=\"item.id\">{{item.displayName}}</option>\n </ng-container>\n </select>\n <input type=\"text\" class=\"form-control\" [(ngModel)]=\"filters.filter\"\n [placeholder]=\"'AbpUi::Search' | abpLocalization\" />\n <button class=\"btn btn-primary px-3\" type=\"button\" id=\"button-addon2\" (click)=\"list.get()\">\n <i class=\"fa fa-search\"></i>\n </button>\n </div>\n </div>\n </div>\n <div class=\"card mb-0\">\n <div class=\"card-body p-0\">\n <div class=\"table-responsive table-fixed-header\">\n <ngx-datatable class=\"material container-height\" [rows]=\"data.items\" [list]=\"list\"\n [columnMode]=\"'force'\" [headerHeight]=\"50\" [footerHeight]=\"50\" rowHeight=\"auto\"\n [scrollbarV]=\"true\" [virtualization]=\"false\" [externalPaging]=\"true\" [count]=\"data.totalCount\">\n <ngx-datatable-column [name]=\"'Cms::DisplayName' | abpLocalization\" prop=\"displayName\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{ value }}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::Name' | abpLocalization\" prop=\"name\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{ value }}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::SectionType' | abpLocalization\" prop=\"type\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{('Cms::Enum:SectionType:'+_SectionType[value]) | abpLocalization}}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::Default' | abpLocalization\" prop=\"isDefault\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n <i class=\"fas fa-check text-success\" *ngIf=\"value\"></i>\n <i class=\"fas fa-times text-danger\" *ngIf=\"!value\"></i>\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::IsActive' | abpLocalization\" prop=\"isActive\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n <i class=\"fas fa-check text-success\" *ngIf=\"value\"></i>\n <i class=\"fas fa-times text-danger\" *ngIf=\"!value\"></i>\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::EntryType' | abpLocalization\" prop=\"SiteId\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n <div ngbDropdown container=\"body\">\n <button type=\"button\" class=\"btn btn-link\" ngbDropdownToggle id=\"dropdownBasic1\">\n {{'Cms::EntryType' | abpLocalization}}\n </button>\n <div ngbDropdownMenu aria-labelledby=\"dropdownBasic1\">\n <ng-container *ngFor=\"let item of row.entryTypes;let i =index\">\n <li ngbDropdownItem\n class=\"d-flex align-items-center justify-content-between\"\n (click.stop)=\"jumpSectionsEdit(row,item)\">{{item.displayName}}\n <button class=\"btn btn-light btn-sm p-0\"\n (click.stop)=\"deleteEntryType(item)\"><i class=\"fas fa-trash p-sm-1\"\n style=\"font-size: 12px;\" role=\"button\"></i></button>\n </li>\n </ng-container>\n <li ngbDropdownItem (click.stop)=\"jumpSectionsCreate(row)\"><i\n class=\"fas fa-plus-circle me-2\"></i>{{'Cms::New' |\n abpLocalization}}</li>\n </div>\n </div>\n\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::CreationTime' | abpLocalization\" prop=\"creationTime\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{ value | date : 'yyyy-MM-dd hh-mm-ss' }}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [sortable]=\"false\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n <div ngbDropdown container=\"body\">\n <button type=\"button\" class=\"btn btn-outline-primary btn-sm\" ngbDropdownToggle>\n {{'AbpUi::Actions' | abpLocalization}}\n </button>\n <div ngbDropdownMenu>\n <button ngbDropdownItem (click)=\"editSectionBtn(row)\">{{'AbpUi::Edit' |\n abpLocalization}}</button>\n <button ngbDropdownItem (click)=\"deletefield(row)\">{{'AbpUi::Delete' |\n abpLocalization}}</button>\n </div>\n </div>\n </ng-template>\n </ngx-datatable-column>\n </ngx-datatable>\n </div>\n </div>\n </div>\n\n </div>\n\n\n</abp-page>\n\n\n\n\n<abp-modal [(visible)]=\"visibleOpen\" [busy]=\"modalBusy\" (visibleChange)=\"VisibleChange($event)\">\n <ng-template #abpHeader>\n <h3>{{selected?('AbpUi::Edit' | abpLocalization):('Cms::New' | abpLocalization)}}</h3>\n </ng-template>\n <ng-template #abpBody>\n <ng-template #loaderRef>\n <div class=\"text-center\"><i class=\"fa fa-pulse fa-spinner\" aria-hidden=\"true\"></i></div>\n </ng-template>\n <ng-container *ngIf=\"createOrEditForm; else loaderRef\">\n <form class=\"sites-modal-form\" [formGroup]=\"createOrEditForm\" (ngSubmit)=\"createOrEditSave()\">\n <button type=\"submit\" #createOrEditModalSubmitBtn style=\"display: none\"></button>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::EntryType' | abpLocalization}}</label>\n <div>\n <ng-container *ngFor=\"let item of _sectionTypeOptions;let i =index\">\n <div class=\"form-check form-check-inline\">\n <input class=\"form-check-input\" type=\"radio\" [value]=\"item.value\"\n (change)=\"radiochange()\" formControlName=\"type\" id=\"flexRadioDefault{{i}}\">\n <label class=\"form-check-label\" for=\"flexRadioDefault{{i}}\">\n {{ 'Cms::Enum:SectionType:'+item.key | abpLocalization }}\n </label>\n </div>\n </ng-container>\n </div>\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::DisplayName' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"displayName\"\n (blur)=\"disPlayNameInputBlur($event)\" placeholder=\"\" />\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::Name' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"name\" placeholder=\"\" />\n <div class=\"text-danger invalid-feedback\" *ngIf=\"nameInput.errors?.repetition\">\n {{nameInput.errors?.repetition}}\n </div>\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::Route' | abpLocalization}} </label>\n <input type=\"text\" class=\"form-control\" formControlName=\"route\" placeholder=\"\" />\n <div class=\"text-danger invalid-feedback\" *ngIf=\"routeInput.errors?.repetition\">\n {{routeInput.errors?.repetition}}\n </div>\n <div class=\"form-text\">\n {{'Cms::RouteTips' | abpLocalization}}<br>\n blog<br>\n {{'blog/{slug}'}}<br>\n {{'blog/{publishTime:yyyy}/{publishTime:MM}/{slug}'}}\n </div>\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::Template' | abpLocalization}} </label>\n <input type=\"text\" class=\"form-control\" formControlName=\"template\" placeholder=\"\" />\n <div class=\"form-text\">\n {{\"Cms::TemplateTips\" | abpLocalization}}\n </div>\n </div>\n <div class=\"mb-2\">\n <div class=\"form-check form-check-inline\">\n <input class=\"form-check-input\" type=\"checkbox\" value=\"true\" formControlName=\"isDefault\"\n id=\"isDefault\" />\n <label class=\"form-check-label\" for=\"isDefault\"> {{'Cms::Default' | abpLocalization}} </label>\n </div>\n </div>\n <div class=\"mb-2\">\n <div class=\"form-check form-check-inline\">\n <input class=\"form-check-input\" type=\"checkbox\" value=\"true\" formControlName=\"isActive\"\n id=\"isActive\" />\n <label class=\"form-check-label\" for=\"isActive\"> {{'Cms::IsActive' | abpLocalization}}</label>\n </div>\n </div>\n\n </form>\n </ng-container>\n </ng-template>\n <ng-template #abpFooter>\n <button type=\"button\" class=\"btn btn-secondary\" abpClose>{{'AbpUi::Close' | abpLocalization}}</button>\n <!-- [disabled]=\"!this.createOrEditForm.valid\" -->\n <abp-button iconClass=\"fa fa-check\" (click)=\"createOrEditModalSubmitBtn.nativeElement.click()\">{{'AbpUi::Save' |\n abpLocalization}}</abp-button>\n </ng-template>\n</abp-modal>", styles: ["::ng-deep .sections-page .dignite_page{background:transparent}::ng-deep .sections-page .list-group-flush>.list-group-item:first-child{border-top-width:var(--bs-list-group-border-width)}::ng-deep .sections-page .card-header input{flex:2 1 auto}::ng-deep .sections-page .card-header .form-select{padding:.475rem 3.75rem .475rem 1.25rem}::ng-deep .sections-page .container-height{height:calc(100vh - 220px)}::ng-deep .sites-modal-form .form-control{padding:.4rem 1.25rem}\n"], dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1$1.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i1$1.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i1$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1$1.CheckboxControlValueAccessor, selector: "input[type=checkbox][formControlName],input[type=checkbox][formControl],input[type=checkbox][ngModel]" }, { kind: "directive", type: i1$1.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i1$1.RadioControlValueAccessor, selector: "input[type=radio][formControlName],input[type=radio][formControl],input[type=radio][ngModel]", inputs: ["name", "formControlName", "value"] }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i1$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: i1.FormSubmitDirective, selector: "form[ngSubmit][formGroup]", inputs: ["debounce", "notValidateOnSubmit", "markAsDirtyWhenSubmit"], outputs: ["ngSubmit"] }, { kind: "directive", type: i1.StopPropagationDirective, selector: "[click.stop]", outputs: ["click.stop"] }, { kind: "component", type: i7.DatatableComponent, selector: "ngx-datatable", inputs: ["targetMarkerTemplate", "rows", "groupRowsBy", "groupedRows", "columns", "selected", "scrollbarV", "scrollbarH", "rowHeight", "columnMode", "headerHeight", "footerHeight", "externalPaging", "externalSorting", "limit", "count", "offset", "loadingIndicator", "selectionType", "reorderable", "swapColumns", "sortType", "sorts", "cssClasses", "messages", "rowClass", "selectCheck", "displayCheck", "groupExpansionDefault", "trackByProp", "selectAllRowsOnPage", "virtualization", "treeFromRelation", "treeToRelation", "summaryRow", "summaryHeight", "summaryPosition", "rowIdentity"], outputs: ["scroll", "activate", "select", "sort", "page", "reorder", "resize", "tableContextmenu", "treeAction"] }, { kind: "directive", type: i7.DataTableColumnDirective, selector: "ngx-datatable-column", inputs: ["name", "prop", "frozenLeft", "frozenRight", "flexGrow", "resizeable", "comparator", "pipe", "sortable", "draggable", "canAutoResize", "minWidth", "width", "maxWidth", "checkboxable", "headerCheckboxable", "headerClass", "cellClass", "isTreeColumn", "treeLevelIndent", "summaryFunc", "summaryTemplate", "cellTemplate", "headerTemplate", "treeToggleTemplate"] }, { kind: "directive", type: i7.DataTableColumnCellDirective, selector: "[ngx-datatable-cell-template]" }, { kind: "directive", type: i7$1.ValidationGroupDirective, selector: "[formGroup],[formGroupName]", exportAs: ["validationGroup"] }, { kind: "directive", type: i7$1.ValidationDirective, selector: "[formControl],[formControlName]", exportAs: ["validationDirective"] }, { kind: "component", type: i3.ButtonComponent, selector: "abp-button", inputs: ["buttonId", "buttonClass", "buttonType", "formName", "iconClass", "loading", "disabled", "attributes"], outputs: ["click", "focus", "blur", "abpClick", "abpFocus", "abpBlur"] }, { kind: "component", type: i3.ModalComponent, selector: "abp-modal", inputs: ["visible", "busy", "options", "suppressUnsavedChangesWarning"], outputs: ["visibleChange", "init", "appear", "disappear"] }, { kind: "directive", type: i3.NgxDatatableListDirective, selector: "ngx-datatable[list]", inputs: ["list"], exportAs: ["ngxDatatableList"] }, { kind: "directive", type: i3.ModalCloseDirective, selector: "[abpClose]" }, { kind: "directive", type: i10.NgbDropdown, selector: "[ngbDropdown]", inputs: ["autoClose", "dropdownClass", "open", "placement", "popperOptions", "container", "display"], outputs: ["openChange"], exportAs: ["ngbDropdown"] }, { kind: "directive", type: i10.NgbDropdownToggle, selector: "[ngbDropdownToggle]" }, { kind: "directive", type: i10.NgbDropdownMenu, selector: "[ngbDropdownMenu]" }, { kind: "directive", type: i10.NgbDropdownItem, selector: "[ngbDropdownItem]", inputs: ["disabled"] }, { kind: "component", type: i9.PageComponent, selector: "abp-page", inputs: ["title", "toolbar", "breadcrumb"] }, { kind: "pipe", type: i2.DatePipe, name: "date" }, { kind: "pipe", type: i1.LocalizationPipe, name: "abpLocalization" }] });
|
|
2173
|
+
], viewQueries: [{ propertyName: "createOrEditModalSubmitBtn", first: true, predicate: ["createOrEditModalSubmitBtn"], descendants: true }], ngImport: i0, template: "<abp-page [title]=\"'Cms::Sections' | abpLocalization\" [toolbar]=\"true\">\n <div class=\"sections-page\">\n <div class=\"card \">\n <div class=\"card-body px-2 py-sm-2 border-bottom\">\n <div class=\"input-group\">\n <select class=\"form-select col-auto\" [(ngModel)]=\"filters.siteId\" (change)=\"siteIdChange()\">\n <ng-container *ngFor=\"let item of siteList\">\n <option [value]=\"item.id\">{{item.displayName}}</option>\n </ng-container>\n </select>\n <input type=\"text\" class=\"form-control\" [(ngModel)]=\"filters.filter\"\n [placeholder]=\"'AbpUi::Search' | abpLocalization\" />\n <button class=\"btn btn-primary px-3\" type=\"button\" id=\"button-addon2\" (click)=\"list.get()\">\n <i class=\"fa fa-search\"></i>\n </button>\n </div>\n </div>\n </div>\n <div class=\"card mb-0\">\n <div class=\"card-body p-0\">\n <div class=\"table-responsive table-fixed-header\">\n <ngx-datatable class=\"material container-height\" [rows]=\"data.items\" [list]=\"list\"\n [columnMode]=\"'force'\" [headerHeight]=\"50\" [footerHeight]=\"50\" rowHeight=\"auto\"\n [scrollbarV]=\"true\" [virtualization]=\"false\" [externalPaging]=\"true\" [count]=\"data.totalCount\">\n <ngx-datatable-column [name]=\"'Cms::DisplayName' | abpLocalization\" prop=\"displayName\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{ value }}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::Name' | abpLocalization\" prop=\"name\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{ value }}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::SectionType' | abpLocalization\" prop=\"type\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{('Cms::Enum:SectionType:'+_SectionType[value]) | abpLocalization}}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::Default' | abpLocalization\" prop=\"isDefault\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n <i class=\"fas fa-check text-success\" *ngIf=\"value\"></i>\n <i class=\"fas fa-times text-danger\" *ngIf=\"!value\"></i>\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::IsActive' | abpLocalization\" prop=\"isActive\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n <i class=\"fas fa-check text-success\" *ngIf=\"value\"></i>\n <i class=\"fas fa-times text-danger\" *ngIf=\"!value\"></i>\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::EntryType' | abpLocalization\" prop=\"SiteId\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n <div ngbDropdown container=\"body\">\n <button type=\"button\" class=\"btn btn-link\" ngbDropdownToggle id=\"dropdownBasic1\">\n {{'Cms::EntryType' | abpLocalization}}\n </button>\n <div ngbDropdownMenu aria-labelledby=\"dropdownBasic1\">\n <ng-container *ngFor=\"let item of row.entryTypes;let i =index\">\n <li ngbDropdownItem\n class=\"d-flex align-items-center justify-content-between\"\n (click.stop)=\"jumpSectionsEdit(row,item)\">{{item.displayName}}\n <button class=\"btn btn-light btn-sm p-0\"\n (click.stop)=\"deleteEntryType(item)\"><i class=\"fas fa-trash p-sm-1\"\n style=\"font-size: 12px;\" role=\"button\"></i></button>\n </li>\n </ng-container>\n <li ngbDropdownItem (click.stop)=\"jumpSectionsCreate(row)\"><i\n class=\"fas fa-plus-circle me-2\"></i>{{'Cms::New' |\n abpLocalization}}</li>\n </div>\n </div>\n\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::CreationTime' | abpLocalization\" prop=\"creationTime\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{ value | date : 'yyyy-MM-dd hh:mm:ss' }}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [sortable]=\"false\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n <div ngbDropdown container=\"body\">\n <button type=\"button\" class=\"btn btn-outline-primary btn-sm\" ngbDropdownToggle>\n {{'AbpUi::Actions' | abpLocalization}}\n </button>\n <div ngbDropdownMenu>\n <button ngbDropdownItem (click)=\"editSectionBtn(row)\">{{'AbpUi::Edit' |\n abpLocalization}}</button>\n <button ngbDropdownItem (click)=\"deletefield(row)\">{{'AbpUi::Delete' |\n abpLocalization}}</button>\n </div>\n </div>\n </ng-template>\n </ngx-datatable-column>\n </ngx-datatable>\n </div>\n </div>\n </div>\n </div>\n</abp-page>\n<abp-modal [(visible)]=\"visibleOpen\" [busy]=\"modalBusy\" (visibleChange)=\"VisibleChange($event)\">\n <ng-template #abpHeader>\n <h3>{{selected?('AbpUi::Edit' | abpLocalization):('Cms::New' | abpLocalization)}}</h3>\n </ng-template>\n <ng-template #abpBody>\n <ng-template #loaderRef>\n <div class=\"text-center\"><i class=\"fa fa-pulse fa-spinner\" aria-hidden=\"true\"></i></div>\n </ng-template>\n <ng-container *ngIf=\"createOrEditForm; else loaderRef\">\n <form class=\"sites-modal-form\" [formGroup]=\"createOrEditForm\" (ngSubmit)=\"createOrEditSave()\">\n <button type=\"submit\" #createOrEditModalSubmitBtn style=\"display: none\"></button>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::EntryType' | abpLocalization}}</label>\n <div>\n <ng-container *ngFor=\"let item of _sectionTypeOptions;let i =index\">\n <div class=\"form-check form-check-inline\">\n <input class=\"form-check-input\" type=\"radio\" [value]=\"item.value\"\n (change)=\"radiochange()\" formControlName=\"type\" id=\"flexRadioDefault{{i}}\">\n <label class=\"form-check-label\" for=\"flexRadioDefault{{i}}\">\n {{ 'Cms::Enum:SectionType:'+item.key | abpLocalization }}\n </label>\n </div>\n </ng-container>\n </div>\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::DisplayName' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"displayName\"\n (blur)=\"disPlayNameInputBlur($event)\" placeholder=\"\" />\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::Name' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"name\" placeholder=\"\" />\n <div class=\"text-danger invalid-feedback\" *ngIf=\"nameInput.errors?.repetition\">\n {{nameInput.errors?.repetition}}\n </div>\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::Route' | abpLocalization}} </label>\n <input type=\"text\" class=\"form-control\" formControlName=\"route\" placeholder=\"\" />\n <div class=\"text-danger invalid-feedback\" *ngIf=\"routeInput.errors?.repetition\">\n {{routeInput.errors?.repetition}}\n </div>\n <div class=\"form-text\">\n {{'Cms::RouteTips' | abpLocalization}}<br>\n blog<br>\n {{'blog/{slug}'}}<br>\n {{'blog/{publishTime:yyyy}/{publishTime:MM}/{slug}'}}\n </div>\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::Template' | abpLocalization}} </label>\n <input type=\"text\" class=\"form-control\" formControlName=\"template\" placeholder=\"\" />\n <div class=\"form-text\">\n {{\"Cms::TemplateTips\" | abpLocalization}}\n </div>\n </div>\n <div class=\"mb-2\">\n <div class=\"form-check form-check-inline\">\n <input class=\"form-check-input\" type=\"checkbox\" value=\"true\" formControlName=\"isDefault\"\n id=\"isDefault\" />\n <label class=\"form-check-label\" for=\"isDefault\"> {{'Cms::Default' | abpLocalization}} </label>\n </div>\n </div>\n <div class=\"mb-2\">\n <div class=\"form-check form-check-inline\">\n <input class=\"form-check-input\" type=\"checkbox\" value=\"true\" formControlName=\"isActive\"\n id=\"isActive\" />\n <label class=\"form-check-label\" for=\"isActive\"> {{'Cms::IsActive' | abpLocalization}}</label>\n </div>\n </div>\n\n </form>\n </ng-container>\n </ng-template>\n <ng-template #abpFooter>\n <button type=\"button\" class=\"btn btn-secondary\" abpClose>{{'AbpUi::Close' | abpLocalization}}</button>\n <abp-button iconClass=\"fa fa-check\" (click)=\"createOrEditModalSubmitBtn.nativeElement.click()\">{{'AbpUi::Save' |\n abpLocalization}}</abp-button>\n </ng-template>\n</abp-modal>", styles: ["::ng-deep .sections-page .dignite_page{background:transparent}::ng-deep .sections-page .list-group-flush>.list-group-item:first-child{border-top-width:var(--bs-list-group-border-width)}::ng-deep .sections-page .card-header input{flex:2 1 auto}::ng-deep .sections-page .card-header .form-select{padding:.475rem 3.75rem .475rem 1.25rem}::ng-deep .sections-page .container-height{height:calc(100vh - 220px)}::ng-deep .sites-modal-form .form-control{padding:.4rem 1.25rem}\n"], dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1$1.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i1$1.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i1$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1$1.CheckboxControlValueAccessor, selector: "input[type=checkbox][formControlName],input[type=checkbox][formControl],input[type=checkbox][ngModel]" }, { kind: "directive", type: i1$1.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i1$1.RadioControlValueAccessor, selector: "input[type=radio][formControlName],input[type=radio][formControl],input[type=radio][ngModel]", inputs: ["name", "formControlName", "value"] }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i1$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: i1.FormSubmitDirective, selector: "form[ngSubmit][formGroup]", inputs: ["debounce", "notValidateOnSubmit", "markAsDirtyWhenSubmit"], outputs: ["ngSubmit"] }, { kind: "directive", type: i1.StopPropagationDirective, selector: "[click.stop]", outputs: ["click.stop"] }, { kind: "component", type: i7.DatatableComponent, selector: "ngx-datatable", inputs: ["targetMarkerTemplate", "rows", "groupRowsBy", "groupedRows", "columns", "selected", "scrollbarV", "scrollbarH", "rowHeight", "columnMode", "headerHeight", "footerHeight", "externalPaging", "externalSorting", "limit", "count", "offset", "loadingIndicator", "selectionType", "reorderable", "swapColumns", "sortType", "sorts", "cssClasses", "messages", "rowClass", "selectCheck", "displayCheck", "groupExpansionDefault", "trackByProp", "selectAllRowsOnPage", "virtualization", "treeFromRelation", "treeToRelation", "summaryRow", "summaryHeight", "summaryPosition", "rowIdentity"], outputs: ["scroll", "activate", "select", "sort", "page", "reorder", "resize", "tableContextmenu", "treeAction"] }, { kind: "directive", type: i7.DataTableColumnDirective, selector: "ngx-datatable-column", inputs: ["name", "prop", "frozenLeft", "frozenRight", "flexGrow", "resizeable", "comparator", "pipe", "sortable", "draggable", "canAutoResize", "minWidth", "width", "maxWidth", "checkboxable", "headerCheckboxable", "headerClass", "cellClass", "isTreeColumn", "treeLevelIndent", "summaryFunc", "summaryTemplate", "cellTemplate", "headerTemplate", "treeToggleTemplate"] }, { kind: "directive", type: i7.DataTableColumnCellDirective, selector: "[ngx-datatable-cell-template]" }, { kind: "directive", type: i7$1.ValidationGroupDirective, selector: "[formGroup],[formGroupName]", exportAs: ["validationGroup"] }, { kind: "directive", type: i7$1.ValidationDirective, selector: "[formControl],[formControlName]", exportAs: ["validationDirective"] }, { kind: "component", type: i3.ButtonComponent, selector: "abp-button", inputs: ["buttonId", "buttonClass", "buttonType", "formName", "iconClass", "loading", "disabled", "attributes"], outputs: ["click", "focus", "blur", "abpClick", "abpFocus", "abpBlur"] }, { kind: "component", type: i3.ModalComponent, selector: "abp-modal", inputs: ["visible", "busy", "options", "suppressUnsavedChangesWarning"], outputs: ["visibleChange", "init", "appear", "disappear"] }, { kind: "directive", type: i3.NgxDatatableListDirective, selector: "ngx-datatable[list]", inputs: ["list"], exportAs: ["ngxDatatableList"] }, { kind: "directive", type: i3.ModalCloseDirective, selector: "[abpClose]" }, { kind: "directive", type: i10.NgbDropdown, selector: "[ngbDropdown]", inputs: ["autoClose", "dropdownClass", "open", "placement", "popperOptions", "container", "display"], outputs: ["openChange"], exportAs: ["ngbDropdown"] }, { kind: "directive", type: i10.NgbDropdownToggle, selector: "[ngbDropdownToggle]" }, { kind: "directive", type: i10.NgbDropdownMenu, selector: "[ngbDropdownMenu]" }, { kind: "directive", type: i10.NgbDropdownItem, selector: "[ngbDropdownItem]", inputs: ["tabindex", "disabled"] }, { kind: "directive", type: i10.NgbDropdownButtonItem, selector: "button[ngbDropdownItem]" }, { kind: "component", type: i12.PageComponent, selector: "abp-page", inputs: ["title", "toolbar", "breadcrumb"] }, { kind: "pipe", type: i2.DatePipe, name: "date" }, { kind: "pipe", type: i1.LocalizationPipe, name: "abpLocalization" }] }); }
|
|
2370
2174
|
}
|
|
2371
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2175
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: SectionsComponent, decorators: [{
|
|
2372
2176
|
type: Component,
|
|
2373
2177
|
args: [{ selector: 'cms-sections', providers: [
|
|
2374
2178
|
// [Required]
|
|
@@ -2381,20 +2185,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2381
2185
|
provide: EXTENSIONS_IDENTIFIER,
|
|
2382
2186
|
useValue: ECmsComponent.Sections,
|
|
2383
2187
|
},
|
|
2384
|
-
], template: "<abp-page [title]=\"'Cms::Sections' | abpLocalization\" [toolbar]=\"true\">\n <div class=\"sections-page\">\n\n <div class=\"card \">\n <div class=\"card-body px-2 py-sm-2 border-bottom\">\n <div class=\"input-group\">\n <select class=\"form-select col-auto\" [(ngModel)]=\"filters.siteId\" (change)=\"siteIdChange()\">\n <ng-container *ngFor=\"let item of siteList\">\n <option [value]=\"item.id\">{{item.displayName}}</option>\n </ng-container>\n </select>\n <input type=\"text\" class=\"form-control\" [(ngModel)]=\"filters.filter\"\n [placeholder]=\"'AbpUi::Search' | abpLocalization\" />\n <button class=\"btn btn-primary px-3\" type=\"button\" id=\"button-addon2\" (click)=\"list.get()\">\n <i class=\"fa fa-search\"></i>\n </button>\n </div>\n </div>\n </div>\n <div class=\"card mb-0\">\n <div class=\"card-body p-0\">\n <div class=\"table-responsive table-fixed-header\">\n <ngx-datatable class=\"material container-height\" [rows]=\"data.items\" [list]=\"list\"\n [columnMode]=\"'force'\" [headerHeight]=\"50\" [footerHeight]=\"50\" rowHeight=\"auto\"\n [scrollbarV]=\"true\" [virtualization]=\"false\" [externalPaging]=\"true\" [count]=\"data.totalCount\">\n <ngx-datatable-column [name]=\"'Cms::DisplayName' | abpLocalization\" prop=\"displayName\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{ value }}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::Name' | abpLocalization\" prop=\"name\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{ value }}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::SectionType' | abpLocalization\" prop=\"type\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{('Cms::Enum:SectionType:'+_SectionType[value]) | abpLocalization}}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::Default' | abpLocalization\" prop=\"isDefault\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n <i class=\"fas fa-check text-success\" *ngIf=\"value\"></i>\n <i class=\"fas fa-times text-danger\" *ngIf=\"!value\"></i>\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::IsActive' | abpLocalization\" prop=\"isActive\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n <i class=\"fas fa-check text-success\" *ngIf=\"value\"></i>\n <i class=\"fas fa-times text-danger\" *ngIf=\"!value\"></i>\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::EntryType' | abpLocalization\" prop=\"SiteId\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n <div ngbDropdown container=\"body\">\n <button type=\"button\" class=\"btn btn-link\" ngbDropdownToggle id=\"dropdownBasic1\">\n {{'Cms::EntryType' | abpLocalization}}\n </button>\n <div ngbDropdownMenu aria-labelledby=\"dropdownBasic1\">\n <ng-container *ngFor=\"let item of row.entryTypes;let i =index\">\n <li ngbDropdownItem\n class=\"d-flex align-items-center justify-content-between\"\n (click.stop)=\"jumpSectionsEdit(row,item)\">{{item.displayName}}\n <button class=\"btn btn-light btn-sm p-0\"\n (click.stop)=\"deleteEntryType(item)\"><i class=\"fas fa-trash p-sm-1\"\n style=\"font-size: 12px;\" role=\"button\"></i></button>\n </li>\n </ng-container>\n <li ngbDropdownItem (click.stop)=\"jumpSectionsCreate(row)\"><i\n class=\"fas fa-plus-circle me-2\"></i>{{'Cms::New' |\n abpLocalization}}</li>\n </div>\n </div>\n\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::CreationTime' | abpLocalization\" prop=\"creationTime\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{ value | date : 'yyyy-MM-dd hh-mm-ss' }}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [sortable]=\"false\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n <div ngbDropdown container=\"body\">\n <button type=\"button\" class=\"btn btn-outline-primary btn-sm\" ngbDropdownToggle>\n {{'AbpUi::Actions' | abpLocalization}}\n </button>\n <div ngbDropdownMenu>\n <button ngbDropdownItem (click)=\"editSectionBtn(row)\">{{'AbpUi::Edit' |\n abpLocalization}}</button>\n <button ngbDropdownItem (click)=\"deletefield(row)\">{{'AbpUi::Delete' |\n abpLocalization}}</button>\n </div>\n </div>\n </ng-template>\n </ngx-datatable-column>\n </ngx-datatable>\n </div>\n </div>\n </div>\n\n </div>\n\n\n</abp-page>\n\n\n\n\n<abp-modal [(visible)]=\"visibleOpen\" [busy]=\"modalBusy\" (visibleChange)=\"VisibleChange($event)\">\n <ng-template #abpHeader>\n <h3>{{selected?('AbpUi::Edit' | abpLocalization):('Cms::New' | abpLocalization)}}</h3>\n </ng-template>\n <ng-template #abpBody>\n <ng-template #loaderRef>\n <div class=\"text-center\"><i class=\"fa fa-pulse fa-spinner\" aria-hidden=\"true\"></i></div>\n </ng-template>\n <ng-container *ngIf=\"createOrEditForm; else loaderRef\">\n <form class=\"sites-modal-form\" [formGroup]=\"createOrEditForm\" (ngSubmit)=\"createOrEditSave()\">\n <button type=\"submit\" #createOrEditModalSubmitBtn style=\"display: none\"></button>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::EntryType' | abpLocalization}}</label>\n <div>\n <ng-container *ngFor=\"let item of _sectionTypeOptions;let i =index\">\n <div class=\"form-check form-check-inline\">\n <input class=\"form-check-input\" type=\"radio\" [value]=\"item.value\"\n (change)=\"radiochange()\" formControlName=\"type\" id=\"flexRadioDefault{{i}}\">\n <label class=\"form-check-label\" for=\"flexRadioDefault{{i}}\">\n {{ 'Cms::Enum:SectionType:'+item.key | abpLocalization }}\n </label>\n </div>\n </ng-container>\n </div>\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::DisplayName' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"displayName\"\n (blur)=\"disPlayNameInputBlur($event)\" placeholder=\"\" />\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::Name' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"name\" placeholder=\"\" />\n <div class=\"text-danger invalid-feedback\" *ngIf=\"nameInput.errors?.repetition\">\n {{nameInput.errors?.repetition}}\n </div>\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::Route' | abpLocalization}} </label>\n <input type=\"text\" class=\"form-control\" formControlName=\"route\" placeholder=\"\" />\n <div class=\"text-danger invalid-feedback\" *ngIf=\"routeInput.errors?.repetition\">\n {{routeInput.errors?.repetition}}\n </div>\n <div class=\"form-text\">\n {{'Cms::RouteTips' | abpLocalization}}<br>\n blog<br>\n {{'blog/{slug}'}}<br>\n {{'blog/{publishTime:yyyy}/{publishTime:MM}/{slug}'}}\n </div>\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::Template' | abpLocalization}} </label>\n <input type=\"text\" class=\"form-control\" formControlName=\"template\" placeholder=\"\" />\n <div class=\"form-text\">\n {{\"Cms::TemplateTips\" | abpLocalization}}\n </div>\n </div>\n <div class=\"mb-2\">\n <div class=\"form-check form-check-inline\">\n <input class=\"form-check-input\" type=\"checkbox\" value=\"true\" formControlName=\"isDefault\"\n id=\"isDefault\" />\n <label class=\"form-check-label\" for=\"isDefault\"> {{'Cms::Default' | abpLocalization}} </label>\n </div>\n </div>\n <div class=\"mb-2\">\n <div class=\"form-check form-check-inline\">\n <input class=\"form-check-input\" type=\"checkbox\" value=\"true\" formControlName=\"isActive\"\n id=\"isActive\" />\n <label class=\"form-check-label\" for=\"isActive\"> {{'Cms::IsActive' | abpLocalization}}</label>\n </div>\n </div>\n\n </form>\n </ng-container>\n </ng-template>\n <ng-template #abpFooter>\n <button type=\"button\" class=\"btn btn-secondary\" abpClose>{{'AbpUi::Close' | abpLocalization}}</button>\n <!-- [disabled]=\"!this.createOrEditForm.valid\" -->\n <abp-button iconClass=\"fa fa-check\" (click)=\"createOrEditModalSubmitBtn.nativeElement.click()\">{{'AbpUi::Save' |\n abpLocalization}}</abp-button>\n </ng-template>\n</abp-modal>", styles: ["::ng-deep .sections-page .dignite_page{background:transparent}::ng-deep .sections-page .list-group-flush>.list-group-item:first-child{border-top-width:var(--bs-list-group-border-width)}::ng-deep .sections-page .card-header input{flex:2 1 auto}::ng-deep .sections-page .card-header .form-select{padding:.475rem 3.75rem .475rem 1.25rem}::ng-deep .sections-page .container-height{height:calc(100vh - 220px)}::ng-deep .sites-modal-form .form-control{padding:.4rem 1.25rem}\n"] }]
|
|
2385
|
-
}], ctorParameters:
|
|
2188
|
+
], template: "<abp-page [title]=\"'Cms::Sections' | abpLocalization\" [toolbar]=\"true\">\n <div class=\"sections-page\">\n <div class=\"card \">\n <div class=\"card-body px-2 py-sm-2 border-bottom\">\n <div class=\"input-group\">\n <select class=\"form-select col-auto\" [(ngModel)]=\"filters.siteId\" (change)=\"siteIdChange()\">\n <ng-container *ngFor=\"let item of siteList\">\n <option [value]=\"item.id\">{{item.displayName}}</option>\n </ng-container>\n </select>\n <input type=\"text\" class=\"form-control\" [(ngModel)]=\"filters.filter\"\n [placeholder]=\"'AbpUi::Search' | abpLocalization\" />\n <button class=\"btn btn-primary px-3\" type=\"button\" id=\"button-addon2\" (click)=\"list.get()\">\n <i class=\"fa fa-search\"></i>\n </button>\n </div>\n </div>\n </div>\n <div class=\"card mb-0\">\n <div class=\"card-body p-0\">\n <div class=\"table-responsive table-fixed-header\">\n <ngx-datatable class=\"material container-height\" [rows]=\"data.items\" [list]=\"list\"\n [columnMode]=\"'force'\" [headerHeight]=\"50\" [footerHeight]=\"50\" rowHeight=\"auto\"\n [scrollbarV]=\"true\" [virtualization]=\"false\" [externalPaging]=\"true\" [count]=\"data.totalCount\">\n <ngx-datatable-column [name]=\"'Cms::DisplayName' | abpLocalization\" prop=\"displayName\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{ value }}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::Name' | abpLocalization\" prop=\"name\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{ value }}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::SectionType' | abpLocalization\" prop=\"type\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{('Cms::Enum:SectionType:'+_SectionType[value]) | abpLocalization}}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::Default' | abpLocalization\" prop=\"isDefault\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n <i class=\"fas fa-check text-success\" *ngIf=\"value\"></i>\n <i class=\"fas fa-times text-danger\" *ngIf=\"!value\"></i>\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::IsActive' | abpLocalization\" prop=\"isActive\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n <i class=\"fas fa-check text-success\" *ngIf=\"value\"></i>\n <i class=\"fas fa-times text-danger\" *ngIf=\"!value\"></i>\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::EntryType' | abpLocalization\" prop=\"SiteId\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n <div ngbDropdown container=\"body\">\n <button type=\"button\" class=\"btn btn-link\" ngbDropdownToggle id=\"dropdownBasic1\">\n {{'Cms::EntryType' | abpLocalization}}\n </button>\n <div ngbDropdownMenu aria-labelledby=\"dropdownBasic1\">\n <ng-container *ngFor=\"let item of row.entryTypes;let i =index\">\n <li ngbDropdownItem\n class=\"d-flex align-items-center justify-content-between\"\n (click.stop)=\"jumpSectionsEdit(row,item)\">{{item.displayName}}\n <button class=\"btn btn-light btn-sm p-0\"\n (click.stop)=\"deleteEntryType(item)\"><i class=\"fas fa-trash p-sm-1\"\n style=\"font-size: 12px;\" role=\"button\"></i></button>\n </li>\n </ng-container>\n <li ngbDropdownItem (click.stop)=\"jumpSectionsCreate(row)\"><i\n class=\"fas fa-plus-circle me-2\"></i>{{'Cms::New' |\n abpLocalization}}</li>\n </div>\n </div>\n\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [name]=\"'Cms::CreationTime' | abpLocalization\" prop=\"creationTime\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n {{ value | date : 'yyyy-MM-dd hh:mm:ss' }}\n </ng-template>\n </ngx-datatable-column>\n <ngx-datatable-column [sortable]=\"false\">\n <ng-template let-row=\"row\" let-value=\"value\" ngx-datatable-cell-template>\n <div ngbDropdown container=\"body\">\n <button type=\"button\" class=\"btn btn-outline-primary btn-sm\" ngbDropdownToggle>\n {{'AbpUi::Actions' | abpLocalization}}\n </button>\n <div ngbDropdownMenu>\n <button ngbDropdownItem (click)=\"editSectionBtn(row)\">{{'AbpUi::Edit' |\n abpLocalization}}</button>\n <button ngbDropdownItem (click)=\"deletefield(row)\">{{'AbpUi::Delete' |\n abpLocalization}}</button>\n </div>\n </div>\n </ng-template>\n </ngx-datatable-column>\n </ngx-datatable>\n </div>\n </div>\n </div>\n </div>\n</abp-page>\n<abp-modal [(visible)]=\"visibleOpen\" [busy]=\"modalBusy\" (visibleChange)=\"VisibleChange($event)\">\n <ng-template #abpHeader>\n <h3>{{selected?('AbpUi::Edit' | abpLocalization):('Cms::New' | abpLocalization)}}</h3>\n </ng-template>\n <ng-template #abpBody>\n <ng-template #loaderRef>\n <div class=\"text-center\"><i class=\"fa fa-pulse fa-spinner\" aria-hidden=\"true\"></i></div>\n </ng-template>\n <ng-container *ngIf=\"createOrEditForm; else loaderRef\">\n <form class=\"sites-modal-form\" [formGroup]=\"createOrEditForm\" (ngSubmit)=\"createOrEditSave()\">\n <button type=\"submit\" #createOrEditModalSubmitBtn style=\"display: none\"></button>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::EntryType' | abpLocalization}}</label>\n <div>\n <ng-container *ngFor=\"let item of _sectionTypeOptions;let i =index\">\n <div class=\"form-check form-check-inline\">\n <input class=\"form-check-input\" type=\"radio\" [value]=\"item.value\"\n (change)=\"radiochange()\" formControlName=\"type\" id=\"flexRadioDefault{{i}}\">\n <label class=\"form-check-label\" for=\"flexRadioDefault{{i}}\">\n {{ 'Cms::Enum:SectionType:'+item.key | abpLocalization }}\n </label>\n </div>\n </ng-container>\n </div>\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::DisplayName' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"displayName\"\n (blur)=\"disPlayNameInputBlur($event)\" placeholder=\"\" />\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::Name' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"name\" placeholder=\"\" />\n <div class=\"text-danger invalid-feedback\" *ngIf=\"nameInput.errors?.repetition\">\n {{nameInput.errors?.repetition}}\n </div>\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::Route' | abpLocalization}} </label>\n <input type=\"text\" class=\"form-control\" formControlName=\"route\" placeholder=\"\" />\n <div class=\"text-danger invalid-feedback\" *ngIf=\"routeInput.errors?.repetition\">\n {{routeInput.errors?.repetition}}\n </div>\n <div class=\"form-text\">\n {{'Cms::RouteTips' | abpLocalization}}<br>\n blog<br>\n {{'blog/{slug}'}}<br>\n {{'blog/{publishTime:yyyy}/{publishTime:MM}/{slug}'}}\n </div>\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::Template' | abpLocalization}} </label>\n <input type=\"text\" class=\"form-control\" formControlName=\"template\" placeholder=\"\" />\n <div class=\"form-text\">\n {{\"Cms::TemplateTips\" | abpLocalization}}\n </div>\n </div>\n <div class=\"mb-2\">\n <div class=\"form-check form-check-inline\">\n <input class=\"form-check-input\" type=\"checkbox\" value=\"true\" formControlName=\"isDefault\"\n id=\"isDefault\" />\n <label class=\"form-check-label\" for=\"isDefault\"> {{'Cms::Default' | abpLocalization}} </label>\n </div>\n </div>\n <div class=\"mb-2\">\n <div class=\"form-check form-check-inline\">\n <input class=\"form-check-input\" type=\"checkbox\" value=\"true\" formControlName=\"isActive\"\n id=\"isActive\" />\n <label class=\"form-check-label\" for=\"isActive\"> {{'Cms::IsActive' | abpLocalization}}</label>\n </div>\n </div>\n\n </form>\n </ng-container>\n </ng-template>\n <ng-template #abpFooter>\n <button type=\"button\" class=\"btn btn-secondary\" abpClose>{{'AbpUi::Close' | abpLocalization}}</button>\n <abp-button iconClass=\"fa fa-check\" (click)=\"createOrEditModalSubmitBtn.nativeElement.click()\">{{'AbpUi::Save' |\n abpLocalization}}</abp-button>\n </ng-template>\n</abp-modal>", styles: ["::ng-deep .sections-page .dignite_page{background:transparent}::ng-deep .sections-page .list-group-flush>.list-group-item:first-child{border-top-width:var(--bs-list-group-border-width)}::ng-deep .sections-page .card-header input{flex:2 1 auto}::ng-deep .sections-page .card-header .form-select{padding:.475rem 3.75rem .475rem 1.25rem}::ng-deep .sections-page .container-height{height:calc(100vh - 220px)}::ng-deep .sites-modal-form .form-control{padding:.4rem 1.25rem}\n"] }]
|
|
2189
|
+
}], ctorParameters: () => [{ type: i1.ListService }, { type: SectionAdminService }, { type: SiteAdminService }, { type: i3.ToasterService }, { type: i3.ConfirmationService }, { type: i1$1.FormBuilder }, { type: i1.ConfigStateService }, { type: EntryTypeAdminService }, { type: i1.LocalizationService }, { type: CmsApiService }, { type: i3$1.Router }], propDecorators: { createOrEditModalSubmitBtn: [{
|
|
2386
2190
|
type: ViewChild,
|
|
2387
2191
|
args: ['createOrEditModalSubmitBtn', { static: false }]
|
|
2388
2192
|
}] } });
|
|
2389
2193
|
|
|
2390
2194
|
class CreateOrEditEntryTypeInputBase {
|
|
2391
|
-
/**显示名称 Display name of this field */
|
|
2392
|
-
displayName = ['', [Validators.required]];
|
|
2393
|
-
/**名称 Unique Name*/
|
|
2394
|
-
name = ['', [Validators.required]];
|
|
2395
|
-
/**条目路由 */
|
|
2396
|
-
fieldTabs = new FormArray([]);
|
|
2397
2195
|
constructor(data) {
|
|
2196
|
+
/**显示名称 Display name of this field */
|
|
2197
|
+
this.displayName = ['', [Validators.required]];
|
|
2198
|
+
/**名称 Unique Name*/
|
|
2199
|
+
this.name = ['', [Validators.required]];
|
|
2200
|
+
/**条目路由 */
|
|
2201
|
+
this.fieldTabs = new FormArray([]);
|
|
2398
2202
|
if (data) {
|
|
2399
2203
|
for (const key in data) {
|
|
2400
2204
|
if (data.hasOwnProperty(key)) {
|
|
@@ -2405,10 +2209,10 @@ class CreateOrEditEntryTypeInputBase {
|
|
|
2405
2209
|
}
|
|
2406
2210
|
}
|
|
2407
2211
|
class fieldTabsBase {
|
|
2408
|
-
/**名称 Unique Name*/
|
|
2409
|
-
name = ['', [Validators.required]];
|
|
2410
|
-
fields = [[], []];
|
|
2411
2212
|
constructor(data) {
|
|
2213
|
+
/**名称 Unique Name*/
|
|
2214
|
+
this.name = ['', [Validators.required]];
|
|
2215
|
+
this.fields = [[], []];
|
|
2412
2216
|
if (data) {
|
|
2413
2217
|
for (const key in data) {
|
|
2414
2218
|
if (data.hasOwnProperty(key)) {
|
|
@@ -2419,15 +2223,15 @@ class fieldTabsBase {
|
|
|
2419
2223
|
}
|
|
2420
2224
|
}
|
|
2421
2225
|
class fieldsBase {
|
|
2422
|
-
/**字段id Unique Name*/
|
|
2423
|
-
fieldId = ['', [Validators.required]];
|
|
2424
|
-
/**显示名称 Unique Name*/
|
|
2425
|
-
displayName = ['', [Validators.required]];
|
|
2426
|
-
/**必填 Unique Name*/
|
|
2427
|
-
required = [false, []];
|
|
2428
|
-
/**是否在列表中显示 Unique Name*/
|
|
2429
|
-
showOnList = [false, []];
|
|
2430
2226
|
constructor(data) {
|
|
2227
|
+
/**字段id Unique Name*/
|
|
2228
|
+
this.fieldId = ['', [Validators.required]];
|
|
2229
|
+
/**显示名称 Unique Name*/
|
|
2230
|
+
this.displayName = ['', [Validators.required]];
|
|
2231
|
+
/**必填 Unique Name*/
|
|
2232
|
+
this.required = [false, []];
|
|
2233
|
+
/**是否在列表中显示 Unique Name*/
|
|
2234
|
+
this.showOnList = [false, []];
|
|
2431
2235
|
if (data) {
|
|
2432
2236
|
for (const key in data) {
|
|
2433
2237
|
if (data.hasOwnProperty(key)) {
|
|
@@ -2438,15 +2242,15 @@ class fieldsBase {
|
|
|
2438
2242
|
}
|
|
2439
2243
|
}
|
|
2440
2244
|
class fieldsInputBase {
|
|
2441
|
-
/**字段id */
|
|
2442
|
-
fieldId = ['', [Validators.required]];
|
|
2443
|
-
/**显示名称 Display name of this field */
|
|
2444
|
-
displayName = ['', [Validators.required]];
|
|
2445
|
-
/**是否必填 Unique Name*/
|
|
2446
|
-
required = [false, []];
|
|
2447
|
-
/**在列表中展示 Unique Name*/
|
|
2448
|
-
showOnList = [false, []];
|
|
2449
2245
|
constructor(data) {
|
|
2246
|
+
/**字段id */
|
|
2247
|
+
this.fieldId = ['', [Validators.required]];
|
|
2248
|
+
/**显示名称 Display name of this field */
|
|
2249
|
+
this.displayName = ['', [Validators.required]];
|
|
2250
|
+
/**是否必填 Unique Name*/
|
|
2251
|
+
this.required = [false, []];
|
|
2252
|
+
/**在列表中展示 Unique Name*/
|
|
2253
|
+
this.showOnList = [false, []];
|
|
2450
2254
|
if (data) {
|
|
2451
2255
|
for (const key in data) {
|
|
2452
2256
|
if (data.hasOwnProperty(key)) {
|
|
@@ -2458,15 +2262,6 @@ class fieldsInputBase {
|
|
|
2458
2262
|
}
|
|
2459
2263
|
|
|
2460
2264
|
class CreateOrEditComponent {
|
|
2461
|
-
toaster;
|
|
2462
|
-
_location;
|
|
2463
|
-
route;
|
|
2464
|
-
_FieldGroupAdminService;
|
|
2465
|
-
_FieldAdminService;
|
|
2466
|
-
_EntryTypeAdminService;
|
|
2467
|
-
_LocalizationService;
|
|
2468
|
-
_CmsApiService;
|
|
2469
|
-
router;
|
|
2470
2265
|
constructor(
|
|
2471
2266
|
// private fb: FormBuilder,
|
|
2472
2267
|
toaster, _location, route, _FieldGroupAdminService, _FieldAdminService, _EntryTypeAdminService, _LocalizationService, _CmsApiService, router) {
|
|
@@ -2479,22 +2274,37 @@ class CreateOrEditComponent {
|
|
|
2479
2274
|
this._LocalizationService = _LocalizationService;
|
|
2480
2275
|
this._CmsApiService = _CmsApiService;
|
|
2481
2276
|
this.router = router;
|
|
2277
|
+
this.fb = inject(FormBuilder);
|
|
2278
|
+
this._UpdateListService = inject(UpdateListService);
|
|
2279
|
+
/**表单实体 */
|
|
2280
|
+
this.newEntity = this.fb.group(new CreateOrEditEntryTypeInputBase());
|
|
2281
|
+
/**版块id */
|
|
2282
|
+
this.sectionId = '';
|
|
2283
|
+
/**条目类型id */
|
|
2284
|
+
this.entryTypesId = '';
|
|
2285
|
+
/**
|
|
2286
|
+
* 拖拽 功能*/
|
|
2287
|
+
/**数据源 */
|
|
2288
|
+
/**数据源-字段分组数据-包含字段数据 fields */
|
|
2289
|
+
this.fieldGroupList = [];
|
|
2290
|
+
/**数据源-所有字段列表 */
|
|
2291
|
+
this.fieldList = [];
|
|
2292
|
+
/**目标源 结果*/
|
|
2293
|
+
this.resultSource = [];
|
|
2294
|
+
/**来自数据源的集合,用于从目标源拖回数据源时的判断,与取值 */
|
|
2295
|
+
this.formRightGroup = [];
|
|
2296
|
+
/**模态框状态 */
|
|
2297
|
+
this.visibleTabsOpen = false;
|
|
2298
|
+
/**是否是忙碌状态 */
|
|
2299
|
+
this.modalBusy = false;
|
|
2300
|
+
/**正在选中的nav */
|
|
2301
|
+
this.navActive = 0;
|
|
2302
|
+
/**编辑字段模态框状态 */
|
|
2303
|
+
this.visibleEditFieldOpen = false;
|
|
2482
2304
|
}
|
|
2483
|
-
fb = inject(FormBuilder);
|
|
2484
|
-
_UpdateListService = inject(UpdateListService);
|
|
2485
|
-
/**表单实体 */
|
|
2486
|
-
newEntity = this.fb.group(new CreateOrEditEntryTypeInputBase());
|
|
2487
|
-
/**版块id */
|
|
2488
|
-
sectionId = '';
|
|
2489
|
-
/**条目类型id */
|
|
2490
|
-
entryTypesId = '';
|
|
2491
|
-
/**条目类型详情 */
|
|
2492
|
-
entryTypesSelect;
|
|
2493
2305
|
get fieldTabs() {
|
|
2494
2306
|
return this.newEntity.get('fieldTabs');
|
|
2495
2307
|
}
|
|
2496
|
-
/**获取提交按钮替身,用于真实触发表单提交 */
|
|
2497
|
-
submitclick;
|
|
2498
2308
|
/**触发提交按钮 */
|
|
2499
2309
|
submitclickBtn() {
|
|
2500
2310
|
this.submitclick.nativeElement.click();
|
|
@@ -2603,25 +2413,6 @@ class CreateOrEditComponent {
|
|
|
2603
2413
|
});
|
|
2604
2414
|
});
|
|
2605
2415
|
}
|
|
2606
|
-
/**
|
|
2607
|
-
* 拖拽 功能*/
|
|
2608
|
-
/**数据源 */
|
|
2609
|
-
/**数据源-字段分组数据-包含字段数据 fields */
|
|
2610
|
-
fieldGroupList = [];
|
|
2611
|
-
/**数据源-所有字段列表 */
|
|
2612
|
-
fieldList = [];
|
|
2613
|
-
/**数据源拖拽的分组下标 */
|
|
2614
|
-
DataSourceGroupIndex;
|
|
2615
|
-
/**数据源拖拽的字段下标 */
|
|
2616
|
-
DataSourceFieldIndex;
|
|
2617
|
-
/**目标源 结果*/
|
|
2618
|
-
resultSource = [];
|
|
2619
|
-
/**从数据源拖拽的元素 */
|
|
2620
|
-
fromDataSourceDragEl;
|
|
2621
|
-
/**从目标源拖拽的元素 */
|
|
2622
|
-
fromResultSourceDragEl;
|
|
2623
|
-
/**来自数据源的集合,用于从目标源拖回数据源时的判断,与取值 */
|
|
2624
|
-
formRightGroup = [];
|
|
2625
2416
|
/**从数据源开始拖拽 */
|
|
2626
2417
|
fromDataSourceDragStart(element, fieldIndex, groupIndex) {
|
|
2627
2418
|
this.fromDataSourceDragEl = element;
|
|
@@ -2732,18 +2523,6 @@ class CreateOrEditComponent {
|
|
|
2732
2523
|
});
|
|
2733
2524
|
});
|
|
2734
2525
|
}
|
|
2735
|
-
/**编辑Tabs表单 */
|
|
2736
|
-
editFieldTabsFrom;
|
|
2737
|
-
/**模态框状态 */
|
|
2738
|
-
visibleTabsOpen = false;
|
|
2739
|
-
/**是否是忙碌状态 */
|
|
2740
|
-
modalBusy = false;
|
|
2741
|
-
/**正在编辑的tabs */
|
|
2742
|
-
editFieldTabsSelect;
|
|
2743
|
-
/**正在选中的nav */
|
|
2744
|
-
navActive = 0;
|
|
2745
|
-
/**表单控件模板-动态赋值表单控件 */
|
|
2746
|
-
editFieldTabsModalSubmitBtn;
|
|
2747
2526
|
/**模态框状态改变回调 */
|
|
2748
2527
|
VisibleTabsChange(event) {
|
|
2749
2528
|
if (!event) {
|
|
@@ -2756,8 +2535,6 @@ class CreateOrEditComponent {
|
|
|
2756
2535
|
this.editFieldTabsFrom = this.fb.group(new fieldTabsBase());
|
|
2757
2536
|
this.visibleTabsOpen = true;
|
|
2758
2537
|
}
|
|
2759
|
-
/**正在编辑的tab下标 */
|
|
2760
|
-
newEditFieldTabsIndex;
|
|
2761
2538
|
/**编辑FieldTabs */
|
|
2762
2539
|
editFieldTabs(item, i) {
|
|
2763
2540
|
this.editFieldTabsFrom = this.fb.group(new fieldTabsBase({
|
|
@@ -2786,14 +2563,6 @@ class CreateOrEditComponent {
|
|
|
2786
2563
|
this.fieldTabs.removeAt(index);
|
|
2787
2564
|
this.resultSource.splice(index, 1);
|
|
2788
2565
|
}
|
|
2789
|
-
/**编辑字段模态框状态 */
|
|
2790
|
-
visibleEditFieldOpen = false;
|
|
2791
|
-
/**编辑字段模态框表单 */
|
|
2792
|
-
editFieldFrom;
|
|
2793
|
-
/**表单控件模板-动态赋值表单控件-编辑字段 */
|
|
2794
|
-
editFieldModalSubmitBtn;
|
|
2795
|
-
/**正在编辑的字段下标 */
|
|
2796
|
-
EditFieldIndex;
|
|
2797
2566
|
/**编辑字段模态框状态状态改变回调 */
|
|
2798
2567
|
VisibleEditFieldChange(event) {
|
|
2799
2568
|
if (!event) {
|
|
@@ -2829,15 +2598,15 @@ class CreateOrEditComponent {
|
|
|
2829
2598
|
return;
|
|
2830
2599
|
nameInput.patchValue(pinyin);
|
|
2831
2600
|
}
|
|
2832
|
-
static
|
|
2833
|
-
static
|
|
2601
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: CreateOrEditComponent, deps: [{ token: i3.ToasterService }, { token: i2.Location }, { token: i3$1.ActivatedRoute }, { token: FieldGroupAdminService }, { token: FieldAdminService }, { token: EntryTypeAdminService }, { token: i1.LocalizationService }, { token: CmsApiService }, { token: i3$1.Router }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2602
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.9", type: CreateOrEditComponent, selector: "cms-create-or-edit", providers: [
|
|
2834
2603
|
{
|
|
2835
2604
|
provide: EXTENSIONS_IDENTIFIER,
|
|
2836
2605
|
useValue: ECmsComponent.SectionsCreateOrEdit,
|
|
2837
2606
|
},
|
|
2838
|
-
], viewQueries: [{ propertyName: "submitclick", first: true, predicate: ["submitclick"], descendants: true, static: true }, { propertyName: "editFieldTabsModalSubmitBtn", first: true, predicate: ["editFieldTabsModalSubmitBtn"], descendants: true }, { propertyName: "editFieldModalSubmitBtn", first: true, predicate: ["editFieldModalSubmitBtn"], descendants: true }], ngImport: i0, template: "<form class=\"row g-3 needs-validation\" [formGroup]=\"newEntity\" (ngSubmit)=\"save()\">\n <abp-page [title]=\"entryTypesId ? ('AbpUi::Edit' | abpLocalization):('Cms::New' | abpLocalization)\" [toolbar]=\"true\">\n <div class=\"create-or-edit-entry-type-page\">\n <div class=\"card\">\n <button type=\"submit\" style=\"display: none;\" #submitclick></button>\n <div class=\"card-body\">\n <div class=\"\">\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::DisplayName' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"displayName\"\n (blur)=\"disPlayNameInputBlur($event)\" placeholder=\"\" />\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::Name' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"name\" placeholder=\"\" />\n </div>\n <div formArrayName=\"fieldTabs\">\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::FieldLayout' | abpLocalization}}</label>\n <div class=\"container\">\n <!-- -->\n <div class=\"row\">\n <div class=\"col-sm-8\">\n <ul ngbNav #nav=\"ngbNav\" [(activeId)]=\"navActive\" class=\"nav nav-tabs\">\n <ng-container *ngFor=\"let item of resultSource; let i = index\">\n <li [ngbNavItem]=\"i\">\n <button type=\"button\" ngbDropdown ngbNavLink>\n {{ item.name }}\n <span class=\"ms-1\" (click.stop)=\"$event.stopPropagation()\"\n ngbDropdownToggle></span>\n <div ngbDropdownMenu style=\"z-index: 999;\">\n <li ngbDropdownItem type=\"button\"\n (click.stop)=\"editFieldTabs(item,i)\">\n <i class=\"fas fa-edit\"></i>\n {{'AbpUi::Edit' | abpLocalization}}\n </li>\n <li ngbDropdownItem\n *ngIf=\"resultSource.length !== 1\" type=\"button\"\n (click.stop)=\"deleteFieldTabs(i)\">\n <i class=\"fas fa-trash\"></i>\n {{'AbpUi::Delete' | abpLocalization}}\n </li>\n </div>\n </button>\n <ng-template ngbNavContent>\n <div class=\"p-2\" ondragover=\"event.preventDefault();\"\n (drop)=\"dragToResultSourceDropped(item,i)\" style=\"height: 100%;\">\n <p class=\"form-text\" *ngIf=\"item.fields.length === 0\">\n {{'Cms::DragAndDropFieldTips' | abpLocalization}}\n </p>\n <ul class=\"list-group\" style=\"height: 100%;\">\n <ng-container\n *ngFor=\"let el of item.fields; let iel = index\">\n <li draggable=\"true\"\n (dragstart)=\"fromResultSourceDragStart(el)\"\n (drop)=\"dragToResultSourceItemDropped(iel)\"\n class=\"list-group-item d-flex align-items-center justify-content-between py-1\" style=\"position: unset;\">\n {{ el.displayName }}\n <button class=\"p-0 btn btn-sm btn-light\"\n (click.stop)=\"EditFieldModalOpen(el,iel)\"\n type=\"button\"><i\n class=\"fas fa-wrench p-sm-1\"\n role=\"button\"></i></button>\n </li>\n </ng-container>\n </ul>\n \n </div>\n </ng-template>\n </li>\n </ng-container>\n <li class=\"nav-item\" role=\"presentation\">\n <button type=\"button\" class=\"nav-link\"\n (click.stop)=\"addFieldTabs()\">\n <i class=\"fas fa-plus-circle\"></i>\n {{'Cms::NewTab' | abpLocalization}}\n </button>\n </li>\n </ul>\n <div [ngbNavOutlet]=\"nav\" class=\"mt-2 bordernNavs p-0\"></div>\n </div>\n <div class=\"col-sm-4\">\n <div ngbAccordion #accordion=\"ngbAccordion\"\n ondragover=\"event.preventDefault();\" (drop)=\"dragToDataSourceDropped()\"\n style=\"min-height: 80px;\">\n <ng-container *ngFor=\"let item of fieldGroupList; let i = index\">\n <div [ngbAccordionItem]=\"item.name\" *ngIf=\"item.fields.length > 0\">\n <h2 ngbAccordionHeader>\n <button ngbAccordionButton>{{\n ('Cms::'+item.name) | abpLocalization }}</button>\n </h2>\n <div ngbAccordionCollapse>\n <div ngbAccordionBody>\n <ng-template>\n <ul class=\"list-group\">\n <ng-container\n *ngFor=\"let el of item.fields; let ii = index\">\n <li draggable=\"true\"\n (dragstart)=\"fromDataSourceDragStart(el,ii,i)\"\n class=\"list-group-item\">\n {{ el.displayName }}\n </li>\n </ng-container>\n </ul>\n </ng-template>\n </div>\n </div>\n </div>\n </ng-container>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n\n\n </div>\n </div>\n\n\n </div>\n </abp-page>\n\n</form>\n\n<abp-modal [(visible)]=\"visibleTabsOpen\" [busy]=\"modalBusy\" (visibleChange)=\"VisibleTabsChange($event)\">\n <ng-template #abpHeader>\n <h3>{{ editFieldTabsSelect ? ('AbpUi::Edit' | abpLocalization):('Cms::New' | abpLocalization)}}</h3>\n </ng-template>\n <ng-template #abpBody>\n <ng-template #loaderRef>\n <div class=\"text-center\"><i class=\"fa fa-pulse fa-spinner\" aria-hidden=\"true\"></i></div>\n </ng-template>\n <ng-container *ngIf=\"editFieldTabsFrom; else loaderRef\">\n <form class=\"sites-modal-form\" [formGroup]=\"editFieldTabsFrom\" (ngSubmit)=\"editFieldTabsSave()\">\n <button type=\"submit\" #editFieldTabsModalSubmitBtn style=\"display: none\"></button>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::Name' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"name\" placeholder=\"\" />\n </div>\n </form>\n </ng-container>\n </ng-template>\n <ng-template #abpFooter>\n <button type=\"button\" class=\"btn btn-secondary\" abpClose>{{'AbpUi::Close' | abpLocalization}}</button>\n <abp-button iconClass=\"fa fa-check\" [disabled]=\"!editFieldTabsFrom.valid\"\n (click)=\"editFieldTabsModalSubmitBtn.nativeElement.click()\">{{'AbpUi::Save' | abpLocalization}}</abp-button>\n </ng-template>\n</abp-modal>\n\n\n<abp-modal [(visible)]=\"visibleEditFieldOpen\" [busy]=\"modalBusy\" (visibleChange)=\"VisibleEditFieldChange($event)\">\n <ng-template #abpHeader>\n <h3>{{'AbpUi::Edit' | abpLocalization}}</h3>\n </ng-template>\n <ng-template #abpBody>\n <ng-template #loaderRef>\n <div class=\"text-center\"><i class=\"fa fa-pulse fa-spinner\" aria-hidden=\"true\"></i></div>\n </ng-template>\n <ng-container *ngIf=\"editFieldFrom; else loaderRef\">\n <form class=\"sites-modal-form\" [formGroup]=\"editFieldFrom\" (ngSubmit)=\"editFieldSave()\">\n <button type=\"submit\" #editFieldModalSubmitBtn style=\"display: none\"></button>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::DisplayName' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"displayName\" placeholder=\"\" />\n </div>\n <div class=\"mb-2\">\n <div class=\"form-check form-check-inline\">\n <input class=\"form-check-input\" type=\"checkbox\" value=\"true\" formControlName=\"required\"\n id=\"required\" />\n <label class=\"form-check-label\" for=\"required\"> {{'Cms::Required' | abpLocalization}} </label>\n </div>\n </div>\n <div class=\"mb-2\">\n <div class=\"form-check form-check-inline\">\n <input class=\"form-check-input\" type=\"checkbox\" value=\"true\" formControlName=\"showOnList\"\n id=\"showOnList\" />\n <label class=\"form-check-label\" for=\"showOnList\"> {{'Cms::ShowOnList' | abpLocalization}} </label>\n </div>\n </div>\n </form>\n </ng-container>\n </ng-template>\n <ng-template #abpFooter>\n <button type=\"button\" class=\"btn btn-secondary\" abpClose>{{'AbpUi::Close' | abpLocalization}}</button>\n <abp-button iconClass=\"fa fa-check\" [disabled]=\"!editFieldFrom.valid\"\n (click)=\"editFieldModalSubmitBtn.nativeElement.click()\">{{'AbpUi::Save' | abpLocalization}}</abp-button>\n </ng-template>\n</abp-modal>", styles: ["::ng-deep .create-or-edit-entry-type-page .dignite_page{height:calc(100vh - 125px);overflow:auto}::ng-deep .create-or-edit-entry-type-page .form-control,::ng-deep .create-or-edit-entry-type-page .form-select{padding:.475rem 1.25rem}::ng-deep .create-or-edit-entry-type-page .cursor-move{cursor:move}::ng-deep .create-or-edit-entry-type-page .bordernNavs{border:var(--bs-border-width) solid var(--lpx-border-color);padding-left:inherit;padding-right:inherit;height:calc(100% - 60px)}::ng-deep .create-or-edit-entry-type-page .tab-pane{height:100%}\n"], dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1$1.CheckboxControlValueAccessor, selector: "input[type=checkbox][formControlName],input[type=checkbox][formControl],input[type=checkbox][ngModel]" }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: i1$1.FormArrayName, selector: "[formArrayName]", inputs: ["formArrayName"] }, { kind: "directive", type: i1.FormSubmitDirective, selector: "form[ngSubmit][formGroup]", inputs: ["debounce", "notValidateOnSubmit", "markAsDirtyWhenSubmit"], outputs: ["ngSubmit"] }, { kind: "directive", type: i1.StopPropagationDirective, selector: "[click.stop]", outputs: ["click.stop"] }, { kind: "directive", type: i7$1.ValidationGroupDirective, selector: "[formGroup],[formGroupName]", exportAs: ["validationGroup"] }, { kind: "directive", type: i7$1.ValidationDirective, selector: "[formControl],[formControlName]", exportAs: ["validationDirective"] }, { kind: "component", type: i3.ButtonComponent, selector: "abp-button", inputs: ["buttonId", "buttonClass", "buttonType", "formName", "iconClass", "loading", "disabled", "attributes"], outputs: ["click", "focus", "blur", "abpClick", "abpFocus", "abpBlur"] }, { kind: "component", type: i3.ModalComponent, selector: "abp-modal", inputs: ["visible", "busy", "options", "suppressUnsavedChangesWarning"], outputs: ["visibleChange", "init", "appear", "disappear"] }, { kind: "directive", type: i3.ModalCloseDirective, selector: "[abpClose]" }, { kind: "directive", type: i10.NgbDropdown, selector: "[ngbDropdown]", inputs: ["autoClose", "dropdownClass", "open", "placement", "popperOptions", "container", "display"], outputs: ["openChange"], exportAs: ["ngbDropdown"] }, { kind: "directive", type: i10.NgbDropdownToggle, selector: "[ngbDropdownToggle]" }, { kind: "directive", type: i10.NgbDropdownMenu, selector: "[ngbDropdownMenu]" }, { kind: "directive", type: i10.NgbDropdownItem, selector: "[ngbDropdownItem]", inputs: ["disabled"] }, { kind: "directive", type: i10.NgbNavContent, selector: "ng-template[ngbNavContent]" }, { kind: "directive", type: i10.NgbNav, selector: "[ngbNav]", inputs: ["activeId", "animation", "destroyOnHide", "orientation", "roles", "keyboard"], outputs: ["activeIdChange", "shown", "hidden", "navChange"], exportAs: ["ngbNav"] }, { kind: "directive", type: i10.NgbNavItem, selector: "[ngbNavItem]", inputs: ["destroyOnHide", "disabled", "domId", "ngbNavItem"], outputs: ["shown", "hidden"], exportAs: ["ngbNavItem"] }, { kind: "directive", type: i10.NgbNavItemRole, selector: "[ngbNavItem]:not(ng-container)" }, { kind: "directive", type: i10.NgbNavLinkButton, selector: "button[ngbNavLink]" }, { kind: "directive", type: i10.NgbNavLinkBase, selector: "[ngbNavLink]" }, { kind: "component", type: i10.NgbNavOutlet, selector: "[ngbNavOutlet]", inputs: ["paneRole", "ngbNavOutlet"] }, { kind: "directive", type: i10.NgbAccordionButton, selector: "button[ngbAccordionButton]" }, { kind: "directive", type: i10.NgbAccordionDirective, selector: "[ngbAccordion]", inputs: ["animation", "closeOthers", "destroyOnHide"], outputs: ["show", "shown", "hide", "hidden"], exportAs: ["ngbAccordion"] }, { kind: "directive", type: i10.NgbAccordionItem, selector: "[ngbAccordionItem]", inputs: ["ngbAccordionItem", "destroyOnHide", "disabled", "collapsed"], outputs: ["show", "shown", "hide", "hidden"], exportAs: ["ngbAccordionItem"] }, { kind: "directive", type: i10.NgbAccordionHeader, selector: "[ngbAccordionHeader]" }, { kind: "directive", type: i10.NgbAccordionBody, selector: "[ngbAccordionBody]" }, { kind: "directive", type: i10.NgbAccordionCollapse, selector: "[ngbAccordionCollapse]", exportAs: ["ngbAccordionCollapse"] }, { kind: "component", type: i9.PageComponent, selector: "abp-page", inputs: ["title", "toolbar", "breadcrumb"] }, { kind: "pipe", type: i1.LocalizationPipe, name: "abpLocalization" }] });
|
|
2607
|
+
], viewQueries: [{ propertyName: "submitclick", first: true, predicate: ["submitclick"], descendants: true, static: true }, { propertyName: "editFieldTabsModalSubmitBtn", first: true, predicate: ["editFieldTabsModalSubmitBtn"], descendants: true }, { propertyName: "editFieldModalSubmitBtn", first: true, predicate: ["editFieldModalSubmitBtn"], descendants: true }], ngImport: i0, template: "<form class=\"row g-3 needs-validation\" [formGroup]=\"newEntity\" (ngSubmit)=\"save()\">\n <abp-page [title]=\"entryTypesId ? ('AbpUi::Edit' | abpLocalization):('Cms::New' | abpLocalization)\" [toolbar]=\"true\">\n <div class=\"create-or-edit-entry-type-page\">\n <div class=\"card\">\n <button type=\"submit\" style=\"display: none;\" #submitclick></button>\n <div class=\"card-body\">\n <div class=\"\">\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::DisplayName' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"displayName\"\n (blur)=\"disPlayNameInputBlur($event)\" placeholder=\"\" />\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::Name' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"name\" placeholder=\"\" />\n </div>\n <div formArrayName=\"fieldTabs\">\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::FieldLayout' | abpLocalization}}</label>\n <div class=\"container\">\n <!-- -->\n <div class=\"row\">\n <div class=\"col-sm-8\">\n <ul ngbNav #nav=\"ngbNav\" [(activeId)]=\"navActive\" class=\"nav nav-tabs\">\n <ng-container *ngFor=\"let item of resultSource; let i = index\">\n <li [ngbNavItem]=\"i\">\n <button type=\"button\" ngbDropdown ngbNavLink>\n {{ item.name }}\n <span class=\"ms-1\" (click.stop)=\"$event.stopPropagation()\"\n ngbDropdownToggle></span>\n <div ngbDropdownMenu style=\"z-index: 999;\">\n <li ngbDropdownItem type=\"button\"\n (click.stop)=\"editFieldTabs(item,i)\">\n <i class=\"fas fa-edit\"></i>\n {{'AbpUi::Edit' | abpLocalization}}\n </li>\n <li ngbDropdownItem\n *ngIf=\"resultSource.length !== 1\" type=\"button\"\n (click.stop)=\"deleteFieldTabs(i)\">\n <i class=\"fas fa-trash\"></i>\n {{'AbpUi::Delete' | abpLocalization}}\n </li>\n </div>\n </button>\n <ng-template ngbNavContent>\n <div class=\"p-2\" ondragover=\"event.preventDefault();\"\n (drop)=\"dragToResultSourceDropped(item,i)\" style=\"height: 100%;\">\n <p class=\"form-text\" *ngIf=\"item.fields.length === 0\">\n {{'Cms::DragAndDropFieldTips' | abpLocalization}}\n </p>\n <ul class=\"list-group\" style=\"height: 100%;\">\n <ng-container\n *ngFor=\"let el of item.fields; let iel = index\">\n <li draggable=\"true\"\n (dragstart)=\"fromResultSourceDragStart(el)\"\n (drop)=\"dragToResultSourceItemDropped(iel)\"\n class=\"list-group-item d-flex align-items-center justify-content-between py-1\" style=\"position: unset;\">\n {{ el.displayName }}\n <button class=\"p-0 btn btn-sm btn-light\"\n (click.stop)=\"EditFieldModalOpen(el,iel)\"\n type=\"button\"><i\n class=\"fas fa-wrench p-sm-1\"\n role=\"button\"></i></button>\n </li>\n </ng-container>\n </ul>\n \n </div>\n </ng-template>\n </li>\n </ng-container>\n <li class=\"nav-item\" role=\"presentation\">\n <button type=\"button\" class=\"nav-link\"\n (click.stop)=\"addFieldTabs()\">\n <i class=\"fas fa-plus-circle\"></i>\n {{'Cms::NewTab' | abpLocalization}}\n </button>\n </li>\n </ul>\n <div [ngbNavOutlet]=\"nav\" class=\"mt-2 bordernNavs p-0\"></div>\n </div>\n <div class=\"col-sm-4\">\n <div ngbAccordion #accordion=\"ngbAccordion\"\n ondragover=\"event.preventDefault();\" (drop)=\"dragToDataSourceDropped()\"\n style=\"min-height: 80px;\">\n <ng-container *ngFor=\"let item of fieldGroupList; let i = index\">\n <div [ngbAccordionItem]=\"item.name\" *ngIf=\"item.fields.length > 0\">\n <h2 ngbAccordionHeader>\n <button ngbAccordionButton>{{\n ('Cms::'+item.name) | abpLocalization }}</button>\n </h2>\n <div ngbAccordionCollapse>\n <div ngbAccordionBody>\n <ng-template>\n <ul class=\"list-group\">\n <ng-container\n *ngFor=\"let el of item.fields; let ii = index\">\n <li draggable=\"true\"\n (dragstart)=\"fromDataSourceDragStart(el,ii,i)\"\n class=\"list-group-item\">\n {{ el.displayName }}\n </li>\n </ng-container>\n </ul>\n </ng-template>\n </div>\n </div>\n </div>\n </ng-container>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n\n\n </div>\n </div>\n\n\n </div>\n </abp-page>\n\n</form>\n\n<abp-modal [(visible)]=\"visibleTabsOpen\" [busy]=\"modalBusy\" (visibleChange)=\"VisibleTabsChange($event)\">\n <ng-template #abpHeader>\n <h3>{{ editFieldTabsSelect ? ('AbpUi::Edit' | abpLocalization):('Cms::New' | abpLocalization)}}</h3>\n </ng-template>\n <ng-template #abpBody>\n <ng-template #loaderRef>\n <div class=\"text-center\"><i class=\"fa fa-pulse fa-spinner\" aria-hidden=\"true\"></i></div>\n </ng-template>\n <ng-container *ngIf=\"editFieldTabsFrom; else loaderRef\">\n <form class=\"sites-modal-form\" [formGroup]=\"editFieldTabsFrom\" (ngSubmit)=\"editFieldTabsSave()\">\n <button type=\"submit\" #editFieldTabsModalSubmitBtn style=\"display: none\"></button>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::Name' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"name\" placeholder=\"\" />\n </div>\n </form>\n </ng-container>\n </ng-template>\n <ng-template #abpFooter>\n <button type=\"button\" class=\"btn btn-secondary\" abpClose>{{'AbpUi::Close' | abpLocalization}}</button>\n <abp-button iconClass=\"fa fa-check\" [disabled]=\"!editFieldTabsFrom.valid\"\n (click)=\"editFieldTabsModalSubmitBtn.nativeElement.click()\">{{'AbpUi::Save' | abpLocalization}}</abp-button>\n </ng-template>\n</abp-modal>\n\n\n<abp-modal [(visible)]=\"visibleEditFieldOpen\" [busy]=\"modalBusy\" (visibleChange)=\"VisibleEditFieldChange($event)\">\n <ng-template #abpHeader>\n <h3>{{'AbpUi::Edit' | abpLocalization}}</h3>\n </ng-template>\n <ng-template #abpBody>\n <ng-template #loaderRef>\n <div class=\"text-center\"><i class=\"fa fa-pulse fa-spinner\" aria-hidden=\"true\"></i></div>\n </ng-template>\n <ng-container *ngIf=\"editFieldFrom; else loaderRef\">\n <form class=\"sites-modal-form\" [formGroup]=\"editFieldFrom\" (ngSubmit)=\"editFieldSave()\">\n <button type=\"submit\" #editFieldModalSubmitBtn style=\"display: none\"></button>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::DisplayName' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"displayName\" placeholder=\"\" />\n </div>\n <div class=\"mb-2\">\n <div class=\"form-check form-check-inline\">\n <input class=\"form-check-input\" type=\"checkbox\" value=\"true\" formControlName=\"required\"\n id=\"required\" />\n <label class=\"form-check-label\" for=\"required\"> {{'Cms::Required' | abpLocalization}} </label>\n </div>\n </div>\n <div class=\"mb-2\">\n <div class=\"form-check form-check-inline\">\n <input class=\"form-check-input\" type=\"checkbox\" value=\"true\" formControlName=\"showOnList\"\n id=\"showOnList\" />\n <label class=\"form-check-label\" for=\"showOnList\"> {{'Cms::ShowOnList' | abpLocalization}} </label>\n </div>\n </div>\n </form>\n </ng-container>\n </ng-template>\n <ng-template #abpFooter>\n <button type=\"button\" class=\"btn btn-secondary\" abpClose>{{'AbpUi::Close' | abpLocalization}}</button>\n <abp-button iconClass=\"fa fa-check\" [disabled]=\"!editFieldFrom.valid\"\n (click)=\"editFieldModalSubmitBtn.nativeElement.click()\">{{'AbpUi::Save' | abpLocalization}}</abp-button>\n </ng-template>\n</abp-modal>", styles: ["::ng-deep .create-or-edit-entry-type-page .dignite_page{height:calc(100vh - 125px);overflow:auto}::ng-deep .create-or-edit-entry-type-page .form-control,::ng-deep .create-or-edit-entry-type-page .form-select{padding:.475rem 1.25rem}::ng-deep .create-or-edit-entry-type-page .cursor-move{cursor:move}::ng-deep .create-or-edit-entry-type-page .bordernNavs{border:var(--bs-border-width) solid var(--lpx-border-color);padding-left:inherit;padding-right:inherit;height:calc(100% - 60px)}::ng-deep .create-or-edit-entry-type-page .tab-pane{height:100%}\n"], dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1$1.CheckboxControlValueAccessor, selector: "input[type=checkbox][formControlName],input[type=checkbox][formControl],input[type=checkbox][ngModel]" }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: i1$1.FormArrayName, selector: "[formArrayName]", inputs: ["formArrayName"] }, { kind: "directive", type: i1.FormSubmitDirective, selector: "form[ngSubmit][formGroup]", inputs: ["debounce", "notValidateOnSubmit", "markAsDirtyWhenSubmit"], outputs: ["ngSubmit"] }, { kind: "directive", type: i1.StopPropagationDirective, selector: "[click.stop]", outputs: ["click.stop"] }, { kind: "directive", type: i7$1.ValidationGroupDirective, selector: "[formGroup],[formGroupName]", exportAs: ["validationGroup"] }, { kind: "directive", type: i7$1.ValidationDirective, selector: "[formControl],[formControlName]", exportAs: ["validationDirective"] }, { kind: "component", type: i3.ButtonComponent, selector: "abp-button", inputs: ["buttonId", "buttonClass", "buttonType", "formName", "iconClass", "loading", "disabled", "attributes"], outputs: ["click", "focus", "blur", "abpClick", "abpFocus", "abpBlur"] }, { kind: "component", type: i3.ModalComponent, selector: "abp-modal", inputs: ["visible", "busy", "options", "suppressUnsavedChangesWarning"], outputs: ["visibleChange", "init", "appear", "disappear"] }, { kind: "directive", type: i3.ModalCloseDirective, selector: "[abpClose]" }, { kind: "directive", type: i10.NgbNavContent, selector: "ng-template[ngbNavContent]" }, { kind: "directive", type: i10.NgbNav, selector: "[ngbNav]", inputs: ["activeId", "animation", "destroyOnHide", "orientation", "roles", "keyboard"], outputs: ["activeIdChange", "shown", "hidden", "navChange"], exportAs: ["ngbNav"] }, { kind: "directive", type: i10.NgbNavItem, selector: "[ngbNavItem]", inputs: ["destroyOnHide", "disabled", "domId", "ngbNavItem"], outputs: ["shown", "hidden"], exportAs: ["ngbNavItem"] }, { kind: "directive", type: i10.NgbNavItemRole, selector: "[ngbNavItem]:not(ng-container)" }, { kind: "directive", type: i10.NgbNavLinkButton, selector: "button[ngbNavLink]" }, { kind: "directive", type: i10.NgbNavLinkBase, selector: "[ngbNavLink]" }, { kind: "component", type: i10.NgbNavOutlet, selector: "[ngbNavOutlet]", inputs: ["paneRole", "ngbNavOutlet"] }, { kind: "directive", type: i10.NgbAccordionButton, selector: "button[ngbAccordionButton]" }, { kind: "directive", type: i10.NgbAccordionDirective, selector: "[ngbAccordion]", inputs: ["animation", "closeOthers", "destroyOnHide"], outputs: ["show", "shown", "hide", "hidden"], exportAs: ["ngbAccordion"] }, { kind: "directive", type: i10.NgbAccordionItem, selector: "[ngbAccordionItem]", inputs: ["ngbAccordionItem", "destroyOnHide", "disabled", "collapsed"], outputs: ["show", "shown", "hide", "hidden"], exportAs: ["ngbAccordionItem"] }, { kind: "directive", type: i10.NgbAccordionHeader, selector: "[ngbAccordionHeader]" }, { kind: "directive", type: i10.NgbAccordionBody, selector: "[ngbAccordionBody]" }, { kind: "directive", type: i10.NgbAccordionCollapse, selector: "[ngbAccordionCollapse]", exportAs: ["ngbAccordionCollapse"] }, { kind: "directive", type: i10.NgbDropdown, selector: "[ngbDropdown]", inputs: ["autoClose", "dropdownClass", "open", "placement", "popperOptions", "container", "display"], outputs: ["openChange"], exportAs: ["ngbDropdown"] }, { kind: "directive", type: i10.NgbDropdownToggle, selector: "[ngbDropdownToggle]" }, { kind: "directive", type: i10.NgbDropdownMenu, selector: "[ngbDropdownMenu]" }, { kind: "directive", type: i10.NgbDropdownItem, selector: "[ngbDropdownItem]", inputs: ["tabindex", "disabled"] }, { kind: "component", type: i12.PageComponent, selector: "abp-page", inputs: ["title", "toolbar", "breadcrumb"] }, { kind: "pipe", type: i1.LocalizationPipe, name: "abpLocalization" }] }); }
|
|
2839
2608
|
}
|
|
2840
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2609
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: CreateOrEditComponent, decorators: [{
|
|
2841
2610
|
type: Component,
|
|
2842
2611
|
args: [{ selector: 'cms-create-or-edit', providers: [
|
|
2843
2612
|
{
|
|
@@ -2845,7 +2614,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2845
2614
|
useValue: ECmsComponent.SectionsCreateOrEdit,
|
|
2846
2615
|
},
|
|
2847
2616
|
], template: "<form class=\"row g-3 needs-validation\" [formGroup]=\"newEntity\" (ngSubmit)=\"save()\">\n <abp-page [title]=\"entryTypesId ? ('AbpUi::Edit' | abpLocalization):('Cms::New' | abpLocalization)\" [toolbar]=\"true\">\n <div class=\"create-or-edit-entry-type-page\">\n <div class=\"card\">\n <button type=\"submit\" style=\"display: none;\" #submitclick></button>\n <div class=\"card-body\">\n <div class=\"\">\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::DisplayName' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"displayName\"\n (blur)=\"disPlayNameInputBlur($event)\" placeholder=\"\" />\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::Name' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"name\" placeholder=\"\" />\n </div>\n <div formArrayName=\"fieldTabs\">\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::FieldLayout' | abpLocalization}}</label>\n <div class=\"container\">\n <!-- -->\n <div class=\"row\">\n <div class=\"col-sm-8\">\n <ul ngbNav #nav=\"ngbNav\" [(activeId)]=\"navActive\" class=\"nav nav-tabs\">\n <ng-container *ngFor=\"let item of resultSource; let i = index\">\n <li [ngbNavItem]=\"i\">\n <button type=\"button\" ngbDropdown ngbNavLink>\n {{ item.name }}\n <span class=\"ms-1\" (click.stop)=\"$event.stopPropagation()\"\n ngbDropdownToggle></span>\n <div ngbDropdownMenu style=\"z-index: 999;\">\n <li ngbDropdownItem type=\"button\"\n (click.stop)=\"editFieldTabs(item,i)\">\n <i class=\"fas fa-edit\"></i>\n {{'AbpUi::Edit' | abpLocalization}}\n </li>\n <li ngbDropdownItem\n *ngIf=\"resultSource.length !== 1\" type=\"button\"\n (click.stop)=\"deleteFieldTabs(i)\">\n <i class=\"fas fa-trash\"></i>\n {{'AbpUi::Delete' | abpLocalization}}\n </li>\n </div>\n </button>\n <ng-template ngbNavContent>\n <div class=\"p-2\" ondragover=\"event.preventDefault();\"\n (drop)=\"dragToResultSourceDropped(item,i)\" style=\"height: 100%;\">\n <p class=\"form-text\" *ngIf=\"item.fields.length === 0\">\n {{'Cms::DragAndDropFieldTips' | abpLocalization}}\n </p>\n <ul class=\"list-group\" style=\"height: 100%;\">\n <ng-container\n *ngFor=\"let el of item.fields; let iel = index\">\n <li draggable=\"true\"\n (dragstart)=\"fromResultSourceDragStart(el)\"\n (drop)=\"dragToResultSourceItemDropped(iel)\"\n class=\"list-group-item d-flex align-items-center justify-content-between py-1\" style=\"position: unset;\">\n {{ el.displayName }}\n <button class=\"p-0 btn btn-sm btn-light\"\n (click.stop)=\"EditFieldModalOpen(el,iel)\"\n type=\"button\"><i\n class=\"fas fa-wrench p-sm-1\"\n role=\"button\"></i></button>\n </li>\n </ng-container>\n </ul>\n \n </div>\n </ng-template>\n </li>\n </ng-container>\n <li class=\"nav-item\" role=\"presentation\">\n <button type=\"button\" class=\"nav-link\"\n (click.stop)=\"addFieldTabs()\">\n <i class=\"fas fa-plus-circle\"></i>\n {{'Cms::NewTab' | abpLocalization}}\n </button>\n </li>\n </ul>\n <div [ngbNavOutlet]=\"nav\" class=\"mt-2 bordernNavs p-0\"></div>\n </div>\n <div class=\"col-sm-4\">\n <div ngbAccordion #accordion=\"ngbAccordion\"\n ondragover=\"event.preventDefault();\" (drop)=\"dragToDataSourceDropped()\"\n style=\"min-height: 80px;\">\n <ng-container *ngFor=\"let item of fieldGroupList; let i = index\">\n <div [ngbAccordionItem]=\"item.name\" *ngIf=\"item.fields.length > 0\">\n <h2 ngbAccordionHeader>\n <button ngbAccordionButton>{{\n ('Cms::'+item.name) | abpLocalization }}</button>\n </h2>\n <div ngbAccordionCollapse>\n <div ngbAccordionBody>\n <ng-template>\n <ul class=\"list-group\">\n <ng-container\n *ngFor=\"let el of item.fields; let ii = index\">\n <li draggable=\"true\"\n (dragstart)=\"fromDataSourceDragStart(el,ii,i)\"\n class=\"list-group-item\">\n {{ el.displayName }}\n </li>\n </ng-container>\n </ul>\n </ng-template>\n </div>\n </div>\n </div>\n </ng-container>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n\n\n </div>\n </div>\n\n\n </div>\n </abp-page>\n\n</form>\n\n<abp-modal [(visible)]=\"visibleTabsOpen\" [busy]=\"modalBusy\" (visibleChange)=\"VisibleTabsChange($event)\">\n <ng-template #abpHeader>\n <h3>{{ editFieldTabsSelect ? ('AbpUi::Edit' | abpLocalization):('Cms::New' | abpLocalization)}}</h3>\n </ng-template>\n <ng-template #abpBody>\n <ng-template #loaderRef>\n <div class=\"text-center\"><i class=\"fa fa-pulse fa-spinner\" aria-hidden=\"true\"></i></div>\n </ng-template>\n <ng-container *ngIf=\"editFieldTabsFrom; else loaderRef\">\n <form class=\"sites-modal-form\" [formGroup]=\"editFieldTabsFrom\" (ngSubmit)=\"editFieldTabsSave()\">\n <button type=\"submit\" #editFieldTabsModalSubmitBtn style=\"display: none\"></button>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::Name' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"name\" placeholder=\"\" />\n </div>\n </form>\n </ng-container>\n </ng-template>\n <ng-template #abpFooter>\n <button type=\"button\" class=\"btn btn-secondary\" abpClose>{{'AbpUi::Close' | abpLocalization}}</button>\n <abp-button iconClass=\"fa fa-check\" [disabled]=\"!editFieldTabsFrom.valid\"\n (click)=\"editFieldTabsModalSubmitBtn.nativeElement.click()\">{{'AbpUi::Save' | abpLocalization}}</abp-button>\n </ng-template>\n</abp-modal>\n\n\n<abp-modal [(visible)]=\"visibleEditFieldOpen\" [busy]=\"modalBusy\" (visibleChange)=\"VisibleEditFieldChange($event)\">\n <ng-template #abpHeader>\n <h3>{{'AbpUi::Edit' | abpLocalization}}</h3>\n </ng-template>\n <ng-template #abpBody>\n <ng-template #loaderRef>\n <div class=\"text-center\"><i class=\"fa fa-pulse fa-spinner\" aria-hidden=\"true\"></i></div>\n </ng-template>\n <ng-container *ngIf=\"editFieldFrom; else loaderRef\">\n <form class=\"sites-modal-form\" [formGroup]=\"editFieldFrom\" (ngSubmit)=\"editFieldSave()\">\n <button type=\"submit\" #editFieldModalSubmitBtn style=\"display: none\"></button>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::DisplayName' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"displayName\" placeholder=\"\" />\n </div>\n <div class=\"mb-2\">\n <div class=\"form-check form-check-inline\">\n <input class=\"form-check-input\" type=\"checkbox\" value=\"true\" formControlName=\"required\"\n id=\"required\" />\n <label class=\"form-check-label\" for=\"required\"> {{'Cms::Required' | abpLocalization}} </label>\n </div>\n </div>\n <div class=\"mb-2\">\n <div class=\"form-check form-check-inline\">\n <input class=\"form-check-input\" type=\"checkbox\" value=\"true\" formControlName=\"showOnList\"\n id=\"showOnList\" />\n <label class=\"form-check-label\" for=\"showOnList\"> {{'Cms::ShowOnList' | abpLocalization}} </label>\n </div>\n </div>\n </form>\n </ng-container>\n </ng-template>\n <ng-template #abpFooter>\n <button type=\"button\" class=\"btn btn-secondary\" abpClose>{{'AbpUi::Close' | abpLocalization}}</button>\n <abp-button iconClass=\"fa fa-check\" [disabled]=\"!editFieldFrom.valid\"\n (click)=\"editFieldModalSubmitBtn.nativeElement.click()\">{{'AbpUi::Save' | abpLocalization}}</abp-button>\n </ng-template>\n</abp-modal>", styles: ["::ng-deep .create-or-edit-entry-type-page .dignite_page{height:calc(100vh - 125px);overflow:auto}::ng-deep .create-or-edit-entry-type-page .form-control,::ng-deep .create-or-edit-entry-type-page .form-select{padding:.475rem 1.25rem}::ng-deep .create-or-edit-entry-type-page .cursor-move{cursor:move}::ng-deep .create-or-edit-entry-type-page .bordernNavs{border:var(--bs-border-width) solid var(--lpx-border-color);padding-left:inherit;padding-right:inherit;height:calc(100% - 60px)}::ng-deep .create-or-edit-entry-type-page .tab-pane{height:100%}\n"] }]
|
|
2848
|
-
}], ctorParameters:
|
|
2617
|
+
}], ctorParameters: () => [{ type: i3.ToasterService }, { type: i2.Location }, { type: i3$1.ActivatedRoute }, { type: FieldGroupAdminService }, { type: FieldAdminService }, { type: EntryTypeAdminService }, { type: i1.LocalizationService }, { type: CmsApiService }, { type: i3$1.Router }], propDecorators: { submitclick: [{
|
|
2849
2618
|
type: ViewChild,
|
|
2850
2619
|
args: ['submitclick', { static: true }]
|
|
2851
2620
|
}], editFieldTabsModalSubmitBtn: [{
|
|
@@ -2857,13 +2626,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2857
2626
|
}] } });
|
|
2858
2627
|
|
|
2859
2628
|
class EntryConfig {
|
|
2860
|
-
/**多选 */
|
|
2861
|
-
'Entry.Multiple' = [false, []];
|
|
2862
|
-
/**占位符 */
|
|
2863
|
-
'Entry.Placeholder' = ['', []];
|
|
2864
|
-
/**版块id */
|
|
2865
|
-
'Entry.SectionId' = ['', []];
|
|
2866
2629
|
constructor(data) {
|
|
2630
|
+
/**多选 */
|
|
2631
|
+
this['Entry.Multiple'] = [false, []];
|
|
2632
|
+
/**占位符 */
|
|
2633
|
+
this['Entry.Placeholder'] = ['', []];
|
|
2634
|
+
/**版块id */
|
|
2635
|
+
this['Entry.SectionId'] = ['', []];
|
|
2867
2636
|
if (data) {
|
|
2868
2637
|
for (const key in data) {
|
|
2869
2638
|
if (data.hasOwnProperty(key)) {
|
|
@@ -2875,47 +2644,35 @@ class EntryConfig {
|
|
|
2875
2644
|
}
|
|
2876
2645
|
|
|
2877
2646
|
class EntryConfigComponent {
|
|
2878
|
-
fb;
|
|
2879
|
-
_SiteAdminService;
|
|
2880
|
-
_SectionAdminService;
|
|
2881
2647
|
constructor(fb, _SiteAdminService, _SectionAdminService) {
|
|
2882
2648
|
this.fb = fb;
|
|
2883
2649
|
this._SiteAdminService = _SiteAdminService;
|
|
2884
2650
|
this._SectionAdminService = _SectionAdminService;
|
|
2651
|
+
/**站点列表 */
|
|
2652
|
+
this.siteList = [];
|
|
2653
|
+
/**选择的站点id */
|
|
2654
|
+
// siteId: string = ''
|
|
2655
|
+
this.siteId = new FormControl('');
|
|
2656
|
+
/**站点下的版块 */
|
|
2657
|
+
this.SiteOfSectionList = [];
|
|
2885
2658
|
}
|
|
2886
|
-
/**表单控件类型 */
|
|
2887
|
-
_type;
|
|
2888
2659
|
set type(v) {
|
|
2889
2660
|
if (v == this._type)
|
|
2890
2661
|
return;
|
|
2891
2662
|
this._type = v;
|
|
2892
2663
|
}
|
|
2893
|
-
/**表单实体 */
|
|
2894
|
-
_Entity;
|
|
2895
2664
|
set Entity(v) {
|
|
2896
2665
|
this._Entity = v;
|
|
2897
2666
|
}
|
|
2898
|
-
/**选择的表单信息 */
|
|
2899
|
-
_selected;
|
|
2900
2667
|
set selected(v) {
|
|
2901
2668
|
this._selected = v;
|
|
2902
2669
|
}
|
|
2903
|
-
/**语言 */
|
|
2904
|
-
_culture;
|
|
2905
2670
|
set culture(v) {
|
|
2906
2671
|
this._culture = v;
|
|
2907
2672
|
}
|
|
2908
2673
|
get formConfiguration() {
|
|
2909
2674
|
return this._Entity.get('formConfiguration');
|
|
2910
2675
|
}
|
|
2911
|
-
submitclick;
|
|
2912
|
-
/**站点列表 */
|
|
2913
|
-
siteList = [];
|
|
2914
|
-
/**选择的站点id */
|
|
2915
|
-
// siteId: string = ''
|
|
2916
|
-
siteId = new FormControl('');
|
|
2917
|
-
/**站点下的版块 */
|
|
2918
|
-
SiteOfSectionList = [];
|
|
2919
2676
|
ngAfterContentInit() {
|
|
2920
2677
|
//Called after ngOnInit when the component's or directive's content has been initialized.
|
|
2921
2678
|
//Add 'implements AfterContentInit' to the class.
|
|
@@ -2969,13 +2726,13 @@ class EntryConfigComponent {
|
|
|
2969
2726
|
async siteIdChange() {
|
|
2970
2727
|
await this.getSiteOfSectionList();
|
|
2971
2728
|
}
|
|
2972
|
-
static
|
|
2973
|
-
static
|
|
2729
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: EntryConfigComponent, deps: [{ token: i1$1.FormBuilder }, { token: SiteAdminService }, { token: SectionAdminService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2730
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.9", type: EntryConfigComponent, selector: "cms-entry-config", inputs: { type: "type", Entity: "Entity", selected: "selected", culture: "culture" }, viewQueries: [{ propertyName: "submitclick", first: true, predicate: ["submitclick"], descendants: true, static: true }], ngImport: i0, template: "<div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::Sites' | abpLocalization}}</label>\n <select class=\"form-select col-auto\" [(ngModel)]=\"siteId\" (change)=\"siteIdChange()\">\n <ng-container *ngFor=\"let item of siteList\">\n <option [value]=\"item.id\">{{item.displayName}}</option>\n </ng-container>\n </select>\n</div>\n<form [formGroup]=\"_Entity\">\n <div formGroupName=\"formConfiguration\">\n \n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::Sections' | abpLocalization}}</label>\n <select class=\"form-select col-auto\" formControlName=\"Entry.SectionId\">\n <ng-container *ngFor=\"let item of SiteOfSectionList\">\n <option [value]=\"item.id\">{{item.displayName}}</option>\n </ng-container>\n </select>\n </div>\n\n <div class=\"mb-2\">\n <div class=\"form-check form-check-inline\">\n <input class=\"form-check-input\" type=\"checkbox\" formControlName=\"Entry.Multiple\" id=\"Multiple\">\n <label class=\"form-check-label\" for=\"Multiple\">\n {{'Cms::Multiple' | abpLocalization}}\n </label>\n </div>\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::Placeholder' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"Entry.Placeholder\">\n </div>\n <button type=\"submit\" (abpInit)=\"submitclick?.nativeElement?.click()\" style=\"display: none;\"\n #submitclick></button>\n </div>\n</form>", styles: [""], dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1$1.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i1$1.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i1$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1$1.CheckboxControlValueAccessor, selector: "input[type=checkbox][formControlName],input[type=checkbox][formControl],input[type=checkbox][ngModel]" }, { kind: "directive", type: i1$1.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i1$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: i1$1.FormGroupName, selector: "[formGroupName]", inputs: ["formGroupName"] }, { kind: "directive", type: i1.InitDirective, selector: "[abpInit]", outputs: ["abpInit"] }, { kind: "directive", type: i7$1.ValidationGroupDirective, selector: "[formGroup],[formGroupName]", exportAs: ["validationGroup"] }, { kind: "directive", type: i7$1.ValidationDirective, selector: "[formControl],[formControlName]", exportAs: ["validationDirective"] }, { kind: "pipe", type: i1.LocalizationPipe, name: "abpLocalization" }] }); }
|
|
2974
2731
|
}
|
|
2975
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2732
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: EntryConfigComponent, decorators: [{
|
|
2976
2733
|
type: Component,
|
|
2977
2734
|
args: [{ selector: 'cms-entry-config', template: "<div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::Sites' | abpLocalization}}</label>\n <select class=\"form-select col-auto\" [(ngModel)]=\"siteId\" (change)=\"siteIdChange()\">\n <ng-container *ngFor=\"let item of siteList\">\n <option [value]=\"item.id\">{{item.displayName}}</option>\n </ng-container>\n </select>\n</div>\n<form [formGroup]=\"_Entity\">\n <div formGroupName=\"formConfiguration\">\n \n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::Sections' | abpLocalization}}</label>\n <select class=\"form-select col-auto\" formControlName=\"Entry.SectionId\">\n <ng-container *ngFor=\"let item of SiteOfSectionList\">\n <option [value]=\"item.id\">{{item.displayName}}</option>\n </ng-container>\n </select>\n </div>\n\n <div class=\"mb-2\">\n <div class=\"form-check form-check-inline\">\n <input class=\"form-check-input\" type=\"checkbox\" formControlName=\"Entry.Multiple\" id=\"Multiple\">\n <label class=\"form-check-label\" for=\"Multiple\">\n {{'Cms::Multiple' | abpLocalization}}\n </label>\n </div>\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::Placeholder' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"Entry.Placeholder\">\n </div>\n <button type=\"submit\" (abpInit)=\"submitclick?.nativeElement?.click()\" style=\"display: none;\"\n #submitclick></button>\n </div>\n</form>" }]
|
|
2978
|
-
}], ctorParameters:
|
|
2735
|
+
}], ctorParameters: () => [{ type: i1$1.FormBuilder }, { type: SiteAdminService }, { type: SectionAdminService }], propDecorators: { type: [{
|
|
2979
2736
|
type: Input
|
|
2980
2737
|
}], Entity: [{
|
|
2981
2738
|
type: Input
|
|
@@ -2990,49 +2747,39 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2990
2747
|
|
|
2991
2748
|
class EntryControlComponent {
|
|
2992
2749
|
constructor() {
|
|
2750
|
+
this.fb = inject(FormBuilder);
|
|
2751
|
+
this._EntryAdminService = inject(EntryAdminService);
|
|
2752
|
+
/**字段配置列表 */
|
|
2753
|
+
this._fields = '';
|
|
2754
|
+
/** */
|
|
2755
|
+
this.listOfOption = [];
|
|
2993
2756
|
}
|
|
2994
|
-
fb = inject(FormBuilder);
|
|
2995
|
-
_EntryAdminService = inject(EntryAdminService);
|
|
2996
|
-
/**表单实体 */
|
|
2997
|
-
_entity;
|
|
2998
2757
|
set entity(v) {
|
|
2999
2758
|
this._entity = v;
|
|
3000
2759
|
if (v)
|
|
3001
2760
|
this.dataLoaded();
|
|
3002
2761
|
}
|
|
3003
|
-
/**字段配置列表 */
|
|
3004
|
-
_fields = '';
|
|
3005
2762
|
set fields(v) {
|
|
3006
2763
|
this._fields = v;
|
|
3007
2764
|
if (v)
|
|
3008
2765
|
this.dataLoaded();
|
|
3009
2766
|
}
|
|
3010
|
-
/**父级字段名称,用于为表单设置控件赋值 */
|
|
3011
|
-
_parentFiledName;
|
|
3012
2767
|
set parentFiledName(v) {
|
|
3013
2768
|
this._parentFiledName = v;
|
|
3014
2769
|
if (v)
|
|
3015
2770
|
this.dataLoaded();
|
|
3016
2771
|
}
|
|
3017
|
-
/**父级字段名称,用于为表单设置控件赋值 */
|
|
3018
|
-
_selected;
|
|
3019
2772
|
set selected(v) {
|
|
3020
2773
|
this._selected = v || [];
|
|
3021
2774
|
if (v)
|
|
3022
2775
|
this.dataLoaded();
|
|
3023
2776
|
}
|
|
3024
|
-
/**语言 */
|
|
3025
|
-
_culture;
|
|
3026
2777
|
set culture(v) {
|
|
3027
2778
|
if (v) {
|
|
3028
2779
|
this._culture = v;
|
|
3029
2780
|
this.dataLoaded();
|
|
3030
2781
|
}
|
|
3031
2782
|
}
|
|
3032
|
-
submitclick;
|
|
3033
|
-
extraProperties;
|
|
3034
|
-
/** */
|
|
3035
|
-
listOfOption = [];
|
|
3036
2783
|
async dataLoaded() {
|
|
3037
2784
|
if (this._fields && this._entity && this._parentFiledName && this._culture) {
|
|
3038
2785
|
await this.AfterInit();
|
|
@@ -3072,13 +2819,13 @@ class EntryControlComponent {
|
|
|
3072
2819
|
async SelectChange(event) {
|
|
3073
2820
|
await this.getEntryAssignList(event);
|
|
3074
2821
|
}
|
|
3075
|
-
static
|
|
3076
|
-
static
|
|
2822
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: EntryControlComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2823
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.9", type: EntryControlComponent, selector: "cms-entry-control", inputs: { entity: "entity", fields: "fields", parentFiledName: "parentFiledName", selected: "selected", culture: "culture" }, viewQueries: [{ propertyName: "submitclick", first: true, predicate: ["submitclick"], descendants: true, static: true }], ngImport: i0, template: "<form [formGroup]=\"_entity\">\r\n <div [formGroupName]=\"_parentFiledName\" class=\"entry-control-page\">\r\n <div class=\"mb-2\">\r\n <label class=\"form-label\" *ngIf=\"_fields.displayName\">{{ _fields.displayName }}</label>\r\n <ng-container *ngIf=\"_fields.field.formConfiguration['Entry.Multiple']; else elseTemplate\">\r\n <div class=\"form-select\">\r\n <nz-select [nzMaxTagCount]=\"5\" (nzOnSearch)=\"SelectChange($event)\" nzShowSearch nzMode=\"multiple\" [nzPlaceHolder]=\"_fields.field.formConfiguration['Entry.Placeholder']\"\r\n formControlName=\"{{_fields.field.name}}\">\r\n <nz-option *ngFor=\"let item of listOfOption\" [nzLabel]=\"item.title\" [nzValue]=\"item.id\"></nz-option>\r\n </nz-select>\r\n </div>\r\n </ng-container>\r\n <ng-template #elseTemplate>\r\n <div class=\"form-select\">\r\n <nz-select nzShowSearch (nzOnSearch)=\"SelectChange($event)\" [nzMaxMultipleCount]=\"1\" nzMode=\"multiple\" [nzPlaceHolder]=\"_fields.field.formConfiguration['Entry.Placeholder']\"\r\n formControlName=\"{{_fields.field.name}}\">\r\n <nz-option *ngFor=\"let item of listOfOption\" [nzLabel]=\"item.title\" [nzValue]=\"item.id\"></nz-option>\r\n </nz-select>\r\n </div>\r\n </ng-template>\r\n\r\n <div class=\"form-text\" *ngIf=\"_fields.field.description\">{{_fields.field.description}}</div>\r\n </div>\r\n </div>\r\n <button type=\"submit\" style=\"display: none;\" #submitclick></button>\r\n</form>", styles: ["::ng-deep .entry-control-page .form-select{padding:0}::ng-deep .entry-control-page nz-select{width:100%}::ng-deep .entry-control-page nz-select .ant-select-selector{background:transparent!important;border:none!important;padding:.275rem 1.25rem!important;box-shadow:none!important;height:auto!important}::ng-deep .entry-control-page nz-select .anticon-search,::ng-deep .entry-control-page nz-select .anticon-down{display:none}\n"], dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: i1$1.FormGroupName, selector: "[formGroupName]", inputs: ["formGroupName"] }, { kind: "directive", type: i7$1.ValidationGroupDirective, selector: "[formGroup],[formGroupName]", exportAs: ["validationGroup"] }, { kind: "directive", type: i7$1.ValidationDirective, selector: "[formControl],[formControlName]", exportAs: ["validationDirective"] }, { kind: "component", type: i4.NzOptionComponent, selector: "nz-option", inputs: ["nzTitle", "nzLabel", "nzValue", "nzKey", "nzDisabled", "nzHide", "nzCustomContent"], exportAs: ["nzOption"] }, { kind: "component", type: i4.NzSelectComponent, selector: "nz-select", inputs: ["nzId", "nzSize", "nzStatus", "nzOptionHeightPx", "nzOptionOverflowSize", "nzDropdownClassName", "nzDropdownMatchSelectWidth", "nzDropdownStyle", "nzNotFoundContent", "nzPlaceHolder", "nzPlacement", "nzMaxTagCount", "nzDropdownRender", "nzCustomTemplate", "nzSuffixIcon", "nzClearIcon", "nzRemoveIcon", "nzMenuItemSelectedIcon", "nzTokenSeparators", "nzMaxTagPlaceholder", "nzMaxMultipleCount", "nzMode", "nzFilterOption", "compareWith", "nzAllowClear", "nzBorderless", "nzShowSearch", "nzLoading", "nzAutoFocus", "nzAutoClearSearchValue", "nzServerSearch", "nzDisabled", "nzOpen", "nzSelectOnTab", "nzBackdrop", "nzOptions", "nzShowArrow"], outputs: ["nzOnSearch", "nzScrollToBottom", "nzOpenChange", "nzBlur", "nzFocus"], exportAs: ["nzSelect"] }] }); }
|
|
3077
2824
|
}
|
|
3078
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2825
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: EntryControlComponent, decorators: [{
|
|
3079
2826
|
type: Component,
|
|
3080
2827
|
args: [{ selector: 'cms-entry-control', template: "<form [formGroup]=\"_entity\">\r\n <div [formGroupName]=\"_parentFiledName\" class=\"entry-control-page\">\r\n <div class=\"mb-2\">\r\n <label class=\"form-label\" *ngIf=\"_fields.displayName\">{{ _fields.displayName }}</label>\r\n <ng-container *ngIf=\"_fields.field.formConfiguration['Entry.Multiple']; else elseTemplate\">\r\n <div class=\"form-select\">\r\n <nz-select [nzMaxTagCount]=\"5\" (nzOnSearch)=\"SelectChange($event)\" nzShowSearch nzMode=\"multiple\" [nzPlaceHolder]=\"_fields.field.formConfiguration['Entry.Placeholder']\"\r\n formControlName=\"{{_fields.field.name}}\">\r\n <nz-option *ngFor=\"let item of listOfOption\" [nzLabel]=\"item.title\" [nzValue]=\"item.id\"></nz-option>\r\n </nz-select>\r\n </div>\r\n </ng-container>\r\n <ng-template #elseTemplate>\r\n <div class=\"form-select\">\r\n <nz-select nzShowSearch (nzOnSearch)=\"SelectChange($event)\" [nzMaxMultipleCount]=\"1\" nzMode=\"multiple\" [nzPlaceHolder]=\"_fields.field.formConfiguration['Entry.Placeholder']\"\r\n formControlName=\"{{_fields.field.name}}\">\r\n <nz-option *ngFor=\"let item of listOfOption\" [nzLabel]=\"item.title\" [nzValue]=\"item.id\"></nz-option>\r\n </nz-select>\r\n </div>\r\n </ng-template>\r\n\r\n <div class=\"form-text\" *ngIf=\"_fields.field.description\">{{_fields.field.description}}</div>\r\n </div>\r\n </div>\r\n <button type=\"submit\" style=\"display: none;\" #submitclick></button>\r\n</form>", styles: ["::ng-deep .entry-control-page .form-select{padding:0}::ng-deep .entry-control-page nz-select{width:100%}::ng-deep .entry-control-page nz-select .ant-select-selector{background:transparent!important;border:none!important;padding:.275rem 1.25rem!important;box-shadow:none!important;height:auto!important}::ng-deep .entry-control-page nz-select .anticon-search,::ng-deep .entry-control-page nz-select .anticon-down{display:none}\n"] }]
|
|
3081
|
-
}], ctorParameters:
|
|
2828
|
+
}], ctorParameters: () => [], propDecorators: { entity: [{
|
|
3082
2829
|
type: Input
|
|
3083
2830
|
}], fields: [{
|
|
3084
2831
|
type: Input
|
|
@@ -3094,9 +2841,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
3094
2841
|
}] } });
|
|
3095
2842
|
|
|
3096
2843
|
class MatrixConfig {
|
|
3097
|
-
// 矩阵类型
|
|
3098
|
-
'MatrixBlockTypes' = new FormArray([]);
|
|
3099
2844
|
constructor(data) {
|
|
2845
|
+
// 矩阵类型
|
|
2846
|
+
this['MatrixBlockTypes'] = new FormArray([]);
|
|
3100
2847
|
if (data) {
|
|
3101
2848
|
for (const key in data) {
|
|
3102
2849
|
if (data.hasOwnProperty(key)) {
|
|
@@ -3107,10 +2854,10 @@ class MatrixConfig {
|
|
|
3107
2854
|
}
|
|
3108
2855
|
}
|
|
3109
2856
|
class MatrixItemConfig {
|
|
3110
|
-
displayName = ['', [Validators.required]];
|
|
3111
|
-
/**字段名字 */
|
|
3112
|
-
name = ['', [Validators.required]];
|
|
3113
2857
|
constructor(data) {
|
|
2858
|
+
this.displayName = ['', [Validators.required]];
|
|
2859
|
+
/**字段名字 */
|
|
2860
|
+
this.name = ['', [Validators.required]];
|
|
3114
2861
|
if (data) {
|
|
3115
2862
|
for (const key in data) {
|
|
3116
2863
|
if (data.hasOwnProperty(key)) {
|
|
@@ -3121,17 +2868,17 @@ class MatrixItemConfig {
|
|
|
3121
2868
|
}
|
|
3122
2869
|
}
|
|
3123
2870
|
class matrixFieldInputBase {
|
|
3124
|
-
/**字段名称 Display name of this field */
|
|
3125
|
-
displayName = ['', [Validators.required]];
|
|
3126
|
-
/**字段唯一名称 Unique Name*/
|
|
3127
|
-
name = ['', [Validators.required]];
|
|
3128
|
-
/**描述 说明 */
|
|
3129
|
-
description = ['', []];
|
|
3130
|
-
/**FieldType字段类型 表单控件名称 */
|
|
3131
|
-
formControlName = ['TextEdit', [Validators.required]];
|
|
3132
|
-
/**动态表单配置 */
|
|
3133
|
-
formConfiguration = new FormGroup({});
|
|
3134
2871
|
constructor(data) {
|
|
2872
|
+
/**字段名称 Display name of this field */
|
|
2873
|
+
this.displayName = ['', [Validators.required]];
|
|
2874
|
+
/**字段唯一名称 Unique Name*/
|
|
2875
|
+
this.name = ['', [Validators.required]];
|
|
2876
|
+
/**描述 说明 */
|
|
2877
|
+
this.description = ['', []];
|
|
2878
|
+
/**FieldType字段类型 表单控件名称 */
|
|
2879
|
+
this.formControlName = ['TextEdit', [Validators.required]];
|
|
2880
|
+
/**动态表单配置 */
|
|
2881
|
+
this.formConfiguration = new FormGroup({});
|
|
3135
2882
|
if (data) {
|
|
3136
2883
|
for (const key in data) {
|
|
3137
2884
|
if (data.hasOwnProperty(key)) {
|
|
@@ -3142,40 +2889,36 @@ class matrixFieldInputBase {
|
|
|
3142
2889
|
}
|
|
3143
2890
|
}
|
|
3144
2891
|
|
|
3145
|
-
// import { CreateDynamicComponentsService, DfApiService, } from '../../../services';
|
|
3146
|
-
// import { getExcludeAssignControl } from '../form-control-group';
|
|
3147
2892
|
class MatrixConfigComponent {
|
|
3148
|
-
fb;
|
|
3149
|
-
_CmsApiService;
|
|
3150
|
-
_FieldAbstractsService;
|
|
3151
2893
|
constructor(fb, _CmsApiService, _FieldAbstractsService) {
|
|
3152
2894
|
this.fb = fb;
|
|
3153
2895
|
this._CmsApiService = _CmsApiService;
|
|
3154
2896
|
this._FieldAbstractsService = _FieldAbstractsService;
|
|
2897
|
+
/**模态框-状态 */
|
|
2898
|
+
this.matrixModalOpen = false;
|
|
2899
|
+
/**模态框-是否正在编辑 */
|
|
2900
|
+
this.isMatrixModalEdit = false;
|
|
2901
|
+
/**模态框-用于确定模态的繁忙状态是否为真 */
|
|
2902
|
+
this.modalBusy = false;
|
|
2903
|
+
/**矩阵块-选择的下标 */
|
|
2904
|
+
this.selectMatrixBlockIndex = 0;
|
|
2905
|
+
/**矩阵块-选择的矩阵下字段的下标 */
|
|
2906
|
+
this.selectMatrixFieldIndex = 0;
|
|
3155
2907
|
}
|
|
3156
|
-
/**表单控件组 */
|
|
3157
|
-
_FieldControlGroup;
|
|
3158
|
-
/**表单控件类型 */
|
|
3159
|
-
_type;
|
|
3160
2908
|
set type(v) {
|
|
3161
2909
|
this._type = v;
|
|
3162
2910
|
this.dataLoaded();
|
|
3163
2911
|
}
|
|
3164
|
-
/**表单实体 */
|
|
3165
|
-
_Entity;
|
|
3166
2912
|
set Entity(v) {
|
|
3167
2913
|
this._Entity = v;
|
|
3168
2914
|
this.dataLoaded();
|
|
3169
2915
|
}
|
|
3170
|
-
/**选择的表单信息 */
|
|
3171
|
-
_selected;
|
|
3172
2916
|
set selected(v) {
|
|
3173
2917
|
if (v) {
|
|
3174
2918
|
this._selected = v;
|
|
3175
2919
|
this.dataLoaded();
|
|
3176
2920
|
}
|
|
3177
2921
|
}
|
|
3178
|
-
submitclick;
|
|
3179
2922
|
async dataLoaded() {
|
|
3180
2923
|
if (this._Entity && this._type) {
|
|
3181
2924
|
await this.AfterInit();
|
|
@@ -3212,20 +2955,6 @@ class MatrixConfigComponent {
|
|
|
3212
2955
|
get MatrixBlockTypes() {
|
|
3213
2956
|
return this.formConfiguration.controls['MatrixBlockTypes'];
|
|
3214
2957
|
}
|
|
3215
|
-
/**模态框-状态 */
|
|
3216
|
-
matrixModalOpen = false;
|
|
3217
|
-
/**模态框-是否正在编辑 */
|
|
3218
|
-
isMatrixModalEdit = false;
|
|
3219
|
-
/**模态框-用于确定模态的繁忙状态是否为真 */
|
|
3220
|
-
modalBusy = false;
|
|
3221
|
-
/**模态框-表单 */
|
|
3222
|
-
matrixModalForm;
|
|
3223
|
-
/**表单控件模板-用于在form外提交submit */
|
|
3224
|
-
matrixModalModalSubmit;
|
|
3225
|
-
/**矩阵块-选择的下标 */
|
|
3226
|
-
selectMatrixBlockIndex = 0;
|
|
3227
|
-
/**矩阵块-选择的矩阵下字段的下标 */
|
|
3228
|
-
selectMatrixFieldIndex = 0;
|
|
3229
2958
|
/**模态框-状态改变 */
|
|
3230
2959
|
matrixModalVisibleChange(event) {
|
|
3231
2960
|
if (!event) {
|
|
@@ -3338,13 +3067,13 @@ class MatrixConfigComponent {
|
|
|
3338
3067
|
return;
|
|
3339
3068
|
FieldnameInput.patchValue(pinyin);
|
|
3340
3069
|
}
|
|
3341
|
-
static
|
|
3342
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: MatrixConfigComponent, selector: "df-matrix-config", inputs: { type: "type", Entity: "Entity", selected: "selected" }, viewQueries: [{ propertyName: "submitclick", first: true, predicate: ["submitclick"], descendants: true, static: true }, { propertyName: "matrixModalModalSubmit", first: true, predicate: ["matrixModalModalSubmit"], descendants: true }], ngImport: i0, template: "<form [formGroup]=\"_Entity\">\n <div formGroupName=\"formConfiguration\">\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::::FormControl:Matrix' | abpLocalization}}</label>\n <div class=\"row\">\n <div class=\"col-md-3\">\n <div class=\"list-group\">\n <li class=\"list-group-item d-flex align-items-center justify-content-between\"\n aria-current=\"true\">\n {{'Cms::MatrixBlockType' | abpLocalization}}\n <button class=\"btn btn-light btn-sm p-0\" (click.stop)=\"addMatrixBlockType()\">\n <i class=\"fas fa-plus-circle p-1\"></i>\n </button>\n </li>\n <ng-container *ngFor=\"let item of MatrixBlockTypes.controls;let i =index\">\n <button type=\"button\" (click.stop)=\"selectMatrixBlockChange(i)\"\n class=\"list-group-item d-flex align-items-center justify-content-between list-group-item-action \"\n [class.active]=\"i===selectMatrixBlockIndex\">\n <div>\n <div>{{item.value.displayName}}</div>\n <div>{{item.value.name}}</div>\n </div>\n <div ngbDropdown class=\"d-inline-block\">\n <button type=\"button\" class=\"btn btn-light btn-sm\" id=\"dropdownBasic1\"\n style=\"z-index: 8;\" ngbDropdownToggle></button>\n <div ngbDropdownMenu aria-labelledby=\"dropdownBasic1\" style=\"z-index: 9;\">\n <button ngbDropdownItem\n (click.stop)=\"EditMatrixBlock(item.value)\">{{'AbpUi::Edit' | abpLocalization}}</button>\n <button ngbDropdownItem\n (click.stop)=\"DeleteMatrixBlock(i)\">{{'AbpUi::Delete' | abpLocalization}}</button>\n </div>\n </div>\n </button>\n </ng-container>\n </div>\n </div>\n <div class=\"col-md-3\">\n <div class=\"list-group\" *ngIf=\"MatrixBlockTypes?.controls.length>0\">\n <li class=\"list-group-item d-flex align-items-center justify-content-between\"\n aria-current=\"true\">\n {{'Cms::Fields' | abpLocalization}}\n <button class=\"btn btn-light btn-sm p-0\" (click.stop)=\"addMatrixField()\">\n <i class=\"fas fa-plus-circle p-1\"></i>\n </button>\n </li>\n <ng-container *ngFor=\"let item of MatrixBlockTypes.controls;let i =index\">\n <ng-container *ngIf=\"i === selectMatrixBlockIndex\">\n <ng-container *ngFor=\"let el of item.controls['fields'].controls;let fi =index\">\n <button type=\"button\" (click.stop)=\"selectMatrixFieldChange(i,fi)\"\n class=\"list-group-item d-flex align-items-center justify-content-between list-group-item-action \"\n [class.active]=\"fi===selectMatrixFieldIndex\">\n <div>\n <div>{{el.value.displayName}}</div>\n <div>{{el.value.name}}</div>\n </div>\n <button type=\"button\"\n (click.stop)=\"deleteMatrixField(item.controls['fields'],fi)\"\n class=\"btn btn-sm btn-li\">{{'AbpUi::Delete' | abpLocalization}}</button>\n </button>\n </ng-container>\n </ng-container>\n </ng-container>\n </div>\n </div>\n <div class=\"col-md-6\" formArrayName=\"MatrixBlockTypes\">\n <ng-container *ngFor=\"let item of MatrixBlockTypes.controls;let i =index\">\n <div [formGroupName]=\"i\" [hidden]=\"i !== selectMatrixBlockIndex\">\n <div formArrayName=\"fields\">\n <ng-container *ngFor=\"let itemf of item.controls['fields'].controls;let fi =index\">\n <div [formGroupName]=\"fi\" [hidden]=\"fi !== selectMatrixFieldIndex\">\n <div class=\"mb-2\">\n <label class=\"form-label\"\n for=\"displayName\">{{'Cms::DisplayName' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"displayName\"\n (blur)=\"MatrixFieldDisplayNameInputBlur($event)\">\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\"\n for=\"name\">{{'DigniteAbpForms::FieldName' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"name\">\n <div class=\"form-text\">\n {{'DigniteAbpForms::FieldNameHelpText' | abpLocalization}}</div>\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\"\n for=\"description\">{{'Cms::Description' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"description\">\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\"\n for=\"formControlName\">{{'Cms::FieldType' | abpLocalization}}</label>\n <select class=\"form-select\" formControlName=\"formControlName\" (change)=\"setConfigComponent()\">\n <ng-container *ngFor=\"let itemC of _FieldControlGroup;let i =index\">\n <option [value]=\"itemC.name\">{{itemC.displayName}}</option>\n </ng-container>\n </select>\n </div>\n <ng-container *ngIf=\"itemf.value.formControlName&&item\">\n <df-dynamic [type]=\"itemf.value.formControlName\" [entity]=\"item\"\n [selected]=\"_selected?_selected['formConfiguration']['MatrixBlockTypes'][i]['fields'][fi]:''\"></df-dynamic>\n </ng-container>\n </div>\n </ng-container>\n </div>\n </div>\n </ng-container>\n </div>\n\n </div>\n </div>\n <button type=\"submit\" (abpInit)=\"submitclick?.nativeElement?.click()\" style=\"display: none;\"\n #submitclick></button>\n </div>\n</form>\n\n\n\n<abp-modal [(visible)]=\"matrixModalOpen\" [busy]=\"modalBusy\" (visibleChange)=\"matrixModalVisibleChange($event)\" >\n <ng-template #abpHeader>\n <h3>{{isMatrixEdit?('AbpUi::Edit' | abpLocalization):('Cms::New' | abpLocalization)}}</h3>\n </ng-template>\n <ng-template #abpBody>\n <ng-template #loaderRef>\n <div class=\"text-center\"><i class=\"fa fa-pulse fa-spinner\" aria-hidden=\"true\"></i></div>\n </ng-template>\n <ng-container *ngIf=\"matrixModalForm; else loaderRef\">\n <form class=\"sites-modal-form\" #myForm=\"ngForm\" [formGroup]=\"matrixModalForm\"\n (ngSubmit)=\"createOrEditSave()\">\n <button type=\"submit\" #matrixModalModalSubmit style=\"display: none\"></button>\n <div class=\"mb-2\">\n <label class=\"form-label\" for=\"displayName\">{{'Cms::DisplayName' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"displayName\"\n (blur)=\"displayNameInputBlur($event)\">\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\" for=\"name\">{{'Cms::Name' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"name\">\n </div>\n </form>\n </ng-container>\n </ng-template>\n <ng-template #abpFooter>\n <button type=\"button\" class=\"btn btn-secondary\" abpClose>{{'AbpUi::Close' | abpLocalization}}</button>\n <abp-button iconClass=\"fa fa-check\"\n (click)=\"matrixModalModalSubmit.nativeElement.click()\">{{'AbpUi::Save' | abpLocalization}}</abp-button>\n </ng-template>\n</abp-modal>", styles: [""], dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1$1.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i1$1.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i1$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1$1.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: i1$1.FormGroupName, selector: "[formGroupName]", inputs: ["formGroupName"] }, { kind: "directive", type: i1$1.FormArrayName, selector: "[formArrayName]", inputs: ["formArrayName"] }, { kind: "directive", type: i1.FormSubmitDirective, selector: "form[ngSubmit][formGroup]", inputs: ["debounce", "notValidateOnSubmit", "markAsDirtyWhenSubmit"], outputs: ["ngSubmit"] }, { kind: "directive", type: i1.InitDirective, selector: "[abpInit]", outputs: ["abpInit"] }, { kind: "directive", type: i1.StopPropagationDirective, selector: "[click.stop]", outputs: ["click.stop"] }, { kind: "directive", type: i7$1.ValidationGroupDirective, selector: "[formGroup],[formGroupName]", exportAs: ["validationGroup"] }, { kind: "directive", type: i7$1.ValidationDirective, selector: "[formControl],[formControlName]", exportAs: ["validationDirective"] }, { kind: "component", type: i3.ButtonComponent, selector: "abp-button", inputs: ["buttonId", "buttonClass", "buttonType", "formName", "iconClass", "loading", "disabled", "attributes"], outputs: ["click", "focus", "blur", "abpClick", "abpFocus", "abpBlur"] }, { kind: "component", type: i3.ModalComponent, selector: "abp-modal", inputs: ["visible", "busy", "options", "suppressUnsavedChangesWarning"], outputs: ["visibleChange", "init", "appear", "disappear"] }, { kind: "directive", type: i3.ModalCloseDirective, selector: "[abpClose]" }, { kind: "directive", type: i10.NgbDropdown, selector: "[ngbDropdown]", inputs: ["autoClose", "dropdownClass", "open", "placement", "popperOptions", "container", "display"], outputs: ["openChange"], exportAs: ["ngbDropdown"] }, { kind: "directive", type: i10.NgbDropdownToggle, selector: "[ngbDropdownToggle]" }, { kind: "directive", type: i10.NgbDropdownMenu, selector: "[ngbDropdownMenu]" }, { kind: "directive", type: i10.NgbDropdownItem, selector: "[ngbDropdownItem]", inputs: ["disabled"] }, { kind: "component", type: i8.DynamicComponent, selector: "df-dynamic", inputs: ["selected", "type", "entity", "culture", "parentFiledName", "fields"] }, { kind: "pipe", type: i1.LocalizationPipe, name: "abpLocalization" }] });
|
|
3070
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: MatrixConfigComponent, deps: [{ token: i1$1.FormBuilder }, { token: CmsApiService }, { token: FieldAbstractsService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3071
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.9", type: MatrixConfigComponent, selector: "df-matrix-config", inputs: { type: "type", Entity: "Entity", selected: "selected" }, viewQueries: [{ propertyName: "submitclick", first: true, predicate: ["submitclick"], descendants: true, static: true }, { propertyName: "matrixModalModalSubmit", first: true, predicate: ["matrixModalModalSubmit"], descendants: true }], ngImport: i0, template: "<form [formGroup]=\"_Entity\">\n <div formGroupName=\"formConfiguration\">\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::::FormControl:Matrix' | abpLocalization}}</label>\n <div class=\"row\">\n <div class=\"col-md-3\">\n <div class=\"list-group\">\n <li class=\"list-group-item d-flex align-items-center justify-content-between\"\n aria-current=\"true\">\n {{'Cms::MatrixBlockType' | abpLocalization}}\n <button class=\"btn btn-light btn-sm p-0\" (click.stop)=\"addMatrixBlockType()\">\n <i class=\"fas fa-plus-circle p-1\"></i>\n </button>\n </li>\n <ng-container *ngFor=\"let item of MatrixBlockTypes.controls;let i =index\">\n <button type=\"button\" (click.stop)=\"selectMatrixBlockChange(i)\"\n class=\"list-group-item d-flex align-items-center justify-content-between list-group-item-action \"\n [class.active]=\"i===selectMatrixBlockIndex\">\n <div>\n <div>{{item.value.displayName}}</div>\n <div>{{item.value.name}}</div>\n </div>\n <div ngbDropdown class=\"d-inline-block\">\n <button type=\"button\" class=\"btn btn-light btn-sm\" id=\"dropdownBasic1\"\n style=\"z-index: 8;\" ngbDropdownToggle></button>\n <div ngbDropdownMenu aria-labelledby=\"dropdownBasic1\" style=\"z-index: 9;\">\n <button ngbDropdownItem\n (click.stop)=\"EditMatrixBlock(item.value)\">{{'AbpUi::Edit' | abpLocalization}}</button>\n <button ngbDropdownItem\n (click.stop)=\"DeleteMatrixBlock(i)\">{{'AbpUi::Delete' | abpLocalization}}</button>\n </div>\n </div>\n </button>\n </ng-container>\n </div>\n </div>\n <div class=\"col-md-3\">\n <div class=\"list-group\" *ngIf=\"MatrixBlockTypes?.controls.length>0\">\n <li class=\"list-group-item d-flex align-items-center justify-content-between\"\n aria-current=\"true\">\n {{'Cms::Fields' | abpLocalization}}\n <button class=\"btn btn-light btn-sm p-0\" (click.stop)=\"addMatrixField()\">\n <i class=\"fas fa-plus-circle p-1\"></i>\n </button>\n </li>\n <ng-container *ngFor=\"let item of MatrixBlockTypes.controls;let i =index\">\n <ng-container *ngIf=\"i === selectMatrixBlockIndex\">\n <ng-container *ngFor=\"let el of item.controls['fields'].controls;let fi =index\">\n <button type=\"button\" (click.stop)=\"selectMatrixFieldChange(i,fi)\"\n class=\"list-group-item d-flex align-items-center justify-content-between list-group-item-action \"\n [class.active]=\"fi===selectMatrixFieldIndex\">\n <div>\n <div>{{el.value.displayName}}</div>\n <div>{{el.value.name}}</div>\n </div>\n <button type=\"button\"\n (click.stop)=\"deleteMatrixField(item.controls['fields'],fi)\"\n class=\"btn btn-sm btn-li\">{{'AbpUi::Delete' | abpLocalization}}</button>\n </button>\n </ng-container>\n </ng-container>\n </ng-container>\n </div>\n </div>\n <div class=\"col-md-6\" formArrayName=\"MatrixBlockTypes\">\n <ng-container *ngFor=\"let item of MatrixBlockTypes.controls;let i =index\">\n <div [formGroupName]=\"i\" [hidden]=\"i !== selectMatrixBlockIndex\">\n <div formArrayName=\"fields\">\n <ng-container *ngFor=\"let itemf of item.controls['fields'].controls;let fi =index\">\n <div [formGroupName]=\"fi\" [hidden]=\"fi !== selectMatrixFieldIndex\">\n <div class=\"mb-2\">\n <label class=\"form-label\"\n for=\"displayName\">{{'Cms::DisplayName' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"displayName\"\n (blur)=\"MatrixFieldDisplayNameInputBlur($event)\">\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\"\n for=\"name\">{{'DigniteAbpForms::FieldName' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"name\">\n <div class=\"form-text\">\n {{'DigniteAbpForms::FieldNameHelpText' | abpLocalization}}</div>\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\"\n for=\"description\">{{'Cms::Description' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"description\">\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\"\n for=\"formControlName\">{{'Cms::FieldType' | abpLocalization}}</label>\n <select class=\"form-select\" formControlName=\"formControlName\" (change)=\"setConfigComponent()\">\n <ng-container *ngFor=\"let itemC of _FieldControlGroup;let i =index\">\n <option [value]=\"itemC.name\">{{itemC.displayName}}</option>\n </ng-container>\n </select>\n </div>\n <ng-container *ngIf=\"itemf.value.formControlName&&item\">\n <df-dynamic [type]=\"itemf.value.formControlName\" [entity]=\"item\"\n [selected]=\"_selected?_selected['formConfiguration']['MatrixBlockTypes'][i]['fields'][fi]:''\"></df-dynamic>\n </ng-container>\n </div>\n </ng-container>\n </div>\n </div>\n </ng-container>\n </div>\n\n </div>\n </div>\n <button type=\"submit\" (abpInit)=\"submitclick?.nativeElement?.click()\" style=\"display: none;\"\n #submitclick></button>\n </div>\n</form>\n\n\n\n<abp-modal [(visible)]=\"matrixModalOpen\" [busy]=\"modalBusy\" (visibleChange)=\"matrixModalVisibleChange($event)\" >\n <ng-template #abpHeader>\n <h3>{{isMatrixEdit?('AbpUi::Edit' | abpLocalization):('Cms::New' | abpLocalization)}}</h3>\n </ng-template>\n <ng-template #abpBody>\n <ng-template #loaderRef>\n <div class=\"text-center\"><i class=\"fa fa-pulse fa-spinner\" aria-hidden=\"true\"></i></div>\n </ng-template>\n <ng-container *ngIf=\"matrixModalForm; else loaderRef\">\n <form class=\"sites-modal-form\" #myForm=\"ngForm\" [formGroup]=\"matrixModalForm\"\n (ngSubmit)=\"createOrEditSave()\">\n <button type=\"submit\" #matrixModalModalSubmit style=\"display: none\"></button>\n <div class=\"mb-2\">\n <label class=\"form-label\" for=\"displayName\">{{'Cms::DisplayName' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"displayName\"\n (blur)=\"displayNameInputBlur($event)\">\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\" for=\"name\">{{'Cms::Name' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"name\">\n </div>\n </form>\n </ng-container>\n </ng-template>\n <ng-template #abpFooter>\n <button type=\"button\" class=\"btn btn-secondary\" abpClose>{{'AbpUi::Close' | abpLocalization}}</button>\n <abp-button iconClass=\"fa fa-check\"\n (click)=\"matrixModalModalSubmit.nativeElement.click()\">{{'AbpUi::Save' | abpLocalization}}</abp-button>\n </ng-template>\n</abp-modal>", styles: [""], dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1$1.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i1$1.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i1$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1$1.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: i1$1.FormGroupName, selector: "[formGroupName]", inputs: ["formGroupName"] }, { kind: "directive", type: i1$1.FormArrayName, selector: "[formArrayName]", inputs: ["formArrayName"] }, { kind: "directive", type: i1.FormSubmitDirective, selector: "form[ngSubmit][formGroup]", inputs: ["debounce", "notValidateOnSubmit", "markAsDirtyWhenSubmit"], outputs: ["ngSubmit"] }, { kind: "directive", type: i1.InitDirective, selector: "[abpInit]", outputs: ["abpInit"] }, { kind: "directive", type: i1.StopPropagationDirective, selector: "[click.stop]", outputs: ["click.stop"] }, { kind: "directive", type: i7$1.ValidationGroupDirective, selector: "[formGroup],[formGroupName]", exportAs: ["validationGroup"] }, { kind: "directive", type: i7$1.ValidationDirective, selector: "[formControl],[formControlName]", exportAs: ["validationDirective"] }, { kind: "component", type: i3.ButtonComponent, selector: "abp-button", inputs: ["buttonId", "buttonClass", "buttonType", "formName", "iconClass", "loading", "disabled", "attributes"], outputs: ["click", "focus", "blur", "abpClick", "abpFocus", "abpBlur"] }, { kind: "component", type: i3.ModalComponent, selector: "abp-modal", inputs: ["visible", "busy", "options", "suppressUnsavedChangesWarning"], outputs: ["visibleChange", "init", "appear", "disappear"] }, { kind: "directive", type: i3.ModalCloseDirective, selector: "[abpClose]" }, { kind: "directive", type: i10.NgbDropdown, selector: "[ngbDropdown]", inputs: ["autoClose", "dropdownClass", "open", "placement", "popperOptions", "container", "display"], outputs: ["openChange"], exportAs: ["ngbDropdown"] }, { kind: "directive", type: i10.NgbDropdownToggle, selector: "[ngbDropdownToggle]" }, { kind: "directive", type: i10.NgbDropdownMenu, selector: "[ngbDropdownMenu]" }, { kind: "directive", type: i10.NgbDropdownItem, selector: "[ngbDropdownItem]", inputs: ["tabindex", "disabled"] }, { kind: "directive", type: i10.NgbDropdownButtonItem, selector: "button[ngbDropdownItem]" }, { kind: "component", type: i8.DynamicComponent, selector: "df-dynamic", inputs: ["selected", "type", "entity", "culture", "parentFiledName", "fields"] }, { kind: "pipe", type: i1.LocalizationPipe, name: "abpLocalization" }] }); }
|
|
3343
3072
|
}
|
|
3344
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3073
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: MatrixConfigComponent, decorators: [{
|
|
3345
3074
|
type: Component,
|
|
3346
3075
|
args: [{ selector: 'df-matrix-config', template: "<form [formGroup]=\"_Entity\">\n <div formGroupName=\"formConfiguration\">\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'Cms::::FormControl:Matrix' | abpLocalization}}</label>\n <div class=\"row\">\n <div class=\"col-md-3\">\n <div class=\"list-group\">\n <li class=\"list-group-item d-flex align-items-center justify-content-between\"\n aria-current=\"true\">\n {{'Cms::MatrixBlockType' | abpLocalization}}\n <button class=\"btn btn-light btn-sm p-0\" (click.stop)=\"addMatrixBlockType()\">\n <i class=\"fas fa-plus-circle p-1\"></i>\n </button>\n </li>\n <ng-container *ngFor=\"let item of MatrixBlockTypes.controls;let i =index\">\n <button type=\"button\" (click.stop)=\"selectMatrixBlockChange(i)\"\n class=\"list-group-item d-flex align-items-center justify-content-between list-group-item-action \"\n [class.active]=\"i===selectMatrixBlockIndex\">\n <div>\n <div>{{item.value.displayName}}</div>\n <div>{{item.value.name}}</div>\n </div>\n <div ngbDropdown class=\"d-inline-block\">\n <button type=\"button\" class=\"btn btn-light btn-sm\" id=\"dropdownBasic1\"\n style=\"z-index: 8;\" ngbDropdownToggle></button>\n <div ngbDropdownMenu aria-labelledby=\"dropdownBasic1\" style=\"z-index: 9;\">\n <button ngbDropdownItem\n (click.stop)=\"EditMatrixBlock(item.value)\">{{'AbpUi::Edit' | abpLocalization}}</button>\n <button ngbDropdownItem\n (click.stop)=\"DeleteMatrixBlock(i)\">{{'AbpUi::Delete' | abpLocalization}}</button>\n </div>\n </div>\n </button>\n </ng-container>\n </div>\n </div>\n <div class=\"col-md-3\">\n <div class=\"list-group\" *ngIf=\"MatrixBlockTypes?.controls.length>0\">\n <li class=\"list-group-item d-flex align-items-center justify-content-between\"\n aria-current=\"true\">\n {{'Cms::Fields' | abpLocalization}}\n <button class=\"btn btn-light btn-sm p-0\" (click.stop)=\"addMatrixField()\">\n <i class=\"fas fa-plus-circle p-1\"></i>\n </button>\n </li>\n <ng-container *ngFor=\"let item of MatrixBlockTypes.controls;let i =index\">\n <ng-container *ngIf=\"i === selectMatrixBlockIndex\">\n <ng-container *ngFor=\"let el of item.controls['fields'].controls;let fi =index\">\n <button type=\"button\" (click.stop)=\"selectMatrixFieldChange(i,fi)\"\n class=\"list-group-item d-flex align-items-center justify-content-between list-group-item-action \"\n [class.active]=\"fi===selectMatrixFieldIndex\">\n <div>\n <div>{{el.value.displayName}}</div>\n <div>{{el.value.name}}</div>\n </div>\n <button type=\"button\"\n (click.stop)=\"deleteMatrixField(item.controls['fields'],fi)\"\n class=\"btn btn-sm btn-li\">{{'AbpUi::Delete' | abpLocalization}}</button>\n </button>\n </ng-container>\n </ng-container>\n </ng-container>\n </div>\n </div>\n <div class=\"col-md-6\" formArrayName=\"MatrixBlockTypes\">\n <ng-container *ngFor=\"let item of MatrixBlockTypes.controls;let i =index\">\n <div [formGroupName]=\"i\" [hidden]=\"i !== selectMatrixBlockIndex\">\n <div formArrayName=\"fields\">\n <ng-container *ngFor=\"let itemf of item.controls['fields'].controls;let fi =index\">\n <div [formGroupName]=\"fi\" [hidden]=\"fi !== selectMatrixFieldIndex\">\n <div class=\"mb-2\">\n <label class=\"form-label\"\n for=\"displayName\">{{'Cms::DisplayName' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"displayName\"\n (blur)=\"MatrixFieldDisplayNameInputBlur($event)\">\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\"\n for=\"name\">{{'DigniteAbpForms::FieldName' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"name\">\n <div class=\"form-text\">\n {{'DigniteAbpForms::FieldNameHelpText' | abpLocalization}}</div>\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\"\n for=\"description\">{{'Cms::Description' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"description\">\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\"\n for=\"formControlName\">{{'Cms::FieldType' | abpLocalization}}</label>\n <select class=\"form-select\" formControlName=\"formControlName\" (change)=\"setConfigComponent()\">\n <ng-container *ngFor=\"let itemC of _FieldControlGroup;let i =index\">\n <option [value]=\"itemC.name\">{{itemC.displayName}}</option>\n </ng-container>\n </select>\n </div>\n <ng-container *ngIf=\"itemf.value.formControlName&&item\">\n <df-dynamic [type]=\"itemf.value.formControlName\" [entity]=\"item\"\n [selected]=\"_selected?_selected['formConfiguration']['MatrixBlockTypes'][i]['fields'][fi]:''\"></df-dynamic>\n </ng-container>\n </div>\n </ng-container>\n </div>\n </div>\n </ng-container>\n </div>\n\n </div>\n </div>\n <button type=\"submit\" (abpInit)=\"submitclick?.nativeElement?.click()\" style=\"display: none;\"\n #submitclick></button>\n </div>\n</form>\n\n\n\n<abp-modal [(visible)]=\"matrixModalOpen\" [busy]=\"modalBusy\" (visibleChange)=\"matrixModalVisibleChange($event)\" >\n <ng-template #abpHeader>\n <h3>{{isMatrixEdit?('AbpUi::Edit' | abpLocalization):('Cms::New' | abpLocalization)}}</h3>\n </ng-template>\n <ng-template #abpBody>\n <ng-template #loaderRef>\n <div class=\"text-center\"><i class=\"fa fa-pulse fa-spinner\" aria-hidden=\"true\"></i></div>\n </ng-template>\n <ng-container *ngIf=\"matrixModalForm; else loaderRef\">\n <form class=\"sites-modal-form\" #myForm=\"ngForm\" [formGroup]=\"matrixModalForm\"\n (ngSubmit)=\"createOrEditSave()\">\n <button type=\"submit\" #matrixModalModalSubmit style=\"display: none\"></button>\n <div class=\"mb-2\">\n <label class=\"form-label\" for=\"displayName\">{{'Cms::DisplayName' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"displayName\"\n (blur)=\"displayNameInputBlur($event)\">\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\" for=\"name\">{{'Cms::Name' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"name\">\n </div>\n </form>\n </ng-container>\n </ng-template>\n <ng-template #abpFooter>\n <button type=\"button\" class=\"btn btn-secondary\" abpClose>{{'AbpUi::Close' | abpLocalization}}</button>\n <abp-button iconClass=\"fa fa-check\"\n (click)=\"matrixModalModalSubmit.nativeElement.click()\">{{'AbpUi::Save' | abpLocalization}}</abp-button>\n </ng-template>\n</abp-modal>" }]
|
|
3347
|
-
}], ctorParameters:
|
|
3076
|
+
}], ctorParameters: () => [{ type: i1$1.FormBuilder }, { type: CmsApiService }, { type: FieldAbstractsService }], propDecorators: { type: [{
|
|
3348
3077
|
type: Input
|
|
3349
3078
|
}], Entity: [{
|
|
3350
3079
|
type: Input
|
|
@@ -3359,44 +3088,34 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
3359
3088
|
}] } });
|
|
3360
3089
|
|
|
3361
3090
|
class MatrixControlComponent {
|
|
3362
|
-
fb;
|
|
3363
3091
|
constructor(fb) {
|
|
3364
3092
|
this.fb = fb;
|
|
3093
|
+
/**字段配置列表 */
|
|
3094
|
+
this._fields = '';
|
|
3095
|
+
/**矩阵列表 */
|
|
3096
|
+
this.MatrixBlockTypesList = [];
|
|
3365
3097
|
}
|
|
3366
|
-
/**表单实体 */
|
|
3367
|
-
_entity;
|
|
3368
3098
|
set entity(v) {
|
|
3369
3099
|
this._entity = v;
|
|
3370
3100
|
this.dataLoaded();
|
|
3371
3101
|
}
|
|
3372
|
-
/**字段配置列表 */
|
|
3373
|
-
_fields = '';
|
|
3374
3102
|
set fields(v) {
|
|
3375
3103
|
this._fields = v;
|
|
3376
3104
|
this.dataLoaded();
|
|
3377
3105
|
}
|
|
3378
|
-
/**父级字段名称,用于为表单设置控件赋值 */
|
|
3379
|
-
_parentFiledName;
|
|
3380
3106
|
set parentFiledName(v) {
|
|
3381
3107
|
this._parentFiledName = v;
|
|
3382
3108
|
this.dataLoaded();
|
|
3383
3109
|
}
|
|
3384
|
-
/**父级字段名称,用于为表单设置控件赋值 */
|
|
3385
|
-
_selected;
|
|
3386
3110
|
set selected(v) {
|
|
3387
3111
|
this._selected = v;
|
|
3388
3112
|
if (v) {
|
|
3389
3113
|
this.dataLoaded();
|
|
3390
3114
|
}
|
|
3391
3115
|
}
|
|
3392
|
-
/**语言 */
|
|
3393
|
-
_culture;
|
|
3394
3116
|
set culture(v) {
|
|
3395
3117
|
this._culture = v;
|
|
3396
3118
|
}
|
|
3397
|
-
submitclick;
|
|
3398
|
-
/** 获取父级字段代表的表单组*/
|
|
3399
|
-
extraProperties;
|
|
3400
3119
|
/**数据加载完成 */
|
|
3401
3120
|
async dataLoaded() {
|
|
3402
3121
|
if (this._fields && this._entity && this._parentFiledName) {
|
|
@@ -3407,9 +3126,6 @@ class MatrixControlComponent {
|
|
|
3407
3126
|
this.fieldNameControl.patchValue(this._selected);
|
|
3408
3127
|
}
|
|
3409
3128
|
}
|
|
3410
|
-
formConfiguration;
|
|
3411
|
-
/**获取表格字段代表的控件 */
|
|
3412
|
-
fieldNameControl;
|
|
3413
3129
|
AfterInit() {
|
|
3414
3130
|
return new Promise((resolve, rejects) => {
|
|
3415
3131
|
let formConfiguration = this._fields.field.formConfiguration;
|
|
@@ -3425,8 +3141,6 @@ class MatrixControlComponent {
|
|
|
3425
3141
|
resolve(true);
|
|
3426
3142
|
});
|
|
3427
3143
|
}
|
|
3428
|
-
/**矩阵列表 */
|
|
3429
|
-
MatrixBlockTypesList = [];
|
|
3430
3144
|
/**增加指定矩阵控件项 */
|
|
3431
3145
|
addMatrixControl(item) {
|
|
3432
3146
|
this.fieldNameControl.push(this.fb.group({
|
|
@@ -3439,13 +3153,13 @@ class MatrixControlComponent {
|
|
|
3439
3153
|
deleteMatrixControl(index) {
|
|
3440
3154
|
this.fieldNameControl.removeAt(index);
|
|
3441
3155
|
}
|
|
3442
|
-
static
|
|
3443
|
-
static
|
|
3156
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: MatrixControlComponent, deps: [{ token: i1$1.FormBuilder }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3157
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.9", type: MatrixControlComponent, selector: "df-matrix-control", inputs: { entity: "entity", fields: "fields", parentFiledName: "parentFiledName", selected: "selected", culture: "culture" }, viewQueries: [{ propertyName: "submitclick", first: true, predicate: ["submitclick"], descendants: true, static: true }], ngImport: i0, template: "<form [formGroup]=\"_entity\">\n <div formGroupName=\"extraProperties\">\n <div class=\"mb-2\">\n <label class=\"form-label\" *ngIf=\"_fields.displayName\">{{ _fields.displayName }}</label>\n <div [formArrayName]=\"_fields.field.name\">\n <ng-container *ngFor=\"let item of fieldNameControl.controls;let i=index\">\n <div class=\"card mb-3 border \" [formGroupName]=\"i\">\n <div class=\"card-header d-flex align-items-center justify-content-between border-bottom pt-1\">\n <div>{{item.value.displayName}}</div>\n <button class=\"btn btn-sm btn-light p-0\" (click.stop)=\"deleteMatrixControl(i)\"><i\n class=\"fas fa-trash p-2\"></i></button>\n </div>\n <div class=\"card-body\">\n <ng-container *ngFor=\"let el of MatrixBlockTypesList;let il =index\">\n <ng-container *ngIf=\"el.name===item.value.matrixBlockTypeName\">\n <ng-container *ngFor=\"let elf of el.fields; let fi=index\">\n <ng-container>\n <df-dynamic [entity]=\"item\"\n [fields]=\"{ field: elf,displayName:elf.displayName }\"\n [selected]=\"_selected ? _selected[i][_parentFiledName][elf.name]: ''\"\n [parentFiledName]=\"'extraProperties'\" [culture]=\"_culture\"></df-dynamic>\n </ng-container>\n </ng-container>\n </ng-container>\n </ng-container>\n </div>\n </div>\n </ng-container>\n </div>\n <div>\n <div class=\"btn-group\" role=\"group\" aria-label=\"Basic example\">\n <ng-container *ngFor=\"let item of MatrixBlockTypesList;let i =index\">\n <button type=\"button\" class=\"btn btn-primary btn-sm\" (click.stop)=\"addMatrixControl(item)\"><i\n class=\"fas fa-plus me-1\"></i>{{item.displayName}}</button>\n </ng-container>\n </div>\n </div>\n <div class=\"form-text\" *ngIf=\"_fields.field.description\">{{_fields.field.description}}</div>\n </div>\n </div>\n <button type=\"submit\" style=\"display: none\" #submitclick></button>\n</form>", styles: [""], dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$1.FormGroupName, selector: "[formGroupName]", inputs: ["formGroupName"] }, { kind: "directive", type: i1$1.FormArrayName, selector: "[formArrayName]", inputs: ["formArrayName"] }, { kind: "directive", type: i1.StopPropagationDirective, selector: "[click.stop]", outputs: ["click.stop"] }, { kind: "directive", type: i7$1.ValidationGroupDirective, selector: "[formGroup],[formGroupName]", exportAs: ["validationGroup"] }, { kind: "component", type: i8.DynamicComponent, selector: "df-dynamic", inputs: ["selected", "type", "entity", "culture", "parentFiledName", "fields"] }] }); }
|
|
3444
3158
|
}
|
|
3445
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3159
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: MatrixControlComponent, decorators: [{
|
|
3446
3160
|
type: Component,
|
|
3447
3161
|
args: [{ selector: 'df-matrix-control', template: "<form [formGroup]=\"_entity\">\n <div formGroupName=\"extraProperties\">\n <div class=\"mb-2\">\n <label class=\"form-label\" *ngIf=\"_fields.displayName\">{{ _fields.displayName }}</label>\n <div [formArrayName]=\"_fields.field.name\">\n <ng-container *ngFor=\"let item of fieldNameControl.controls;let i=index\">\n <div class=\"card mb-3 border \" [formGroupName]=\"i\">\n <div class=\"card-header d-flex align-items-center justify-content-between border-bottom pt-1\">\n <div>{{item.value.displayName}}</div>\n <button class=\"btn btn-sm btn-light p-0\" (click.stop)=\"deleteMatrixControl(i)\"><i\n class=\"fas fa-trash p-2\"></i></button>\n </div>\n <div class=\"card-body\">\n <ng-container *ngFor=\"let el of MatrixBlockTypesList;let il =index\">\n <ng-container *ngIf=\"el.name===item.value.matrixBlockTypeName\">\n <ng-container *ngFor=\"let elf of el.fields; let fi=index\">\n <ng-container>\n <df-dynamic [entity]=\"item\"\n [fields]=\"{ field: elf,displayName:elf.displayName }\"\n [selected]=\"_selected ? _selected[i][_parentFiledName][elf.name]: ''\"\n [parentFiledName]=\"'extraProperties'\" [culture]=\"_culture\"></df-dynamic>\n </ng-container>\n </ng-container>\n </ng-container>\n </ng-container>\n </div>\n </div>\n </ng-container>\n </div>\n <div>\n <div class=\"btn-group\" role=\"group\" aria-label=\"Basic example\">\n <ng-container *ngFor=\"let item of MatrixBlockTypesList;let i =index\">\n <button type=\"button\" class=\"btn btn-primary btn-sm\" (click.stop)=\"addMatrixControl(item)\"><i\n class=\"fas fa-plus me-1\"></i>{{item.displayName}}</button>\n </ng-container>\n </div>\n </div>\n <div class=\"form-text\" *ngIf=\"_fields.field.description\">{{_fields.field.description}}</div>\n </div>\n </div>\n <button type=\"submit\" style=\"display: none\" #submitclick></button>\n</form>" }]
|
|
3448
|
-
}], ctorParameters:
|
|
3162
|
+
}], ctorParameters: () => [{ type: i1$1.FormBuilder }], propDecorators: { entity: [{
|
|
3449
3163
|
type: Input
|
|
3450
3164
|
}], fields: [{
|
|
3451
3165
|
type: Input
|
|
@@ -3461,9 +3175,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
3461
3175
|
}] } });
|
|
3462
3176
|
|
|
3463
3177
|
class TableConfig {
|
|
3464
|
-
// 选项
|
|
3465
|
-
TableColumns = new FormArray([]);
|
|
3466
3178
|
constructor(data) {
|
|
3179
|
+
// 选项
|
|
3180
|
+
this.TableColumns = new FormArray([]);
|
|
3467
3181
|
if (data) {
|
|
3468
3182
|
for (const key in data) {
|
|
3469
3183
|
if (data.hasOwnProperty(key)) {
|
|
@@ -3474,19 +3188,19 @@ class TableConfig {
|
|
|
3474
3188
|
}
|
|
3475
3189
|
}
|
|
3476
3190
|
class TableFormControl {
|
|
3477
|
-
/**列标题 */
|
|
3478
|
-
displayName = ['', [Validators.required]];
|
|
3479
|
-
/**空间配置 */
|
|
3480
|
-
formConfiguration = new FormGroup({});
|
|
3481
|
-
/**列名 */
|
|
3482
|
-
name = ['', [Validators.required]];
|
|
3483
|
-
//控件标识
|
|
3484
|
-
formControlName = ['', [Validators.required]];
|
|
3485
|
-
/**是否必填 */
|
|
3486
|
-
required = [false];
|
|
3487
|
-
/**描述 */
|
|
3488
|
-
description = [''];
|
|
3489
3191
|
constructor(data) {
|
|
3192
|
+
/**列标题 */
|
|
3193
|
+
this.displayName = ['', [Validators.required]];
|
|
3194
|
+
/**空间配置 */
|
|
3195
|
+
this.formConfiguration = new FormGroup({});
|
|
3196
|
+
/**列名 */
|
|
3197
|
+
this.name = ['', [Validators.required]];
|
|
3198
|
+
//控件标识
|
|
3199
|
+
this.formControlName = ['', [Validators.required]];
|
|
3200
|
+
/**是否必填 */
|
|
3201
|
+
this.required = [false];
|
|
3202
|
+
/**描述 */
|
|
3203
|
+
this.description = [''];
|
|
3490
3204
|
if (data) {
|
|
3491
3205
|
for (const key in data) {
|
|
3492
3206
|
if (data.hasOwnProperty(key)) {
|
|
@@ -3498,32 +3212,25 @@ class TableFormControl {
|
|
|
3498
3212
|
}
|
|
3499
3213
|
|
|
3500
3214
|
class TableConfigComponent {
|
|
3501
|
-
fb;
|
|
3502
|
-
_CmsApiService;
|
|
3503
|
-
_FieldAbstractsService;
|
|
3504
3215
|
constructor(fb, _CmsApiService, _FieldAbstractsService) {
|
|
3505
3216
|
this.fb = fb;
|
|
3506
3217
|
this._CmsApiService = _CmsApiService;
|
|
3507
3218
|
this._FieldAbstractsService = _FieldAbstractsService;
|
|
3219
|
+
/**创建站点模态框状态 */
|
|
3220
|
+
this.tableSelectOpen = false;
|
|
3221
|
+
/**用于确定模态的繁忙状态是否为真 */
|
|
3222
|
+
this.modalBusy = false;
|
|
3508
3223
|
}
|
|
3509
|
-
/**表单实体 */
|
|
3510
|
-
_Entity;
|
|
3511
3224
|
set Entity(v) {
|
|
3512
3225
|
this._Entity = v;
|
|
3513
3226
|
this.dataLoaded();
|
|
3514
3227
|
}
|
|
3515
|
-
/**选择的表单信息 */
|
|
3516
|
-
_selected;
|
|
3517
3228
|
set selected(v) {
|
|
3518
3229
|
if (v) {
|
|
3519
3230
|
this._selected = v;
|
|
3520
3231
|
this.dataLoaded();
|
|
3521
3232
|
}
|
|
3522
3233
|
}
|
|
3523
|
-
/**表单控件组 */
|
|
3524
|
-
_fieldControlGroup;
|
|
3525
|
-
/**表单控件类型 */
|
|
3526
|
-
_type;
|
|
3527
3234
|
set type(v) {
|
|
3528
3235
|
this._type = v;
|
|
3529
3236
|
this.dataLoaded();
|
|
@@ -3534,7 +3241,6 @@ class TableConfigComponent {
|
|
|
3534
3241
|
get TableColumns() {
|
|
3535
3242
|
return this.formConfiguration.controls['TableColumns'];
|
|
3536
3243
|
}
|
|
3537
|
-
submitclick;
|
|
3538
3244
|
async dataLoaded() {
|
|
3539
3245
|
if (this._Entity && this._type) {
|
|
3540
3246
|
await this.AfterInit();
|
|
@@ -3568,7 +3274,6 @@ class TableConfigComponent {
|
|
|
3568
3274
|
resolve(true);
|
|
3569
3275
|
});
|
|
3570
3276
|
}
|
|
3571
|
-
itemForm;
|
|
3572
3277
|
/**选择表格的表单控件 */
|
|
3573
3278
|
selectTableControl(event, i, item) {
|
|
3574
3279
|
this.CurrentSelectionTableControlName = event.target.value;
|
|
@@ -3577,19 +3282,6 @@ class TableConfigComponent {
|
|
|
3577
3282
|
this.TableColumnsIndex = i;
|
|
3578
3283
|
this.itemForm = item;
|
|
3579
3284
|
}
|
|
3580
|
-
CurrentSelectionTableControlName;
|
|
3581
|
-
/**正在创建或编辑的表格项下标 */
|
|
3582
|
-
TableColumnsIndex;
|
|
3583
|
-
/**创建站点模态框状态 */
|
|
3584
|
-
tableSelectOpen = false;
|
|
3585
|
-
/**用于确定模态的繁忙状态是否为真 */
|
|
3586
|
-
modalBusy = false;
|
|
3587
|
-
/**创建站点表单 */
|
|
3588
|
-
tableSelectForm;
|
|
3589
|
-
/**表格已选择数据 */
|
|
3590
|
-
_tableSelected;
|
|
3591
|
-
/**表单控件模板-动态赋值表单控件 */
|
|
3592
|
-
tableSelectModalSubmit;
|
|
3593
3285
|
/**创建站点模态框状态改变 */
|
|
3594
3286
|
tableSelectVisibleChange(event) {
|
|
3595
3287
|
if (!event) {
|
|
@@ -3639,13 +3331,13 @@ class TableConfigComponent {
|
|
|
3639
3331
|
return;
|
|
3640
3332
|
nameInput.patchValue(pinyin);
|
|
3641
3333
|
}
|
|
3642
|
-
static
|
|
3643
|
-
static
|
|
3334
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: TableConfigComponent, deps: [{ token: i1$1.FormBuilder }, { token: CmsApiService }, { token: FieldAbstractsService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3335
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.9", type: TableConfigComponent, selector: "df-table-config", inputs: { Entity: "Entity", selected: "selected", type: "type" }, viewQueries: [{ propertyName: "submitclick", first: true, predicate: ["submitclick"], descendants: true, static: true }, { propertyName: "tableSelectModalSubmit", first: true, predicate: ["tableSelectModalSubmit"], descendants: true }], ngImport: i0, template: "<form [formGroup]=\"_Entity\">\n <div formGroupName=\"formConfiguration\">\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'DigniteAbpForms::SelectListItem' | abpLocalization}}</label>\n <table class=\"table\">\n <thead>\n <tr>\n <th scope=\"col\">{{'Cms::TableColumnDisplayName' | abpLocalization}}</th>\n <th scope=\"col\">{{'Cms::TableColumnName' | abpLocalization}}</th>\n <th scope=\"col\">{{'Cms::TableColumnForm' | abpLocalization}}</th>\n <th scope=\"col\" class=\"flex-end\">\n <button class=\"btn btn-light btn-sm\" (click.stop)=\"addTableColumns()\">\n <i class=\"fas fa-plus-circle\"></i>\n </button>\n </th>\n </tr>\n </thead>\n <tbody formArrayName=\"TableColumns\">\n <ng-container *ngFor=\"let item of TableColumns.controls;let i=index\">\n <tr [formGroupName]=\"i\">\n <td><input type=\"text\" class=\"form-control\" formControlName=\"displayName\" (blur)=\"disPlayNameInputBlur($event,item)\" ></td>\n <td><input type=\"text\" class=\"form-control\" formControlName=\"name\"></td>\n <td>\n <select class=\"form-select\" formControlName=\"formControlName\"\n (change)=\"selectTableControl($event,i,item)\">\n <option value=\"\">SelectFrom</option>\n <ng-container *ngFor=\"let item_f of _fieldControlGroup;let i_f =index\">\n <option [value]=\"item_f.name\">{{item_f.displayName}}</option>\n </ng-container>\n </select>\n </td>\n <td scope=\"row\">\n <div class=\"flex-start\">\n <button class=\"btn btn-light btn-sm \" (click.stop)=\"EditSitesBtn(item,i)\">\n <i class=\"fas fa-edit\"></i>\n </button>\n <button class=\"btn btn-light btn-sm ms-1\" (click.stop)=\"deleteTableColumns(i)\">\n <i class=\"fas fa-minus\"></i>\n </button>\n <button class=\"btn btn-light btn-sm ms-1\" *ngIf=\"i!==0\"\n (click.stop)=\"TableArrowUpOrDown('up',i)\">\n <i class=\"fas fa-arrow-up\"></i>\n </button>\n <button class=\"btn btn-light btn-sm ms-1\" *ngIf=\"i!==TableColumns.controls.length-1\"\n (click.stop)=\"TableArrowUpOrDown('down',i)\">\n <i class=\"fas fa-arrow-down\"></i>\n </button>\n </div>\n </td>\n </tr>\n </ng-container>\n </tbody>\n </table>\n </div>\n <button type=\"submit\" (abpInit)=\"submitclick?.nativeElement?.click()\" style=\"display: none;\"\n #submitclick></button>\n </div>\n</form>\n\n\n<abp-modal [(visible)]=\"tableSelectOpen\" [busy]=\"modalBusy\" (visibleChange)=\"tableSelectVisibleChange($event)\" [options]=\"{ size: CurrentSelectionTableControlName=='Matrix'?'xl':'' ,scrollable:false }\">\n <ng-template #abpHeader>\n <h3>{{_tableSelected?('AbpUi::Edit' | abpLocalization):('Cms::New' | abpLocalization)}}</h3>\n </ng-template>\n <ng-template #abpBody>\n <ng-template #loaderRef>\n <div class=\"text-center\"><i class=\"fa fa-pulse fa-spinner\" aria-hidden=\"true\"></i></div>\n </ng-template>\n <ng-container *ngIf=\"tableSelectForm; else loaderRef\">\n <form class=\"sites-modal-form\" #myForm=\"ngForm\" [formGroup]=\"tableSelectForm\"\n (ngSubmit)=\"createOrEditSave()\">\n <button type=\"submit\" #tableSelectModalSubmit style=\"display: none\"></button>\n <ng-container *ngIf=\"CurrentSelectionTableControlName&&tableSelectForm\">\n <df-dynamic [type]=\"CurrentSelectionTableControlName\" [entity]=\"tableSelectForm\"\n [selected]=\"_tableSelected\" [formGroup]=\"tableSelectForm\"></df-dynamic>\n </ng-container>\n </form>\n </ng-container>\n </ng-template>\n <ng-template #abpFooter>\n <button type=\"button\" class=\"btn btn-secondary\" abpClose>{{'AbpUi::Close' | abpLocalization}}</button>\n <abp-button iconClass=\"fa fa-check\"\n (click)=\"tableSelectModalSubmit.nativeElement.click()\">{{'AbpUi::Save' | abpLocalization}}</abp-button>\n </ng-template>\n</abp-modal>", styles: [".flex-end{display:flex;align-items:center;justify-content:flex-end}.flex-start{display:flex;align-items:center;justify-content:flex-start}\n"], dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1$1.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i1$1.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i1$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1$1.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: i1$1.FormGroupName, selector: "[formGroupName]", inputs: ["formGroupName"] }, { kind: "directive", type: i1$1.FormArrayName, selector: "[formArrayName]", inputs: ["formArrayName"] }, { kind: "directive", type: i1.FormSubmitDirective, selector: "form[ngSubmit][formGroup]", inputs: ["debounce", "notValidateOnSubmit", "markAsDirtyWhenSubmit"], outputs: ["ngSubmit"] }, { kind: "directive", type: i1.InitDirective, selector: "[abpInit]", outputs: ["abpInit"] }, { kind: "directive", type: i1.StopPropagationDirective, selector: "[click.stop]", outputs: ["click.stop"] }, { kind: "directive", type: i7$1.ValidationGroupDirective, selector: "[formGroup],[formGroupName]", exportAs: ["validationGroup"] }, { kind: "directive", type: i7$1.ValidationDirective, selector: "[formControl],[formControlName]", exportAs: ["validationDirective"] }, { kind: "component", type: i3.ButtonComponent, selector: "abp-button", inputs: ["buttonId", "buttonClass", "buttonType", "formName", "iconClass", "loading", "disabled", "attributes"], outputs: ["click", "focus", "blur", "abpClick", "abpFocus", "abpBlur"] }, { kind: "component", type: i3.ModalComponent, selector: "abp-modal", inputs: ["visible", "busy", "options", "suppressUnsavedChangesWarning"], outputs: ["visibleChange", "init", "appear", "disappear"] }, { kind: "directive", type: i3.ModalCloseDirective, selector: "[abpClose]" }, { kind: "component", type: i8.DynamicComponent, selector: "df-dynamic", inputs: ["selected", "type", "entity", "culture", "parentFiledName", "fields"] }, { kind: "pipe", type: i1.LocalizationPipe, name: "abpLocalization" }] }); }
|
|
3644
3336
|
}
|
|
3645
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3337
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: TableConfigComponent, decorators: [{
|
|
3646
3338
|
type: Component,
|
|
3647
3339
|
args: [{ selector: 'df-table-config', template: "<form [formGroup]=\"_Entity\">\n <div formGroupName=\"formConfiguration\">\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'DigniteAbpForms::SelectListItem' | abpLocalization}}</label>\n <table class=\"table\">\n <thead>\n <tr>\n <th scope=\"col\">{{'Cms::TableColumnDisplayName' | abpLocalization}}</th>\n <th scope=\"col\">{{'Cms::TableColumnName' | abpLocalization}}</th>\n <th scope=\"col\">{{'Cms::TableColumnForm' | abpLocalization}}</th>\n <th scope=\"col\" class=\"flex-end\">\n <button class=\"btn btn-light btn-sm\" (click.stop)=\"addTableColumns()\">\n <i class=\"fas fa-plus-circle\"></i>\n </button>\n </th>\n </tr>\n </thead>\n <tbody formArrayName=\"TableColumns\">\n <ng-container *ngFor=\"let item of TableColumns.controls;let i=index\">\n <tr [formGroupName]=\"i\">\n <td><input type=\"text\" class=\"form-control\" formControlName=\"displayName\" (blur)=\"disPlayNameInputBlur($event,item)\" ></td>\n <td><input type=\"text\" class=\"form-control\" formControlName=\"name\"></td>\n <td>\n <select class=\"form-select\" formControlName=\"formControlName\"\n (change)=\"selectTableControl($event,i,item)\">\n <option value=\"\">SelectFrom</option>\n <ng-container *ngFor=\"let item_f of _fieldControlGroup;let i_f =index\">\n <option [value]=\"item_f.name\">{{item_f.displayName}}</option>\n </ng-container>\n </select>\n </td>\n <td scope=\"row\">\n <div class=\"flex-start\">\n <button class=\"btn btn-light btn-sm \" (click.stop)=\"EditSitesBtn(item,i)\">\n <i class=\"fas fa-edit\"></i>\n </button>\n <button class=\"btn btn-light btn-sm ms-1\" (click.stop)=\"deleteTableColumns(i)\">\n <i class=\"fas fa-minus\"></i>\n </button>\n <button class=\"btn btn-light btn-sm ms-1\" *ngIf=\"i!==0\"\n (click.stop)=\"TableArrowUpOrDown('up',i)\">\n <i class=\"fas fa-arrow-up\"></i>\n </button>\n <button class=\"btn btn-light btn-sm ms-1\" *ngIf=\"i!==TableColumns.controls.length-1\"\n (click.stop)=\"TableArrowUpOrDown('down',i)\">\n <i class=\"fas fa-arrow-down\"></i>\n </button>\n </div>\n </td>\n </tr>\n </ng-container>\n </tbody>\n </table>\n </div>\n <button type=\"submit\" (abpInit)=\"submitclick?.nativeElement?.click()\" style=\"display: none;\"\n #submitclick></button>\n </div>\n</form>\n\n\n<abp-modal [(visible)]=\"tableSelectOpen\" [busy]=\"modalBusy\" (visibleChange)=\"tableSelectVisibleChange($event)\" [options]=\"{ size: CurrentSelectionTableControlName=='Matrix'?'xl':'' ,scrollable:false }\">\n <ng-template #abpHeader>\n <h3>{{_tableSelected?('AbpUi::Edit' | abpLocalization):('Cms::New' | abpLocalization)}}</h3>\n </ng-template>\n <ng-template #abpBody>\n <ng-template #loaderRef>\n <div class=\"text-center\"><i class=\"fa fa-pulse fa-spinner\" aria-hidden=\"true\"></i></div>\n </ng-template>\n <ng-container *ngIf=\"tableSelectForm; else loaderRef\">\n <form class=\"sites-modal-form\" #myForm=\"ngForm\" [formGroup]=\"tableSelectForm\"\n (ngSubmit)=\"createOrEditSave()\">\n <button type=\"submit\" #tableSelectModalSubmit style=\"display: none\"></button>\n <ng-container *ngIf=\"CurrentSelectionTableControlName&&tableSelectForm\">\n <df-dynamic [type]=\"CurrentSelectionTableControlName\" [entity]=\"tableSelectForm\"\n [selected]=\"_tableSelected\" [formGroup]=\"tableSelectForm\"></df-dynamic>\n </ng-container>\n </form>\n </ng-container>\n </ng-template>\n <ng-template #abpFooter>\n <button type=\"button\" class=\"btn btn-secondary\" abpClose>{{'AbpUi::Close' | abpLocalization}}</button>\n <abp-button iconClass=\"fa fa-check\"\n (click)=\"tableSelectModalSubmit.nativeElement.click()\">{{'AbpUi::Save' | abpLocalization}}</abp-button>\n </ng-template>\n</abp-modal>", styles: [".flex-end{display:flex;align-items:center;justify-content:flex-end}.flex-start{display:flex;align-items:center;justify-content:flex-start}\n"] }]
|
|
3648
|
-
}], ctorParameters:
|
|
3340
|
+
}], ctorParameters: () => [{ type: i1$1.FormBuilder }, { type: CmsApiService }, { type: FieldAbstractsService }], propDecorators: { Entity: [{
|
|
3649
3341
|
type: Input
|
|
3650
3342
|
}], selected: [{
|
|
3651
3343
|
type: Input
|
|
@@ -3661,37 +3353,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
3661
3353
|
|
|
3662
3354
|
class TableControlComponent {
|
|
3663
3355
|
constructor() {
|
|
3356
|
+
this.fb = inject(FormBuilder);
|
|
3357
|
+
/**字段配置列表 */
|
|
3358
|
+
this._fields = '';
|
|
3664
3359
|
}
|
|
3665
|
-
fb = inject(FormBuilder);
|
|
3666
|
-
/**表单实体 */
|
|
3667
|
-
_entity;
|
|
3668
3360
|
set entity(v) {
|
|
3669
3361
|
this._entity = v;
|
|
3670
3362
|
this.dataLoaded();
|
|
3671
3363
|
}
|
|
3672
|
-
/**字段配置列表 */
|
|
3673
|
-
_fields = '';
|
|
3674
3364
|
set fields(v) {
|
|
3675
3365
|
this._fields = v;
|
|
3676
3366
|
this.dataLoaded();
|
|
3677
3367
|
}
|
|
3678
|
-
/**父级字段名称,用于为表单设置控件赋值 */
|
|
3679
|
-
_parentFiledName;
|
|
3680
3368
|
set parentFiledName(v) {
|
|
3681
3369
|
this._parentFiledName = v;
|
|
3682
3370
|
this.dataLoaded();
|
|
3683
3371
|
}
|
|
3684
|
-
/**父级字段名称,用于为表单设置控件赋值 */
|
|
3685
|
-
_selected;
|
|
3686
3372
|
set selected(v) {
|
|
3687
3373
|
this._selected = v;
|
|
3688
3374
|
if (v) {
|
|
3689
3375
|
this.dataLoaded();
|
|
3690
3376
|
}
|
|
3691
3377
|
}
|
|
3692
|
-
submitclick;
|
|
3693
|
-
/** 获取父级字段代表的表单组*/
|
|
3694
|
-
extraProperties;
|
|
3695
3378
|
/**数据加载完成 */
|
|
3696
3379
|
async dataLoaded() {
|
|
3697
3380
|
if (this._fields && this._entity && this._parentFiledName) {
|
|
@@ -3700,9 +3383,6 @@ class TableControlComponent {
|
|
|
3700
3383
|
this.submitclick.nativeElement.click();
|
|
3701
3384
|
}
|
|
3702
3385
|
}
|
|
3703
|
-
formConfiguration;
|
|
3704
|
-
/**获取表格字段代表的控件 */
|
|
3705
|
-
fieldNameControl;
|
|
3706
3386
|
AfterInit() {
|
|
3707
3387
|
return new Promise((resolve, rejects) => {
|
|
3708
3388
|
let ValidatorsArray = [];
|
|
@@ -3744,13 +3424,13 @@ class TableControlComponent {
|
|
|
3744
3424
|
this.fieldNameControl.insert(lastindex, controlAt);
|
|
3745
3425
|
this._selected = this.fieldNameControl.value;
|
|
3746
3426
|
}
|
|
3747
|
-
static
|
|
3748
|
-
static
|
|
3427
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: TableControlComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3428
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.9", type: TableControlComponent, selector: "df-table-control", inputs: { entity: "entity", fields: "fields", parentFiledName: "parentFiledName", selected: "selected" }, viewQueries: [{ propertyName: "submitclick", first: true, predicate: ["submitclick"], descendants: true, static: true }], ngImport: i0, template: "<form [formGroup]=\"_entity\">\n <div formGroupName=\"extraProperties\">\n <div class=\"mb-2\">\n <label class=\"form-label\" *ngIf=\"_fields.displayName\">{{ _fields.displayName }}</label>\n <table class=\"table\">\n <thead>\n <tr>\n <ng-container *ngFor=\"let item of formConfiguration.TableColumns\">\n <th scope=\"col\">{{ item.displayName }}</th>\n </ng-container>\n\n <th scope=\"col\" class=\"flex-end\">\n <button class=\"btn btn-light btn-sm\" (click.stop)=\"addTableControlItem()\">\n <i class=\"fas fa-plus-circle\"></i>\n </button>\n </th>\n </tr>\n </thead>\n <tbody [formArrayName]=\"_fields.field.name\">\n <ng-container *ngFor=\"let item of fieldNameControl.controls; let i = index\">\n <tr>\n <ng-container *ngFor=\"let el of formConfiguration.TableColumns\">\n <td>\n <ng-container *ngIf=\"item&&el\">\n <df-dynamic [entity]=\"item\" [fields]=\"{ field: el }\"\n [selected]=\"_selected[i]?.extraProperties[''+el.name+'']\"\n [parentFiledName]=\"'extraProperties'\"></df-dynamic>\n </ng-container>\n </td>\n </ng-container>\n <td scope=\"row\" class=\"\">\n <div class=\"flex-end mb-2\">\n <button class=\"btn btn-light btn-sm ms-1\" (click.stop)=\"minusTableControlItem(i)\">\n <i class=\"fas fa-minus\"></i>\n </button>\n <button class=\"btn btn-light btn-sm ms-1\" (click.stop)=\"TableArrowUpOrDown('up',i)\"\n *ngIf=\"i!==0\">\n <i class=\"fas fa-arrow-up\"></i>\n </button>\n <button class=\"btn btn-light btn-sm ms-1\"\n (click.stop)=\"TableArrowUpOrDown('down',i)\"\n *ngIf=\"i!==fieldNameControl.controls.length-1\">\n <i class=\"fas fa-arrow-down\"></i>\n </button>\n </div>\n </td>\n </tr>\n </ng-container>\n </tbody>\n </table>\n <div class=\"form-text\" *ngIf=\"_fields.field.description\">{{_fields.field.description}}</div>\n </div>\n </div>\n <button type=\"submit\" style=\"display: none\" #submitclick></button>\n</form>", styles: [".flex-end{display:flex;align-items:center;justify-content:flex-end}.flex-start{display:flex;align-items:center;justify-content:flex-start}\n"], dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$1.FormGroupName, selector: "[formGroupName]", inputs: ["formGroupName"] }, { kind: "directive", type: i1$1.FormArrayName, selector: "[formArrayName]", inputs: ["formArrayName"] }, { kind: "directive", type: i1.StopPropagationDirective, selector: "[click.stop]", outputs: ["click.stop"] }, { kind: "directive", type: i7$1.ValidationGroupDirective, selector: "[formGroup],[formGroupName]", exportAs: ["validationGroup"] }, { kind: "component", type: i8.DynamicComponent, selector: "df-dynamic", inputs: ["selected", "type", "entity", "culture", "parentFiledName", "fields"] }] }); }
|
|
3749
3429
|
}
|
|
3750
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3430
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: TableControlComponent, decorators: [{
|
|
3751
3431
|
type: Component,
|
|
3752
3432
|
args: [{ selector: 'df-table-control', template: "<form [formGroup]=\"_entity\">\n <div formGroupName=\"extraProperties\">\n <div class=\"mb-2\">\n <label class=\"form-label\" *ngIf=\"_fields.displayName\">{{ _fields.displayName }}</label>\n <table class=\"table\">\n <thead>\n <tr>\n <ng-container *ngFor=\"let item of formConfiguration.TableColumns\">\n <th scope=\"col\">{{ item.displayName }}</th>\n </ng-container>\n\n <th scope=\"col\" class=\"flex-end\">\n <button class=\"btn btn-light btn-sm\" (click.stop)=\"addTableControlItem()\">\n <i class=\"fas fa-plus-circle\"></i>\n </button>\n </th>\n </tr>\n </thead>\n <tbody [formArrayName]=\"_fields.field.name\">\n <ng-container *ngFor=\"let item of fieldNameControl.controls; let i = index\">\n <tr>\n <ng-container *ngFor=\"let el of formConfiguration.TableColumns\">\n <td>\n <ng-container *ngIf=\"item&&el\">\n <df-dynamic [entity]=\"item\" [fields]=\"{ field: el }\"\n [selected]=\"_selected[i]?.extraProperties[''+el.name+'']\"\n [parentFiledName]=\"'extraProperties'\"></df-dynamic>\n </ng-container>\n </td>\n </ng-container>\n <td scope=\"row\" class=\"\">\n <div class=\"flex-end mb-2\">\n <button class=\"btn btn-light btn-sm ms-1\" (click.stop)=\"minusTableControlItem(i)\">\n <i class=\"fas fa-minus\"></i>\n </button>\n <button class=\"btn btn-light btn-sm ms-1\" (click.stop)=\"TableArrowUpOrDown('up',i)\"\n *ngIf=\"i!==0\">\n <i class=\"fas fa-arrow-up\"></i>\n </button>\n <button class=\"btn btn-light btn-sm ms-1\"\n (click.stop)=\"TableArrowUpOrDown('down',i)\"\n *ngIf=\"i!==fieldNameControl.controls.length-1\">\n <i class=\"fas fa-arrow-down\"></i>\n </button>\n </div>\n </td>\n </tr>\n </ng-container>\n </tbody>\n </table>\n <div class=\"form-text\" *ngIf=\"_fields.field.description\">{{_fields.field.description}}</div>\n </div>\n </div>\n <button type=\"submit\" style=\"display: none\" #submitclick></button>\n</form>", styles: [".flex-end{display:flex;align-items:center;justify-content:flex-end}.flex-start{display:flex;align-items:center;justify-content:flex-start}\n"] }]
|
|
3753
|
-
}], ctorParameters:
|
|
3433
|
+
}], ctorParameters: () => [], propDecorators: { entity: [{
|
|
3754
3434
|
type: Input
|
|
3755
3435
|
}], fields: [{
|
|
3756
3436
|
type: Input
|
|
@@ -3772,21 +3452,18 @@ const FieldControlGroup = [
|
|
|
3772
3452
|
name: 'Table',
|
|
3773
3453
|
fieldConfigComponent: TableConfigComponent,
|
|
3774
3454
|
fieldComponent: TableControlComponent,
|
|
3775
|
-
// fieldViewComponent:TextBoxViewComponent,
|
|
3776
3455
|
},
|
|
3777
3456
|
{
|
|
3778
3457
|
displayName: '矩阵',
|
|
3779
3458
|
name: 'Matrix',
|
|
3780
3459
|
fieldConfigComponent: MatrixConfigComponent,
|
|
3781
3460
|
fieldComponent: MatrixControlComponent,
|
|
3782
|
-
// fieldViewComponent:TextBoxViewComponent,
|
|
3783
3461
|
},
|
|
3784
3462
|
{
|
|
3785
3463
|
displayName: '条目',
|
|
3786
3464
|
name: 'Entry',
|
|
3787
3465
|
fieldConfigComponent: EntryConfigComponent,
|
|
3788
3466
|
fieldComponent: EntryControlComponent,
|
|
3789
|
-
// fieldViewComponent:TextBoxViewComponent,
|
|
3790
3467
|
},
|
|
3791
3468
|
];
|
|
3792
3469
|
|
|
@@ -3948,7 +3625,6 @@ const Entries_Edit_Defaults_Toolbar_Action = ToolbarAction.createMany([
|
|
|
3948
3625
|
},
|
|
3949
3626
|
]);
|
|
3950
3627
|
|
|
3951
|
-
// import { Entries_Defaults_Toolbar_Action, Entries_Create_Defaults_Toolbar_Action, Entries_Edit_Defaults_Toolbar_Action, Fields_Defaults_Toolbar_Action, Fields_Create_Defaults_Toolbar_Action, Fields_Edit_Defaults_Toolbar_Action, Sites_Defaults_Toolbar_Action, Sections_Defaults_Toolbar_Action, Sections_Create_Or_Edit_Defaults_Toolbar_Action } from "../toolbar-config";
|
|
3952
3628
|
const ActionGroup = {
|
|
3953
3629
|
Entries: Entries_Defaults_Toolbar_Action,
|
|
3954
3630
|
Entries_Create: Entries_Create_Defaults_Toolbar_Action,
|
|
@@ -4024,35 +3700,10 @@ const CmsExtensionsResolver = () => {
|
|
|
4024
3700
|
};
|
|
4025
3701
|
|
|
4026
3702
|
var styles = `
|
|
4027
|
-
|
|
4028
|
-
|
|
4029
|
-
|
|
4030
|
-
// width: 8px;
|
|
4031
|
-
// height: 8px;
|
|
4032
|
-
// }
|
|
4033
|
-
// /* 背景色 */
|
|
4034
|
-
// ::-webkit-scrollbar-track {
|
|
4035
|
-
// background-color: #f5f5f5;
|
|
4036
|
-
// }
|
|
4037
|
-
// /* 滑块颜色 */
|
|
4038
|
-
// ::-webkit-scrollbar-thumb {
|
|
4039
|
-
// background-color: #c1c1c1;
|
|
4040
|
-
|
|
4041
|
-
// border-radius: 50px;
|
|
4042
|
-
// }
|
|
4043
|
-
|
|
4044
|
-
.lpx-content-container .lpx-content {
|
|
4045
|
-
min-height: calc(100vh - 34px);
|
|
4046
|
-
padding: 1.25em 2em 1.25em;
|
|
4047
|
-
}
|
|
4048
|
-
|
|
4049
|
-
h1,h2,h3,h4,h5,h6{
|
|
4050
|
-
color: inherit;
|
|
3703
|
+
.lpx-content-container .lpx-content{min-height:calc(100vh - 34px);padding:1.25em 2em 1.25em}h1,h2,h3,h4,h5,h6{color:inherit}.lpx-settings .lpx-context-menu{overflow:auto}
|
|
3704
|
+
a {
|
|
3705
|
+
text-decoration: unset;
|
|
4051
3706
|
}
|
|
4052
|
-
.lpx-settings .lpx-context-menu {
|
|
4053
|
-
overflow: auto;
|
|
4054
|
-
}
|
|
4055
|
-
|
|
4056
3707
|
`;
|
|
4057
3708
|
|
|
4058
3709
|
let isAppentStyle = false;
|
|
@@ -4147,16 +3798,15 @@ const routes = [
|
|
|
4147
3798
|
},
|
|
4148
3799
|
];
|
|
4149
3800
|
class CmsRoutingModule {
|
|
4150
|
-
static
|
|
4151
|
-
static
|
|
4152
|
-
static
|
|
3801
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: CmsRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3802
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.0.9", ngImport: i0, type: CmsRoutingModule, imports: [i3$1.RouterModule], exports: [RouterModule] }); }
|
|
3803
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: CmsRoutingModule, imports: [RouterModule.forChild(routes), RouterModule] }); }
|
|
4153
3804
|
}
|
|
4154
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3805
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: CmsRoutingModule, decorators: [{
|
|
4155
3806
|
type: NgModule,
|
|
4156
3807
|
args: [{
|
|
4157
3808
|
imports: [RouterModule.forChild(routes)],
|
|
4158
3809
|
exports: [RouterModule],
|
|
4159
|
-
providers: []
|
|
4160
3810
|
}]
|
|
4161
3811
|
}] });
|
|
4162
3812
|
|
|
@@ -4175,8 +3825,8 @@ class CmsModule {
|
|
|
4175
3825
|
static forLazy(options = {}) {
|
|
4176
3826
|
return new LazyModuleFactory(CmsModule.forChild(options));
|
|
4177
3827
|
}
|
|
4178
|
-
static
|
|
4179
|
-
static
|
|
3828
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: CmsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3829
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.0.9", ngImport: i0, type: CmsModule, declarations: [EntriesComponent,
|
|
4180
3830
|
FieldsComponent,
|
|
4181
3831
|
SitesComponent,
|
|
4182
3832
|
SectionsComponent,
|
|
@@ -4196,46 +3846,31 @@ class CmsModule {
|
|
|
4196
3846
|
EntryControlComponent], imports: [CoreModule,
|
|
4197
3847
|
ThemeSharedModule,
|
|
4198
3848
|
CmsRoutingModule,
|
|
4199
|
-
NgbDropdownModule,
|
|
4200
3849
|
FormsModule,
|
|
4201
|
-
ReactiveFormsModule,
|
|
4202
|
-
NgxValidateCoreModule,
|
|
4203
3850
|
NgbNavModule,
|
|
4204
3851
|
NgbAccordionModule,
|
|
4205
|
-
|
|
3852
|
+
NgbDropdownModule,
|
|
4206
3853
|
PageModule,
|
|
4207
|
-
|
|
4208
|
-
NzSelectModule,
|
|
4209
|
-
NzTableModule,
|
|
4210
|
-
ScrollingModule, i8.DynamicFormModule], exports: [TableConfigComponent,
|
|
3854
|
+
NzSelectModule, i8.DynamicFormModule], exports: [TableConfigComponent,
|
|
4211
3855
|
TableControlComponent,
|
|
4212
3856
|
MatrixConfigComponent,
|
|
4213
3857
|
MatrixControlComponent,
|
|
4214
3858
|
EntryConfigComponent,
|
|
4215
|
-
EntryControlComponent] });
|
|
4216
|
-
static
|
|
4217
|
-
{ provide: NgbDateAdapter, useClass: DateAdapter },
|
|
4218
|
-
{ provide: RouteReuseStrategy, useClass: SimpleReuseStrategy },
|
|
4219
|
-
], imports: [CoreModule,
|
|
3859
|
+
EntryControlComponent] }); }
|
|
3860
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: CmsModule, imports: [CoreModule,
|
|
4220
3861
|
ThemeSharedModule,
|
|
4221
3862
|
CmsRoutingModule,
|
|
4222
|
-
NgbDropdownModule,
|
|
4223
3863
|
FormsModule,
|
|
4224
|
-
ReactiveFormsModule,
|
|
4225
|
-
NgxValidateCoreModule,
|
|
4226
3864
|
NgbNavModule,
|
|
4227
3865
|
NgbAccordionModule,
|
|
4228
|
-
|
|
3866
|
+
NgbDropdownModule,
|
|
4229
3867
|
PageModule,
|
|
4230
|
-
CommercialUiConfigModule,
|
|
4231
3868
|
NzSelectModule,
|
|
4232
|
-
NzTableModule,
|
|
4233
|
-
ScrollingModule,
|
|
4234
3869
|
DynamicFormModule.forRoot({
|
|
4235
|
-
cmsFieldControlGroup: FieldControlGroup
|
|
4236
|
-
})] });
|
|
3870
|
+
cmsFieldControlGroup: [...FieldControlGroup, ...fielFieldControlGroup]
|
|
3871
|
+
})] }); }
|
|
4237
3872
|
}
|
|
4238
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3873
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: CmsModule, decorators: [{
|
|
4239
3874
|
type: NgModule,
|
|
4240
3875
|
args: [{
|
|
4241
3876
|
declarations: [
|
|
@@ -4262,20 +3897,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
4262
3897
|
CoreModule,
|
|
4263
3898
|
ThemeSharedModule,
|
|
4264
3899
|
CmsRoutingModule,
|
|
4265
|
-
NgbDropdownModule,
|
|
4266
3900
|
FormsModule,
|
|
4267
|
-
ReactiveFormsModule,
|
|
4268
|
-
NgxValidateCoreModule,
|
|
4269
3901
|
NgbNavModule,
|
|
4270
3902
|
NgbAccordionModule,
|
|
4271
|
-
|
|
3903
|
+
NgbDropdownModule,
|
|
4272
3904
|
PageModule,
|
|
4273
|
-
CommercialUiConfigModule,
|
|
4274
3905
|
NzSelectModule,
|
|
4275
|
-
NzTableModule,
|
|
4276
|
-
ScrollingModule,
|
|
4277
3906
|
DynamicFormModule.forRoot({
|
|
4278
|
-
cmsFieldControlGroup: FieldControlGroup
|
|
3907
|
+
cmsFieldControlGroup: [...FieldControlGroup, ...fielFieldControlGroup]
|
|
4279
3908
|
}),
|
|
4280
3909
|
],
|
|
4281
3910
|
exports: [
|
|
@@ -4286,224 +3915,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
4286
3915
|
EntryConfigComponent,
|
|
4287
3916
|
EntryControlComponent,
|
|
4288
3917
|
],
|
|
4289
|
-
providers: [
|
|
4290
|
-
{ provide: NgbDateAdapter, useClass: DateAdapter },
|
|
4291
|
-
{ provide: RouteReuseStrategy, useClass: SimpleReuseStrategy },
|
|
4292
|
-
],
|
|
3918
|
+
providers: [],
|
|
4293
3919
|
}]
|
|
4294
3920
|
}] });
|
|
4295
3921
|
|
|
4296
|
-
var index$l = /*#__PURE__*/Object.freeze({
|
|
4297
|
-
__proto__: null,
|
|
4298
|
-
DynamicForms: index$o,
|
|
4299
|
-
Entries: index$r,
|
|
4300
|
-
Fields: index$n,
|
|
4301
|
-
Sections: index$p,
|
|
4302
|
-
Sites: index$q
|
|
4303
|
-
});
|
|
4304
|
-
|
|
4305
|
-
var index$k = /*#__PURE__*/Object.freeze({
|
|
4306
|
-
__proto__: null
|
|
4307
|
-
});
|
|
4308
|
-
|
|
4309
|
-
var index$j = /*#__PURE__*/Object.freeze({
|
|
4310
|
-
__proto__: null,
|
|
4311
|
-
Data: index$k
|
|
4312
|
-
});
|
|
4313
|
-
|
|
4314
|
-
let FileDescriptorService$1 = class FileDescriptorService {
|
|
4315
|
-
restService;
|
|
4316
|
-
apiName = 'FileExplorer';
|
|
4317
|
-
create = (input, config) => this.restService.request({
|
|
4318
|
-
method: 'POST',
|
|
4319
|
-
url: '/api/file-explorer/directories',
|
|
4320
|
-
body: input,
|
|
4321
|
-
}, { apiName: this.apiName, ...config });
|
|
4322
|
-
delete = (id, config) => this.restService.request({
|
|
4323
|
-
method: 'DELETE',
|
|
4324
|
-
url: `/api/file-explorer/directories/${id}`,
|
|
4325
|
-
}, { apiName: this.apiName, ...config });
|
|
4326
|
-
get = (id, config) => this.restService.request({
|
|
4327
|
-
method: 'GET',
|
|
4328
|
-
url: `/api/file-explorer/directories/${id}`,
|
|
4329
|
-
}, { apiName: this.apiName, ...config });
|
|
4330
|
-
getList = (input, config) => this.restService.request({
|
|
4331
|
-
method: 'GET',
|
|
4332
|
-
url: '/api/file-explorer/directories',
|
|
4333
|
-
params: { containerName: input.containerName },
|
|
4334
|
-
}, { apiName: this.apiName, ...config });
|
|
4335
|
-
move = (id, input, config) => this.restService.request({
|
|
4336
|
-
method: 'PUT',
|
|
4337
|
-
url: `/api/file-explorer/directories/${id}/move`,
|
|
4338
|
-
body: input,
|
|
4339
|
-
}, { apiName: this.apiName, ...config });
|
|
4340
|
-
update = (id, input, config) => this.restService.request({
|
|
4341
|
-
method: 'PUT',
|
|
4342
|
-
url: `/api/file-explorer/directories/${id}`,
|
|
4343
|
-
body: input,
|
|
4344
|
-
}, { apiName: this.apiName, ...config });
|
|
4345
|
-
constructor(restService) {
|
|
4346
|
-
this.restService = restService;
|
|
4347
|
-
}
|
|
4348
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FileDescriptorService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4349
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FileDescriptorService, providedIn: 'root' });
|
|
4350
|
-
};
|
|
4351
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FileDescriptorService$1, decorators: [{
|
|
4352
|
-
type: Injectable,
|
|
4353
|
-
args: [{
|
|
4354
|
-
providedIn: 'root',
|
|
4355
|
-
}]
|
|
4356
|
-
}], ctorParameters: function () { return [{ type: i1.RestService }]; } });
|
|
4357
|
-
|
|
4358
|
-
var index$i = /*#__PURE__*/Object.freeze({
|
|
4359
|
-
__proto__: null,
|
|
4360
|
-
FileDescriptorService: FileDescriptorService$1
|
|
4361
|
-
});
|
|
4362
|
-
|
|
4363
|
-
class FileDescriptorService {
|
|
4364
|
-
restService;
|
|
4365
|
-
apiName = 'FileExplorer';
|
|
4366
|
-
create = (input, config) => this.restService.request({
|
|
4367
|
-
method: 'POST',
|
|
4368
|
-
url: '/api/file-explorer/files',
|
|
4369
|
-
params: { containerName: input.containerName, cellName: input.cellName, directoryId: input.directoryId, entityId: input.entityId },
|
|
4370
|
-
body: input.file,
|
|
4371
|
-
}, { apiName: this.apiName, ...config });
|
|
4372
|
-
delete = (id, config) => this.restService.request({
|
|
4373
|
-
method: 'DELETE',
|
|
4374
|
-
url: `/api/file-explorer/files/${id}`,
|
|
4375
|
-
}, { apiName: this.apiName, ...config });
|
|
4376
|
-
download = (containerName, blobName, fileName, config) => this.restService.request({
|
|
4377
|
-
method: 'GET',
|
|
4378
|
-
url: `/api/file-explorer/files/download/${containerName}/${blobName}`,
|
|
4379
|
-
params: { fileName },
|
|
4380
|
-
}, { apiName: this.apiName, ...config });
|
|
4381
|
-
get = (id, config) => this.restService.request({
|
|
4382
|
-
method: 'GET',
|
|
4383
|
-
url: `/api/file-explorer/files/${id}`,
|
|
4384
|
-
}, { apiName: this.apiName, ...config });
|
|
4385
|
-
getFileContainerConfiguration = (containerName, config) => this.restService.request({
|
|
4386
|
-
method: 'GET',
|
|
4387
|
-
url: '/api/file-explorer/files/configuration',
|
|
4388
|
-
params: { containerName },
|
|
4389
|
-
}, { apiName: this.apiName, ...config });
|
|
4390
|
-
getList = (input, config) => this.restService.request({
|
|
4391
|
-
method: 'GET',
|
|
4392
|
-
url: '/api/file-explorer/files',
|
|
4393
|
-
params: { containerName: input.containerName, directoryId: input.directoryId, creatorId: input.creatorId, filter: input.filter, entityId: input.entityId, sorting: input.sorting, skipCount: input.skipCount, maxResultCount: input.maxResultCount },
|
|
4394
|
-
}, { apiName: this.apiName, ...config });
|
|
4395
|
-
getStream = (containerName, blobName, imageResize, config) => this.restService.request({
|
|
4396
|
-
method: 'GET',
|
|
4397
|
-
responseType: 'blob',
|
|
4398
|
-
url: `/api/file-explorer/files/${containerName}/${blobName}`,
|
|
4399
|
-
params: { width: imageResize.width, height: imageResize.height },
|
|
4400
|
-
}, { apiName: this.apiName, ...config });
|
|
4401
|
-
update = (id, input, config) => this.restService.request({
|
|
4402
|
-
method: 'PUT',
|
|
4403
|
-
url: `/api/file-explorer/files/${id}`,
|
|
4404
|
-
body: input,
|
|
4405
|
-
}, { apiName: this.apiName, ...config });
|
|
4406
|
-
constructor(restService) {
|
|
4407
|
-
this.restService = restService;
|
|
4408
|
-
}
|
|
4409
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FileDescriptorService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4410
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FileDescriptorService, providedIn: 'root' });
|
|
4411
|
-
}
|
|
4412
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FileDescriptorService, decorators: [{
|
|
4413
|
-
type: Injectable,
|
|
4414
|
-
args: [{
|
|
4415
|
-
providedIn: 'root',
|
|
4416
|
-
}]
|
|
4417
|
-
}], ctorParameters: function () { return [{ type: i1.RestService }]; } });
|
|
4418
|
-
|
|
4419
|
-
var index$h = /*#__PURE__*/Object.freeze({
|
|
4420
|
-
__proto__: null,
|
|
4421
|
-
FileDescriptorService: FileDescriptorService
|
|
4422
|
-
});
|
|
4423
|
-
|
|
4424
|
-
var index$g = /*#__PURE__*/Object.freeze({
|
|
4425
|
-
__proto__: null,
|
|
4426
|
-
Directories: index$i,
|
|
4427
|
-
Files: index$h
|
|
4428
|
-
});
|
|
4429
|
-
|
|
4430
|
-
var index$f = /*#__PURE__*/Object.freeze({
|
|
4431
|
-
__proto__: null,
|
|
4432
|
-
Abp: index$j,
|
|
4433
|
-
FileExplorer: index$g
|
|
4434
|
-
});
|
|
4435
|
-
|
|
4436
|
-
var index$e = /*#__PURE__*/Object.freeze({
|
|
4437
|
-
__proto__: null
|
|
4438
|
-
});
|
|
4439
|
-
|
|
4440
|
-
var index$d = /*#__PURE__*/Object.freeze({
|
|
4441
|
-
__proto__: null
|
|
4442
|
-
});
|
|
4443
|
-
|
|
4444
|
-
var index$c = /*#__PURE__*/Object.freeze({
|
|
4445
|
-
__proto__: null,
|
|
4446
|
-
Mvc: index$d
|
|
4447
|
-
});
|
|
4448
|
-
|
|
4449
|
-
var index$b = /*#__PURE__*/Object.freeze({
|
|
4450
|
-
__proto__: null
|
|
4451
|
-
});
|
|
4452
|
-
|
|
4453
|
-
var index$a = /*#__PURE__*/Object.freeze({
|
|
4454
|
-
__proto__: null,
|
|
4455
|
-
Primitives: index$b
|
|
4456
|
-
});
|
|
4457
|
-
|
|
4458
|
-
var index$9 = /*#__PURE__*/Object.freeze({
|
|
4459
|
-
__proto__: null
|
|
4460
|
-
});
|
|
4461
|
-
|
|
4462
|
-
var index$8 = /*#__PURE__*/Object.freeze({
|
|
4463
|
-
__proto__: null,
|
|
4464
|
-
Headers: index$9
|
|
4465
|
-
});
|
|
4466
|
-
|
|
4467
|
-
var index$7 = /*#__PURE__*/Object.freeze({
|
|
4468
|
-
__proto__: null,
|
|
4469
|
-
Http: index$8
|
|
4470
|
-
});
|
|
4471
|
-
|
|
4472
|
-
var index$6 = /*#__PURE__*/Object.freeze({
|
|
4473
|
-
__proto__: null,
|
|
4474
|
-
AspNetCore: index$c,
|
|
4475
|
-
Extensions: index$a,
|
|
4476
|
-
Net: index$7
|
|
4477
|
-
});
|
|
4478
|
-
|
|
4479
|
-
var index$5 = /*#__PURE__*/Object.freeze({
|
|
4480
|
-
__proto__: null
|
|
4481
|
-
});
|
|
4482
|
-
|
|
4483
|
-
var index$4 = /*#__PURE__*/Object.freeze({
|
|
4484
|
-
__proto__: null
|
|
4485
|
-
});
|
|
4486
|
-
|
|
4487
|
-
var index$3 = /*#__PURE__*/Object.freeze({
|
|
4488
|
-
__proto__: null,
|
|
4489
|
-
Content: index$4
|
|
4490
|
-
});
|
|
4491
|
-
|
|
4492
|
-
var index$2 = /*#__PURE__*/Object.freeze({
|
|
4493
|
-
__proto__: null
|
|
4494
|
-
});
|
|
4495
|
-
|
|
4496
|
-
var index$1 = /*#__PURE__*/Object.freeze({
|
|
4497
|
-
__proto__: null,
|
|
4498
|
-
Users: index$2
|
|
4499
|
-
});
|
|
4500
|
-
|
|
4501
|
-
var index = /*#__PURE__*/Object.freeze({
|
|
4502
|
-
__proto__: null,
|
|
4503
|
-
Abp: index$3,
|
|
4504
|
-
CmsKit: index$1
|
|
4505
|
-
});
|
|
4506
|
-
|
|
4507
3922
|
/*
|
|
4508
3923
|
* Public API Surface of cms
|
|
4509
3924
|
*/
|
|
@@ -4512,5 +3927,5 @@ var index = /*#__PURE__*/Object.freeze({
|
|
|
4512
3927
|
* Generated bundle index. Do not edit.
|
|
4513
3928
|
*/
|
|
4514
3929
|
|
|
4515
|
-
export {
|
|
3930
|
+
export { CmsModule, EntryConfig, EntryConfigComponent, EntryControlComponent, FieldControlGroup, MatrixConfig, MatrixConfigComponent, MatrixControlComponent, MatrixItemConfig, SimpleReuseStrategy, TableConfig, TableConfigComponent, TableControlComponent, TableFormControl, matrixFieldInputBase };
|
|
4516
3931
|
//# sourceMappingURL=dignite-ng-expand.cms.mjs.map
|