cat-qw-lib 1.0.0 → 1.0.2
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/fesm2022/cat-qw-lib.mjs +6152 -0
- package/fesm2022/cat-qw-lib.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/admin/action-admin/action-admin.module.d.ts +15 -0
- package/lib/admin/action-admin/components/admin-action-form/admin-action-form.component.d.ts +31 -0
- package/lib/admin/action-admin/components/admin-action-list/admin-action-list.component.d.ts +18 -0
- package/lib/admin/action-admin/models/admin-action.model.d.ts +12 -0
- package/lib/admin/action-admin/state/admin-action.service.d.ts +16 -0
- package/lib/admin/action-admin/state/admin-action.store.d.ts +8 -0
- package/lib/admin/api-admin/api-admin.module.d.ts +18 -0
- package/lib/admin/api-admin/components/api-admin-form/api-admin-form.component.d.ts +36 -0
- package/lib/admin/api-admin/components/api-admin-list/api-admin-list.component.d.ts +18 -0
- package/lib/admin/api-admin/models/api-config.model.d.ts +13 -0
- package/lib/admin/api-admin/state/api-admin.service.d.ts +19 -0
- package/lib/admin/api-admin/state/api-admin.store.d.ts +8 -0
- package/lib/admin/dd-admin/components/dd-admin-form/dd-admin-form.component.d.ts +40 -0
- package/lib/admin/dd-admin/components/dd-admin-item-form/dd-admin-item-form.component.d.ts +35 -0
- package/lib/admin/dd-admin/components/dd-admin-list/dd-admin-list.component.d.ts +16 -0
- package/lib/admin/dd-admin/dd-admin.module.d.ts +20 -0
- package/lib/admin/dd-admin/models/api-property.model.d.ts +6 -0
- package/lib/admin/dd-admin/models/dd-attribute-sidebar-view.model.d.ts +4 -0
- package/lib/admin/dd-admin/models/dictionary.model.d.ts +14 -0
- package/lib/admin/dd-admin/state/dictionary.query.d.ts +20 -0
- package/lib/admin/dd-admin/state/dictionary.service.d.ts +17 -0
- package/lib/admin/dd-admin/state/dictionary.store.d.ts +14 -0
- package/lib/admin/queue-admin/components/queue-admin-form/queue-admin-form.component.d.ts +42 -0
- package/lib/admin/queue-admin/components/queue-admin-list/queue-admin-list.component.d.ts +18 -0
- package/lib/admin/queue-admin/components/queue-application-list/queue-application-list.component.d.ts +28 -0
- package/lib/admin/queue-admin/models/queue.model.d.ts +14 -0
- package/lib/admin/queue-admin/queue-admin-routing.module.d.ts +7 -0
- package/lib/admin/queue-admin/queue-admin.module.d.ts +16 -0
- package/lib/admin/queue-admin/state/queue.query.d.ts +10 -0
- package/lib/admin/queue-admin/state/queue.service.d.ts +16 -0
- package/{src/lib/admin/queue-admin/state/queue.state.ts → lib/admin/queue-admin/state/queue.state.d.ts} +6 -14
- package/lib/admin/queue-admin/state/queue.store.d.ts +8 -0
- package/lib/admin/template-admin/components/template-admin-form/template-admin-form.component.d.ts +34 -0
- package/lib/admin/template-admin/components/template-admin-list/template-admin-list.component.d.ts +18 -0
- package/lib/admin/template-admin/models/template.model.d.ts +11 -0
- package/lib/admin/template-admin/state/template-admin.query.d.ts +13 -0
- package/lib/admin/template-admin/state/template-admin.service.d.ts +17 -0
- package/lib/admin/template-admin/state/template-admin.store.d.ts +11 -0
- package/lib/admin/template-admin/template-admin.module.d.ts +17 -0
- package/lib/admin/widget-admin/components/widget-admin-form/widget-admin-form.component.d.ts +43 -0
- package/lib/admin/widget-admin/components/widget-admin-list/widget-admin-list.component.d.ts +17 -0
- package/lib/admin/widget-admin/models/widget.model.d.ts +31 -0
- package/lib/admin/widget-admin/state/widget-admin.query.d.ts +13 -0
- package/lib/admin/widget-admin/state/widget-admin.service.d.ts +23 -0
- package/lib/admin/widget-admin/state/widget-admin.store.d.ts +11 -0
- package/lib/admin/widget-admin/widget-admin.module.d.ts +20 -0
- package/lib/queue/components/queue-container/queue-container.component.d.ts +97 -0
- package/lib/queue/components/queue-item/queue-item.component.d.ts +25 -0
- package/lib/queue/components/queue-list/queue-list.component.d.ts +9 -0
- package/lib/queue/components/queue-record-table/queue-record-table.component.d.ts +80 -0
- package/lib/queue/components/queue-search/queue-search.component.d.ts +40 -0
- package/lib/queue/models/queue.model.d.ts +10 -0
- package/lib/queue/queue-routing.module.d.ts +7 -0
- package/lib/queue/queue.module.d.ts +23 -0
- package/lib/queue/services/application-assignment.service.d.ts +18 -0
- package/lib/queue/services/queue-record-table-builder.service.d.ts +10 -0
- package/lib/queue/state/queue.service.d.ts +45 -0
- package/lib/queue/state/queue.state.d.ts +4 -0
- package/lib/queue/state/queue.store.d.ts +8 -0
- package/lib/shared/_base/base-container/base-container.component.d.ts +10 -0
- package/lib/shared/_base/base-control/base-control.component.d.ts +34 -0
- package/lib/shared/_base/base-form/base-form.component.d.ts +48 -0
- package/lib/shared/_base/base-list/base-list.component.d.ts +26 -0
- package/lib/shared/components/form-container/form-container.component.d.ts +28 -0
- package/lib/shared/components/list/block-list.component.d.ts +16 -0
- package/lib/shared/components/queue-search-customer/queue-search-customer.component.d.ts +10 -0
- package/lib/shared/components/sidebar/sidebar.component.d.ts +13 -0
- package/lib/shared/constant/CSS.d.ts +11 -0
- package/lib/shared/constant/DATASOURCES.d.ts +18 -0
- package/lib/shared/constant/ERROR.d.ts +17 -0
- package/lib/shared/constant/HEADERS.d.ts +4 -0
- package/lib/shared/constant/LIST-CONFIG.d.ts +7 -0
- package/lib/shared/constant/LOOKUPS.d.ts +3 -0
- package/lib/shared/constant/MESSAGES.d.ts +7 -0
- package/lib/shared/constant/PERMISSION.d.ts +16 -0
- package/lib/shared/constant/ROUTES.d.ts +16 -0
- package/lib/shared/constant/SHARED.d.ts +261 -0
- package/lib/shared/constant/URLS.d.ts +6 -0
- package/lib/shared/controls/button/button.component.d.ts +6 -0
- package/lib/shared/controls/check-box/check-box.component.d.ts +9 -0
- package/lib/shared/controls/date/date.component.d.ts +14 -0
- package/lib/shared/controls/dropdown/dropdown.component.d.ts +24 -0
- package/lib/shared/controls/file-upload/file-upload.component.d.ts +7 -0
- package/lib/shared/controls/password/password.component.d.ts +11 -0
- package/lib/shared/controls/text-area/text-area.component.d.ts +8 -0
- package/lib/shared/controls/text-box/text-box.component.d.ts +7 -0
- package/lib/shared/controls/username/username.component.d.ts +6 -0
- package/lib/shared/directives/permission.directive.d.ts +14 -0
- package/{src/lib/shared/index.ts → lib/shared/index.d.ts} +34 -39
- package/lib/shared/models/attribute.model.d.ts +43 -0
- package/lib/shared/models/base.model.d.ts +4 -0
- package/{src/lib/shared/models/custom-widget.model.ts → lib/shared/models/custom-widget.model.d.ts} +13 -14
- package/lib/shared/models/list.model.d.ts +11 -0
- package/lib/shared/models/meta-data.model.d.ts +6 -0
- package/lib/shared/pipe/capitalize-words.pipe.d.ts +7 -0
- package/lib/shared/services/app-config.service.d.ts +19 -0
- package/lib/shared/services/auth/auth.guard.d.ts +12 -0
- package/lib/shared/services/custom-widget.service.d.ts +10 -0
- package/lib/shared/services/data-transformer.service.d.ts +8 -0
- package/lib/shared/services/date-parser.service.d.ts +7 -0
- package/lib/shared/services/form-state.service.d.ts +17 -0
- package/lib/shared/services/list.service.d.ts +13 -0
- package/lib/shared/services/session.service.d.ts +14 -0
- package/lib/shared/services/style-builder.service.d.ts +14 -0
- package/lib/shared/services/table.builder.d.ts +14 -0
- package/lib/shared/services/validator.service.d.ts +7 -0
- package/lib/shared/shared.module.d.ts +36 -0
- package/lib/shared/state/base.query.d.ts +29 -0
- package/lib/shared/state/base.service.d.ts +29 -0
- package/{src/lib/shared/state/base.state.ts → lib/shared/state/base.state.d.ts} +10 -10
- package/lib/shared/state/base.store.d.ts +36 -0
- package/lib/shared/table-primary/components/table-primary.component.d.ts +60 -0
- package/lib/shared/table-primary/models/table-primary-header.model.d.ts +6 -0
- package/lib/shared/table-primary/models/table-primary.model.d.ts +10 -0
- package/lib/shared/table-secondary/components/table-secondary.component.d.ts +132 -0
- package/lib/shared/table-secondary/models/table-secondary-header.model.d.ts +6 -0
- package/lib/shared/table-secondary/models/table-secondary.model.d.ts +17 -0
- package/lib/widget/components/custom-widget/custom-widget.component.d.ts +13 -0
- package/lib/widget/components/widget-body/widget-body.component.d.ts +17 -0
- package/lib/widget/components/widget-container/widget-container.component.d.ts +26 -0
- package/lib/widget/components/widget-footer/widget-footer.component.d.ts +16 -0
- package/lib/widget/components/widget-header/widget-header.component.d.ts +22 -0
- package/lib/widget/components/widget-item/widget-item.component.d.ts +56 -0
- package/lib/widget/components/widget-main/widget-main.component.d.ts +22 -0
- package/lib/widget/components/widget-menu/widget-menu.component.d.ts +36 -0
- package/lib/widget/components/widget-menu-body/widget-menu-body.component.d.ts +7 -0
- package/lib/widget/components/widget-menu-container/widget-menu-container.component.d.ts +48 -0
- package/lib/widget/components/widget-menu-header/widget-menu-header.component.d.ts +9 -0
- package/lib/widget/components/widget-menu-item/widget-menu-item.component.d.ts +23 -0
- package/lib/widget/components/widget-row-tile/widget-row-tile.component.d.ts +24 -0
- package/{src/lib/widget/models/custom-widget.model.ts → lib/widget/models/custom-widget.model.d.ts} +13 -14
- package/lib/widget/models/progress-chart.model.d.ts +9 -0
- package/lib/widget/models/widget.model.d.ts +47 -0
- package/lib/widget/state/widget.query.d.ts +22 -0
- package/lib/widget/state/widget.service.d.ts +20 -0
- package/lib/widget/state/widget.store.d.ts +25 -0
- package/lib/widget/widget.module.d.ts +27 -0
- package/package.json +25 -16
- package/{src/public-api.ts → public-api.d.ts} +26 -36
- package/ng-package.json +0 -10
- package/src/lib/admin/action-admin/action-admin.module.ts +0 -25
- package/src/lib/admin/action-admin/components/admin-action-form/admin-action-form.component.html +0 -113
- package/src/lib/admin/action-admin/components/admin-action-form/admin-action-form.component.scss +0 -4
- package/src/lib/admin/action-admin/components/admin-action-form/admin-action-form.component.spec.ts +0 -119
- package/src/lib/admin/action-admin/components/admin-action-form/admin-action-form.component.ts +0 -79
- package/src/lib/admin/action-admin/components/admin-action-list/admin-action-list.component.html +0 -5
- package/src/lib/admin/action-admin/components/admin-action-list/admin-action-list.component.scss +0 -0
- package/src/lib/admin/action-admin/components/admin-action-list/admin-action-list.component.spec.ts +0 -36
- package/src/lib/admin/action-admin/components/admin-action-list/admin-action-list.component.ts +0 -33
- package/src/lib/admin/action-admin/models/admin-action.model.ts +0 -14
- package/src/lib/admin/action-admin/state/admin-action.query.ts +0 -11
- package/src/lib/admin/action-admin/state/admin-action.service.spec.ts +0 -66
- package/src/lib/admin/action-admin/state/admin-action.service.ts +0 -29
- package/src/lib/admin/action-admin/state/admin-action.state.ts +0 -14
- package/src/lib/admin/action-admin/state/admin-action.store.ts +0 -14
- package/src/lib/admin/admin.module.ts +0 -22
- package/src/lib/admin/api-admin/api-admin.module.ts +0 -37
- package/src/lib/admin/api-admin/components/api-admin-form/api-admin-form.component.html +0 -157
- package/src/lib/admin/api-admin/components/api-admin-form/api-admin-form.component.scss +0 -12
- package/src/lib/admin/api-admin/components/api-admin-form/api-admin-form.component.spec.ts +0 -134
- package/src/lib/admin/api-admin/components/api-admin-form/api-admin-form.component.ts +0 -110
- package/src/lib/admin/api-admin/components/api-admin-list/api-admin-list.component.html +0 -5
- package/src/lib/admin/api-admin/components/api-admin-list/api-admin-list.component.scss +0 -0
- package/src/lib/admin/api-admin/components/api-admin-list/api-admin-list.component.spec.ts +0 -38
- package/src/lib/admin/api-admin/components/api-admin-list/api-admin-list.component.ts +0 -28
- package/src/lib/admin/api-admin/models/api-config.model.ts +0 -14
- package/src/lib/admin/api-admin/state/api-admin.query.ts +0 -16
- package/src/lib/admin/api-admin/state/api-admin.service.ts +0 -34
- package/src/lib/admin/api-admin/state/api-admin.state.ts +0 -14
- package/src/lib/admin/api-admin/state/api-admin.store.ts +0 -13
- package/src/lib/admin/dd-admin/components/dd-admin-form/dd-admin-form.component.html +0 -115
- package/src/lib/admin/dd-admin/components/dd-admin-form/dd-admin-form.component.scss +0 -4
- package/src/lib/admin/dd-admin/components/dd-admin-form/dd-admin-form.component.spec.ts +0 -100
- package/src/lib/admin/dd-admin/components/dd-admin-form/dd-admin-form.component.ts +0 -105
- package/src/lib/admin/dd-admin/components/dd-admin-item-form/dd-admin-item-form.component.html +0 -64
- package/src/lib/admin/dd-admin/components/dd-admin-item-form/dd-admin-item-form.component.scss +0 -0
- package/src/lib/admin/dd-admin/components/dd-admin-item-form/dd-admin-item-form.component.spec.ts +0 -108
- package/src/lib/admin/dd-admin/components/dd-admin-item-form/dd-admin-item-form.component.ts +0 -96
- package/src/lib/admin/dd-admin/components/dd-admin-list/dd-admin-list.component.html +0 -5
- package/src/lib/admin/dd-admin/components/dd-admin-list/dd-admin-list.component.scss +0 -0
- package/src/lib/admin/dd-admin/components/dd-admin-list/dd-admin-list.component.spec.ts +0 -34
- package/src/lib/admin/dd-admin/components/dd-admin-list/dd-admin-list.component.ts +0 -27
- package/src/lib/admin/dd-admin/dd-admin.module.ts +0 -34
- package/src/lib/admin/dd-admin/models/api-property.model.ts +0 -7
- package/src/lib/admin/dd-admin/models/dd-attribute-sidebar-view.model.ts +0 -6
- package/src/lib/admin/dd-admin/models/dictionary.model.ts +0 -16
- package/src/lib/admin/dd-admin/state/dictionary.query.ts +0 -30
- package/src/lib/admin/dd-admin/state/dictionary.service.ts +0 -37
- package/src/lib/admin/dd-admin/state/dictionary.state.ts +0 -30
- package/src/lib/admin/dd-admin/state/dictionary.store.ts +0 -22
- package/src/lib/admin/queue-admin/components/queue-admin-form/queue-admin-form.component.html +0 -115
- package/src/lib/admin/queue-admin/components/queue-admin-form/queue-admin-form.component.scss +0 -71
- package/src/lib/admin/queue-admin/components/queue-admin-form/queue-admin-form.component.spec.ts +0 -22
- package/src/lib/admin/queue-admin/components/queue-admin-form/queue-admin-form.component.ts +0 -185
- package/src/lib/admin/queue-admin/components/queue-admin-list/queue-admin-list.component.html +0 -24
- package/src/lib/admin/queue-admin/components/queue-admin-list/queue-admin-list.component.scss +0 -33
- package/src/lib/admin/queue-admin/components/queue-admin-list/queue-admin-list.component.spec.ts +0 -23
- package/src/lib/admin/queue-admin/components/queue-admin-list/queue-admin-list.component.ts +0 -46
- package/src/lib/admin/queue-admin/components/queue-application-list/queue-application-list.component.html +0 -69
- package/src/lib/admin/queue-admin/components/queue-application-list/queue-application-list.component.scss +0 -84
- package/src/lib/admin/queue-admin/components/queue-application-list/queue-application-list.component.spec.ts +0 -21
- package/src/lib/admin/queue-admin/components/queue-application-list/queue-application-list.component.ts +0 -93
- package/src/lib/admin/queue-admin/models/queue.model.ts +0 -15
- package/src/lib/admin/queue-admin/queue-admin-routing.module.ts +0 -17
- package/src/lib/admin/queue-admin/queue-admin.module.ts +0 -26
- package/src/lib/admin/queue-admin/state/queue.query.ts +0 -11
- package/src/lib/admin/queue-admin/state/queue.service.ts +0 -34
- package/src/lib/admin/queue-admin/state/queue.store.ts +0 -13
- package/src/lib/admin/template-admin/components/template-admin-form/template-admin-form.component.html +0 -99
- package/src/lib/admin/template-admin/components/template-admin-form/template-admin-form.component.scss +0 -3
- package/src/lib/admin/template-admin/components/template-admin-form/template-admin-form.component.spec.ts +0 -23
- package/src/lib/admin/template-admin/components/template-admin-form/template-admin-form.component.ts +0 -82
- package/src/lib/admin/template-admin/components/template-admin-list/template-admin-list.component.html +0 -41
- package/src/lib/admin/template-admin/components/template-admin-list/template-admin-list.component.scss +0 -30
- package/src/lib/admin/template-admin/components/template-admin-list/template-admin-list.component.spec.ts +0 -23
- package/src/lib/admin/template-admin/components/template-admin-list/template-admin-list.component.ts +0 -34
- package/src/lib/admin/template-admin/models/template.model.ts +0 -12
- package/src/lib/admin/template-admin/state/template-admin.query.ts +0 -17
- package/src/lib/admin/template-admin/state/template-admin.service.ts +0 -45
- package/src/lib/admin/template-admin/state/template-admin.state.ts +0 -14
- package/src/lib/admin/template-admin/state/template-admin.store.ts +0 -15
- package/src/lib/admin/template-admin/template-admin.module.ts +0 -40
- package/src/lib/admin/widget-admin/components/widget-admin-form/widget-admin-form.component.html +0 -170
- package/src/lib/admin/widget-admin/components/widget-admin-form/widget-admin-form.component.scss +0 -4
- package/src/lib/admin/widget-admin/components/widget-admin-form/widget-admin-form.component.spec.ts +0 -23
- package/src/lib/admin/widget-admin/components/widget-admin-form/widget-admin-form.component.ts +0 -139
- package/src/lib/admin/widget-admin/components/widget-admin-list/widget-admin-list.component.html +0 -5
- package/src/lib/admin/widget-admin/components/widget-admin-list/widget-admin-list.component.scss +0 -0
- package/src/lib/admin/widget-admin/components/widget-admin-list/widget-admin-list.component.spec.ts +0 -23
- package/src/lib/admin/widget-admin/components/widget-admin-list/widget-admin-list.component.ts +0 -28
- package/src/lib/admin/widget-admin/models/widget.model.ts +0 -35
- package/src/lib/admin/widget-admin/state/widget-admin.query.ts +0 -17
- package/src/lib/admin/widget-admin/state/widget-admin.service.ts +0 -72
- package/src/lib/admin/widget-admin/state/widget-admin.state.ts +0 -14
- package/src/lib/admin/widget-admin/state/widget-admin.store.ts +0 -15
- package/src/lib/admin/widget-admin/widget-admin.module.ts +0 -30
- package/src/lib/queue/ASSIGNMENT_FUNCTIONALITY.md +0 -114
- package/src/lib/queue/CHECKBOX_SELECTION_EXAMPLE.md +0 -240
- package/src/lib/queue/CONTENT_PROJECTION_GUIDE.md +0 -163
- package/src/lib/queue/components/queue-container/queue-container.component.html +0 -37
- package/src/lib/queue/components/queue-container/queue-container.component.scss +0 -7
- package/src/lib/queue/components/queue-container/queue-container.component.ts +0 -155
- package/src/lib/queue/components/queue-item/queue-item.component.html +0 -37
- package/src/lib/queue/components/queue-item/queue-item.component.scss +0 -105
- package/src/lib/queue/components/queue-item/queue-item.component.spec.ts +0 -104
- package/src/lib/queue/components/queue-item/queue-item.component.ts +0 -67
- package/src/lib/queue/components/queue-list/queue-list.component.html +0 -4
- package/src/lib/queue/components/queue-list/queue-list.component.scss +0 -0
- package/src/lib/queue/components/queue-list/queue-list.component.spec.ts +0 -46
- package/src/lib/queue/components/queue-list/queue-list.component.ts +0 -18
- package/src/lib/queue/components/queue-record-table/queue-record-table.component.html +0 -14
- package/src/lib/queue/components/queue-record-table/queue-record-table.component.scss +0 -1
- package/src/lib/queue/components/queue-record-table/queue-record-table.component.ts +0 -241
- package/src/lib/queue/components/queue-search/queue-search.component.html +0 -11
- package/src/lib/queue/components/queue-search/queue-search.component.scss +0 -36
- package/src/lib/queue/components/queue-search/queue-search.component.spec.ts +0 -121
- package/src/lib/queue/components/queue-search/queue-search.component.ts +0 -77
- package/src/lib/queue/models/queue.model.ts +0 -11
- package/src/lib/queue/queue-routing.module.ts +0 -21
- package/src/lib/queue/queue.module.ts +0 -48
- package/src/lib/queue/services/application-assignment.service.ts +0 -27
- package/src/lib/queue/services/queue-record-table-builder.service.ts +0 -66
- package/src/lib/queue/state/queue.service.ts +0 -85
- package/src/lib/queue/state/queue.state.ts +0 -13
- package/src/lib/queue/state/queue.store.ts +0 -14
- package/src/lib/shared/_base/base-container/base-container.component.html +0 -1
- package/src/lib/shared/_base/base-container/base-container.component.scss +0 -0
- package/src/lib/shared/_base/base-container/base-container.component.spec.ts +0 -21
- package/src/lib/shared/_base/base-container/base-container.component.ts +0 -19
- package/src/lib/shared/_base/base-control/base-control.component.html +0 -1
- package/src/lib/shared/_base/base-control/base-control.component.scss +0 -0
- package/src/lib/shared/_base/base-control/base-control.component.spec.ts +0 -21
- package/src/lib/shared/_base/base-control/base-control.component.ts +0 -91
- package/src/lib/shared/_base/base-form/base-form.component.html +0 -1
- package/src/lib/shared/_base/base-form/base-form.component.scss +0 -0
- package/src/lib/shared/_base/base-form/base-form.component.spec.ts +0 -133
- package/src/lib/shared/_base/base-form/base-form.component.ts +0 -203
- package/src/lib/shared/_base/base-list/base-list.component.html +0 -1
- package/src/lib/shared/_base/base-list/base-list.component.scss +0 -0
- package/src/lib/shared/_base/base-list/base-list.component.spec.ts +0 -21
- package/src/lib/shared/_base/base-list/base-list.component.ts +0 -47
- package/src/lib/shared/components/form-container/form-container.component.html +0 -54
- package/src/lib/shared/components/form-container/form-container.component.scss +0 -94
- package/src/lib/shared/components/form-container/form-container.component.spec.ts +0 -21
- package/src/lib/shared/components/form-container/form-container.component.ts +0 -75
- package/src/lib/shared/components/list/block-list.component.html +0 -44
- package/src/lib/shared/components/list/block-list.component.scss +0 -46
- package/src/lib/shared/components/list/block-list.component.spec.ts +0 -21
- package/src/lib/shared/components/list/block-list.component.ts +0 -57
- package/src/lib/shared/components/queue-search-customer/queue-search-customer.component.html +0 -24
- package/src/lib/shared/components/queue-search-customer/queue-search-customer.component.scss +0 -36
- package/src/lib/shared/components/queue-search-customer/queue-search-customer.component.spec.ts +0 -21
- package/src/lib/shared/components/queue-search-customer/queue-search-customer.component.ts +0 -25
- package/src/lib/shared/components/sidebar/sidebar.component.html +0 -13
- package/src/lib/shared/components/sidebar/sidebar.component.scss +0 -42
- package/src/lib/shared/components/sidebar/sidebar.component.spec.ts +0 -24
- package/src/lib/shared/components/sidebar/sidebar.component.ts +0 -26
- package/src/lib/shared/constant/CSS.ts +0 -9
- package/src/lib/shared/constant/DATASOURCES.ts +0 -19
- package/src/lib/shared/constant/ERROR.ts +0 -17
- package/src/lib/shared/constant/HEADERS.ts +0 -4
- package/src/lib/shared/constant/LIST-CONFIG.ts +0 -28
- package/src/lib/shared/constant/LOOKUPS.ts +0 -3
- package/src/lib/shared/constant/MESSAGES.ts +0 -7
- package/src/lib/shared/constant/PERMISSION.ts +0 -16
- package/src/lib/shared/constant/ROUTES.ts +0 -16
- package/src/lib/shared/constant/SHARED.ts +0 -420
- package/src/lib/shared/constant/URLS.ts +0 -7
- package/src/lib/shared/controls/button/button.component.html +0 -25
- package/src/lib/shared/controls/button/button.component.scss +0 -0
- package/src/lib/shared/controls/button/button.component.spec.ts +0 -21
- package/src/lib/shared/controls/button/button.component.ts +0 -15
- package/src/lib/shared/controls/check-box/check-box.component.html +0 -22
- package/src/lib/shared/controls/check-box/check-box.component.scss +0 -32
- package/src/lib/shared/controls/check-box/check-box.component.spec.ts +0 -26
- package/src/lib/shared/controls/check-box/check-box.component.ts +0 -19
- package/src/lib/shared/controls/date/date.component.html +0 -43
- package/src/lib/shared/controls/date/date.component.scss +0 -0
- package/src/lib/shared/controls/date/date.component.spec.ts +0 -21
- package/src/lib/shared/controls/date/date.component.ts +0 -44
- package/src/lib/shared/controls/dropdown/dropdown.component.html +0 -32
- package/src/lib/shared/controls/dropdown/dropdown.component.scss +0 -12
- package/src/lib/shared/controls/dropdown/dropdown.component.ts +0 -79
- package/src/lib/shared/controls/file-upload/file-upload.component.html +0 -18
- package/src/lib/shared/controls/file-upload/file-upload.component.scss +0 -0
- package/src/lib/shared/controls/file-upload/file-upload.component.spec.ts +0 -21
- package/src/lib/shared/controls/file-upload/file-upload.component.ts +0 -19
- package/src/lib/shared/controls/number-feild/number-feild.component.html +0 -39
- package/src/lib/shared/controls/number-feild/number-feild.component.scss +0 -13
- package/src/lib/shared/controls/number-feild/number-feild.component.spec.ts +0 -21
- package/src/lib/shared/controls/number-feild/number-feild.component.ts +0 -35
- package/src/lib/shared/controls/password/password.component.html +0 -25
- package/src/lib/shared/controls/password/password.component.scss +0 -0
- package/src/lib/shared/controls/password/password.component.spec.ts +0 -28
- package/src/lib/shared/controls/password/password.component.ts +0 -26
- package/src/lib/shared/controls/text-area/text-area.component.html +0 -38
- package/src/lib/shared/controls/text-area/text-area.component.scss +0 -22
- package/src/lib/shared/controls/text-area/text-area.component.spec.ts +0 -23
- package/src/lib/shared/controls/text-area/text-area.component.ts +0 -25
- package/src/lib/shared/controls/text-box/text-box.component.html +0 -39
- package/src/lib/shared/controls/text-box/text-box.component.scss +0 -25
- package/src/lib/shared/controls/text-box/text-box.component.spec.ts +0 -30
- package/src/lib/shared/controls/text-box/text-box.component.ts +0 -26
- package/src/lib/shared/controls/username/username.component.html +0 -20
- package/src/lib/shared/controls/username/username.component.scss +0 -0
- package/src/lib/shared/controls/username/username.component.spec.ts +0 -29
- package/src/lib/shared/controls/username/username.component.ts +0 -17
- package/src/lib/shared/directives/permission.directive.spec.ts +0 -60
- package/src/lib/shared/directives/permission.directive.ts +0 -39
- package/src/lib/shared/models/attribute.model.ts +0 -44
- package/src/lib/shared/models/base.model.ts +0 -4
- package/src/lib/shared/models/list.model.ts +0 -27
- package/src/lib/shared/models/message.model.ts +0 -4
- package/src/lib/shared/models/meta-data.model.ts +0 -6
- package/src/lib/shared/pipe/capitalize-words.pipe.spec.ts +0 -8
- package/src/lib/shared/pipe/capitalize-words.pipe.ts +0 -17
- package/src/lib/shared/services/app-config.service.spec.ts +0 -16
- package/src/lib/shared/services/app-config.service.ts +0 -56
- package/src/lib/shared/services/auth/auth.guard.spec.ts +0 -47
- package/src/lib/shared/services/auth/auth.guard.ts +0 -25
- package/src/lib/shared/services/custom-widget.service.ts +0 -29
- package/src/lib/shared/services/data-transformer.service.spec.ts +0 -16
- package/src/lib/shared/services/data-transformer.service.ts +0 -41
- package/src/lib/shared/services/date-parser.service.spec.ts +0 -16
- package/src/lib/shared/services/date-parser.service.ts +0 -54
- package/src/lib/shared/services/form-state.service.spec.ts +0 -16
- package/src/lib/shared/services/form-state.service.ts +0 -50
- package/src/lib/shared/services/list.service.spec.ts +0 -16
- package/src/lib/shared/services/list.service.ts +0 -54
- package/src/lib/shared/services/session.service.spec.ts +0 -16
- package/src/lib/shared/services/session.service.ts +0 -44
- package/src/lib/shared/services/style-builder.service.spec.ts +0 -16
- package/src/lib/shared/services/style-builder.service.ts +0 -61
- package/src/lib/shared/services/table.builder.ts +0 -43
- package/src/lib/shared/services/validator.service.spec.ts +0 -16
- package/src/lib/shared/services/validator.service.ts +0 -13
- package/src/lib/shared/shared.module.ts +0 -68
- package/src/lib/shared/state/base.query.ts +0 -73
- package/src/lib/shared/state/base.service.ts +0 -104
- package/src/lib/shared/state/base.store.ts +0 -89
- package/src/lib/shared/table-primary/components/table-primary.component.html +0 -99
- package/src/lib/shared/table-primary/components/table-primary.component.scss +0 -226
- package/src/lib/shared/table-primary/components/table-primary.component.spec.ts +0 -21
- package/src/lib/shared/table-primary/components/table-primary.component.ts +0 -191
- package/src/lib/shared/table-primary/models/table-primary-header.model.ts +0 -7
- package/src/lib/shared/table-primary/models/table-primary.model.ts +0 -13
- package/src/lib/shared/table-secondary/components/table-secondary.component.html +0 -162
- package/src/lib/shared/table-secondary/components/table-secondary.component.scss +0 -406
- package/src/lib/shared/table-secondary/components/table-secondary.component.spec.ts +0 -95
- package/src/lib/shared/table-secondary/components/table-secondary.component.ts +0 -235
- package/src/lib/shared/table-secondary/index.ts +0 -3
- package/src/lib/shared/table-secondary/models/table-secondary-form.model.ts +0 -12
- package/src/lib/shared/table-secondary/models/table-secondary-header.model.ts +0 -7
- package/src/lib/shared/table-secondary/models/table-secondary.model.ts +0 -20
- package/src/lib/widget/components/custom-widget/custom-widget.component.html +0 -71
- package/src/lib/widget/components/custom-widget/custom-widget.component.scss +0 -43
- package/src/lib/widget/components/custom-widget/custom-widget.component.spec.ts +0 -23
- package/src/lib/widget/components/custom-widget/custom-widget.component.ts +0 -27
- package/src/lib/widget/components/widget-body/widget-body.component.html +0 -14
- package/src/lib/widget/components/widget-body/widget-body.component.scss +0 -16
- package/src/lib/widget/components/widget-body/widget-body.component.spec.ts +0 -23
- package/src/lib/widget/components/widget-body/widget-body.component.ts +0 -39
- package/src/lib/widget/components/widget-container/widget-container.component.html +0 -21
- package/src/lib/widget/components/widget-container/widget-container.component.scss +0 -86
- package/src/lib/widget/components/widget-container/widget-container.component.spec.ts +0 -56
- package/src/lib/widget/components/widget-container/widget-container.component.ts +0 -47
- package/src/lib/widget/components/widget-footer/widget-footer.component.html +0 -10
- package/src/lib/widget/components/widget-footer/widget-footer.component.scss +0 -0
- package/src/lib/widget/components/widget-footer/widget-footer.component.spec.ts +0 -23
- package/src/lib/widget/components/widget-footer/widget-footer.component.ts +0 -25
- package/src/lib/widget/components/widget-header/widget-header.component.html +0 -13
- package/src/lib/widget/components/widget-header/widget-header.component.scss +0 -25
- package/src/lib/widget/components/widget-header/widget-header.component.spec.ts +0 -108
- package/src/lib/widget/components/widget-header/widget-header.component.ts +0 -31
- package/src/lib/widget/components/widget-item/widget-item.component.html +0 -60
- package/src/lib/widget/components/widget-item/widget-item.component.scss +0 -83
- package/src/lib/widget/components/widget-item/widget-item.component.spec.ts +0 -159
- package/src/lib/widget/components/widget-item/widget-item.component.ts +0 -119
- package/src/lib/widget/components/widget-main/widget-main.component.html +0 -9
- package/src/lib/widget/components/widget-main/widget-main.component.scss +0 -0
- package/src/lib/widget/components/widget-main/widget-main.component.spec.ts +0 -60
- package/src/lib/widget/components/widget-main/widget-main.component.ts +0 -30
- package/src/lib/widget/components/widget-menu/widget-menu.component.html +0 -28
- package/src/lib/widget/components/widget-menu/widget-menu.component.scss +0 -0
- package/src/lib/widget/components/widget-menu/widget-menu.component.spec.ts +0 -251
- package/src/lib/widget/components/widget-menu/widget-menu.component.ts +0 -139
- package/src/lib/widget/components/widget-menu-body/widget-menu-body.component.html +0 -15
- package/src/lib/widget/components/widget-menu-body/widget-menu-body.component.scss +0 -11
- package/src/lib/widget/components/widget-menu-body/widget-menu-body.component.spec.ts +0 -23
- package/src/lib/widget/components/widget-menu-body/widget-menu-body.component.ts +0 -12
- package/src/lib/widget/components/widget-menu-container/widget-menu-container.component.html +0 -28
- package/src/lib/widget/components/widget-menu-container/widget-menu-container.component.scss +0 -66
- package/src/lib/widget/components/widget-menu-container/widget-menu-container.component.spec.ts +0 -23
- package/src/lib/widget/components/widget-menu-container/widget-menu-container.component.ts +0 -172
- package/src/lib/widget/components/widget-menu-header/widget-menu-header.component.html +0 -24
- package/src/lib/widget/components/widget-menu-header/widget-menu-header.component.scss +0 -19
- package/src/lib/widget/components/widget-menu-header/widget-menu-header.component.spec.ts +0 -23
- package/src/lib/widget/components/widget-menu-header/widget-menu-header.component.ts +0 -14
- package/src/lib/widget/components/widget-menu-item/widget-menu-item.component.html +0 -30
- package/src/lib/widget/components/widget-menu-item/widget-menu-item.component.scss +0 -32
- package/src/lib/widget/components/widget-menu-item/widget-menu-item.component.spec.ts +0 -23
- package/src/lib/widget/components/widget-menu-item/widget-menu-item.component.ts +0 -69
- package/src/lib/widget/components/widget-row-tile/widget-row-tile.component.html +0 -22
- package/src/lib/widget/components/widget-row-tile/widget-row-tile.component.scss +0 -0
- package/src/lib/widget/components/widget-row-tile/widget-row-tile.component.spec.ts +0 -69
- package/src/lib/widget/components/widget-row-tile/widget-row-tile.component.ts +0 -54
- package/src/lib/widget/models/progress-chart.model.ts +0 -11
- package/src/lib/widget/models/widget.model.ts +0 -51
- package/src/lib/widget/state/widget.query.ts +0 -45
- package/src/lib/widget/state/widget.service.ts +0 -46
- package/src/lib/widget/state/widget.state.ts +0 -18
- package/src/lib/widget/state/widget.store.ts +0 -59
- package/src/lib/widget/widget.module.ts +0 -39
- package/tsconfig.lib.json +0 -15
- package/tsconfig.lib.prod.json +0 -11
- package/tsconfig.spec.json +0 -15
package/index.d.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/admin-action-list/admin-action-list.component";
|
|
3
|
+
import * as i2 from "./components/admin-action-form/admin-action-form.component";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
5
|
+
import * as i4 from "@angular/forms";
|
|
6
|
+
import * as i5 from "../../shared/shared.module";
|
|
7
|
+
import * as i6 from "../../shared/table-primary/components/table-primary.component";
|
|
8
|
+
import * as i7 from "../../shared/controls/text-area/text-area.component";
|
|
9
|
+
import * as i8 from "primeng/button";
|
|
10
|
+
import * as i9 from "../../shared/controls/check-box/check-box.component";
|
|
11
|
+
export declare class ActionAdminModule {
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ActionAdminModule, never>;
|
|
13
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ActionAdminModule, [typeof i1.AdminActionListComponent, typeof i2.AdminActionFormComponent], [typeof i3.CommonModule, typeof i4.FormsModule, typeof i5.SharedModule, typeof i6.TablePrimaryComponent, typeof i7.TextAreaComponent, typeof i8.ButtonModule, typeof i9.CheckBoxComponent], [typeof i1.AdminActionListComponent, typeof i2.AdminActionFormComponent]>;
|
|
14
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ActionAdminModule>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { BaseFormComponent } from '../../../../shared/_base/base-form/base-form.component';
|
|
3
|
+
import { AdminActionModel } from '../../models/admin-action.model';
|
|
4
|
+
import { Message } from 'primeng/api';
|
|
5
|
+
import { AdminActionService } from '../../state/admin-action.service';
|
|
6
|
+
import { ValidatorService } from '../../../../shared/services/validator.service';
|
|
7
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
8
|
+
import { AdminActionStore } from '../../state/admin-action.store';
|
|
9
|
+
import { AppConfigService, BaseQuery, BaseStore } from '../../../../shared';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
export declare class AdminActionFormComponent extends BaseFormComponent<AdminActionModel> implements OnInit, OnDestroy {
|
|
12
|
+
adminActionService: AdminActionService;
|
|
13
|
+
validatorService: ValidatorService;
|
|
14
|
+
router: Router;
|
|
15
|
+
activatedRoute: ActivatedRoute;
|
|
16
|
+
adminActionStore: AdminActionStore;
|
|
17
|
+
private appConfigService;
|
|
18
|
+
baseStore: BaseStore<AdminActionModel>;
|
|
19
|
+
baseQuery: BaseQuery<AdminActionModel>;
|
|
20
|
+
messages: Message[];
|
|
21
|
+
apiConfigList: any[];
|
|
22
|
+
queueList: any[];
|
|
23
|
+
constructor(adminActionService: AdminActionService, validatorService: ValidatorService, router: Router, activatedRoute: ActivatedRoute, adminActionStore: AdminActionStore, appConfigService: AppConfigService, baseStore: BaseStore<AdminActionModel>, baseQuery: BaseQuery<AdminActionModel>);
|
|
24
|
+
ngOnInit(): void;
|
|
25
|
+
handleValidateAction(): void;
|
|
26
|
+
handleSubmit(): void;
|
|
27
|
+
private isValidJSONArray;
|
|
28
|
+
ngOnDestroy(): void;
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AdminActionFormComponent, never>;
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AdminActionFormComponent, "lib-admin-action-form", never, {}, {}, never, never, false, never>;
|
|
31
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { BaseListComponent } from '../../../../shared/_base/base-list/base-list.component';
|
|
2
|
+
import { AdminActionModel } from '../../models/admin-action.model';
|
|
3
|
+
import { TableBuilder } from '../../../../shared/services/table.builder';
|
|
4
|
+
import { AdminActionService } from '../../state/admin-action.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
/**
|
|
7
|
+
* Admin Action List Component
|
|
8
|
+
*/
|
|
9
|
+
export declare class AdminActionListComponent extends BaseListComponent<AdminActionModel> {
|
|
10
|
+
private tableBuilder;
|
|
11
|
+
pathName: string;
|
|
12
|
+
editPermission: string;
|
|
13
|
+
deletePermission: string;
|
|
14
|
+
constructor(service: AdminActionService, tableBuilder: TableBuilder);
|
|
15
|
+
ngOnInit(): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AdminActionListComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AdminActionListComponent, "lib-admin-action-list", never, {}, {}, never, never, false, never>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { BaseModel } from "../../../shared/models/base.model";
|
|
2
|
+
export declare class AdminActionModel extends BaseModel {
|
|
3
|
+
name: string;
|
|
4
|
+
apiConfigId: string;
|
|
5
|
+
prompt: string;
|
|
6
|
+
queueId: string;
|
|
7
|
+
formFields: string;
|
|
8
|
+
status: StatusType;
|
|
9
|
+
isActive: boolean;
|
|
10
|
+
apiDocsUrl: string;
|
|
11
|
+
}
|
|
12
|
+
export type StatusType = "Enable" | "Disable";
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { AdminActionModel } from '../models/admin-action.model';
|
|
3
|
+
import { AdminActionStore } from './admin-action.store';
|
|
4
|
+
import { BaseService } from '../../../shared/state/base.service';
|
|
5
|
+
import { AppConfigService } from '../../../shared/services/app-config.service';
|
|
6
|
+
import { ListService } from '../../../shared/services/list.service';
|
|
7
|
+
import { Observable } from 'rxjs';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class AdminActionService extends BaseService<AdminActionModel> {
|
|
10
|
+
protected actionStore: AdminActionStore;
|
|
11
|
+
protected list: any;
|
|
12
|
+
constructor(actionStore: AdminActionStore, http: HttpClient, appConfigService: AppConfigService, listService: ListService);
|
|
13
|
+
handleValidateAction(name: string, id: string, record: any): Observable<AdminActionModel[]>;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AdminActionService, never>;
|
|
15
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AdminActionService>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { BaseStore } from '../../../shared/state/base.store';
|
|
2
|
+
import { AdminActionModel } from '../models/admin-action.model';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class AdminActionStore extends BaseStore<AdminActionModel> {
|
|
5
|
+
constructor();
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AdminActionStore, never>;
|
|
7
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AdminActionStore>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/api-admin-form/api-admin-form.component";
|
|
3
|
+
import * as i2 from "./components/api-admin-list/api-admin-list.component";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
5
|
+
import * as i4 from "@angular/forms";
|
|
6
|
+
import * as i5 from "../../shared/shared.module";
|
|
7
|
+
import * as i6 from "@angular/common/http";
|
|
8
|
+
import * as i7 from "primeng/button";
|
|
9
|
+
import * as i8 from "../../shared/controls/username/username.component";
|
|
10
|
+
import * as i9 from "../../shared/controls/password/password.component";
|
|
11
|
+
import * as i10 from "../../shared/controls/text-area/text-area.component";
|
|
12
|
+
import * as i11 from "../../shared/table-primary/components/table-primary.component";
|
|
13
|
+
import * as i12 from "../../shared/controls/check-box/check-box.component";
|
|
14
|
+
export declare class ApiAdminModule {
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ApiAdminModule, never>;
|
|
16
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ApiAdminModule, [typeof i1.ApiAdminFormComponent, typeof i2.ApiAdminListComponent], [typeof i3.CommonModule, typeof i4.FormsModule, typeof i5.SharedModule, typeof i6.HttpClientModule, typeof i7.ButtonModule, typeof i8.UsernameComponent, typeof i9.PasswordComponent, typeof i10.TextAreaComponent, typeof i11.TablePrimaryComponent, typeof i12.CheckBoxComponent], [typeof i1.ApiAdminFormComponent, typeof i2.ApiAdminListComponent]>;
|
|
17
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ApiAdminModule>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { Router, ActivatedRoute } from '@angular/router';
|
|
3
|
+
import { Message, SelectItem } from 'primeng/api';
|
|
4
|
+
import { BaseFormComponent, BaseQuery, BaseStore } from '../../../../shared';
|
|
5
|
+
import { ValidatorService } from '../../../../shared/services/validator.service';
|
|
6
|
+
import { ApiAdminService } from '../../state/api-admin.service';
|
|
7
|
+
import { ApiAdminStore } from '../../state/api-admin.store';
|
|
8
|
+
import { ApiConfigModel } from '../../models/api-config.model';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
/**
|
|
11
|
+
* Form component for creating and updating API configurations.
|
|
12
|
+
*/
|
|
13
|
+
export declare class ApiAdminFormComponent extends BaseFormComponent<ApiConfigModel> implements OnInit, OnDestroy {
|
|
14
|
+
apiAdminService: ApiAdminService;
|
|
15
|
+
validatorService: ValidatorService;
|
|
16
|
+
router: Router;
|
|
17
|
+
activatedRoute: ActivatedRoute;
|
|
18
|
+
apiAdminStore: ApiAdminStore;
|
|
19
|
+
baseStore: BaseStore<ApiConfigModel>;
|
|
20
|
+
baseQuery: BaseQuery<ApiConfigModel>;
|
|
21
|
+
messages: Message[];
|
|
22
|
+
name: string;
|
|
23
|
+
selectedParentId: string;
|
|
24
|
+
filteredRecords: string[];
|
|
25
|
+
dropdownOptions: any[];
|
|
26
|
+
apiPropertyList: SelectItem[];
|
|
27
|
+
constructor(apiAdminService: ApiAdminService, validatorService: ValidatorService, router: Router, activatedRoute: ActivatedRoute, apiAdminStore: ApiAdminStore, baseStore: BaseStore<ApiConfigModel>, baseQuery: BaseQuery<ApiConfigModel>);
|
|
28
|
+
ngOnInit(): void;
|
|
29
|
+
hanldeValidateApi(): void;
|
|
30
|
+
handleModelChange(event: string): void;
|
|
31
|
+
parentApiProperties(event: string): void;
|
|
32
|
+
handleErrorAndSuccess(isValid: boolean, error: any): void;
|
|
33
|
+
ngOnDestroy(): void;
|
|
34
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ApiAdminFormComponent, never>;
|
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ApiAdminFormComponent, "lib-api-admin-form", never, {}, {}, never, never, false, never>;
|
|
36
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { BaseListComponent, TableBuilder } from '../../../../shared';
|
|
3
|
+
import { ApiConfigModel } from '../../models/api-config.model';
|
|
4
|
+
import { ApiAdminService } from '../../state/api-admin.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
/**
|
|
7
|
+
* ApiAdminListComponent
|
|
8
|
+
*/
|
|
9
|
+
export declare class ApiAdminListComponent extends BaseListComponent<ApiConfigModel> implements OnInit {
|
|
10
|
+
private tableBuilder;
|
|
11
|
+
editPermission: string;
|
|
12
|
+
deletePermission: string;
|
|
13
|
+
pathName: string;
|
|
14
|
+
constructor(apiAdminService: ApiAdminService, tableBuilder: TableBuilder);
|
|
15
|
+
ngOnInit(): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ApiAdminListComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ApiAdminListComponent, "lib-api-admin-list", never, {}, {}, never, never, false, never>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { BaseModel } from "../../../shared";
|
|
2
|
+
export declare class ApiConfigModel extends BaseModel {
|
|
3
|
+
name?: string;
|
|
4
|
+
path?: string;
|
|
5
|
+
isActive: boolean;
|
|
6
|
+
parentapiConfigId: string;
|
|
7
|
+
parentKey: string;
|
|
8
|
+
description?: string;
|
|
9
|
+
getByIDPath?: string;
|
|
10
|
+
idProperty?: string;
|
|
11
|
+
authHeaderName?: string;
|
|
12
|
+
authToken?: string;
|
|
13
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { ApiAdminStore } from './api-admin.store';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import { AppConfigService, BaseService } from '../../../shared';
|
|
5
|
+
import { ListService } from '../../../shared/services/list.service';
|
|
6
|
+
import { ApiConfigModel } from '../models/api-config.model';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
/**
|
|
9
|
+
* Service for managing API configurations.
|
|
10
|
+
*/
|
|
11
|
+
export declare class ApiAdminService extends BaseService<ApiConfigModel> {
|
|
12
|
+
protected apiManagementStore: ApiAdminStore;
|
|
13
|
+
private configService;
|
|
14
|
+
constructor(http: HttpClient, apiManagementStore: ApiAdminStore, configService: AppConfigService, listService: ListService);
|
|
15
|
+
protected list: any;
|
|
16
|
+
checkApiByPathName(name: string, record: any): Observable<ApiConfigModel[]>;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ApiAdminService, never>;
|
|
18
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ApiAdminService>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { BaseStore } from '../../../shared';
|
|
2
|
+
import { ApiConfigModel } from '../models/api-config.model';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ApiAdminStore extends BaseStore<ApiConfigModel> {
|
|
5
|
+
constructor();
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ApiAdminStore, never>;
|
|
7
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ApiAdminStore>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { BaseFormComponent, BaseQuery, BaseStore } from '../../../../shared';
|
|
3
|
+
import { Router, ActivatedRoute } from '@angular/router';
|
|
4
|
+
import { ValidatorService } from '../../../../shared/services/validator.service';
|
|
5
|
+
import { DictionaryQuery } from '../../state/dictionary.query';
|
|
6
|
+
import { DictionaryService } from '../../state/dictionary.service';
|
|
7
|
+
import { DictionaryStore } from '../../state/dictionary.store';
|
|
8
|
+
import { DdAdminModel, DdItemModel } from '../../models/dictionary.model';
|
|
9
|
+
import { Message } from 'primeng/api';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
/**
|
|
12
|
+
* DdAdminFormComponent
|
|
13
|
+
* @description Component for managing dictionary form
|
|
14
|
+
*/
|
|
15
|
+
export declare class DdAdminFormComponent extends BaseFormComponent<DdAdminModel> implements OnInit, OnDestroy {
|
|
16
|
+
service: DictionaryService;
|
|
17
|
+
dictionaryQuery: DictionaryQuery;
|
|
18
|
+
validatorService: ValidatorService;
|
|
19
|
+
router: Router;
|
|
20
|
+
activatedRoute: ActivatedRoute;
|
|
21
|
+
ddAdminStore: DictionaryStore;
|
|
22
|
+
baseStore: BaseStore<DdAdminModel>;
|
|
23
|
+
baseQuery: BaseQuery<DdAdminModel>;
|
|
24
|
+
sidebarVisibility: boolean[];
|
|
25
|
+
messages: Message[];
|
|
26
|
+
dictionaryItem: DdItemModel;
|
|
27
|
+
dictionaryName: string;
|
|
28
|
+
isItemExpression: boolean;
|
|
29
|
+
constructor(service: DictionaryService, dictionaryQuery: DictionaryQuery, validatorService: ValidatorService, router: Router, activatedRoute: ActivatedRoute, ddAdminStore: DictionaryStore, baseStore: BaseStore<DdAdminModel>, baseQuery: BaseQuery<DdAdminModel>);
|
|
30
|
+
ngOnInit(): void;
|
|
31
|
+
handleDictionaryItemAddBtnClick(): void;
|
|
32
|
+
handleItemExpression(i?: any, event?: any): void;
|
|
33
|
+
handleStyleExpression(i: any, event: any): void;
|
|
34
|
+
handleGetProperties(event: any): void;
|
|
35
|
+
onSidebarClose(isVisible: boolean): void;
|
|
36
|
+
handleDeleteRecord(index: number, dictionaryItemId: string): void;
|
|
37
|
+
ngOnDestroy(): void;
|
|
38
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DdAdminFormComponent, never>;
|
|
39
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DdAdminFormComponent, "lib-dd-admin-form", never, {}, {}, never, never, false, never>;
|
|
40
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EventEmitter, OnChanges, OnDestroy, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { DictionaryStore } from '../../state/dictionary.store';
|
|
3
|
+
import { DdAttributeSidebarViewModel } from '../../models/dd-attribute-sidebar-view.model';
|
|
4
|
+
import { BaseStore } from '../../../../shared';
|
|
5
|
+
import { DictionaryQuery } from '../../state/dictionary.query';
|
|
6
|
+
import { SelectItem } from 'primeng/api';
|
|
7
|
+
import { DdItemModel } from '../../models/dictionary.model';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
/**
|
|
10
|
+
* DdAdminItemFormComponent
|
|
11
|
+
* This component is used to create and edit item expressions and style expressions.
|
|
12
|
+
*/
|
|
13
|
+
export declare class DdAdminItemFormComponent implements OnChanges, OnDestroy {
|
|
14
|
+
dictionaryStore: DictionaryStore;
|
|
15
|
+
dictionaryQuery: DictionaryQuery;
|
|
16
|
+
private baseStore;
|
|
17
|
+
ddItemRecord: DdItemModel;
|
|
18
|
+
isItemExpression?: boolean;
|
|
19
|
+
isSidebarVisible?: boolean;
|
|
20
|
+
saveClick: EventEmitter<any>;
|
|
21
|
+
attributeRecord: DdAttributeSidebarViewModel;
|
|
22
|
+
dictionaryItemName: string;
|
|
23
|
+
condition: string;
|
|
24
|
+
propertyOptions: SelectItem[];
|
|
25
|
+
private subscriptions;
|
|
26
|
+
constructor(dictionaryStore: DictionaryStore, dictionaryQuery: DictionaryQuery, baseStore: BaseStore<any>);
|
|
27
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
28
|
+
loadPropertyOption(): void;
|
|
29
|
+
private mapProperties;
|
|
30
|
+
handleSaveBtnClick(event: any): void;
|
|
31
|
+
handleAddExpressionClick(event: any): void;
|
|
32
|
+
ngOnDestroy(): void;
|
|
33
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DdAdminItemFormComponent, never>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DdAdminItemFormComponent, "lib-dd-admin-item-form", never, { "ddItemRecord": { "alias": "ddItemRecord"; "required": false; }; "isItemExpression": { "alias": "isItemExpression"; "required": false; }; "isSidebarVisible": { "alias": "isSidebarVisible"; "required": false; }; }, { "saveClick": "saveClick"; }, never, never, false, never>;
|
|
35
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { BaseListComponent } from '../../../../shared/_base/base-list/base-list.component';
|
|
3
|
+
import { TableBuilder } from '../../../../shared/services/table.builder';
|
|
4
|
+
import { DictionaryService } from '../../state/dictionary.service';
|
|
5
|
+
import { DdAdminModel } from '../../models/dictionary.model';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class DdAdminListComponent extends BaseListComponent<DdAdminModel> implements OnInit {
|
|
8
|
+
private tableBuilder;
|
|
9
|
+
pathName: string;
|
|
10
|
+
editPermission: string;
|
|
11
|
+
deletePermission: string;
|
|
12
|
+
constructor(service: DictionaryService, tableBuilder: TableBuilder);
|
|
13
|
+
ngOnInit(): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DdAdminListComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DdAdminListComponent, "lib-dd-admin-list", never, {}, {}, never, never, false, never>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/dd-admin-form/dd-admin-form.component";
|
|
3
|
+
import * as i2 from "./components/dd-admin-list/dd-admin-list.component";
|
|
4
|
+
import * as i3 from "./components/dd-admin-item-form/dd-admin-item-form.component";
|
|
5
|
+
import * as i4 from "@angular/common";
|
|
6
|
+
import * as i5 from "../../shared/shared.module";
|
|
7
|
+
import * as i6 from "primeng/dropdown";
|
|
8
|
+
import * as i7 from "../../shared/controls/button/button.component";
|
|
9
|
+
import * as i8 from "primeng/inputtextarea";
|
|
10
|
+
import * as i9 from "@angular/forms";
|
|
11
|
+
import * as i10 from "../../shared/table-primary/components/table-primary.component";
|
|
12
|
+
import * as i11 from "../../shared/controls/check-box/check-box.component";
|
|
13
|
+
import * as i12 from "primeng/button";
|
|
14
|
+
import * as i13 from "../../shared/controls/text-area/text-area.component";
|
|
15
|
+
import * as i14 from "../../shared/components/form-container/form-container.component";
|
|
16
|
+
export declare class DdAdminModule {
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DdAdminModule, never>;
|
|
18
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DdAdminModule, [typeof i1.DdAdminFormComponent, typeof i2.DdAdminListComponent, typeof i3.DdAdminItemFormComponent], [typeof i4.CommonModule, typeof i5.SharedModule, typeof i6.DropdownModule, typeof i7.ButtonComponent, typeof i8.InputTextareaModule, typeof i9.ReactiveFormsModule, typeof i9.FormsModule, typeof i10.TablePrimaryComponent, typeof i11.CheckBoxComponent, typeof i12.ButtonModule, typeof i13.TextAreaComponent, typeof i14.FormContainerComponent], [typeof i1.DdAdminFormComponent, typeof i2.DdAdminListComponent]>;
|
|
19
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<DdAdminModule>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { BaseModel } from "../../../shared/models/base.model";
|
|
2
|
+
export declare class DdAdminModel extends BaseModel {
|
|
3
|
+
name?: string;
|
|
4
|
+
apiConfigId?: string;
|
|
5
|
+
dictionaryItems: DdItemModel[];
|
|
6
|
+
message?: string;
|
|
7
|
+
isActive: boolean;
|
|
8
|
+
}
|
|
9
|
+
export declare class DdItemModel extends BaseModel {
|
|
10
|
+
itemName?: string;
|
|
11
|
+
itemExpression?: string;
|
|
12
|
+
styleExpression?: string;
|
|
13
|
+
isActive: boolean;
|
|
14
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { DictionaryStore } from './dictionary.store';
|
|
2
|
+
import { DdAdminModel } from '../models/dictionary.model';
|
|
3
|
+
import { BaseQuery } from '../../../shared/state/base.query';
|
|
4
|
+
import { Observable } from 'rxjs';
|
|
5
|
+
import { ApiPropertyModel } from '../models/api-property.model';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
/**
|
|
8
|
+
* DictionaryQuery
|
|
9
|
+
* @description Query for managing dictionary state
|
|
10
|
+
*/
|
|
11
|
+
export declare class DictionaryQuery extends BaseQuery<DdAdminModel> {
|
|
12
|
+
protected store: DictionaryStore;
|
|
13
|
+
constructor(store: DictionaryStore);
|
|
14
|
+
selectPropertyData(): Observable<ApiPropertyModel>;
|
|
15
|
+
getPropertyData(): ApiPropertyModel;
|
|
16
|
+
selectSidebarVisible(): Observable<any>;
|
|
17
|
+
getSidebarVisible(): any;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DictionaryQuery, never>;
|
|
19
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DictionaryQuery>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { DictionaryStore } from './dictionary.store';
|
|
3
|
+
import { DdAdminModel } from '../models/dictionary.model';
|
|
4
|
+
import { Observable } from 'rxjs';
|
|
5
|
+
import { BaseService, AppConfigService } from '../../../shared';
|
|
6
|
+
import { ListService } from '../../../shared/services/list.service';
|
|
7
|
+
import { ApiPropertyModel } from '../models/api-property.model';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class DictionaryService extends BaseService<DdAdminModel> {
|
|
10
|
+
dictionaryStore: DictionaryStore;
|
|
11
|
+
constructor(dictionaryStore: DictionaryStore, http: HttpClient, appConfigService: AppConfigService, listService: ListService);
|
|
12
|
+
protected list: any;
|
|
13
|
+
getAllApiProperties(name: string, id: string): Observable<ApiPropertyModel>;
|
|
14
|
+
deleteDictionaryItemById(name: string, dictionaryItemId: string): Observable<DdAdminModel | any>;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DictionaryService, never>;
|
|
16
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DictionaryService>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { DdAdminModel } from '../models/dictionary.model';
|
|
2
|
+
import { BaseStore } from '../../../shared/state/base.store';
|
|
3
|
+
import { ApiPropertyModel } from '../models/api-property.model';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
/**
|
|
6
|
+
* DictionaryStore
|
|
7
|
+
* @description Store for managing dictionary state
|
|
8
|
+
*/
|
|
9
|
+
export declare class DictionaryStore extends BaseStore<DdAdminModel> {
|
|
10
|
+
setPropertiesData(value: ApiPropertyModel): void;
|
|
11
|
+
setSidebarVisible(value: boolean): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DictionaryStore, never>;
|
|
13
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DictionaryStore>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { OnDestroy, OnInit } from "@angular/core";
|
|
2
|
+
import { QueryBuilderConfig } from "@kerwin612/ngx-query-builder";
|
|
3
|
+
import { QueueQuery } from "../../state/queue.query";
|
|
4
|
+
import { QueueModel } from "../../models/queue.model";
|
|
5
|
+
import { ActivatedRoute, Router } from "@angular/router";
|
|
6
|
+
import { BaseFormComponent, BaseStore, BaseQuery } from "../../../../shared";
|
|
7
|
+
import { QueueStore } from "../../state/queue.store";
|
|
8
|
+
import { ValidatorService } from "../../../../shared/services/validator.service";
|
|
9
|
+
import { QueueService } from "../../state/queue.service";
|
|
10
|
+
import { Message } from "primeng/api";
|
|
11
|
+
import * as i0 from "@angular/core";
|
|
12
|
+
export declare class QueueAdminFormComponent extends BaseFormComponent<QueueModel> implements OnInit, OnDestroy {
|
|
13
|
+
queueQuery: QueueQuery;
|
|
14
|
+
queueService: QueueService;
|
|
15
|
+
activatedRoute: ActivatedRoute;
|
|
16
|
+
queueStore: QueueStore;
|
|
17
|
+
validatorService: ValidatorService;
|
|
18
|
+
router: Router;
|
|
19
|
+
baseStore: BaseStore<QueueModel>;
|
|
20
|
+
baseQuery: BaseQuery<QueueModel>;
|
|
21
|
+
constructor(queueQuery: QueueQuery, queueService: QueueService, activatedRoute: ActivatedRoute, queueStore: QueueStore, validatorService: ValidatorService, router: Router, baseStore: BaseStore<QueueModel>, baseQuery: BaseQuery<QueueModel>);
|
|
22
|
+
messages: Message[];
|
|
23
|
+
fetchedProperties: any;
|
|
24
|
+
config: QueryBuilderConfig;
|
|
25
|
+
apiPropertyList: any;
|
|
26
|
+
query: {
|
|
27
|
+
condition: string;
|
|
28
|
+
rules: never[];
|
|
29
|
+
};
|
|
30
|
+
ngOnInit(): void;
|
|
31
|
+
getApiProperties(id: string, res: any): void;
|
|
32
|
+
setupQueryBuilderConfig(properties: string[]): void;
|
|
33
|
+
onQueryChange(event: any): void;
|
|
34
|
+
private fetchApiProperties;
|
|
35
|
+
handleGetData(): void;
|
|
36
|
+
handleQueueChange(queueId: string): void;
|
|
37
|
+
handleSubmit(): void;
|
|
38
|
+
convertStringToBoolean(rules: any[]): void;
|
|
39
|
+
ngOnDestroy(): void;
|
|
40
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QueueAdminFormComponent, never>;
|
|
41
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QueueAdminFormComponent, "lib-queue-admin-form", never, {}, {}, never, never, false, never>;
|
|
42
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { QueueModel } from '../../models/queue.model';
|
|
2
|
+
import { QueueService } from '../../state/queue.service';
|
|
3
|
+
import { BaseContainerComponent } from '../../../../shared';
|
|
4
|
+
import { QueueStore } from '../../state/queue.store';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class QueueAdminListComponent extends BaseContainerComponent<QueueModel> {
|
|
7
|
+
queueStore: QueueStore;
|
|
8
|
+
private queueService;
|
|
9
|
+
constructor(queueStore: QueueStore, queueService: QueueService);
|
|
10
|
+
queueList: QueueModel[];
|
|
11
|
+
selectedQueue: any;
|
|
12
|
+
queueId: any;
|
|
13
|
+
ngOnInit(): void;
|
|
14
|
+
getAllQueueList(): void;
|
|
15
|
+
handleQueueId(event: any): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QueueAdminListComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QueueAdminListComponent, "lib-queue-admin-list", never, {}, {}, never, never, false, never>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { OnChanges } from '@angular/core';
|
|
2
|
+
import { QueueModel } from '../../models/queue.model';
|
|
3
|
+
import { DataTransformerService } from '../../../../shared/services/data-transformer.service';
|
|
4
|
+
import { Router } from '@angular/router';
|
|
5
|
+
import { QueueService } from '../../state/queue.service';
|
|
6
|
+
import { QueueStore } from '../../state/queue.store';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class QueueApplicationListComponent implements OnChanges {
|
|
9
|
+
queueService: QueueService;
|
|
10
|
+
dataTransformService: DataTransformerService;
|
|
11
|
+
router: Router;
|
|
12
|
+
queueStore: QueueStore;
|
|
13
|
+
queueData: QueueModel;
|
|
14
|
+
selectedStatus: string;
|
|
15
|
+
isAscending: boolean;
|
|
16
|
+
associateQueueList: any;
|
|
17
|
+
constructor(queueService: QueueService, dataTransformService: DataTransformerService, router: Router, queueStore: QueueStore);
|
|
18
|
+
ngOnChanges(): void;
|
|
19
|
+
loadAssociatedList(): void;
|
|
20
|
+
getRandomCount(): number;
|
|
21
|
+
getInitials(fullName: string): string;
|
|
22
|
+
getTypeByIndex(index: number): string;
|
|
23
|
+
getRandomType(): string;
|
|
24
|
+
handleApplicationClick(application: any): void;
|
|
25
|
+
onStatusChange(selectedStatus: any): any;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QueueApplicationListComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QueueApplicationListComponent, "queue-application-list", never, { "queueData": { "alias": "queueData"; "required": false; }; }, {}, never, never, false, never>;
|
|
28
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { BaseModel } from "../../../shared";
|
|
2
|
+
export declare class QueueModel extends BaseModel {
|
|
3
|
+
name?: string;
|
|
4
|
+
description?: string;
|
|
5
|
+
apiConfigId: string;
|
|
6
|
+
rules?: any;
|
|
7
|
+
properties?: any;
|
|
8
|
+
itemCount?: any;
|
|
9
|
+
apiConfigUrl: string;
|
|
10
|
+
detailsApiConfigUrl?: string;
|
|
11
|
+
header?: string;
|
|
12
|
+
subHeader?: string;
|
|
13
|
+
isActive?: boolean;
|
|
14
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/router";
|
|
3
|
+
export declare class QueueRoutingModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QueueRoutingModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<QueueRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<QueueRoutingModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/queue-admin-form/queue-admin-form.component";
|
|
3
|
+
import * as i2 from "./components/queue-admin-list/queue-admin-list.component";
|
|
4
|
+
import * as i3 from "./components/queue-application-list/queue-application-list.component";
|
|
5
|
+
import * as i4 from "@angular/common";
|
|
6
|
+
import * as i5 from "../../shared/shared.module";
|
|
7
|
+
import * as i6 from "./queue-admin-routing.module";
|
|
8
|
+
import * as i7 from "@angular/forms";
|
|
9
|
+
import * as i8 from "@kerwin612/ngx-query-builder";
|
|
10
|
+
import * as i9 from "primeng/button";
|
|
11
|
+
import * as i10 from "../../shared/controls/check-box/check-box.component";
|
|
12
|
+
export declare class QueueAdminModule {
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QueueAdminModule, never>;
|
|
14
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<QueueAdminModule, [typeof i1.QueueAdminFormComponent, typeof i2.QueueAdminListComponent, typeof i3.QueueApplicationListComponent], [typeof i4.CommonModule, typeof i5.SharedModule, typeof i6.QueueRoutingModule, typeof i7.FormsModule, typeof i8.QueryBuilderModule, typeof i9.ButtonModule, typeof i10.CheckBoxComponent], [typeof i1.QueueAdminFormComponent, typeof i2.QueueAdminListComponent, typeof i3.QueueApplicationListComponent]>;
|
|
15
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<QueueAdminModule>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { QueueStore } from "./queue.store";
|
|
2
|
+
import { BaseQuery } from "../../../shared/state/base.query";
|
|
3
|
+
import { QueueModel } from "../models/queue.model";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class QueueQuery extends BaseQuery<QueueModel> {
|
|
6
|
+
protected store: QueueStore;
|
|
7
|
+
constructor(store: QueueStore);
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QueueQuery, never>;
|
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<QueueQuery>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { HttpClient } from "@angular/common/http";
|
|
2
|
+
import { QueueModel } from "../models/queue.model";
|
|
3
|
+
import { AppConfigService, BaseService } from "../../../shared";
|
|
4
|
+
import { QueueStore } from "./queue.store";
|
|
5
|
+
import { ListService } from "../../../shared/services/list.service";
|
|
6
|
+
import { Observable } from "rxjs";
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class QueueService extends BaseService<QueueModel> {
|
|
9
|
+
queueStore: QueueStore;
|
|
10
|
+
constructor(queueStore: QueueStore, http: HttpClient, appConfigService: AppConfigService, listService: ListService);
|
|
11
|
+
protected list: any;
|
|
12
|
+
getbyApiPath(id: string): Observable<QueueModel[]>;
|
|
13
|
+
getCaseById(url: string): Observable<any>;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QueueService, never>;
|
|
15
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<QueueService>;
|
|
16
|
+
}
|
|
@@ -1,14 +1,6 @@
|
|
|
1
|
-
import { BaseState } from "../../../shared/state/base.state";
|
|
2
|
-
import { QueueModel } from "../models/queue.model";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
export function createInitialState(): QueueState {
|
|
9
|
-
return {
|
|
10
|
-
queues: [],
|
|
11
|
-
records: [],
|
|
12
|
-
lists: [],
|
|
13
|
-
};
|
|
14
|
-
}
|
|
1
|
+
import { BaseState } from "../../../shared/state/base.state";
|
|
2
|
+
import { QueueModel } from "../models/queue.model";
|
|
3
|
+
export interface QueueState extends BaseState {
|
|
4
|
+
queues: QueueModel[];
|
|
5
|
+
}
|
|
6
|
+
export declare function createInitialState(): QueueState;
|