nuxeo-development-framework 3.0.9 → 3.1.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/karma.conf.js +44 -0
- package/ng-package.json +7 -0
- package/package.json +63 -70
- package/src/lib/Core/adapters/adapter.service.ts +46 -0
- package/src/lib/Core/core.module.ts +65 -0
- package/src/lib/Core/enums/language.enum.ts +4 -0
- package/src/lib/Core/models/component.model.ts +11 -0
- package/src/lib/Core/services/callApi/call-api.service.ts +31 -0
- package/src/lib/Core/services/extension/action.extensions.ts +35 -0
- package/src/lib/Core/services/extension/component-register.service.ts +25 -0
- package/src/lib/Core/services/extension/extenion-utils.ts +142 -0
- package/src/lib/Core/services/extension/extension-element.ts +6 -0
- package/src/lib/Core/services/extension/extension-loader.service.ts +160 -0
- package/src/lib/Core/services/extension/extension.service.ts +137 -0
- package/src/lib/Core/services/initialization/initialization.service.ts +50 -0
- package/src/lib/Core/services/localStorag/local-storag.service.ts +125 -0
- package/src/lib/Core/services/nuxeo/nuxeo-override.ts +86 -0
- package/src/lib/Core/services/nuxeo/nuxeo.service.ts +123 -0
- package/src/lib/Core/services/roles/roles.service.spec.ts +16 -0
- package/src/lib/Core/services/roles/roles.service.ts +122 -0
- package/src/lib/Core/services/translation/translate-loader.service.ts +173 -0
- package/src/lib/Core/services/translation/translation.service.ts +221 -0
- package/src/lib/Core/services/user/user-preferences.service.ts +172 -0
- package/src/lib/Core/utilities/moment-date-adapter.ts +203 -0
- package/src/lib/Core/utilities/moment-dates-format.ts +18 -0
- package/src/lib/Core/utilities/utility.service.ts +83 -0
- package/src/lib/assets/scss/ej2/material.css +1 -0
- package/src/lib/assets/scss/mixins.scss +38 -0
- package/src/lib/assets/scss/myApp.scss +487 -0
- package/src/lib/assets/scss/variables.scss +62 -0
- package/src/lib/components/activities-log/activities-log/activities-log.component.html +11 -0
- package/src/lib/components/activities-log/activities-log/activities-log.component.scss +12 -0
- package/src/lib/components/activities-log/activities-log/activities-log.component.spec.ts +25 -0
- package/src/lib/components/activities-log/activities-log/activities-log.component.ts +107 -0
- package/src/lib/components/activities-log/activities-log/activities-log.service.ts +30 -0
- package/src/lib/components/activities-log/activities-log.module.ts +18 -0
- package/src/lib/components/activity/activity/activity.component.html +28 -0
- package/src/lib/components/activity/activity/activity.component.scss +33 -0
- package/src/lib/components/activity/activity/activity.component.spec.ts +25 -0
- package/src/lib/components/activity/activity/activity.component.ts +23 -0
- package/src/lib/components/activity/activity.module.ts +24 -0
- package/src/lib/components/attachment-item/attachment-item/attachment-item.component.html +36 -0
- package/src/lib/components/attachment-item/attachment-item/attachment-item.component.scss +21 -0
- package/src/lib/components/attachment-item/attachment-item/attachment-item.component.spec.ts +25 -0
- package/src/lib/components/attachment-item/attachment-item/attachment-item.component.ts +35 -0
- package/src/lib/components/attachment-item/attachment-item.module.ts +26 -0
- package/src/lib/components/attachment-modal/attachment-modal.module.ts +24 -0
- package/src/lib/components/attachment-modal/attachments/attachments.component.html +41 -0
- package/src/lib/components/attachment-modal/attachments/attachments.component.scss +5 -0
- package/src/lib/components/attachment-modal/attachments/attachments.component.spec.ts +25 -0
- package/src/lib/components/attachment-modal/attachments/attachments.component.ts +161 -0
- package/src/lib/components/avatar/avatar/avatar.component.html +13 -0
- package/src/lib/components/avatar/avatar/avatar.component.scss +32 -0
- package/src/lib/components/avatar/avatar/avatar.component.spec.ts +25 -0
- package/src/lib/components/avatar/avatar/avatar.component.ts +50 -0
- package/src/lib/components/avatar/avatar.module.ts +21 -0
- package/src/lib/components/card/card.component.html +35 -0
- package/src/lib/components/card/card.component.scss +81 -0
- package/src/lib/components/card/card.component.spec.ts +25 -0
- package/src/lib/components/card/card.component.ts +38 -0
- package/src/lib/components/card/card.module.ts +15 -0
- package/src/lib/components/comments/comments.module.ts +48 -0
- package/src/lib/components/comments/components/comment-item/comment-item.component.html +32 -0
- package/src/lib/components/comments/components/comment-item/comment-item.component.scss +41 -0
- package/src/lib/components/comments/components/comment-item/comment-item.component.ts +70 -0
- package/src/lib/components/comments/components/comments-dashlet/comments-dashlet.component.html +58 -0
- package/src/lib/components/comments/components/comments-dashlet/comments-dashlet.component.scss +69 -0
- package/src/lib/components/comments/components/comments-dashlet/comments-dashlet.component.ts +80 -0
- package/src/lib/components/comments/components/comments-list/comments-list.component.html +43 -0
- package/src/lib/components/comments/components/comments-list/comments-list.component.scss +103 -0
- package/src/lib/components/comments/components/comments-list/comments-list.component.ts +61 -0
- package/src/lib/components/comments/components/edit-delete-modal/edit-delete-modal.component.html +22 -0
- package/src/lib/components/comments/components/edit-delete-modal/edit-delete-modal.component.scss +48 -0
- package/src/lib/components/comments/components/edit-delete-modal/edit-delete-modal.component.spec.ts +25 -0
- package/src/lib/components/comments/components/edit-delete-modal/edit-delete-modal.component.ts +56 -0
- package/src/lib/components/comments/constants/comment.ts +25 -0
- package/src/lib/components/comments/services/comment-api.service.ts +85 -0
- package/src/lib/components/confirm-caller/confirm-caller.dialog.html +26 -0
- package/src/lib/components/confirm-caller/confirm-caller.dialog.scss +34 -0
- package/src/lib/components/confirm-caller/confirm-caller.dialog.ts +68 -0
- package/src/lib/components/confirm-caller/confirm-caller.module.ts +19 -0
- package/src/lib/components/confirm-caller/confirm-dialog/confirm-dialog.component.html +13 -0
- package/src/lib/components/confirm-caller/confirm-dialog/confirm-dialog.component.scss +0 -0
- package/src/lib/components/confirm-caller/confirm-dialog/confirm-dialog.component.spec.ts +25 -0
- package/src/lib/components/confirm-caller/confirm-dialog/confirm-dialog.component.ts +18 -0
- package/src/lib/components/confirmation-dialog/confirmation-dialog/confirmation-dialog.component.html +24 -0
- package/src/lib/components/confirmation-dialog/confirmation-dialog/confirmation-dialog.component.scss +0 -0
- package/src/lib/components/confirmation-dialog/confirmation-dialog/confirmation-dialog.component.spec.ts +25 -0
- package/src/lib/components/confirmation-dialog/confirmation-dialog/confirmation-dialog.component.ts +19 -0
- package/src/lib/components/confirmation-dialog/confirmation-dialog.module.ts +18 -0
- package/src/lib/components/correspondence-relation/components/correspondence-relation/correspondence-relation.component.html +27 -0
- package/src/lib/components/correspondence-relation/components/correspondence-relation/correspondence-relation.component.scss +34 -0
- package/src/lib/components/correspondence-relation/components/correspondence-relation/correspondence-relation.component.spec.ts +25 -0
- package/src/lib/components/correspondence-relation/components/correspondence-relation/correspondence-relation.component.ts +149 -0
- package/src/lib/components/correspondence-relation/components/correspondence-relation-create-form/correspondence-relation-create-form.component.html +92 -0
- package/src/lib/components/correspondence-relation/components/correspondence-relation-create-form/correspondence-relation-create-form.component.scss +124 -0
- package/src/lib/components/correspondence-relation/components/correspondence-relation-create-form/correspondence-relation-create-form.component.spec.ts +25 -0
- package/src/lib/components/correspondence-relation/components/correspondence-relation-create-form/correspondence-relation-create-form.component.ts +132 -0
- package/src/lib/components/correspondence-relation/components/correspondence-relation-list/correspondence-relation-list.component.html +33 -0
- package/src/lib/components/correspondence-relation/components/correspondence-relation-list/correspondence-relation-list.component.scss +42 -0
- package/src/lib/components/correspondence-relation/components/correspondence-relation-list/correspondence-relation-list.component.spec.ts +25 -0
- package/src/lib/components/correspondence-relation/components/correspondence-relation-list/correspondence-relation-list.component.ts +111 -0
- package/src/lib/components/correspondence-relation/components/correspondence-relation-reply/correspondence-relation-reply.component.html +20 -0
- package/src/lib/components/correspondence-relation/components/correspondence-relation-reply/correspondence-relation-reply.component.scss +9 -0
- package/src/lib/components/correspondence-relation/components/correspondence-relation-reply/correspondence-relation-reply.component.spec.ts +25 -0
- package/src/lib/components/correspondence-relation/components/correspondence-relation-reply/correspondence-relation-reply.component.ts +64 -0
- package/src/lib/components/correspondence-relation/components/versions/versions.component.html +80 -0
- package/src/lib/components/correspondence-relation/components/versions/versions.component.scss +0 -0
- package/src/lib/components/correspondence-relation/components/versions/versions.component.ts +71 -0
- package/src/lib/components/correspondence-relation/correspondence-relation.module.ts +59 -0
- package/src/lib/components/correspondence-relation/services/correspondence-realation.service.ts +192 -0
- package/src/lib/components/correspondence-relation/services/viewer-files.service.ts +51 -0
- package/src/lib/components/create-entity/create-entity/create-entity.component.html +18 -0
- package/src/lib/components/create-entity/create-entity/create-entity.component.scss +90 -0
- package/src/lib/components/create-entity/create-entity/create-entity.component.spec.ts +25 -0
- package/src/lib/components/create-entity/create-entity/create-entity.component.ts +57 -0
- package/src/lib/components/create-entity/create-entity.module.ts +22 -0
- package/src/lib/components/cts-tags/components/correspondence-tags/correspondence-tags.component.html +57 -0
- package/src/lib/components/cts-tags/components/correspondence-tags/correspondence-tags.component.scss +43 -0
- package/src/lib/components/cts-tags/components/correspondence-tags/correspondence-tags.component.spec.ts +25 -0
- package/src/lib/components/cts-tags/components/correspondence-tags/correspondence-tags.component.ts +133 -0
- package/src/lib/components/cts-tags/cts-tags.module.ts +35 -0
- package/src/lib/components/cts-tags/services/tags-api.service.ts +106 -0
- package/src/lib/components/custom-toastr/components/custom-toastr/custom-toastr.component.html +44 -0
- package/src/lib/components/custom-toastr/components/custom-toastr/custom-toastr.component.scss +91 -0
- package/src/lib/components/custom-toastr/components/custom-toastr/custom-toastr.component.spec.ts +25 -0
- package/src/lib/components/custom-toastr/components/custom-toastr/custom-toastr.component.ts +79 -0
- package/src/lib/components/custom-toastr/custom-toastr.module.ts +19 -0
- package/src/lib/components/custom-toastr/interfaces/toast-type.interface.ts +1 -0
- package/src/lib/components/custom-toastr/services/custom-toastr.service.ts +56 -0
- package/src/lib/components/display-suitable-icon/display-suitable-icon/display-suitable-icon.component.html +37 -0
- package/src/lib/components/display-suitable-icon/display-suitable-icon/display-suitable-icon.component.scss +73 -0
- package/src/lib/components/display-suitable-icon/display-suitable-icon/display-suitable-icon.component.spec.ts +25 -0
- package/src/lib/components/display-suitable-icon/display-suitable-icon/display-suitable-icon.component.ts +34 -0
- package/src/lib/components/display-suitable-icon/display-suitable-icon/icon.service.ts +107 -0
- package/src/lib/components/display-suitable-icon/display-suitable-icon.module.ts +16 -0
- package/src/lib/components/documents/components/attachments-list/attachments-list.component.html +92 -0
- package/src/lib/components/documents/components/attachments-list/attachments-list.component.scss +65 -0
- package/src/lib/components/documents/components/attachments-list/attachments-list.component.spec.ts +25 -0
- package/src/lib/components/documents/components/attachments-list/attachments-list.component.ts +162 -0
- package/src/lib/components/documents/components/attachments-page-provider/attachments-page-provider.component.html +36 -0
- package/src/lib/components/documents/components/attachments-page-provider/attachments-page-provider.component.scss +44 -0
- package/src/lib/components/documents/components/attachments-page-provider/attachments-page-provider.component.spec.ts +25 -0
- package/src/lib/components/documents/components/attachments-page-provider/attachments-page-provider.component.ts +77 -0
- package/src/lib/components/documents/components/document-list/documents-list.component.html +34 -0
- package/src/lib/components/documents/components/document-list/documents-list.component.scss +41 -0
- package/src/lib/components/documents/components/document-list/documents-list.component.ts +244 -0
- package/src/lib/components/documents/components/document-scan/document-scan.component.html +176 -0
- package/src/lib/components/documents/components/document-scan/document-scan.component.scss +725 -0
- package/src/lib/components/documents/components/document-scan/document-scan.component.ts +1156 -0
- package/src/lib/components/documents/components/document-scan/document-scan.service.ts +26 -0
- package/src/lib/components/documents/components/document-upload/document-upload.component.html +19 -0
- package/src/lib/components/documents/components/document-upload/document-upload.component.scss +49 -0
- package/src/lib/components/documents/components/document-upload/document-upload.component.ts +168 -0
- package/src/lib/components/documents/components/documents/documents.component.html +16 -0
- package/src/lib/components/documents/components/documents/documents.component.scss +0 -0
- package/src/lib/components/documents/components/documents/documents.component.ts +49 -0
- package/src/lib/components/documents/constants/document-templates.ts +32 -0
- package/src/lib/components/documents/constants/documents.ts +85 -0
- package/src/lib/components/documents/documents.module.ts +69 -0
- package/src/lib/components/documents/services/document-templates.service.ts +155 -0
- package/src/lib/components/documents/services/documents.service.ts +354 -0
- package/src/lib/components/dynamic-chart/dynamic-chart/dynamic-chart.component.html +26 -0
- package/src/lib/components/dynamic-chart/dynamic-chart/dynamic-chart.component.scss +35 -0
- package/src/lib/components/dynamic-chart/dynamic-chart/dynamic-chart.component.spec.ts +25 -0
- package/src/lib/components/dynamic-chart/dynamic-chart/dynamic-chart.component.ts +423 -0
- package/src/lib/components/dynamic-chart/dynamic-chart.module.ts +22 -0
- package/src/lib/components/dynamic-chart/dynamic-single-chart/dynamic-single-chart.component.html +4 -0
- package/src/lib/components/dynamic-chart/dynamic-single-chart/dynamic-single-chart.component.scss +14 -0
- package/src/lib/components/dynamic-chart/dynamic-single-chart/dynamic-single-chart.component.spec.ts +25 -0
- package/src/lib/components/dynamic-chart/dynamic-single-chart/dynamic-single-chart.component.ts +178 -0
- package/src/lib/components/dynamic-chart/new-chart-box.ts +0 -0
- package/src/lib/components/dynamic-chart/services/chart-data.service.ts +613 -0
- package/src/lib/components/dynamic-fields-renderer/dynamic-fields-renderer/dynamic-fields-renderer.component.html +58 -0
- package/src/lib/components/dynamic-fields-renderer/dynamic-fields-renderer/dynamic-fields-renderer.component.scss +0 -0
- package/src/lib/components/dynamic-fields-renderer/dynamic-fields-renderer/dynamic-fields-renderer.component.spec.ts +25 -0
- package/src/lib/components/dynamic-fields-renderer/dynamic-fields-renderer/dynamic-fields-renderer.component.ts +162 -0
- package/src/lib/components/dynamic-fields-renderer/dynamic-fields-renderer.module.ts +25 -0
- package/src/lib/components/dynamic-filter/dynamic-filter/dynamic-filter.component.html +122 -0
- package/src/lib/components/dynamic-filter/dynamic-filter/dynamic-filter.component.scss +103 -0
- package/src/lib/components/dynamic-filter/dynamic-filter/dynamic-filter.component.spec.ts +25 -0
- package/src/lib/components/dynamic-filter/dynamic-filter/dynamic-filter.component.ts +124 -0
- package/src/lib/components/dynamic-filter/dynamic-filter.module.ts +19 -0
- package/src/lib/components/dynamic-filter/services/dynamic-filter.service.ts +14 -0
- package/src/lib/components/dynamic-form/components/department-form/department-form.component.html +100 -0
- package/src/lib/components/dynamic-form/components/department-form/department-form.component.scss +38 -0
- package/src/lib/components/dynamic-form/components/department-form/department-form.component.spec.ts +25 -0
- package/src/lib/components/dynamic-form/components/department-form/department-form.component.ts +132 -0
- package/src/lib/components/dynamic-form/components/dynamic-form/dynamic-form.component.html +3 -0
- package/src/lib/components/dynamic-form/components/dynamic-form/dynamic-form.component.scss +51 -0
- package/src/lib/components/dynamic-form/components/dynamic-form/dynamic-form.component.ts +109 -0
- package/src/lib/components/dynamic-form/components/dynamic-form/fields.adapter.ts +123 -0
- package/src/lib/components/dynamic-form/components/dynamic-form/form-builder.service.ts +120 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-boolitem/dynamic-form-boolitem.component.html +14 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-boolitem/dynamic-form-boolitem.component.scss +2 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-boolitem/dynamic-form-boolitem.component.ts +34 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-builder/dynamic-form-builder.component.html +15 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-builder/dynamic-form-builder.component.scss +73 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-builder/dynamic-form-builder.component.ts +161 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-checkbox-item/dynamic-form-checkbox-item.component.html +10 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-checkbox-item/dynamic-form-checkbox-item.component.scss +13 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-checkbox-item/dynamic-form-checkbox-item.component.spec.ts +25 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-checkbox-item/dynamic-form-checkbox-item.component.ts +72 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-dateitem/dynamic-form-dateitem.component.html +56 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-dateitem/dynamic-form-dateitem.component.scss +99 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-dateitem/dynamic-form-dateitem.component.ts +210 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-dateitem/owlDateTimeIntl.ts +94 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-department/constants/department.ts +12 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-department/dynamic-form-department.component.html +36 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-department/dynamic-form-department.component.scss +11 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-department/dynamic-form-department.component.ts +230 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-department/services/department-api.service.ts +251 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-department/services/department-management.service.ts +126 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-field/dynamic-form-field.component.html +1 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-field/dynamic-form-field.component.scss +0 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-field/dynamic-form-field.component.ts +92 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-hijri-dateitem/dynamic-form-hijri-dateitem.component.html +29 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-hijri-dateitem/dynamic-form-hijri-dateitem.component.scss +54 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-hijri-dateitem/dynamic-form-hijri-dateitem.component.spec.ts +25 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-hijri-dateitem/dynamic-form-hijri-dateitem.component.ts +152 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-item-dispatcher/dynamic-form-item-dispatcher.component.ts +105 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-mapitem/dynamic-form-mapitem.component.html +31 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-mapitem/dynamic-form-mapitem.component.scss +5 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-mapitem/dynamic-form-mapitem.component.ts +32 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-options/dynamic-form-options.component.html +56 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-options/dynamic-form-options.component.scss +24 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-options/dynamic-form-options.component.spec.ts +25 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-options/dynamic-form-options.component.ts +110 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-select-tag/dynamic-form-select-tag.component.html +27 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-select-tag/dynamic-form-select-tag.component.scss +100 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-select-tag/dynamic-form-select-tag.component.spec.ts +25 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-select-tag/dynamic-form-select-tag.component.ts +117 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-select-user-filter/dynamic-form-select-user-filter.component.html +83 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-select-user-filter/dynamic-form-select-user-filter.component.scss +136 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-select-user-filter/dynamic-form-select-user-filter.component.spec.ts +25 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-select-user-filter/dynamic-form-select-user-filter.component.ts +199 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-select-users/dynamic-form-select-users.component.html +99 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-select-users/dynamic-form-select-users.component.scss +177 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-select-users/dynamic-form-select-users.component.spec.ts +25 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-select-users/dynamic-form-select-users.component.ts +335 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-select-users/services/user-api.service.ts +50 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-selectitem/dynamic-form-selectitem.component.html +92 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-selectitem/dynamic-form-selectitem.component.scss +132 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-selectitem/dynamic-form-selectitem.component.ts +194 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-slide-toggleitem/dynamic-form-slide-toggleitem.component.html +13 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-slide-toggleitem/dynamic-form-slide-toggleitem.component.scss +19 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-slide-toggleitem/dynamic-form-slide-toggleitem.component.spec.ts +25 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-slide-toggleitem/dynamic-form-slide-toggleitem.component.ts +85 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-textarea/dynamic-form-textarea.component.html +27 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-textarea/dynamic-form-textarea.component.scss +147 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-textarea/dynamic-form-textarea.component.ts +213 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-textitem/dynamic-form-textitem.component.html +68 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-textitem/dynamic-form-textitem.component.scss +208 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-textitem/dynamic-form-textitem.component.ts +308 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-treeview-select/dropdown-treeview-select-i18n.ts +73 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-treeview-select/dropdown-treeview-select.component.ts +350 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-treeview-select/dynamic-form-treeview-select.component.html +235 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-treeview-select/dynamic-form-treeview-select.component.scss +246 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-viewer/dynamic-form-viewer.component.html +23 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-viewer/dynamic-form-viewer.component.scss +29 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-viewer/dynamic-form-viewer.component.spec.ts +25 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-viewer/dynamic-form-viewer.component.ts +39 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-vocabulary-item/dynamic-form-vocabulary-item.component.html +35 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-vocabulary-item/dynamic-form-vocabulary-item.component.scss +0 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-vocabulary-item/dynamic-form-vocabulary-item.component.spec.ts +25 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-vocabulary-item/dynamic-form-vocabulary-item.component.ts +175 -0
- package/src/lib/components/dynamic-form/components/form-wrappers/base-edit-form/base-edit-form.ts +780 -0
- package/src/lib/components/dynamic-form/components/form-wrappers/date-wrapper/date-wrapper.component.html +2 -0
- package/src/lib/components/dynamic-form/components/form-wrappers/date-wrapper/date-wrapper.component.scss +0 -0
- package/src/lib/components/dynamic-form/components/form-wrappers/date-wrapper/date-wrapper.component.ts +33 -0
- package/src/lib/components/dynamic-form/components/form-wrappers/date-wrapper/date-wrapper.formio.ts +22 -0
- package/src/lib/components/dynamic-form/components/form-wrappers/toggle-wrapper/toggle-wrapper.component.html +1 -0
- package/src/lib/components/dynamic-form/components/form-wrappers/toggle-wrapper/toggle-wrapper.component.scss +0 -0
- package/src/lib/components/dynamic-form/components/form-wrappers/toggle-wrapper/toggle-wrapper.component.ts +32 -0
- package/src/lib/components/dynamic-form/components/form-wrappers/toggle-wrapper/toggle-wrapper.formio.ts +20 -0
- package/src/lib/components/dynamic-form/components/form-wrappers/user-selector-wrapper/user-selector-wrapper.component.css +0 -0
- package/src/lib/components/dynamic-form/components/form-wrappers/user-selector-wrapper/user-selector-wrapper.component.html +17 -0
- package/src/lib/components/dynamic-form/components/form-wrappers/user-selector-wrapper/user-selector-wrapper.component.ts +65 -0
- package/src/lib/components/dynamic-form/components/form-wrappers/user-selector-wrapper/user-selector-wrapper.formio.ts +34 -0
- package/src/lib/components/dynamic-form/components/form-wrappers/vocabulary-wrapper/vocabulary-wrapper.component.html +10 -0
- package/src/lib/components/dynamic-form/components/form-wrappers/vocabulary-wrapper/vocabulary-wrapper.component.scss +0 -0
- package/src/lib/components/dynamic-form/components/form-wrappers/vocabulary-wrapper/vocabulary-wrapper.component.ts +28 -0
- package/src/lib/components/dynamic-form/components/form-wrappers/vocabulary-wrapper/vocabulary-wrapper.formio.ts +34 -0
- package/src/lib/components/dynamic-form/directives/dynamic-form-content-proxy.directive.ts +10 -0
- package/src/lib/components/dynamic-form/dynamic-form.module.scss +13 -0
- package/src/lib/components/dynamic-form/dynamic-form.module.ts +193 -0
- package/src/lib/components/dynamic-form/interfaces/aspect-oriented-config.interface.ts +3 -0
- package/src/lib/components/dynamic-form/interfaces/content-metadata-config.interface.ts +16 -0
- package/src/lib/components/dynamic-form/interfaces/content-metadata.interfaces.ts +26 -0
- package/src/lib/components/dynamic-form/interfaces/dynamic-form-arrayitem-properties.interface.ts +5 -0
- package/src/lib/components/dynamic-form/interfaces/dynamic-form-boolitem-properties.interface.ts +6 -0
- package/src/lib/components/dynamic-form/interfaces/dynamic-form-dateitem-properties.interface.ts +6 -0
- package/src/lib/components/dynamic-form/interfaces/dynamic-form-group.interface.ts +6 -0
- package/src/lib/components/dynamic-form/interfaces/dynamic-form-item-properties.interface.ts +16 -0
- package/src/lib/components/dynamic-form/interfaces/dynamic-form-item-validator.interface.ts +4 -0
- package/src/lib/components/dynamic-form/interfaces/dynamic-form-item.interface.ts +12 -0
- package/src/lib/components/dynamic-form/interfaces/dynamic-form-keyvaluepairsitem-properties.interface.ts +11 -0
- package/src/lib/components/dynamic-form/interfaces/dynamic-form-selectitem-properties.interface.ts +13 -0
- package/src/lib/components/dynamic-form/interfaces/dynamic-form-textitem-pipe-property.interface.ts +6 -0
- package/src/lib/components/dynamic-form/interfaces/dynamic-form-textitem-properties.interface.ts +9 -0
- package/src/lib/components/dynamic-form/interfaces/indifferent-config.interface.ts +1 -0
- package/src/lib/components/dynamic-form/interfaces/layout-oriented-config.interface.ts +17 -0
- package/src/lib/components/dynamic-form/interfaces/organised-property-group.interface.ts +7 -0
- package/src/lib/components/dynamic-form/interfaces/preset-config.interface.ts +8 -0
- package/src/lib/components/dynamic-form/interfaces/property-group.interface.ts +14 -0
- package/src/lib/components/dynamic-form/interfaces/property.interface.ts +12 -0
- package/src/lib/components/dynamic-form/models/dynamic-form-arrayitem.model.ts +26 -0
- package/src/lib/components/dynamic-form/models/dynamic-form-baseitem.model.ts +96 -0
- package/src/lib/components/dynamic-form/models/dynamic-form-boolitem.model.ts +27 -0
- package/src/lib/components/dynamic-form/models/dynamic-form-dateitem.model.ts +39 -0
- package/src/lib/components/dynamic-form/models/dynamic-form-datetimeitem.model.ts +18 -0
- package/src/lib/components/dynamic-form/models/dynamic-form-keyvaluepairs.model.ts +19 -0
- package/src/lib/components/dynamic-form/models/dynamic-form-mapitem.model.ts +17 -0
- package/src/lib/components/dynamic-form/models/dynamic-form-selectitem.model.ts +30 -0
- package/src/lib/components/dynamic-form/models/dynamic-form-textitem.model.ts +47 -0
- package/src/lib/components/dynamic-form/services/card-item-types.service.ts +55 -0
- package/src/lib/components/dynamic-form/services/dynamic-component-mapper.service.ts +86 -0
- package/src/lib/components/dynamic-form/services/dynamic-form-update.service.ts +105 -0
- package/src/lib/components/dynamic-form/services/property-groups-translator.service.ts +159 -0
- package/src/lib/components/dynamic-form/services/vocabulary-api.service.ts +32 -0
- package/src/lib/components/dynamic-form/validators/date-validator.ts +18 -0
- package/src/lib/components/dynamic-form/validators/length-validator.ts +18 -0
- package/src/lib/components/dynamic-form/validators/regex-validator.ts +16 -0
- package/src/lib/components/dynamic-form/validators/required-validator.ts +7 -0
- package/src/lib/components/dynamic-form/validators/value-validator.ts +18 -0
- package/src/lib/components/dynamic-search/dynamic-search/dynamic-search.component.html +219 -0
- package/src/lib/components/dynamic-search/dynamic-search/dynamic-search.component.scss +195 -0
- package/src/lib/components/dynamic-search/dynamic-search/dynamic-search.component.spec.ts +25 -0
- package/src/lib/components/dynamic-search/dynamic-search/dynamic-search.component.ts +316 -0
- package/src/lib/components/dynamic-search/dynamic-search.module.ts +33 -0
- package/src/lib/components/dynamic-table/constants/documents.ts +72 -0
- package/src/lib/components/dynamic-table/dynamic-table/dynamic-table.component.html +46 -0
- package/src/lib/components/dynamic-table/dynamic-table/dynamic-table.component.scss +33 -0
- package/src/lib/components/dynamic-table/dynamic-table/dynamic-table.component.spec.ts +25 -0
- package/src/lib/components/dynamic-table/dynamic-table/dynamic-table.component.ts +239 -0
- package/src/lib/components/dynamic-table/dynamic-table.module.ts +27 -0
- package/src/lib/components/dynamic-table/services/dynamic-table.service.spec.ts +16 -0
- package/src/lib/components/dynamic-table/services/dynamic-table.service.ts +10 -0
- package/src/lib/components/dynamic-tabs/dynamic-tabs/dynamic-tabs.component.html +11 -0
- package/src/lib/components/dynamic-tabs/dynamic-tabs/dynamic-tabs.component.scss +63 -0
- package/src/lib/components/dynamic-tabs/dynamic-tabs/dynamic-tabs.component.spec.ts +25 -0
- package/src/lib/components/dynamic-tabs/dynamic-tabs/dynamic-tabs.component.ts +25 -0
- package/src/lib/components/dynamic-tabs/dynamic-tabs.module.ts +20 -0
- package/src/lib/components/dynamic-view/boolean-viewer/boolean-viewer.component.html +4 -0
- package/src/lib/components/dynamic-view/boolean-viewer/boolean-viewer.component.scss +0 -0
- package/src/lib/components/dynamic-view/boolean-viewer/boolean-viewer.component.spec.ts +25 -0
- package/src/lib/components/dynamic-view/boolean-viewer/boolean-viewer.component.ts +19 -0
- package/src/lib/components/dynamic-view/custom-document-viewer/custom-document-viewer.component.html +3 -0
- package/src/lib/components/dynamic-view/custom-document-viewer/custom-document-viewer.component.scss +0 -0
- package/src/lib/components/dynamic-view/custom-document-viewer/custom-document-viewer.component.spec.ts +25 -0
- package/src/lib/components/dynamic-view/custom-document-viewer/custom-document-viewer.component.ts +55 -0
- package/src/lib/components/dynamic-view/custom-pp-viewer/custom-pp-viewer.component.html +3 -0
- package/src/lib/components/dynamic-view/custom-pp-viewer/custom-pp-viewer.component.scss +0 -0
- package/src/lib/components/dynamic-view/custom-pp-viewer/custom-pp-viewer.component.spec.ts +25 -0
- package/src/lib/components/dynamic-view/custom-pp-viewer/custom-pp-viewer.component.ts +65 -0
- package/src/lib/components/dynamic-view/cutome-voc-viewer/cutome-voc-viewer.component.html +14 -0
- package/src/lib/components/dynamic-view/cutome-voc-viewer/cutome-voc-viewer.component.scss +0 -0
- package/src/lib/components/dynamic-view/cutome-voc-viewer/cutome-voc-viewer.component.spec.ts +25 -0
- package/src/lib/components/dynamic-view/cutome-voc-viewer/cutome-voc-viewer.component.ts +28 -0
- package/src/lib/components/dynamic-view/data-viewer/data-viewer.component.html +15 -0
- package/src/lib/components/dynamic-view/data-viewer/data-viewer.component.scss +0 -0
- package/src/lib/components/dynamic-view/data-viewer/data-viewer.component.spec.ts +25 -0
- package/src/lib/components/dynamic-view/data-viewer/data-viewer.component.ts +19 -0
- package/src/lib/components/dynamic-view/date-viewer/date-viewer.component.html +5 -0
- package/src/lib/components/dynamic-view/date-viewer/date-viewer.component.scss +0 -0
- package/src/lib/components/dynamic-view/date-viewer/date-viewer.component.spec.ts +25 -0
- package/src/lib/components/dynamic-view/date-viewer/date-viewer.component.ts +38 -0
- package/src/lib/components/dynamic-view/department-viewer/department-viewer.component.html +14 -0
- package/src/lib/components/dynamic-view/department-viewer/department-viewer.component.scss +0 -0
- package/src/lib/components/dynamic-view/department-viewer/department-viewer.component.spec.ts +25 -0
- package/src/lib/components/dynamic-view/department-viewer/department-viewer.component.ts +84 -0
- package/src/lib/components/dynamic-view/dropdown-viewer/dropdown-viewer.component.html +4 -0
- package/src/lib/components/dynamic-view/dropdown-viewer/dropdown-viewer.component.scss +0 -0
- package/src/lib/components/dynamic-view/dropdown-viewer/dropdown-viewer.component.spec.ts +25 -0
- package/src/lib/components/dynamic-view/dropdown-viewer/dropdown-viewer.component.ts +44 -0
- package/src/lib/components/dynamic-view/dynamic-view.module.ts +44 -0
- package/src/lib/components/dynamic-view/dynamic-viewe.service.ts +58 -0
- package/src/lib/components/dynamic-view/list-viewer/list-viewer.component.html +24 -0
- package/src/lib/components/dynamic-view/list-viewer/list-viewer.component.scss +55 -0
- package/src/lib/components/dynamic-view/list-viewer/list-viewer.component.spec.ts +25 -0
- package/src/lib/components/dynamic-view/list-viewer/list-viewer.component.ts +27 -0
- package/src/lib/components/file-manger/components/add-to-collection/add-to-collection.component.html +34 -0
- package/src/lib/components/file-manger/components/add-to-collection/add-to-collection.component.scss +0 -0
- package/src/lib/components/file-manger/components/add-to-collection/add-to-collection.component.spec.ts +25 -0
- package/src/lib/components/file-manger/components/add-to-collection/add-to-collection.component.ts +139 -0
- package/src/lib/components/file-manger/components/clipboard/clipboard.component.html +88 -0
- package/src/lib/components/file-manger/components/clipboard/clipboard.component.scss +17 -0
- package/src/lib/components/file-manger/components/clipboard/clipboard.component.spec.ts +25 -0
- package/src/lib/components/file-manger/components/clipboard/clipboard.component.ts +279 -0
- package/src/lib/components/file-manger/components/copy/copy.component.html +24 -0
- package/src/lib/components/file-manger/components/copy/copy.component.scss +0 -0
- package/src/lib/components/file-manger/components/copy/copy.component.spec.ts +25 -0
- package/src/lib/components/file-manger/components/copy/copy.component.ts +129 -0
- package/src/lib/components/file-manger/components/create-directory/create-directory.component.html +32 -0
- package/src/lib/components/file-manger/components/create-directory/create-directory.component.scss +0 -0
- package/src/lib/components/file-manger/components/create-directory/create-directory.component.spec.ts +25 -0
- package/src/lib/components/file-manger/components/create-directory/create-directory.component.ts +85 -0
- package/src/lib/components/file-manger/components/create-modal/create-modal.component.html +244 -0
- package/src/lib/components/file-manger/components/create-modal/create-modal.component.scss +20 -0
- package/src/lib/components/file-manger/components/create-modal/create-modal.component.spec.ts +25 -0
- package/src/lib/components/file-manger/components/create-modal/create-modal.component.ts +475 -0
- package/src/lib/components/file-manger/components/creation-type/creation-type.component.html +39 -0
- package/src/lib/components/file-manger/components/creation-type/creation-type.component.scss +0 -0
- package/src/lib/components/file-manger/components/creation-type/creation-type.component.spec.ts +25 -0
- package/src/lib/components/file-manger/components/creation-type/creation-type.component.ts +19 -0
- package/src/lib/components/file-manger/components/delete/delete.component.html +25 -0
- package/src/lib/components/file-manger/components/delete/delete.component.scss +0 -0
- package/src/lib/components/file-manger/components/delete/delete.component.spec.ts +25 -0
- package/src/lib/components/file-manger/components/delete/delete.component.ts +80 -0
- package/src/lib/components/file-manger/components/folder-modal/folder-modal.component.html +88 -0
- package/src/lib/components/file-manger/components/folder-modal/folder-modal.component.scss +7 -0
- package/src/lib/components/file-manger/components/folder-modal/folder-modal.component.spec.ts +25 -0
- package/src/lib/components/file-manger/components/folder-modal/folder-modal.component.ts +113 -0
- package/src/lib/components/file-manger/components/loan-request/loan-request.component.html +31 -0
- package/src/lib/components/file-manger/components/loan-request/loan-request.component.scss +0 -0
- package/src/lib/components/file-manger/components/loan-request/loan-request.component.spec.ts +25 -0
- package/src/lib/components/file-manger/components/loan-request/loan-request.component.ts +72 -0
- package/src/lib/components/file-manger/components/move/move.component.html +24 -0
- package/src/lib/components/file-manger/components/move/move.component.scss +0 -0
- package/src/lib/components/file-manger/components/move/move.component.spec.ts +25 -0
- package/src/lib/components/file-manger/components/move/move.component.ts +114 -0
- package/src/lib/components/file-manger/components/publish-dialog/publish-dialog.component.html +45 -0
- package/src/lib/components/file-manger/components/publish-dialog/publish-dialog.component.scss +0 -0
- package/src/lib/components/file-manger/components/publish-dialog/publish-dialog.component.spec.ts +25 -0
- package/src/lib/components/file-manger/components/publish-dialog/publish-dialog.component.ts +98 -0
- package/src/lib/components/file-manger/components/rename/rename.component.html +28 -0
- package/src/lib/components/file-manger/components/rename/rename.component.scss +0 -0
- package/src/lib/components/file-manger/components/rename/rename.component.spec.ts +25 -0
- package/src/lib/components/file-manger/components/rename/rename.component.ts +82 -0
- package/src/lib/components/file-manger/components/scan-modal/scan-modal.component.html +336 -0
- package/src/lib/components/file-manger/components/scan-modal/scan-modal.component.scss +9 -0
- package/src/lib/components/file-manger/components/scan-modal/scan-modal.component.spec.ts +25 -0
- package/src/lib/components/file-manger/components/scan-modal/scan-modal.component.ts +337 -0
- package/src/lib/components/file-manger/components/share-dialog/share-dialog.component.html +159 -0
- package/src/lib/components/file-manger/components/share-dialog/share-dialog.component.scss +38 -0
- package/src/lib/components/file-manger/components/share-dialog/share-dialog.component.spec.ts +25 -0
- package/src/lib/components/file-manger/components/share-dialog/share-dialog.component.ts +288 -0
- package/src/lib/components/file-manger/components/sidepanel/sidepanel.component.html +350 -0
- package/src/lib/components/file-manger/components/sidepanel/sidepanel.component.scss +0 -0
- package/src/lib/components/file-manger/components/sidepanel/sidepanel.component.spec.ts +25 -0
- package/src/lib/components/file-manger/components/sidepanel/sidepanel.component.ts +247 -0
- package/src/lib/components/file-manger/components/template-modal/template-modal.component.html +213 -0
- package/src/lib/components/file-manger/components/template-modal/template-modal.component.scss +3 -0
- package/src/lib/components/file-manger/components/template-modal/template-modal.component.spec.ts +25 -0
- package/src/lib/components/file-manger/components/template-modal/template-modal.component.ts +55 -0
- package/src/lib/components/file-manger/components/transfer-doc/transfer-doc.component.html +26 -0
- package/src/lib/components/file-manger/components/transfer-doc/transfer-doc.component.scss +0 -0
- package/src/lib/components/file-manger/components/transfer-doc/transfer-doc.component.spec.ts +25 -0
- package/src/lib/components/file-manger/components/transfer-doc/transfer-doc.component.ts +74 -0
- package/src/lib/components/file-manger/components/update-modal/update-modal.component.html +97 -0
- package/src/lib/components/file-manger/components/update-modal/update-modal.component.scss +7 -0
- package/src/lib/components/file-manger/components/update-modal/update-modal.component.spec.ts +25 -0
- package/src/lib/components/file-manger/components/update-modal/update-modal.component.ts +365 -0
- package/src/lib/components/file-manger/file-manager.abstract.ts +1347 -0
- package/src/lib/components/file-manger/file-manger.module.ts +154 -0
- package/src/lib/components/filter/filter/filter.component.html +79 -0
- package/src/lib/components/filter/filter/filter.component.md +68 -0
- package/src/lib/components/filter/filter/filter.component.scss +50 -0
- package/src/lib/components/filter/filter/filter.component.spec.ts +25 -0
- package/src/lib/components/filter/filter/filter.component.ts +81 -0
- package/src/lib/components/filter/filter.module.ts +27 -0
- package/src/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/gregorian-datepicker/gregorian-date-picker.component.scss +67 -0
- package/src/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/gregorian-datepicker/gregorian-datepicker.component.html +47 -0
- package/src/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/gregorian-datepicker/gregorian-datepicker.component.ts +99 -0
- package/src/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/hijri-datepicker/hijri-date-picker.component.scss +67 -0
- package/src/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/hijri-datepicker/hijri-datepicker.component.html +47 -0
- package/src/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/hijri-datepicker/hijri-datepicker.component.ts +102 -0
- package/src/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/hijri-gregorian-datepicker.component.html +29 -0
- package/src/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/hijri-gregorian-datepicker.component.ts +152 -0
- package/src/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/provide-parent-form.directive.ts +23 -0
- package/src/lib/components/hijri-gregorian-datepicker/ngx-hijri-gregorian-datepicker.module.ts +35 -0
- package/src/lib/components/hijri-gregorian-datepicker/services/date-formatter.service.ts +94 -0
- package/src/lib/components/hijri-gregorian-datepicker/services/date-helper.service.ts +28 -0
- package/src/lib/components/hijri-gregorian-datepicker/services/ngx-hijri-gregorian-datepicker.service.ts +9 -0
- package/src/lib/components/hijri-gregorian-datepicker/utils/CustomNgbDateParserFormatter.ts +35 -0
- package/src/lib/components/hijri-gregorian-datepicker/utils/IslamicI18n.ts +26 -0
- package/src/lib/components/hijri-gregorian-datepicker/utils/consts.ts +4 -0
- package/src/lib/components/latest-activity/components/activity-line/activity-line.component.html +27 -0
- package/src/lib/components/latest-activity/components/activity-line/activity-line.component.scss +13 -0
- package/src/lib/components/latest-activity/components/activity-line/activity-line.component.spec.ts +25 -0
- package/src/lib/components/latest-activity/components/activity-line/activity-line.component.ts +73 -0
- package/src/lib/components/latest-activity/components/latest-activity/latest-activity.component.html +36 -0
- package/src/lib/components/latest-activity/components/latest-activity/latest-activity.component.scss +12 -0
- package/src/lib/components/latest-activity/components/latest-activity/latest-activity.component.spec.ts +25 -0
- package/src/lib/components/latest-activity/components/latest-activity/latest-activity.component.ts +78 -0
- package/src/lib/components/latest-activity/components/single-activity/single-activity.component.html +38 -0
- package/src/lib/components/latest-activity/components/single-activity/single-activity.component.scss +157 -0
- package/src/lib/components/latest-activity/components/single-activity/single-activity.component.spec.ts +25 -0
- package/src/lib/components/latest-activity/components/single-activity/single-activity.component.ts +19 -0
- package/src/lib/components/latest-activity/constants/activitylog.ts +80 -0
- package/src/lib/components/latest-activity/latest-activity.module.ts +33 -0
- package/src/lib/components/latest-activity/services/activity-log.service.ts +41 -0
- package/src/lib/components/mutiple-dynamic-form-viewer/multiple-dynamic-form-viewer/multiple-dynamic-form-viewer.component.html +36 -0
- package/src/lib/components/mutiple-dynamic-form-viewer/multiple-dynamic-form-viewer/multiple-dynamic-form-viewer.component.scss +32 -0
- package/src/lib/components/mutiple-dynamic-form-viewer/multiple-dynamic-form-viewer/multiple-dynamic-form-viewer.component.spec.ts +25 -0
- package/src/lib/components/mutiple-dynamic-form-viewer/multiple-dynamic-form-viewer/multiple-dynamic-form-viewer.component.ts +45 -0
- package/src/lib/components/mutiple-dynamic-form-viewer/mutiple-dynamic-form-viewer.module.ts +18 -0
- package/src/lib/components/notifications/components/notification-item/notification-item.component.html +45 -0
- package/src/lib/components/notifications/components/notification-item/notification-item.component.scss +60 -0
- package/src/lib/components/notifications/components/notification-item/notification-item.component.ts +136 -0
- package/src/lib/components/notifications/components/notification-options/notification-options.component.html +7 -0
- package/src/lib/components/notifications/components/notification-options/notification-options.component.scss +7 -0
- package/src/lib/components/notifications/components/notification-options/notification-options.component.ts +16 -0
- package/src/lib/components/notifications/components/notification-toast/notification-toast.component.html +66 -0
- package/src/lib/components/notifications/components/notification-toast/notification-toast.component.scss +62 -0
- package/src/lib/components/notifications/components/notification-toast/notification-toast.component.spec.ts +25 -0
- package/src/lib/components/notifications/components/notification-toast/notification-toast.component.ts +55 -0
- package/src/lib/components/notifications/components/notifications-button/notifications-button.component.html +7 -0
- package/src/lib/components/notifications/components/notifications-button/notifications-button.component.scss +90 -0
- package/src/lib/components/notifications/components/notifications-button/notifications-button.component.ts +190 -0
- package/src/lib/components/notifications/components/notifications-list/notifications-list.component.html +55 -0
- package/src/lib/components/notifications/components/notifications-list/notifications-list.component.scss +108 -0
- package/src/lib/components/notifications/components/notifications-list/notifications-list.component.ts +161 -0
- package/src/lib/components/notifications/interceptors/token.interceptor.ts +37 -0
- package/src/lib/components/notifications/notifications.module.ts +67 -0
- package/src/lib/components/notifications/notifications.service.ts +300 -0
- package/src/lib/components/pagination/pagination/pagination.component.html +33 -0
- package/src/lib/components/pagination/pagination/pagination.component.scss +46 -0
- package/src/lib/components/pagination/pagination/pagination.component.spec.ts +25 -0
- package/src/lib/components/pagination/pagination/pagination.component.ts +132 -0
- package/src/lib/components/pagination/pagination.module.ts +21 -0
- package/src/lib/components/pdf-tron/pdf-tron.module.ts +16 -0
- package/src/lib/components/pdf-tron/pdftron/pdftron.component.html +1 -0
- package/src/lib/components/pdf-tron/pdftron/pdftron.component.scss +0 -0
- package/src/lib/components/pdf-tron/pdftron/pdftron.component.spec.ts +25 -0
- package/src/lib/components/pdf-tron/pdftron/pdftron.component.ts +782 -0
- package/src/lib/components/pdf-tron/pdftron/pdftron.service.ts +236 -0
- package/src/lib/components/permissions/add-permissions-dialog/add-permissions-dialog.component.html +149 -0
- package/src/lib/components/permissions/add-permissions-dialog/add-permissions-dialog.component.scss +159 -0
- package/src/lib/components/permissions/add-permissions-dialog/add-permissions-dialog.component.spec.ts +25 -0
- package/src/lib/components/permissions/add-permissions-dialog/add-permissions-dialog.component.ts +198 -0
- package/src/lib/components/permissions/permission.service.ts +151 -0
- package/src/lib/components/permissions/permissions/permissions.component.html +129 -0
- package/src/lib/components/permissions/permissions/permissions.component.scss +0 -0
- package/src/lib/components/permissions/permissions/permissions.component.spec.ts +25 -0
- package/src/lib/components/permissions/permissions/permissions.component.ts +227 -0
- package/src/lib/components/permissions/permissions-template/permissions-template.component.html +47 -0
- package/src/lib/components/permissions/permissions-template/permissions-template.component.scss +7 -0
- package/src/lib/components/permissions/permissions-template/permissions-template.component.spec.ts +25 -0
- package/src/lib/components/permissions/permissions-template/permissions-template.component.ts +104 -0
- package/src/lib/components/permissions/permissions.module.ts +39 -0
- package/src/lib/components/select/select/select.component.html +64 -0
- package/src/lib/components/select/select/select.component.scss +144 -0
- package/src/lib/components/select/select/select.component.spec.ts +25 -0
- package/src/lib/components/select/select/select.component.ts +116 -0
- package/src/lib/components/select/select.module.ts +22 -0
- package/src/lib/components/select-users-by-department/select-users-by-department.module.ts +27 -0
- package/src/lib/components/select-users-by-department/select-users-by-departments/department-management.service.ts +27 -0
- package/src/lib/components/select-users-by-department/select-users-by-departments/select-users-by-departments.component.html +88 -0
- package/src/lib/components/select-users-by-department/select-users-by-departments/select-users-by-departments.component.scss +15 -0
- package/src/lib/components/select-users-by-department/select-users-by-departments/select-users-by-departments.component.spec.ts +25 -0
- package/src/lib/components/select-users-by-department/select-users-by-departments/select-users-by-departments.component.ts +105 -0
- package/src/lib/components/table/dynamic-column/dynamic-column.component.ts +79 -0
- package/src/lib/components/table/table/table.component.html +377 -0
- package/src/lib/components/table/table/table.component.scss +507 -0
- package/src/lib/components/table/table/table.component.spec.ts +25 -0
- package/src/lib/components/table/table/table.component.ts +195 -0
- package/src/lib/components/table/table.module.ts +35 -0
- package/src/lib/components/user/user/user.component.html +15 -0
- package/src/lib/components/user/user/user.component.scss +0 -0
- package/src/lib/components/user/user/user.component.spec.ts +25 -0
- package/src/lib/components/user/user/user.component.ts +19 -0
- package/src/lib/components/user/user.module.ts +18 -0
- package/src/lib/components/users-card/users-card.component.html +20 -0
- package/src/lib/components/users-card/users-card.component.scss +16 -0
- package/src/lib/components/users-card/users-card.component.ts +30 -0
- package/src/lib/components/users-card/users-card.module.ts +19 -0
- package/src/lib/components/viewer-log/components/viewer-log/viewer-log.component.html +9 -0
- package/src/lib/components/viewer-log/components/viewer-log/viewer-log.component.scss +12 -0
- package/src/lib/components/viewer-log/components/viewer-log/viewer-log.component.spec.ts +25 -0
- package/src/lib/components/viewer-log/components/viewer-log/viewer-log.component.ts +25 -0
- package/src/lib/components/viewer-log/viewer-log.module.ts +12 -0
- package/src/lib/components/vocabulary/interfaces/op-type.interface.ts +4 -0
- package/src/lib/components/vocabulary/services/vocabulary-api.service.ts +46 -0
- package/src/lib/components/vocabulary/vocabulary/vocabulary.component.html +12 -0
- package/src/lib/components/vocabulary/vocabulary/vocabulary.component.scss +0 -0
- package/src/lib/components/vocabulary/vocabulary/vocabulary.component.spec.ts +25 -0
- package/src/lib/components/vocabulary/vocabulary/vocabulary.component.ts +80 -0
- package/src/lib/components/vocabulary/vocabulary.module.ts +20 -0
- package/src/lib/configuration/app-config.service.ts +26 -0
- package/src/lib/configuration/configuration.module.ts +12 -0
- package/src/lib/configuration/helpers/app-initializer.ts +5 -0
- package/src/lib/directive/app-has-role/app-has-role.directive.ts +62 -0
- package/src/lib/directive/clickOutSide/click-outside.directive.ts +20 -0
- package/src/lib/directive/directive.module.ts +36 -0
- package/src/lib/directive/drag-and-drop/drag-and-drop.directive.ts +37 -0
- package/src/lib/directive/permissions/evaluators.service.ts +148 -0
- package/src/lib/directive/permissions/permissions.directive.ts +74 -0
- package/src/lib/directive/rtl/set-dir-rtl.directive.ts +25 -0
- package/src/lib/directive/rtl/set-rtl.directive.ts +26 -0
- package/src/lib/nuxeo-development-framework.component.ts +20 -0
- package/src/lib/nuxeo-development-framework.module.ts +31 -0
- package/src/lib/nuxeo-development-framework.service.ts +9 -0
- package/src/lib/pipes/file-size.pipe.ts +61 -0
- package/src/lib/pipes/hijri-date.pipe.ts +40 -0
- package/src/lib/pipes/localized-date.pipe.ts +80 -0
- package/src/lib/pipes/multi-value.pipe.ts +39 -0
- package/src/lib/pipes/pipes.module.ts +20 -0
- package/src/lib/pipes/secure-html.pipe.ts +27 -0
- package/src/lib/pipes/secure.pipe.ts +37 -0
- package/src/lib/pipes/time-ago.pipe.ts +68 -0
- package/src/lib/shared/components/button/button.component.html +13 -0
- package/src/lib/shared/components/button/button.component.scss +102 -0
- package/src/lib/shared/components/button/button.component.spec.ts +25 -0
- package/src/lib/shared/components/button/button.component.ts +87 -0
- package/src/lib/shared/components/item-list/item-list.component.html +37 -0
- package/src/lib/shared/components/item-list/item-list.component.scss +62 -0
- package/src/lib/shared/components/item-list/item-list.component.spec.ts +25 -0
- package/src/lib/shared/components/item-list/item-list.component.ts +69 -0
- package/src/lib/shared/components/no-data/no-data.component.html +3 -0
- package/src/lib/shared/components/no-data/no-data.component.scss +13 -0
- package/src/lib/shared/components/no-data/no-data.component.spec.ts +25 -0
- package/src/lib/shared/components/no-data/no-data.component.ts +26 -0
- package/src/lib/shared/components/read-more/read-more.component.ts +86 -0
- package/src/lib/shared/components/search-autocomplete/search-autocomplete.component.html +24 -0
- package/src/lib/shared/components/search-autocomplete/search-autocomplete.component.scss +50 -0
- package/src/lib/shared/components/search-autocomplete/search-autocomplete.component.spec.ts +25 -0
- package/src/lib/shared/components/search-autocomplete/search-autocomplete.component.ts +153 -0
- package/src/lib/shared/components/spinner/spinner.component.html +10 -0
- package/src/lib/shared/components/spinner/spinner.component.scss +11 -0
- package/src/lib/shared/components/spinner/spinner.component.spec.ts +25 -0
- package/src/lib/shared/components/spinner/spinner.component.ts +25 -0
- package/src/lib/shared/components/user-card/user-card.component.html +21 -0
- package/src/lib/shared/components/user-card/user-card.component.scss +42 -0
- package/src/lib/shared/components/user-card/user-card.component.spec.ts +25 -0
- package/src/lib/shared/components/user-card/user-card.component.ts +42 -0
- package/src/lib/shared/libraryShared.module.ts +47 -0
- package/src/lib/shared-services/dialog-mangment.service.ts +62 -0
- package/src/lib/shared-services/dynamic-form.service.ts +252 -0
- package/src/lib/shared-services/file-manager.adapter.ts +69 -0
- package/src/lib/shared-services/file-manager.service.ts +1073 -0
- package/src/lib/shared-services/global-pdftron.service.ts +50 -0
- package/src/lib/shared-services/mainfolder.service.ts +220 -0
- package/src/lib/shared-services/publishing-document.service.ts +242 -0
- package/src/lib/shared-services/recently-viewed.service.ts +55 -0
- package/src/lib/shared-services/shared-docs.service.ts +173 -0
- package/src/lib/shared-services/shared-services.module.ts +12 -0
- package/src/lib/shared-services/upload-file.service.ts +26 -0
- package/src/lib/shared-services/upload-managment.service.ts +148 -0
- package/src/lib/shared-services/user.service.ts +49 -0
- package/src/public-api.ts +274 -0
- package/src/test.ts +26 -0
- package/tsconfig.doc.json +4 -0
- package/tsconfig.lib.json +21 -0
- package/tsconfig.lib.prod.json +10 -0
- package/tsconfig.spec.json +17 -0
- package/tslint.json +17 -0
- package/bundles/nuxeo-development-framework.umd.js +0 -29330
- package/bundles/nuxeo-development-framework.umd.js.map +0 -1
- package/esm2015/lib/Core/adapters/adapter.service.js +0 -50
- package/esm2015/lib/Core/core.module.js +0 -107
- package/esm2015/lib/Core/enums/language.enum.js +0 -6
- package/esm2015/lib/Core/models/component.model.js +0 -8
- package/esm2015/lib/Core/services/callApi/call-api.service.js +0 -33
- package/esm2015/lib/Core/services/extension/action.extensions.js +0 -9
- package/esm2015/lib/Core/services/extension/component-register.service.js +0 -25
- package/esm2015/lib/Core/services/extension/extenion-utils.js +0 -115
- package/esm2015/lib/Core/services/extension/extension-element.js +0 -2
- package/esm2015/lib/Core/services/extension/extension-loader.service.js +0 -127
- package/esm2015/lib/Core/services/extension/extension.service.js +0 -120
- package/esm2015/lib/Core/services/initialization/initialization.service.js +0 -57
- package/esm2015/lib/Core/services/localStorag/local-storag.service.js +0 -123
- package/esm2015/lib/Core/services/nuxeo/nuxeo-override.js +0 -82
- package/esm2015/lib/Core/services/nuxeo/nuxeo.service.js +0 -120
- package/esm2015/lib/Core/services/roles/roles.service.js +0 -119
- package/esm2015/lib/Core/services/translation/translate-loader.service.js +0 -150
- package/esm2015/lib/Core/services/translation/translation.service.js +0 -174
- package/esm2015/lib/Core/services/user/user-preferences.service.js +0 -153
- package/esm2015/lib/Core/utilities/moment-date-adapter.js +0 -178
- package/esm2015/lib/Core/utilities/utility.service.js +0 -81
- package/esm2015/lib/components/activities-log/activities-log/activities-log.component.js +0 -84
- package/esm2015/lib/components/activities-log/activities-log/activities-log.service.js +0 -35
- package/esm2015/lib/components/activities-log/activities-log.module.js +0 -30
- package/esm2015/lib/components/activity/activity/activity.component.js +0 -28
- package/esm2015/lib/components/activity/activity.module.js +0 -37
- package/esm2015/lib/components/attachment-item/attachment-item/attachment-item.component.js +0 -54
- package/esm2015/lib/components/attachment-item/attachment-item.module.js +0 -44
- package/esm2015/lib/components/attachment-modal/attachment-modal.module.js +0 -40
- package/esm2015/lib/components/attachment-modal/attachments/attachments.component.js +0 -157
- package/esm2015/lib/components/avatar/avatar/avatar.component.js +0 -55
- package/esm2015/lib/components/avatar/avatar.module.js +0 -32
- package/esm2015/lib/components/card/card.component.js +0 -48
- package/esm2015/lib/components/card/card.module.js +0 -23
- package/esm2015/lib/components/comments/comments.module.js +0 -82
- package/esm2015/lib/components/comments/components/comment-item/comment-item.component.js +0 -86
- package/esm2015/lib/components/comments/components/comments-dashlet/comments-dashlet.component.js +0 -81
- package/esm2015/lib/components/comments/components/comments-list/comments-list.component.js +0 -73
- package/esm2015/lib/components/comments/components/edit-delete-modal/edit-delete-modal.component.js +0 -63
- package/esm2015/lib/components/comments/constants/comment.js +0 -25
- package/esm2015/lib/components/comments/services/comment-api.service.js +0 -71
- package/esm2015/lib/components/confirm-caller/confirm-caller.dialog.js +0 -75
- package/esm2015/lib/components/confirm-caller/confirm-caller.module.js +0 -27
- package/esm2015/lib/components/confirm-caller/confirm-dialog/confirm-dialog.component.js +0 -29
- package/esm2015/lib/components/confirmation-dialog/confirmation-dialog/confirmation-dialog.component.js +0 -30
- package/esm2015/lib/components/confirmation-dialog/confirmation-dialog.module.js +0 -30
- package/esm2015/lib/components/correspondence-relation/components/correspondence-relation/correspondence-relation.component.js +0 -137
- package/esm2015/lib/components/correspondence-relation/components/correspondence-relation-create-form/correspondence-relation-create-form.component.js +0 -133
- package/esm2015/lib/components/correspondence-relation/components/correspondence-relation-list/correspondence-relation-list.component.js +0 -110
- package/esm2015/lib/components/correspondence-relation/components/correspondence-relation-reply/correspondence-relation-reply.component.js +0 -68
- package/esm2015/lib/components/correspondence-relation/components/versions/versions.component.js +0 -75
- package/esm2015/lib/components/correspondence-relation/correspondence-relation.module.js +0 -111
- package/esm2015/lib/components/correspondence-relation/services/correspondence-realation.service.js +0 -153
- package/esm2015/lib/components/correspondence-relation/services/viewer-files.service.js +0 -50
- package/esm2015/lib/components/create-entity/create-entity/create-entity.component.js +0 -69
- package/esm2015/lib/components/create-entity/create-entity.module.js +0 -36
- package/esm2015/lib/components/cts-tags/components/correspondence-tags/correspondence-tags.component.js +0 -140
- package/esm2015/lib/components/cts-tags/cts-tags.module.js +0 -65
- package/esm2015/lib/components/cts-tags/services/tags-api.service.js +0 -90
- package/esm2015/lib/components/custom-toastr/components/custom-toastr/custom-toastr.component.js +0 -82
- package/esm2015/lib/components/custom-toastr/custom-toastr.module.js +0 -36
- package/esm2015/lib/components/custom-toastr/interfaces/toast-type.interface.js +0 -2
- package/esm2015/lib/components/custom-toastr/services/custom-toastr.service.js +0 -41
- package/esm2015/lib/components/display-suitable-icon/display-suitable-icon/display-suitable-icon.component.js +0 -44
- package/esm2015/lib/components/display-suitable-icon/display-suitable-icon/icon.service.js +0 -140
- package/esm2015/lib/components/display-suitable-icon/display-suitable-icon.module.js +0 -24
- package/esm2015/lib/components/documents/components/attachments-list/attachments-list.component.js +0 -156
- package/esm2015/lib/components/documents/components/attachments-page-provider/attachments-page-provider.component.js +0 -75
- package/esm2015/lib/components/documents/components/document-list/documents-list.component.js +0 -252
- package/esm2015/lib/components/documents/components/document-scan/document-scan.component.js +0 -974
- package/esm2015/lib/components/documents/components/document-scan/document-scan.service.js +0 -30
- package/esm2015/lib/components/documents/components/document-upload/document-upload.component.js +0 -159
- package/esm2015/lib/components/documents/components/documents/documents.component.js +0 -63
- package/esm2015/lib/components/documents/constants/document-templates.js +0 -32
- package/esm2015/lib/components/documents/constants/documents.js +0 -86
- package/esm2015/lib/components/documents/documents.module.js +0 -123
- package/esm2015/lib/components/documents/services/document-templates.service.js +0 -115
- package/esm2015/lib/components/documents/services/documents.service.js +0 -223
- package/esm2015/lib/components/dynamic-chart/dynamic-chart/dynamic-chart.component.js +0 -391
- package/esm2015/lib/components/dynamic-chart/dynamic-chart.module.js +0 -34
- package/esm2015/lib/components/dynamic-chart/dynamic-single-chart/dynamic-single-chart.component.js +0 -164
- package/esm2015/lib/components/dynamic-chart/services/chart-data.service.js +0 -552
- package/esm2015/lib/components/dynamic-fields-renderer/dynamic-fields-renderer/dynamic-fields-renderer.component.js +0 -177
- package/esm2015/lib/components/dynamic-fields-renderer/dynamic-fields-renderer.module.js +0 -43
- package/esm2015/lib/components/dynamic-filter/dynamic-filter/dynamic-filter.component.js +0 -137
- package/esm2015/lib/components/dynamic-filter/dynamic-filter.module.js +0 -27
- package/esm2015/lib/components/dynamic-form/components/department-form/department-form.component.js +0 -130
- package/esm2015/lib/components/dynamic-form/components/dynamic-form/dynamic-form.component.js +0 -105
- package/esm2015/lib/components/dynamic-form/components/dynamic-form/fields.adapter.js +0 -127
- package/esm2015/lib/components/dynamic-form/components/dynamic-form/form-builder.service.js +0 -107
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-boolitem/dynamic-form-boolitem.component.js +0 -35
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-builder/dynamic-form-builder.component.js +0 -165
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-checkbox-item/dynamic-form-checkbox-item.component.js +0 -71
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-dateitem/dynamic-form-dateitem.component.js +0 -202
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-dateitem/owlDateTimeIntl.js +0 -78
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-department/constants/department.js +0 -13
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-department/dynamic-form-department.component.js +0 -204
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-department/services/department-api.service.js +0 -203
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-department/services/department-management.service.js +0 -95
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-field/dynamic-form-field.component.js +0 -85
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-hijri-dateitem/dynamic-form-hijri-dateitem.component.js +0 -139
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-item-dispatcher/dynamic-form-item-dispatcher.component.js +0 -81
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-mapitem/dynamic-form-mapitem.component.js +0 -36
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-options/dynamic-form-options.component.js +0 -106
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-select-tag/dynamic-form-select-tag.component.js +0 -93
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-select-user-filter/dynamic-form-select-user-filter.component.js +0 -207
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-select-users/dynamic-form-select-users.component.js +0 -311
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-select-users/services/user-api.service.js +0 -44
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-selectitem/dynamic-form-selectitem.component.js +0 -191
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-slide-toggleitem/dynamic-form-slide-toggleitem.component.js +0 -81
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-textarea/dynamic-form-textarea.component.js +0 -180
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-textitem/dynamic-form-textitem.component.js +0 -279
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-treeview-select/dropdown-treeview-select-i18n.js +0 -68
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-treeview-select/dropdown-treeview-select.component.js +0 -314
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-viewer/dynamic-form-viewer.component.js +0 -47
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-vocabulary-item/dynamic-form-vocabulary-item.component.js +0 -178
- package/esm2015/lib/components/dynamic-form/components/form-wrappers/base-edit-form/base-edit-form.js +0 -768
- package/esm2015/lib/components/dynamic-form/components/form-wrappers/date-wrapper/date-wrapper.component.js +0 -35
- package/esm2015/lib/components/dynamic-form/components/form-wrappers/date-wrapper/date-wrapper.formio.js +0 -17
- package/esm2015/lib/components/dynamic-form/components/form-wrappers/toggle-wrapper/toggle-wrapper.component.js +0 -34
- package/esm2015/lib/components/dynamic-form/components/form-wrappers/toggle-wrapper/toggle-wrapper.formio.js +0 -17
- package/esm2015/lib/components/dynamic-form/components/form-wrappers/user-selector-wrapper/user-selector-wrapper.component.js +0 -74
- package/esm2015/lib/components/dynamic-form/components/form-wrappers/user-selector-wrapper/user-selector-wrapper.formio.js +0 -30
- package/esm2015/lib/components/dynamic-form/components/form-wrappers/vocabulary-wrapper/vocabulary-wrapper.component.js +0 -32
- package/esm2015/lib/components/dynamic-form/components/form-wrappers/vocabulary-wrapper/vocabulary-wrapper.formio.js +0 -30
- package/esm2015/lib/components/dynamic-form/directives/dynamic-form-content-proxy.directive.js +0 -17
- package/esm2015/lib/components/dynamic-form/dynamic-form.module.js +0 -299
- package/esm2015/lib/components/dynamic-form/interfaces/dynamic-form-boolitem-properties.interface.js +0 -2
- package/esm2015/lib/components/dynamic-form/interfaces/dynamic-form-dateitem-properties.interface.js +0 -2
- package/esm2015/lib/components/dynamic-form/interfaces/dynamic-form-item-properties.interface.js +0 -2
- package/esm2015/lib/components/dynamic-form/interfaces/dynamic-form-item-validator.interface.js +0 -2
- package/esm2015/lib/components/dynamic-form/interfaces/dynamic-form-item.interface.js +0 -2
- package/esm2015/lib/components/dynamic-form/interfaces/dynamic-form-keyvaluepairsitem-properties.interface.js +0 -2
- package/esm2015/lib/components/dynamic-form/interfaces/dynamic-form-selectitem-properties.interface.js +0 -2
- package/esm2015/lib/components/dynamic-form/interfaces/dynamic-form-textitem-pipe-property.interface.js +0 -2
- package/esm2015/lib/components/dynamic-form/interfaces/dynamic-form-textitem-properties.interface.js +0 -2
- package/esm2015/lib/components/dynamic-form/interfaces/dynamic-form.interfaces.js +0 -10
- package/esm2015/lib/components/dynamic-form/models/dynamic-form-baseitem.model.js +0 -63
- package/esm2015/lib/components/dynamic-form/models/dynamic-form-boolitem.model.js +0 -20
- package/esm2015/lib/components/dynamic-form/models/dynamic-form-dateitem.model.js +0 -24
- package/esm2015/lib/components/dynamic-form/models/dynamic-form-datetimeitem.model.js +0 -12
- package/esm2015/lib/components/dynamic-form/models/dynamic-form-mapitem.model.js +0 -16
- package/esm2015/lib/components/dynamic-form/models/dynamic-form-selectitem.model.js +0 -17
- package/esm2015/lib/components/dynamic-form/models/dynamic-form-textitem.model.js +0 -32
- package/esm2015/lib/components/dynamic-form/models/dynamic-form.models.js +0 -8
- package/esm2015/lib/components/dynamic-form/services/card-item-types.service.js +0 -46
- package/esm2015/lib/components/dynamic-form/services/dynamic-component-mapper.service.js +0 -60
- package/esm2015/lib/components/dynamic-form/services/dynamic-form-update.service.js +0 -83
- package/esm2015/lib/components/dynamic-form/validators/length-validator.js +0 -15
- package/esm2015/lib/components/dynamic-form/validators/regex-validator.js +0 -15
- package/esm2015/lib/components/dynamic-form/validators/required-validator.js +0 -9
- package/esm2015/lib/components/dynamic-form/validators/value-validator.js +0 -15
- package/esm2015/lib/components/dynamic-search/dynamic-search/dynamic-search.component.js +0 -323
- package/esm2015/lib/components/dynamic-search/dynamic-search.module.js +0 -61
- package/esm2015/lib/components/dynamic-table/dynamic-table/dynamic-table.component.js +0 -238
- package/esm2015/lib/components/dynamic-table/dynamic-table.module.js +0 -44
- package/esm2015/lib/components/dynamic-table/services/dynamic-table.service.js +0 -16
- package/esm2015/lib/components/dynamic-tabs/dynamic-tabs/dynamic-tabs.component.js +0 -39
- package/esm2015/lib/components/dynamic-tabs/dynamic-tabs.module.js +0 -34
- package/esm2015/lib/components/dynamic-view/boolean-viewer/boolean-viewer.component.js +0 -36
- package/esm2015/lib/components/dynamic-view/custom-document-viewer/custom-document-viewer.component.js +0 -59
- package/esm2015/lib/components/dynamic-view/custom-pp-viewer/custom-pp-viewer.component.js +0 -68
- package/esm2015/lib/components/dynamic-view/cutome-voc-viewer/cutome-voc-viewer.component.js +0 -33
- package/esm2015/lib/components/dynamic-view/data-viewer/data-viewer.component.js +0 -33
- package/esm2015/lib/components/dynamic-view/date-viewer/date-viewer.component.js +0 -55
- package/esm2015/lib/components/dynamic-view/department-viewer/department-viewer.component.js +0 -89
- package/esm2015/lib/components/dynamic-view/dropdown-viewer/dropdown-viewer.component.js +0 -61
- package/esm2015/lib/components/dynamic-view/dynamic-view.module.js +0 -69
- package/esm2015/lib/components/dynamic-view/dynamic-viewe.service.js +0 -62
- package/esm2015/lib/components/dynamic-view/list-viewer/list-viewer.component.js +0 -40
- package/esm2015/lib/components/file-manger/components/add-to-collection/add-to-collection.component.js +0 -132
- package/esm2015/lib/components/file-manger/components/clipboard/clipboard.component.js +0 -264
- package/esm2015/lib/components/file-manger/components/copy/copy.component.js +0 -121
- package/esm2015/lib/components/file-manger/components/create-directory/create-directory.component.js +0 -91
- package/esm2015/lib/components/file-manger/components/create-modal/create-modal.component.js +0 -455
- package/esm2015/lib/components/file-manger/components/creation-type/creation-type.component.js +0 -26
- package/esm2015/lib/components/file-manger/components/delete/delete.component.js +0 -74
- package/esm2015/lib/components/file-manger/components/folder-modal/folder-modal.component.js +0 -114
- package/esm2015/lib/components/file-manger/components/loan-request/loan-request.component.js +0 -80
- package/esm2015/lib/components/file-manger/components/move/move.component.js +0 -110
- package/esm2015/lib/components/file-manger/components/publish-dialog/publish-dialog.component.js +0 -108
- package/esm2015/lib/components/file-manger/components/rename/rename.component.js +0 -86
- package/esm2015/lib/components/file-manger/components/scan-modal/scan-modal.component.js +0 -314
- package/esm2015/lib/components/file-manger/components/share-dialog/share-dialog.component.js +0 -294
- package/esm2015/lib/components/file-manger/components/sidepanel/sidepanel.component.js +0 -257
- package/esm2015/lib/components/file-manger/components/template-modal/template-modal.component.js +0 -64
- package/esm2015/lib/components/file-manger/components/transfer-doc/transfer-doc.component.js +0 -71
- package/esm2015/lib/components/file-manger/components/update-modal/update-modal.component.js +0 -358
- package/esm2015/lib/components/file-manger/file-manager.abstract.js +0 -1034
- package/esm2015/lib/components/file-manger/file-manger.module.js +0 -295
- package/esm2015/lib/components/filter/filter/filter.component.js +0 -94
- package/esm2015/lib/components/filter/filter.module.js +0 -45
- package/esm2015/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/gregorian-datepicker/gregorian-datepicker.component.js +0 -123
- package/esm2015/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/hijri-datepicker/hijri-datepicker.component.js +0 -126
- package/esm2015/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/hijri-gregorian-datepicker.component.js +0 -165
- package/esm2015/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/provide-parent-form.directive.js +0 -32
- package/esm2015/lib/components/hijri-gregorian-datepicker/ngx-hijri-gregorian-datepicker.module.js +0 -58
- package/esm2015/lib/components/hijri-gregorian-datepicker/services/date-formatter.service.js +0 -71
- package/esm2015/lib/components/hijri-gregorian-datepicker/services/date-helper.service.js +0 -30
- package/esm2015/lib/components/hijri-gregorian-datepicker/utils/CustomNgbDateParserFormatter.js +0 -43
- package/esm2015/lib/components/hijri-gregorian-datepicker/utils/IslamicI18n.js +0 -26
- package/esm2015/lib/components/hijri-gregorian-datepicker/utils/consts.js +0 -5
- package/esm2015/lib/components/latest-activity/components/activity-line/activity-line.component.js +0 -75
- package/esm2015/lib/components/latest-activity/components/latest-activity/latest-activity.component.js +0 -70
- package/esm2015/lib/components/latest-activity/components/single-activity/single-activity.component.js +0 -27
- package/esm2015/lib/components/latest-activity/constants/activitylog.js +0 -80
- package/esm2015/lib/components/latest-activity/latest-activity.module.js +0 -57
- package/esm2015/lib/components/latest-activity/services/activity-log.service.js +0 -33
- package/esm2015/lib/components/mutiple-dynamic-form-viewer/multiple-dynamic-form-viewer/multiple-dynamic-form-viewer.component.js +0 -51
- package/esm2015/lib/components/mutiple-dynamic-form-viewer/mutiple-dynamic-form-viewer.module.js +0 -30
- package/esm2015/lib/components/notifications/components/notification-item/notification-item.component.js +0 -137
- package/esm2015/lib/components/notifications/components/notification-options/notification-options.component.js +0 -22
- package/esm2015/lib/components/notifications/components/notification-toast/notification-toast.component.js +0 -57
- package/esm2015/lib/components/notifications/components/notifications-button/notifications-button.component.js +0 -172
- package/esm2015/lib/components/notifications/components/notifications-list/notifications-list.component.js +0 -164
- package/esm2015/lib/components/notifications/notifications.module.js +0 -109
- package/esm2015/lib/components/notifications/notifications.service.js +0 -280
- package/esm2015/lib/components/pagination/pagination/pagination.component.js +0 -124
- package/esm2015/lib/components/pagination/pagination.module.js +0 -32
- package/esm2015/lib/components/pdf-tron/pdf-tron.module.js +0 -24
- package/esm2015/lib/components/pdf-tron/pdftron/pdftron.component.js +0 -745
- package/esm2015/lib/components/pdf-tron/pdftron/pdftron.service.js +0 -239
- package/esm2015/lib/components/permissions/add-permissions-dialog/add-permissions-dialog.component.js +0 -177
- package/esm2015/lib/components/permissions/permission.service.js +0 -118
- package/esm2015/lib/components/permissions/permissions/permissions.component.js +0 -232
- package/esm2015/lib/components/permissions/permissions-template/permissions-template.component.js +0 -117
- package/esm2015/lib/components/permissions/permissions.module.js +0 -71
- package/esm2015/lib/components/select/select/select.component.js +0 -130
- package/esm2015/lib/components/select/select.module.js +0 -37
- package/esm2015/lib/components/select-users-by-department/select-users-by-department.module.js +0 -47
- package/esm2015/lib/components/select-users-by-department/select-users-by-departments/department-management.service.js +0 -27
- package/esm2015/lib/components/select-users-by-department/select-users-by-departments/select-users-by-departments.component.js +0 -116
- package/esm2015/lib/components/table/dynamic-column/dynamic-column.component.js +0 -64
- package/esm2015/lib/components/table/table/table.component.js +0 -227
- package/esm2015/lib/components/table/table.module.js +0 -61
- package/esm2015/lib/components/user/user/user.component.js +0 -31
- package/esm2015/lib/components/user/user.module.js +0 -30
- package/esm2015/lib/components/users-card/users-card.component.js +0 -43
- package/esm2015/lib/components/users-card/users-card.module.js +0 -28
- package/esm2015/lib/components/viewer-log/components/viewer-log/viewer-log.component.js +0 -33
- package/esm2015/lib/components/viewer-log/viewer-log.module.js +0 -20
- package/esm2015/lib/components/vocabulary/interfaces/op-type.interface.js +0 -2
- package/esm2015/lib/components/vocabulary/services/vocabulary-api.service.js +0 -49
- package/esm2015/lib/components/vocabulary/vocabulary/vocabulary.component.js +0 -106
- package/esm2015/lib/components/vocabulary/vocabulary.module.js +0 -34
- package/esm2015/lib/configuration/app-config.service.js +0 -30
- package/esm2015/lib/configuration/helpers/app-initializer.js +0 -4
- package/esm2015/lib/directive/app-has-role/app-has-role.directive.js +0 -61
- package/esm2015/lib/directive/clickOutSide/click-outside.directive.js +0 -29
- package/esm2015/lib/directive/directive.module.js +0 -52
- package/esm2015/lib/directive/drag-and-drop/drag-and-drop.directive.js +0 -46
- package/esm2015/lib/directive/permissions/evaluators.service.js +0 -152
- package/esm2015/lib/directive/permissions/permissions.directive.js +0 -69
- package/esm2015/lib/directive/rtl/set-dir-rtl.directive.js +0 -28
- package/esm2015/lib/directive/rtl/set-rtl.directive.js +0 -29
- package/esm2015/lib/nuxeo-development-framework.component.js +0 -26
- package/esm2015/lib/nuxeo-development-framework.module.js +0 -50
- package/esm2015/lib/nuxeo-development-framework.service.js +0 -14
- package/esm2015/lib/pipes/file-size.pipe.js +0 -57
- package/esm2015/lib/pipes/hijri-date.pipe.js +0 -46
- package/esm2015/lib/pipes/localized-date.pipe.js +0 -81
- package/esm2015/lib/pipes/multi-value.pipe.js +0 -42
- package/esm2015/lib/pipes/pipes.module.js +0 -29
- package/esm2015/lib/pipes/secure-html.pipe.js +0 -34
- package/esm2015/lib/pipes/secure.pipe.js +0 -40
- package/esm2015/lib/pipes/time-ago.pipe.js +0 -68
- package/esm2015/lib/shared/components/button/button.component.js +0 -87
- package/esm2015/lib/shared/components/item-list/item-list.component.js +0 -77
- package/esm2015/lib/shared/components/no-data/no-data.component.js +0 -37
- package/esm2015/lib/shared/components/read-more/read-more.component.js +0 -108
- package/esm2015/lib/shared/components/search-autocomplete/search-autocomplete.component.js +0 -146
- package/esm2015/lib/shared/components/spinner/spinner.component.js +0 -29
- package/esm2015/lib/shared/components/user-card/user-card.component.js +0 -49
- package/esm2015/lib/shared/libraryShared.module.js +0 -81
- package/esm2015/lib/shared-services/dialog-mangment.service.js +0 -61
- package/esm2015/lib/shared-services/dynamic-form.service.js +0 -241
- package/esm2015/lib/shared-services/file-manager.adapter.js +0 -74
- package/esm2015/lib/shared-services/file-manager.service.js +0 -792
- package/esm2015/lib/shared-services/global-pdftron.service.js +0 -46
- package/esm2015/lib/shared-services/mainfolder.service.js +0 -162
- package/esm2015/lib/shared-services/publishing-document.service.js +0 -202
- package/esm2015/lib/shared-services/recently-viewed.service.js +0 -57
- package/esm2015/lib/shared-services/shared-docs.service.js +0 -135
- package/esm2015/lib/shared-services/shared-services.module.js +0 -20
- package/esm2015/lib/shared-services/upload-file.service.js +0 -29
- package/esm2015/lib/shared-services/upload-managment.service.js +0 -151
- package/esm2015/lib/shared-services/user.service.js +0 -54
- package/esm2015/nuxeo-development-framework.js +0 -5
- package/esm2015/public-api.js +0 -237
- package/fesm2015/nuxeo-development-framework.js +0 -27317
- package/fesm2015/nuxeo-development-framework.js.map +0 -1
- package/lib/Core/adapters/adapter.service.d.ts +0 -11
- package/lib/Core/core.module.d.ts +0 -14
- package/lib/Core/enums/language.enum.d.ts +0 -4
- package/lib/Core/models/component.model.d.ts +0 -6
- package/lib/Core/services/callApi/call-api.service.d.ts +0 -11
- package/lib/Core/services/extension/action.extensions.d.ts +0 -31
- package/lib/Core/services/extension/component-register.service.d.ts +0 -17
- package/lib/Core/services/extension/extenion-utils.d.ts +0 -14
- package/lib/Core/services/extension/extension-element.d.ts +0 -5
- package/lib/Core/services/extension/extension-loader.service.d.ts +0 -28
- package/lib/Core/services/extension/extension.service.d.ts +0 -70
- package/lib/Core/services/initialization/initialization.service.d.ts +0 -14
- package/lib/Core/services/localStorag/local-storag.service.d.ts +0 -41
- package/lib/Core/services/nuxeo/nuxeo-override.d.ts +0 -8
- package/lib/Core/services/nuxeo/nuxeo.service.d.ts +0 -33
- package/lib/Core/services/roles/roles.service.d.ts +0 -12
- package/lib/Core/services/translation/translate-loader.service.d.ts +0 -26
- package/lib/Core/services/translation/translation.service.d.ts +0 -74
- package/lib/Core/services/user/user-preferences.service.d.ts +0 -80
- package/lib/Core/utilities/moment-date-adapter.d.ts +0 -37
- package/lib/Core/utilities/utility.service.d.ts +0 -11
- package/lib/components/activities-log/activities-log/activities-log.component.d.ts +0 -23
- package/lib/components/activities-log/activities-log/activities-log.service.d.ts +0 -9
- package/lib/components/activities-log/activities-log.module.d.ts +0 -10
- package/lib/components/activity/activity/activity.component.d.ts +0 -13
- package/lib/components/activity/activity.module.d.ts +0 -13
- package/lib/components/attachment-item/attachment-item/attachment-item.component.d.ts +0 -21
- package/lib/components/attachment-item/attachment-item.module.d.ts +0 -13
- package/lib/components/attachment-modal/attachment-modal.module.d.ts +0 -12
- package/lib/components/attachment-modal/attachments/attachments.component.d.ts +0 -50
- package/lib/components/avatar/avatar/avatar.component.d.ts +0 -23
- package/lib/components/avatar/avatar.module.d.ts +0 -13
- package/lib/components/card/card.component.d.ts +0 -32
- package/lib/components/card/card.module.d.ts +0 -12
- package/lib/components/comments/comments.module.d.ts +0 -26
- package/lib/components/comments/components/comment-item/comment-item.component.d.ts +0 -24
- package/lib/components/comments/components/comments-dashlet/comments-dashlet.component.d.ts +0 -46
- package/lib/components/comments/components/comments-list/comments-list.component.d.ts +0 -28
- package/lib/components/comments/components/edit-delete-modal/edit-delete-modal.component.d.ts +0 -22
- package/lib/components/comments/constants/comment.d.ts +0 -25
- package/lib/components/comments/services/comment-api.service.d.ts +0 -16
- package/lib/components/confirm-caller/confirm-caller.dialog.d.ts +0 -46
- package/lib/components/confirm-caller/confirm-caller.module.d.ts +0 -16
- package/lib/components/confirm-caller/confirm-dialog/confirm-dialog.component.d.ts +0 -12
- package/lib/components/confirmation-dialog/confirmation-dialog/confirmation-dialog.component.d.ts +0 -12
- package/lib/components/confirmation-dialog/confirmation-dialog.module.d.ts +0 -10
- package/lib/components/correspondence-relation/components/correspondence-relation/correspondence-relation.component.d.ts +0 -34
- package/lib/components/correspondence-relation/components/correspondence-relation-create-form/correspondence-relation-create-form.component.d.ts +0 -42
- package/lib/components/correspondence-relation/components/correspondence-relation-list/correspondence-relation-list.component.d.ts +0 -31
- package/lib/components/correspondence-relation/components/correspondence-relation-reply/correspondence-relation-reply.component.d.ts +0 -18
- package/lib/components/correspondence-relation/components/versions/versions.component.d.ts +0 -38
- package/lib/components/correspondence-relation/correspondence-relation.module.d.ts +0 -30
- package/lib/components/correspondence-relation/services/correspondence-realation.service.d.ts +0 -26
- package/lib/components/correspondence-relation/services/viewer-files.service.d.ts +0 -18
- package/lib/components/create-entity/create-entity/create-entity.component.d.ts +0 -17
- package/lib/components/create-entity/create-entity.module.d.ts +0 -11
- package/lib/components/cts-tags/components/correspondence-tags/correspondence-tags.component.d.ts +0 -38
- package/lib/components/cts-tags/cts-tags.module.d.ts +0 -21
- package/lib/components/cts-tags/services/tags-api.service.d.ts +0 -17
- package/lib/components/custom-toastr/components/custom-toastr/custom-toastr.component.d.ts +0 -30
- package/lib/components/custom-toastr/custom-toastr.module.d.ts +0 -12
- package/lib/components/custom-toastr/interfaces/toast-type.interface.d.ts +0 -1
- package/lib/components/custom-toastr/services/custom-toastr.service.d.ts +0 -18
- package/lib/components/display-suitable-icon/display-suitable-icon/display-suitable-icon.component.d.ts +0 -17
- package/lib/components/display-suitable-icon/display-suitable-icon/icon.service.d.ts +0 -8
- package/lib/components/display-suitable-icon/display-suitable-icon.module.d.ts +0 -8
- package/lib/components/documents/components/attachments-list/attachments-list.component.d.ts +0 -54
- package/lib/components/documents/components/attachments-page-provider/attachments-page-provider.component.d.ts +0 -38
- package/lib/components/documents/components/document-list/documents-list.component.d.ts +0 -81
- package/lib/components/documents/components/document-scan/document-scan.component.d.ts +0 -112
- package/lib/components/documents/components/document-scan/document-scan.service.d.ts +0 -14
- package/lib/components/documents/components/document-upload/document-upload.component.d.ts +0 -58
- package/lib/components/documents/components/documents/documents.component.d.ts +0 -27
- package/lib/components/documents/constants/document-templates.d.ts +0 -33
- package/lib/components/documents/constants/documents.d.ts +0 -95
- package/lib/components/documents/documents.module.d.ts +0 -33
- package/lib/components/documents/services/document-templates.service.d.ts +0 -24
- package/lib/components/documents/services/documents.service.d.ts +0 -36
- package/lib/components/dynamic-chart/dynamic-chart/dynamic-chart.component.d.ts +0 -66
- package/lib/components/dynamic-chart/dynamic-chart.module.d.ts +0 -16
- package/lib/components/dynamic-chart/dynamic-single-chart/dynamic-single-chart.component.d.ts +0 -33
- package/lib/components/dynamic-chart/services/chart-data.service.d.ts +0 -37
- package/lib/components/dynamic-fields-renderer/dynamic-fields-renderer/dynamic-fields-renderer.component.d.ts +0 -137
- package/lib/components/dynamic-fields-renderer/dynamic-fields-renderer.module.d.ts +0 -12
- package/lib/components/dynamic-filter/dynamic-filter/dynamic-filter.component.d.ts +0 -55
- package/lib/components/dynamic-filter/dynamic-filter.module.d.ts +0 -17
- package/lib/components/dynamic-form/components/department-form/department-form.component.d.ts +0 -28
- package/lib/components/dynamic-form/components/dynamic-form/dynamic-form.component.d.ts +0 -27
- package/lib/components/dynamic-form/components/dynamic-form/fields.adapter.d.ts +0 -6
- package/lib/components/dynamic-form/components/dynamic-form/form-builder.service.d.ts +0 -21
- package/lib/components/dynamic-form/components/dynamic-form-boolitem/dynamic-form-boolitem.component.d.ts +0 -17
- package/lib/components/dynamic-form/components/dynamic-form-builder/dynamic-form-builder.component.d.ts +0 -57
- package/lib/components/dynamic-form/components/dynamic-form-checkbox-item/dynamic-form-checkbox-item.component.d.ts +0 -35
- package/lib/components/dynamic-form/components/dynamic-form-dateitem/dynamic-form-dateitem.component.d.ts +0 -70
- package/lib/components/dynamic-form/components/dynamic-form-dateitem/owlDateTimeIntl.d.ts +0 -52
- package/lib/components/dynamic-form/components/dynamic-form-department/constants/department.d.ts +0 -12
- package/lib/components/dynamic-form/components/dynamic-form-department/dynamic-form-department.component.d.ts +0 -76
- package/lib/components/dynamic-form/components/dynamic-form-department/services/department-api.service.d.ts +0 -29
- package/lib/components/dynamic-form/components/dynamic-form-department/services/department-management.service.d.ts +0 -21
- package/lib/components/dynamic-form/components/dynamic-form-field/dynamic-form-field.component.d.ts +0 -30
- package/lib/components/dynamic-form/components/dynamic-form-hijri-dateitem/dynamic-form-hijri-dateitem.component.d.ts +0 -64
- package/lib/components/dynamic-form/components/dynamic-form-item-dispatcher/dynamic-form-item-dispatcher.component.d.ts +0 -25
- package/lib/components/dynamic-form/components/dynamic-form-mapitem/dynamic-form-mapitem.component.d.ts +0 -15
- package/lib/components/dynamic-form/components/dynamic-form-options/dynamic-form-options.component.d.ts +0 -45
- package/lib/components/dynamic-form/components/dynamic-form-select-tag/dynamic-form-select-tag.component.d.ts +0 -41
- package/lib/components/dynamic-form/components/dynamic-form-select-user-filter/dynamic-form-select-user-filter.component.d.ts +0 -65
- package/lib/components/dynamic-form/components/dynamic-form-select-users/dynamic-form-select-users.component.d.ts +0 -85
- package/lib/components/dynamic-form/components/dynamic-form-select-users/services/user-api.service.d.ts +0 -13
- package/lib/components/dynamic-form/components/dynamic-form-selectitem/dynamic-form-selectitem.component.d.ts +0 -80
- package/lib/components/dynamic-form/components/dynamic-form-slide-toggleitem/dynamic-form-slide-toggleitem.component.d.ts +0 -40
- package/lib/components/dynamic-form/components/dynamic-form-textarea/dynamic-form-textarea.component.d.ts +0 -71
- package/lib/components/dynamic-form/components/dynamic-form-textitem/dynamic-form-textitem.component.d.ts +0 -89
- package/lib/components/dynamic-form/components/dynamic-form-treeview-select/dropdown-treeview-select-i18n.d.ts +0 -19
- package/lib/components/dynamic-form/components/dynamic-form-treeview-select/dropdown-treeview-select.component.d.ts +0 -104
- package/lib/components/dynamic-form/components/dynamic-form-viewer/dynamic-form-viewer.component.d.ts +0 -16
- package/lib/components/dynamic-form/components/dynamic-form-vocabulary-item/dynamic-form-vocabulary-item.component.d.ts +0 -79
- package/lib/components/dynamic-form/components/form-wrappers/base-edit-form/base-edit-form.d.ts +0 -599
- package/lib/components/dynamic-form/components/form-wrappers/date-wrapper/date-wrapper.component.d.ts +0 -13
- package/lib/components/dynamic-form/components/form-wrappers/date-wrapper/date-wrapper.formio.d.ts +0 -2
- package/lib/components/dynamic-form/components/form-wrappers/toggle-wrapper/toggle-wrapper.component.d.ts +0 -13
- package/lib/components/dynamic-form/components/form-wrappers/toggle-wrapper/toggle-wrapper.formio.d.ts +0 -2
- package/lib/components/dynamic-form/components/form-wrappers/user-selector-wrapper/user-selector-wrapper.component.d.ts +0 -16
- package/lib/components/dynamic-form/components/form-wrappers/user-selector-wrapper/user-selector-wrapper.formio.d.ts +0 -2
- package/lib/components/dynamic-form/components/form-wrappers/vocabulary-wrapper/vocabulary-wrapper.component.d.ts +0 -13
- package/lib/components/dynamic-form/components/form-wrappers/vocabulary-wrapper/vocabulary-wrapper.formio.d.ts +0 -2
- package/lib/components/dynamic-form/directives/dynamic-form-content-proxy.directive.d.ts +0 -9
- package/lib/components/dynamic-form/dynamic-form.module.d.ts +0 -66
- package/lib/components/dynamic-form/interfaces/dynamic-form-boolitem-properties.interface.d.ts +0 -5
- package/lib/components/dynamic-form/interfaces/dynamic-form-dateitem-properties.interface.d.ts +0 -5
- package/lib/components/dynamic-form/interfaces/dynamic-form-item-properties.interface.d.ts +0 -15
- package/lib/components/dynamic-form/interfaces/dynamic-form-item-validator.interface.d.ts +0 -4
- package/lib/components/dynamic-form/interfaces/dynamic-form-item.interface.d.ts +0 -12
- package/lib/components/dynamic-form/interfaces/dynamic-form-keyvaluepairsitem-properties.interface.d.ts +0 -8
- package/lib/components/dynamic-form/interfaces/dynamic-form-selectitem-properties.interface.d.ts +0 -10
- package/lib/components/dynamic-form/interfaces/dynamic-form-textitem-pipe-property.interface.d.ts +0 -5
- package/lib/components/dynamic-form/interfaces/dynamic-form-textitem-properties.interface.d.ts +0 -8
- package/lib/components/dynamic-form/models/dynamic-form-baseitem.model.d.ts +0 -21
- package/lib/components/dynamic-form/models/dynamic-form-boolitem.model.d.ts +0 -11
- package/lib/components/dynamic-form/models/dynamic-form-dateitem.model.d.ts +0 -13
- package/lib/components/dynamic-form/models/dynamic-form-datetimeitem.model.d.ts +0 -9
- package/lib/components/dynamic-form/models/dynamic-form-mapitem.model.d.ts +0 -8
- package/lib/components/dynamic-form/models/dynamic-form-selectitem.model.d.ts +0 -11
- package/lib/components/dynamic-form/models/dynamic-form-textitem.model.d.ts +0 -15
- package/lib/components/dynamic-form/services/card-item-types.service.d.ts +0 -13
- package/lib/components/dynamic-form/services/dynamic-component-mapper.service.d.ts +0 -36
- package/lib/components/dynamic-form/services/dynamic-form-update.service.d.ts +0 -25
- package/lib/components/dynamic-form/validators/length-validator.d.ts +0 -7
- package/lib/components/dynamic-form/validators/regex-validator.d.ts +0 -7
- package/lib/components/dynamic-form/validators/required-validator.d.ts +0 -5
- package/lib/components/dynamic-form/validators/value-validator.d.ts +0 -7
- package/lib/components/dynamic-search/dynamic-search/dynamic-search.component.d.ts +0 -98
- package/lib/components/dynamic-search/dynamic-search.module.d.ts +0 -20
- package/lib/components/dynamic-table/dynamic-table/dynamic-table.component.d.ts +0 -108
- package/lib/components/dynamic-table/dynamic-table.module.d.ts +0 -16
- package/lib/components/dynamic-table/services/dynamic-table.service.d.ts +0 -8
- package/lib/components/dynamic-tabs/dynamic-tabs/dynamic-tabs.component.d.ts +0 -13
- package/lib/components/dynamic-tabs/dynamic-tabs.module.d.ts +0 -11
- package/lib/components/dynamic-view/boolean-viewer/boolean-viewer.component.d.ts +0 -13
- package/lib/components/dynamic-view/custom-document-viewer/custom-document-viewer.component.d.ts +0 -22
- package/lib/components/dynamic-view/custom-pp-viewer/custom-pp-viewer.component.d.ts +0 -28
- package/lib/components/dynamic-view/cutome-voc-viewer/cutome-voc-viewer.component.d.ts +0 -16
- package/lib/components/dynamic-view/data-viewer/data-viewer.component.d.ts +0 -12
- package/lib/components/dynamic-view/date-viewer/date-viewer.component.d.ts +0 -22
- package/lib/components/dynamic-view/department-viewer/department-viewer.component.d.ts +0 -30
- package/lib/components/dynamic-view/dropdown-viewer/dropdown-viewer.component.d.ts +0 -37
- package/lib/components/dynamic-view/dynamic-view.module.d.ts +0 -23
- package/lib/components/dynamic-view/dynamic-viewe.service.d.ts +0 -15
- package/lib/components/dynamic-view/list-viewer/list-viewer.component.d.ts +0 -20
- package/lib/components/file-manger/components/add-to-collection/add-to-collection.component.d.ts +0 -31
- package/lib/components/file-manger/components/clipboard/clipboard.component.d.ts +0 -41
- package/lib/components/file-manger/components/copy/copy.component.d.ts +0 -33
- package/lib/components/file-manger/components/create-directory/create-directory.component.d.ts +0 -24
- package/lib/components/file-manger/components/create-modal/create-modal.component.d.ts +0 -108
- package/lib/components/file-manger/components/creation-type/creation-type.component.d.ts +0 -11
- package/lib/components/file-manger/components/delete/delete.component.d.ts +0 -24
- package/lib/components/file-manger/components/folder-modal/folder-modal.component.d.ts +0 -56
- package/lib/components/file-manger/components/loan-request/loan-request.component.d.ts +0 -23
- package/lib/components/file-manger/components/move/move.component.d.ts +0 -33
- package/lib/components/file-manger/components/publish-dialog/publish-dialog.component.d.ts +0 -32
- package/lib/components/file-manger/components/rename/rename.component.d.ts +0 -24
- package/lib/components/file-manger/components/scan-modal/scan-modal.component.d.ts +0 -95
- package/lib/components/file-manger/components/share-dialog/share-dialog.component.d.ts +0 -58
- package/lib/components/file-manger/components/sidepanel/sidepanel.component.d.ts +0 -62
- package/lib/components/file-manger/components/template-modal/template-modal.component.d.ts +0 -34
- package/lib/components/file-manger/components/transfer-doc/transfer-doc.component.d.ts +0 -23
- package/lib/components/file-manger/components/update-modal/update-modal.component.d.ts +0 -194
- package/lib/components/file-manger/file-manager.abstract.d.ts +0 -173
- package/lib/components/file-manger/file-manger.module.d.ts +0 -59
- package/lib/components/filter/filter/filter.component.d.ts +0 -31
- package/lib/components/filter/filter.module.d.ts +0 -15
- package/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/gregorian-datepicker/gregorian-datepicker.component.d.ts +0 -35
- package/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/hijri-datepicker/hijri-datepicker.component.d.ts +0 -35
- package/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/hijri-gregorian-datepicker.component.d.ts +0 -39
- package/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/provide-parent-form.directive.d.ts +0 -9
- package/lib/components/hijri-gregorian-datepicker/ngx-hijri-gregorian-datepicker.module.d.ts +0 -15
- package/lib/components/hijri-gregorian-datepicker/services/date-formatter.service.d.ts +0 -15
- package/lib/components/hijri-gregorian-datepicker/services/date-helper.service.d.ts +0 -9
- package/lib/components/hijri-gregorian-datepicker/utils/CustomNgbDateParserFormatter.d.ts +0 -11
- package/lib/components/hijri-gregorian-datepicker/utils/IslamicI18n.d.ts +0 -10
- package/lib/components/hijri-gregorian-datepicker/utils/consts.d.ts +0 -4
- package/lib/components/latest-activity/components/activity-line/activity-line.component.d.ts +0 -19
- package/lib/components/latest-activity/components/latest-activity/latest-activity.component.d.ts +0 -22
- package/lib/components/latest-activity/components/single-activity/single-activity.component.d.ts +0 -10
- package/lib/components/latest-activity/constants/activitylog.d.ts +0 -82
- package/lib/components/latest-activity/latest-activity.module.d.ts +0 -19
- package/lib/components/latest-activity/services/activity-log.service.d.ts +0 -12
- package/lib/components/mutiple-dynamic-form-viewer/multiple-dynamic-form-viewer/multiple-dynamic-form-viewer.component.d.ts +0 -17
- package/lib/components/mutiple-dynamic-form-viewer/mutiple-dynamic-form-viewer.module.d.ts +0 -10
- package/lib/components/notifications/components/notification-item/notification-item.component.d.ts +0 -25
- package/lib/components/notifications/components/notification-options/notification-options.component.d.ts +0 -10
- package/lib/components/notifications/components/notification-toast/notification-toast.component.d.ts +0 -19
- package/lib/components/notifications/components/notifications-button/notifications-button.component.d.ts +0 -30
- package/lib/components/notifications/components/notifications-list/notifications-list.component.d.ts +0 -51
- package/lib/components/notifications/notifications.module.d.ts +0 -24
- package/lib/components/notifications/notifications.service.d.ts +0 -64
- package/lib/components/pagination/pagination/pagination.component.d.ts +0 -46
- package/lib/components/pagination/pagination.module.d.ts +0 -13
- package/lib/components/pdf-tron/pdf-tron.module.d.ts +0 -8
- package/lib/components/pdf-tron/pdftron/pdftron.component.d.ts +0 -102
- package/lib/components/pdf-tron/pdftron/pdftron.service.d.ts +0 -33
- package/lib/components/permissions/add-permissions-dialog/add-permissions-dialog.component.d.ts +0 -44
- package/lib/components/permissions/permission.service.d.ts +0 -21
- package/lib/components/permissions/permissions/permissions.component.d.ts +0 -48
- package/lib/components/permissions/permissions-template/permissions-template.component.d.ts +0 -22
- package/lib/components/permissions/permissions.module.d.ts +0 -21
- package/lib/components/select/select/select.component.d.ts +0 -43
- package/lib/components/select/select.module.d.ts +0 -12
- package/lib/components/select-users-by-department/select-users-by-department.module.d.ts +0 -13
- package/lib/components/select-users-by-department/select-users-by-departments/department-management.service.d.ts +0 -10
- package/lib/components/select-users-by-department/select-users-by-departments/select-users-by-departments.component.d.ts +0 -33
- package/lib/components/table/dynamic-column/dynamic-column.component.d.ts +0 -19
- package/lib/components/table/table/table.component.d.ts +0 -108
- package/lib/components/table/table.module.d.ts +0 -20
- package/lib/components/user/user/user.component.d.ts +0 -13
- package/lib/components/user/user.module.d.ts +0 -10
- package/lib/components/users-card/users-card.component.d.ts +0 -22
- package/lib/components/users-card/users-card.module.d.ts +0 -17
- package/lib/components/viewer-log/components/viewer-log/viewer-log.component.d.ts +0 -12
- package/lib/components/viewer-log/viewer-log.module.d.ts +0 -10
- package/lib/components/vocabulary/interfaces/op-type.interface.d.ts +0 -1
- package/lib/components/vocabulary/services/vocabulary-api.service.d.ts +0 -16
- package/lib/components/vocabulary/vocabulary/vocabulary.component.d.ts +0 -37
- package/lib/components/vocabulary/vocabulary.module.d.ts +0 -11
- package/lib/configuration/app-config.service.d.ts +0 -14
- package/lib/configuration/helpers/app-initializer.d.ts +0 -2
- package/lib/directive/app-has-role/app-has-role.directive.d.ts +0 -18
- package/lib/directive/clickOutSide/click-outside.directive.d.ts +0 -11
- package/lib/directive/directive.module.d.ts +0 -17
- package/lib/directive/drag-and-drop/drag-and-drop.directive.d.ts +0 -11
- package/lib/directive/permissions/evaluators.service.d.ts +0 -37
- package/lib/directive/permissions/permissions.directive.d.ts +0 -42
- package/lib/directive/rtl/set-dir-rtl.directive.d.ts +0 -13
- package/lib/directive/rtl/set-rtl.directive.d.ts +0 -13
- package/lib/nuxeo-development-framework.component.d.ts +0 -8
- package/lib/nuxeo-development-framework.module.d.ts +0 -13
- package/lib/nuxeo-development-framework.service.d.ts +0 -6
- package/lib/pipes/file-size.pipe.d.ts +0 -34
- package/lib/pipes/hijri-date.pipe.d.ts +0 -32
- package/lib/pipes/localized-date.pipe.d.ts +0 -44
- package/lib/pipes/multi-value.pipe.d.ts +0 -32
- package/lib/pipes/pipes.module.d.ts +0 -18
- package/lib/pipes/secure-html.pipe.d.ts +0 -26
- package/lib/pipes/secure.pipe.d.ts +0 -29
- package/lib/pipes/time-ago.pipe.d.ts +0 -34
- package/lib/shared/components/button/button.component.d.ts +0 -38
- package/lib/shared/components/item-list/item-list.component.d.ts +0 -45
- package/lib/shared/components/no-data/no-data.component.d.ts +0 -21
- package/lib/shared/components/read-more/read-more.component.d.ts +0 -37
- package/lib/shared/components/search-autocomplete/search-autocomplete.component.d.ts +0 -51
- package/lib/shared/components/spinner/spinner.component.d.ts +0 -18
- package/lib/shared/components/user-card/user-card.component.d.ts +0 -30
- package/lib/shared/libraryShared.module.d.ts +0 -26
- package/lib/shared-services/dialog-mangment.service.d.ts +0 -15
- package/lib/shared-services/dynamic-form.service.d.ts +0 -24
- package/lib/shared-services/file-manager.adapter.d.ts +0 -48
- package/lib/shared-services/file-manager.service.d.ts +0 -93
- package/lib/shared-services/global-pdftron.service.d.ts +0 -10
- package/lib/shared-services/mainfolder.service.d.ts +0 -32
- package/lib/shared-services/publishing-document.service.d.ts +0 -25
- package/lib/shared-services/recently-viewed.service.d.ts +0 -17
- package/lib/shared-services/shared-docs.service.d.ts +0 -21
- package/lib/shared-services/shared-services.module.d.ts +0 -7
- package/lib/shared-services/upload-file.service.d.ts +0 -10
- package/lib/shared-services/upload-managment.service.d.ts +0 -72
- package/lib/shared-services/user.service.d.ts +0 -12
- package/nuxeo-development-framework.d.ts +0 -5
- package/public-api.d.ts +0 -224
- /package/{lib/components/dynamic-form/interfaces/dynamic-form.interfaces.d.ts → src/lib/components/dynamic-form/interfaces/dynamic-form.interfaces.ts} +0 -0
- /package/{lib/components/dynamic-form/models/dynamic-form.models.d.ts → src/lib/components/dynamic-form/models/dynamic-form.models.ts} +0 -0
|
@@ -0,0 +1,1347 @@
|
|
|
1
|
+
|
|
2
|
+
import { MatDialog } from "@angular/material/dialog";
|
|
3
|
+
import { ActivatedRoute, NavigationStart, Params, Router } from "@angular/router";
|
|
4
|
+
import { IconService } from "../display-suitable-icon/display-suitable-icon/icon.service";
|
|
5
|
+
import { DxFileManagerComponent, DxFormComponent, DxTreeViewComponent } from "devextreme-angular";
|
|
6
|
+
import { combineLatest, concat, from, Observable, of, Subject, Subscription } from "rxjs";
|
|
7
|
+
import { catchError, first, map, mergeMap, reduce, takeUntil, tap, toArray } from "rxjs/operators";
|
|
8
|
+
import { FileManagerAdapter } from "../../shared-services/file-manager.adapter";
|
|
9
|
+
|
|
10
|
+
import { FileManagerService } from "../../shared-services/file-manager.service";
|
|
11
|
+
|
|
12
|
+
import * as FileSaver from 'file-saver';
|
|
13
|
+
import { AfterViewChecked, ChangeDetectorRef, Component, HostListener, Inject, Injector, OnDestroy, OnInit, ViewChild } from "@angular/core";
|
|
14
|
+
import { DialogMangmentService } from "../../shared-services/dialog-mangment.service";
|
|
15
|
+
import { UploadManagmentService } from "../../shared-services/upload-managment.service";
|
|
16
|
+
import { PublishDialogComponent } from "./components/publish-dialog/publish-dialog.component";
|
|
17
|
+
import { ConfirmationDialogComponent } from "../confirmation-dialog/confirmation-dialog/confirmation-dialog.component";
|
|
18
|
+
import { SharedDocsService } from "../../shared-services/shared-docs.service";
|
|
19
|
+
import { UpdateModalComponent } from "./components/update-modal/update-modal.component";
|
|
20
|
+
import { FolderModalComponent } from "./components/folder-modal/folder-modal.component";
|
|
21
|
+
import { CreateModalComponent } from "./components/create-modal/create-modal.component";
|
|
22
|
+
import { ScanModalComponent } from "./components/scan-modal/scan-modal.component";
|
|
23
|
+
import { TemplateModalComponent } from "./components/template-modal/template-modal.component";
|
|
24
|
+
import { CreationTypeComponent } from "./components/creation-type/creation-type.component";
|
|
25
|
+
import { DynamicFormService } from "../../shared-services/dynamic-form.service";
|
|
26
|
+
import { EvaluatorsService } from "../../directive/permissions/evaluators.service";
|
|
27
|
+
import { CallApiService } from "../../Core/services/callApi/call-api.service";
|
|
28
|
+
import { AdapterService } from "../../Core/adapters/adapter.service";
|
|
29
|
+
import { TranslationService } from "../../Core/services/translation/translation.service";
|
|
30
|
+
import { AppConfigService } from "../../configuration/app-config.service";
|
|
31
|
+
import { CustomToastrService } from "../custom-toastr/services/custom-toastr.service";
|
|
32
|
+
import { UserPreferenceValues, UserPreferencesService } from "../../Core/services/user/user-preferences.service";
|
|
33
|
+
import { DocumentScanService } from "../documents/components/document-scan/document-scan.service";
|
|
34
|
+
import { NuxeoService } from "../../Core/services/nuxeo/nuxeo.service";
|
|
35
|
+
import { each, union } from 'lodash';
|
|
36
|
+
|
|
37
|
+
@Component({
|
|
38
|
+
template: ''
|
|
39
|
+
})
|
|
40
|
+
//
|
|
41
|
+
export class FileManagerAbstract implements OnInit, AfterViewChecked {
|
|
42
|
+
subscriptions: Subscription[] = [];
|
|
43
|
+
contextMenuActions = [];
|
|
44
|
+
@ViewChild(DxFileManagerComponent, { static: false })
|
|
45
|
+
fileManager: DxFileManagerComponent;
|
|
46
|
+
@ViewChild(DxFormComponent, { static: false }) form: DxFormComponent;
|
|
47
|
+
@ViewChild(DxTreeViewComponent, { static: false })
|
|
48
|
+
treeView: DxTreeViewComponent;
|
|
49
|
+
@HostListener('document:click', ['$event'])
|
|
50
|
+
clickout(event) {
|
|
51
|
+
if (
|
|
52
|
+
(event.srcElement.className === 'dx-scrollable-content' ||
|
|
53
|
+
event.srcElement.className === 'dx-scrollview-content') &&
|
|
54
|
+
this.isItemSelected
|
|
55
|
+
) {
|
|
56
|
+
this.multiSelectedkeys = [''];
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
isItemSelected: boolean = false;
|
|
60
|
+
itemListView: any;
|
|
61
|
+
clicked = false;
|
|
62
|
+
fileManagerObj;
|
|
63
|
+
fileItems;
|
|
64
|
+
multiSelectedkeys: string[];
|
|
65
|
+
currentPath: string = '';
|
|
66
|
+
currentFolder: any;
|
|
67
|
+
path: any;
|
|
68
|
+
config;
|
|
69
|
+
configKey = 'allFiles';
|
|
70
|
+
headers;
|
|
71
|
+
onDestroy$ = new Subject<boolean>();
|
|
72
|
+
fields: any;
|
|
73
|
+
pageProvider: string;
|
|
74
|
+
operation: any;
|
|
75
|
+
canCreate: boolean;
|
|
76
|
+
currentItem: any;
|
|
77
|
+
selectedItems: any;
|
|
78
|
+
selecteditemsNames: any;
|
|
79
|
+
selectedItem: any;
|
|
80
|
+
loading = false;
|
|
81
|
+
rtlEnabled = false;
|
|
82
|
+
isArabic = true;
|
|
83
|
+
menuDirection = 'before';
|
|
84
|
+
showDetails = false;
|
|
85
|
+
sideMenuLoading = false;
|
|
86
|
+
disable: boolean = true;
|
|
87
|
+
itemsSelected: any;
|
|
88
|
+
currentDirectory: any;
|
|
89
|
+
selectedItemLength: boolean;
|
|
90
|
+
multipleItems: any;
|
|
91
|
+
selectedItemsObjects: any[];
|
|
92
|
+
allowedFileTypes = [];
|
|
93
|
+
allowedFolderTypes = [];
|
|
94
|
+
loadingFolderTypes = false;
|
|
95
|
+
loadingFileTypes = false;
|
|
96
|
+
cancelableOperations = {
|
|
97
|
+
deletePopupVisible: false,
|
|
98
|
+
movePopupVisible: false,
|
|
99
|
+
copyPopupVisible: false,
|
|
100
|
+
transferPopupVisible: false,
|
|
101
|
+
loanPopupVisible: false,
|
|
102
|
+
createPopupVisible: false
|
|
103
|
+
};
|
|
104
|
+
showfolderTemplates = false;
|
|
105
|
+
contextMenuItems = [];
|
|
106
|
+
toolbarItems = [];
|
|
107
|
+
lastFolderTrackId = null;
|
|
108
|
+
itemToDisplay: any = {};
|
|
109
|
+
directory: any;
|
|
110
|
+
selectedFolderPath: any;
|
|
111
|
+
myCurrecntFolderData;
|
|
112
|
+
myFileMangerInstance: any;
|
|
113
|
+
newSelectedWithIdPrefix: string
|
|
114
|
+
clipboardItems = []; // array of id to items in clipboard
|
|
115
|
+
showClipboard = false;
|
|
116
|
+
showDgdaClipboard = false; // flage related to dgda clipboard
|
|
117
|
+
cancelButton = {
|
|
118
|
+
text: this.isArabic ? 'إلغاء' : 'Cancel',
|
|
119
|
+
onClick: () => {
|
|
120
|
+
Object.keys(this.cancelableOperations).forEach(key => {
|
|
121
|
+
this.cancelableOperations[key] = false;
|
|
122
|
+
});
|
|
123
|
+
},
|
|
124
|
+
};
|
|
125
|
+
moveTo = () => {
|
|
126
|
+
if (this.treeView !== undefined && this.treeView.instance !== null) {
|
|
127
|
+
let mytreeInstance: any = this.treeView.instance;
|
|
128
|
+
mytreeInstance.option('dataSource', []);
|
|
129
|
+
}
|
|
130
|
+
this.cancelableOperations['movePopupVisible'] = true;
|
|
131
|
+
|
|
132
|
+
}
|
|
133
|
+
copyTo = () => {
|
|
134
|
+
if (this.treeView !== undefined && this.treeView.instance !== null) {
|
|
135
|
+
let mytreeInstance: any = this.treeView.instance;
|
|
136
|
+
mytreeInstance.option('dataSource', []);
|
|
137
|
+
}
|
|
138
|
+
this.cancelableOperations['copyPopupVisible'] = true;
|
|
139
|
+
|
|
140
|
+
}
|
|
141
|
+
delete = () => {
|
|
142
|
+
|
|
143
|
+
this.cancelableOperations['deletePopupVisible'] = true;
|
|
144
|
+
}
|
|
145
|
+
transferTo = () => {
|
|
146
|
+
this.cancelableOperations['transferPopupVisible'] = true;
|
|
147
|
+
}
|
|
148
|
+
loanRequest = () => {
|
|
149
|
+
this.cancelableOperations['loanPopupVisible'] = true;
|
|
150
|
+
}
|
|
151
|
+
createFolder = () => {
|
|
152
|
+
// this.selectedItem =
|
|
153
|
+
// fileSystemItem && fileSystemItem?.dataItem.id
|
|
154
|
+
// ? fileSystemItem?.dataItem.id
|
|
155
|
+
// : directory.dataItem === undefined
|
|
156
|
+
// ? this.mainFolder
|
|
157
|
+
// : directory?.dataItem?.id;
|
|
158
|
+
// this.selectedObject = fileSystemItem?.dataItem;
|
|
159
|
+
this.cancelableOperations['createPopupVisible'] = true;
|
|
160
|
+
}
|
|
161
|
+
downloadFile = () => {
|
|
162
|
+
if (this.multipleItems.length === 1) {
|
|
163
|
+
window.open(
|
|
164
|
+
this.multipleItems[0].dataItem?.entity?.properties[
|
|
165
|
+
'file:content'
|
|
166
|
+
].data,
|
|
167
|
+
'blank'
|
|
168
|
+
);
|
|
169
|
+
} else {
|
|
170
|
+
this.multipleItems.forEach((item) => {
|
|
171
|
+
fetch(
|
|
172
|
+
item.dataItem?.entity?.properties['file:content'].data
|
|
173
|
+
)
|
|
174
|
+
.then((res) => res.blob())
|
|
175
|
+
.then((blob) => {
|
|
176
|
+
FileSaver.saveAs(blob, item.name);
|
|
177
|
+
})
|
|
178
|
+
.catch((err) =>
|
|
179
|
+
this.customToastrService.show(
|
|
180
|
+
'error',
|
|
181
|
+
'TOASTER.ERROR',
|
|
182
|
+
'TOASTER.IMAGE_NOT_FOUND'
|
|
183
|
+
)
|
|
184
|
+
);
|
|
185
|
+
});
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
refresh = () => {
|
|
189
|
+
this.reinitializeFolderTree(this.getCurrentFolderId(this.getCurrentDirectory()), this.getCurrentDirectory());
|
|
190
|
+
};
|
|
191
|
+
addToQuickAccess = () => {
|
|
192
|
+
this.fileManagerService
|
|
193
|
+
.addToQuickAccess(this.selectedItems)
|
|
194
|
+
.subscribe(
|
|
195
|
+
async (res) => {
|
|
196
|
+
this.reinitializeFolderTree(this.getCurrentFolderId(this.getCurrentDirectory()), this.getCurrentDirectory());
|
|
197
|
+
this.myFileMangerInstance.option(
|
|
198
|
+
'toolbar.fileSelectionItems',
|
|
199
|
+
[]
|
|
200
|
+
);
|
|
201
|
+
this.customToastrService.show(
|
|
202
|
+
'success',
|
|
203
|
+
'TOASTER.SUCCESS',
|
|
204
|
+
'TOASTER.DOCUMENT_ADDED_TO_QUICK_ACCESS'
|
|
205
|
+
);
|
|
206
|
+
},
|
|
207
|
+
(err) => {
|
|
208
|
+
this.customToastrService.show(
|
|
209
|
+
'error',
|
|
210
|
+
'TOASTER.ERROR',
|
|
211
|
+
'TOASTER.DOCUMENT_ADDED_TO_QUICK_ACCESS_ERROR'
|
|
212
|
+
);
|
|
213
|
+
}
|
|
214
|
+
);
|
|
215
|
+
};
|
|
216
|
+
removeFromQuickAccess = () => {
|
|
217
|
+
this.fileManagerService
|
|
218
|
+
.removeFromQuickAccess(this.selectedItems)
|
|
219
|
+
.subscribe(
|
|
220
|
+
async (res) => {
|
|
221
|
+
this.reinitializeFolderTree(this.getCurrentFolderId(this.getCurrentDirectory()), this.getCurrentDirectory());
|
|
222
|
+
this.myFileMangerInstance.option(
|
|
223
|
+
'toolbar.fileSelectionItems',
|
|
224
|
+
[]
|
|
225
|
+
);
|
|
226
|
+
this.customToastrService.show(
|
|
227
|
+
'success',
|
|
228
|
+
'TOASTER.SUCCESS',
|
|
229
|
+
'TOASTER.DOCUMENT_REMOVED_FROM_QUICK_ACCESS'
|
|
230
|
+
);
|
|
231
|
+
},
|
|
232
|
+
(err) => {
|
|
233
|
+
this.customToastrService.show(
|
|
234
|
+
'error',
|
|
235
|
+
'TOASTER.ERROR',
|
|
236
|
+
'TOASTER.DOCUMENT_REMOVED_FROM_QUICK_ACCESS_ERROR'
|
|
237
|
+
);
|
|
238
|
+
}
|
|
239
|
+
);
|
|
240
|
+
|
|
241
|
+
}
|
|
242
|
+
addToFavorites = () => {
|
|
243
|
+
this.fileManagerService
|
|
244
|
+
.addToFavorites(this.selectedItems)
|
|
245
|
+
.subscribe(
|
|
246
|
+
async (res) => {
|
|
247
|
+
this.multiSelectedkeys = [''];
|
|
248
|
+
this.reinitializeFolderTree(this.getCurrentFolderId(this.getCurrentDirectory()), this.getCurrentDirectory());
|
|
249
|
+
this.customToastrService.show(
|
|
250
|
+
'success',
|
|
251
|
+
'TOASTER.SUCCESS',
|
|
252
|
+
'TOASTER.DOCUMENT_ADDED_TO_FAVORITES'
|
|
253
|
+
);
|
|
254
|
+
},
|
|
255
|
+
(err) => {
|
|
256
|
+
this.customToastrService.show(
|
|
257
|
+
'error',
|
|
258
|
+
'TOASTER.ERROR',
|
|
259
|
+
'TOASTER.DOCUMENT_ADDED_TO_FAVORITES_ERROR'
|
|
260
|
+
);
|
|
261
|
+
}
|
|
262
|
+
);
|
|
263
|
+
}
|
|
264
|
+
removeFromFavorites = () => {
|
|
265
|
+
this.fileManagerService
|
|
266
|
+
.removeFromFavorites(this.selectedItems)
|
|
267
|
+
.subscribe(
|
|
268
|
+
async (res) => {
|
|
269
|
+
this.multiSelectedkeys = [''];
|
|
270
|
+
this.reinitializeFolderTree(this.getCurrentFolderId(this.getCurrentDirectory()), this.getCurrentDirectory());
|
|
271
|
+
this.customToastrService.show(
|
|
272
|
+
'success',
|
|
273
|
+
'TOASTER.SUCCESS',
|
|
274
|
+
'TOASTER.DOCUMENT_REMOVED_FROM_FAVORITES'
|
|
275
|
+
);
|
|
276
|
+
},
|
|
277
|
+
(err) => {
|
|
278
|
+
this.customToastrService.show(
|
|
279
|
+
'error',
|
|
280
|
+
'TOASTER.ERROR',
|
|
281
|
+
'TOASTER.DOCUMENT_REMOVED_FROM_FAVORITES_ERROR'
|
|
282
|
+
);
|
|
283
|
+
}
|
|
284
|
+
);
|
|
285
|
+
|
|
286
|
+
}
|
|
287
|
+
setSync = () => {
|
|
288
|
+
this.fileManagerService.setSync(this.selectedItems).subscribe(
|
|
289
|
+
async (res) => {
|
|
290
|
+
this.reinitializeFolderTree(this.getCurrentFolderId(this.getCurrentDirectory()), this.getCurrentDirectory());
|
|
291
|
+
this.myFileMangerInstance.option(
|
|
292
|
+
'toolbar.fileSelectionItems',
|
|
293
|
+
[]
|
|
294
|
+
);
|
|
295
|
+
this.customToastrService.show(
|
|
296
|
+
'success',
|
|
297
|
+
'TOASTER.SUCCESS',
|
|
298
|
+
'TOASTER.DOCUMENT_SYNCED'
|
|
299
|
+
);
|
|
300
|
+
},
|
|
301
|
+
(err) => {
|
|
302
|
+
this.customToastrService.show(
|
|
303
|
+
'error',
|
|
304
|
+
'TOASTER.ERROR',
|
|
305
|
+
'TOASTER.DOCUMENT_SYNCED_ERROR'
|
|
306
|
+
);
|
|
307
|
+
}
|
|
308
|
+
);
|
|
309
|
+
|
|
310
|
+
}
|
|
311
|
+
unsetSync = () => {
|
|
312
|
+
|
|
313
|
+
this.fileManagerService.unSetSync(this.selectedItems).subscribe(
|
|
314
|
+
async (res) => {
|
|
315
|
+
this.reinitializeFolderTree(this.getCurrentFolderId(this.getCurrentDirectory()), this.getCurrentDirectory());
|
|
316
|
+
this.myFileMangerInstance.option(
|
|
317
|
+
'toolbar.fileSelectionItems',
|
|
318
|
+
[]
|
|
319
|
+
);
|
|
320
|
+
this.customToastrService.show(
|
|
321
|
+
'success',
|
|
322
|
+
'TOASTER.SUCCESS',
|
|
323
|
+
'TOASTER.DOCUMENT_UNSYNCED'
|
|
324
|
+
);
|
|
325
|
+
},
|
|
326
|
+
(err) => {
|
|
327
|
+
this.customToastrService.show(
|
|
328
|
+
'error',
|
|
329
|
+
'TOASTER.ERROR',
|
|
330
|
+
'TOASTER.DOCUMENT_UNSYNCED_ERROR'
|
|
331
|
+
);
|
|
332
|
+
}
|
|
333
|
+
);
|
|
334
|
+
}
|
|
335
|
+
addToCollection = () => {
|
|
336
|
+
this.cancelableOperations['addToCollectionPopupVisible'] = true;
|
|
337
|
+
}
|
|
338
|
+
subscribe_OR_unSubscribeToFile = () => {
|
|
339
|
+
this.fileManagerService.subscribe_OR_unSubscribeToItem(this.selectedItem.entity, this.selectedItem.isUserSubscriberToFile).subscribe(res => {
|
|
340
|
+
if (res) {
|
|
341
|
+
let successMessage = '';
|
|
342
|
+
this.selectedItem.isUserSubscriberToFile ? successMessage = 'unsubscribe_To_Item_success' : successMessage = 'subscribe_To_Item_success';
|
|
343
|
+
this.customToastrService.show('success', 'TOASTER.SUCCESS', `TOASTER.${successMessage}`);
|
|
344
|
+
this.selectedItem.isUserSubscriberToFile = !this.selectedItem.isUserSubscriberToFile;
|
|
345
|
+
this.multiSelectedkeys = [''];
|
|
346
|
+
}
|
|
347
|
+
}, err => {
|
|
348
|
+
let failMessage = '';
|
|
349
|
+
this.selectedItem.isUserSubscriberToFile ? failMessage = 'unsubscribe_To_Item_fail' : failMessage = 'subscribe_To_Item_fail';
|
|
350
|
+
this.customToastrService.show('error', 'TOASTER.ERROR', `TOASTER.${failMessage}`);
|
|
351
|
+
})
|
|
352
|
+
}
|
|
353
|
+
downloadAsZip = () => {
|
|
354
|
+
let arr = this.selectedItems.split(',');
|
|
355
|
+
let title = '';
|
|
356
|
+
if (arr.length === 1) {
|
|
357
|
+
title = this.selectedItem.name
|
|
358
|
+
}
|
|
359
|
+
this.fileManagerService.downloadAsZip(this.selectedItems, title)
|
|
360
|
+
}
|
|
361
|
+
mainFolder;
|
|
362
|
+
myPageConfiguration;
|
|
363
|
+
myPageConfName;
|
|
364
|
+
protected permissionEvaluatorService: EvaluatorsService
|
|
365
|
+
protected fileManagerService: FileManagerService;
|
|
366
|
+
protected callApi: CallApiService;
|
|
367
|
+
protected adapter: AdapterService;
|
|
368
|
+
protected router: Router;
|
|
369
|
+
protected fileManagerAdapter: FileManagerAdapter;
|
|
370
|
+
protected translationService: TranslationService;
|
|
371
|
+
protected customToastrService: CustomToastrService;
|
|
372
|
+
protected appConfService: AppConfigService;
|
|
373
|
+
protected userPreferenceService: UserPreferencesService;
|
|
374
|
+
protected dialogMangmentService: DialogMangmentService;
|
|
375
|
+
protected uploadMangmentService: UploadManagmentService;
|
|
376
|
+
protected dialog: MatDialog;
|
|
377
|
+
protected documentScanService: DocumentScanService;
|
|
378
|
+
protected dynamicFormService: DynamicFormService;
|
|
379
|
+
protected route: ActivatedRoute;
|
|
380
|
+
protected shared: SharedDocsService;
|
|
381
|
+
protected iconService: IconService;
|
|
382
|
+
protected cdRef : ChangeDetectorRef;
|
|
383
|
+
protected nuxeoService : NuxeoService
|
|
384
|
+
|
|
385
|
+
constructor(
|
|
386
|
+
private injectorObj: Injector,
|
|
387
|
+
myPageConfigurationName: String,
|
|
388
|
+
environment: Object,
|
|
389
|
+
) {
|
|
390
|
+
this.myPageConfName = myPageConfigurationName;
|
|
391
|
+
this.mainFolder = environment['mainFolder'];
|
|
392
|
+
this.cdRef = this.injectorObj.get(ChangeDetectorRef);
|
|
393
|
+
this.permissionEvaluatorService = this.injectorObj.get(EvaluatorsService);
|
|
394
|
+
this.fileManagerService = this.injectorObj.get(FileManagerService);
|
|
395
|
+
this.dynamicFormService = this.injectorObj.get(DynamicFormService);
|
|
396
|
+
this.callApi = this.injectorObj.get(CallApiService);
|
|
397
|
+
this.shared = this.injectorObj.get(SharedDocsService);
|
|
398
|
+
this.adapter = this.injectorObj.get(AdapterService);
|
|
399
|
+
this.router = this.injectorObj.get(Router);
|
|
400
|
+
this.fileManagerAdapter = this.injectorObj.get(FileManagerAdapter);
|
|
401
|
+
this.translationService = this.injectorObj.get(TranslationService);
|
|
402
|
+
this.customToastrService = this.injectorObj.get(CustomToastrService);
|
|
403
|
+
this.appConfService = this.injectorObj.get(AppConfigService);
|
|
404
|
+
this.userPreferenceService = this.injectorObj.get(UserPreferencesService);
|
|
405
|
+
this.dialogMangmentService = this.injectorObj.get(DialogMangmentService);
|
|
406
|
+
this.uploadMangmentService = this.injectorObj.get(UploadManagmentService);
|
|
407
|
+
this.dialog = this.injectorObj.get(MatDialog);
|
|
408
|
+
this.documentScanService = this.injectorObj.get(DocumentScanService);
|
|
409
|
+
this.route = this.injectorObj.get(ActivatedRoute);
|
|
410
|
+
this.iconService = this.injectorObj.get(IconService);
|
|
411
|
+
this.nuxeoService = this.injectorObj.get(NuxeoService);
|
|
412
|
+
this.multiSelectedkeys = [''];
|
|
413
|
+
this.myPageConfiguration = this.appConfService.myConfiguration.fileManger[this.myPageConfName] ;
|
|
414
|
+
this.subscriptions.concat([this.router.events.subscribe((event: NavigationStart) => {
|
|
415
|
+
if (event.navigationTrigger === 'popstate') {
|
|
416
|
+
let id = event.url.split('id=')[1];
|
|
417
|
+
if (id && id.includes('fromSharedDocument')) {
|
|
418
|
+
id = id.split('&')[0];
|
|
419
|
+
}
|
|
420
|
+
this.getSelectedFolderTree(id);
|
|
421
|
+
}
|
|
422
|
+
})]);
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
ngOnInit(): void {
|
|
426
|
+
this.setMyTableConfiguration();
|
|
427
|
+
// executed only for my files list
|
|
428
|
+
// executed for pages with static root
|
|
429
|
+
if (this.myPageConfiguration.isStaticRoot) {
|
|
430
|
+
this.fileManagerService.getFolder(this.mainFolder).subscribe((res) => {
|
|
431
|
+
this.directory = res;
|
|
432
|
+
this.canCreate = this.myPageConfiguration.canCreatePermission.every((per) =>
|
|
433
|
+
res.contextParameters.permissions.includes(per)
|
|
434
|
+
);
|
|
435
|
+
});
|
|
436
|
+
}else{
|
|
437
|
+
this.directory = {
|
|
438
|
+
contextParameters: {
|
|
439
|
+
permissions: [],
|
|
440
|
+
},
|
|
441
|
+
};
|
|
442
|
+
this.canCreate = this.myPageConfiguration.canCreatePermission.some((per) =>
|
|
443
|
+
this.directory.contextParameters.permissions.includes(per)
|
|
444
|
+
);
|
|
445
|
+
}
|
|
446
|
+
this.subscriptions.concat([
|
|
447
|
+
this.translationService.isArabic.subscribe(
|
|
448
|
+
(res) => {
|
|
449
|
+
this.isArabic = res;
|
|
450
|
+
this.isArabic
|
|
451
|
+
? (this.menuDirection = 'before')
|
|
452
|
+
: (this.menuDirection = 'after');
|
|
453
|
+
}
|
|
454
|
+
)]);
|
|
455
|
+
if (this.userPreferenceService) {
|
|
456
|
+
this.userPreferenceService
|
|
457
|
+
.select(UserPreferenceValues.Locale)
|
|
458
|
+
.pipe(takeUntil(this.onDestroy$))
|
|
459
|
+
.subscribe((locale) => {
|
|
460
|
+
this.rtlEnabled = locale === 'ar' ? true : false;
|
|
461
|
+
});
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
if (this.route.snapshot.queryParams['fromSharedDocument']) {
|
|
465
|
+
if (this.route.snapshot.queryParams['id'] === 'sharedDocumentsRoot') {
|
|
466
|
+
this.init(this.mainFolder);
|
|
467
|
+
} else {
|
|
468
|
+
this.getSelectedFolderTree(this.route.snapshot.queryParams['id']);
|
|
469
|
+
}
|
|
470
|
+
} else {
|
|
471
|
+
let URL_ID;
|
|
472
|
+
try {
|
|
473
|
+
URL_ID =
|
|
474
|
+
(this.route.snapshot.queryParams['id'])
|
|
475
|
+
? this.route.snapshot.queryParams['id']
|
|
476
|
+
: (this.userPreferenceService.hasItem(this.myPageConfiguration.trackedIdPropertyName))
|
|
477
|
+
? (JSON.parse(this.userPreferenceService.get(this.myPageConfiguration.trackedIdPropertyName)))
|
|
478
|
+
: null;
|
|
479
|
+
} catch (e) {
|
|
480
|
+
URL_ID = null;
|
|
481
|
+
}
|
|
482
|
+
if (URL_ID && URL_ID != this.myPageConfiguration.rootName) {
|
|
483
|
+
this.getSelectedFolderTree(URL_ID);
|
|
484
|
+
} else {
|
|
485
|
+
this.init(this.mainFolder);
|
|
486
|
+
}
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
this.fileManagerService.selectedFolderId = this.mainFolder;
|
|
490
|
+
|
|
491
|
+
|
|
492
|
+
this.subscriptions.concat([
|
|
493
|
+
this.fileManagerService.onRefreshingFileManger.subscribe((res) => {
|
|
494
|
+
let directory = this.getCurrentDirectory();
|
|
495
|
+
this.reinitializeFolderTree(
|
|
496
|
+
this.fileManagerService.selectedFolderId,
|
|
497
|
+
directory
|
|
498
|
+
);
|
|
499
|
+
})]);
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
ngAfterViewChecked() {
|
|
503
|
+
(
|
|
504
|
+
this.fileManager as any
|
|
505
|
+
).instance._filesTreeView._filesTreeView._dataAdapter.options.onNodeChanged =
|
|
506
|
+
(node) => {
|
|
507
|
+
if (!node?.itemsLoaded) {
|
|
508
|
+
this.reinitializeFolderTree(
|
|
509
|
+
node?.fileItem.dataItem?.id,
|
|
510
|
+
node.fileItem,
|
|
511
|
+
node
|
|
512
|
+
);
|
|
513
|
+
}
|
|
514
|
+
};
|
|
515
|
+
|
|
516
|
+
(this.fileManager as any).instance._breadcrumbs._currentDirectory
|
|
517
|
+
.fileItem.path === ''
|
|
518
|
+
? document
|
|
519
|
+
.getElementsByClassName('dx-menu-item-content')[0]
|
|
520
|
+
.classList.add('custom')
|
|
521
|
+
: '';
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
init(id, breadcrumbs = null) {
|
|
525
|
+
if (breadcrumbs) {
|
|
526
|
+
this.expandComp(this.getFolderChildren(id), breadcrumbs).subscribe(
|
|
527
|
+
(d) => {
|
|
528
|
+
let toSubstr;
|
|
529
|
+
if (this.mainFolder === 'sharedDocumentsRoot') {
|
|
530
|
+
toSubstr = this.fileManagerService.sharedFiles.entries.filter(
|
|
531
|
+
(item) =>
|
|
532
|
+
this.path.includes(
|
|
533
|
+
item.contextParameters.breadcrumb.entries
|
|
534
|
+
.map((item) => item.title)
|
|
535
|
+
.join('/')
|
|
536
|
+
)
|
|
537
|
+
);
|
|
538
|
+
const pathSplit =
|
|
539
|
+
toSubstr[0]?.contextParameters.breadcrumb.entries.map(
|
|
540
|
+
(item) => item.title
|
|
541
|
+
);
|
|
542
|
+
this.currentPath = pathSplit[pathSplit.length - 1];
|
|
543
|
+
} else {
|
|
544
|
+
|
|
545
|
+
if (this.myPageConfiguration.isStaticRoot) {
|
|
546
|
+
// if static root then there is a single root object loaded and saved in storage
|
|
547
|
+
this.currentPath = this.path.substr(this.fileManagerObj.path.length);
|
|
548
|
+
} else {
|
|
549
|
+
// if not static root then there is multiple objects in storag
|
|
550
|
+
// if user was admin then use the full path
|
|
551
|
+
if(this.nuxeoService.nuxeoClient.user.isAdministrator || this.myPageConfiguration.useFullPath){
|
|
552
|
+
this.currentPath = this.path
|
|
553
|
+
}else{
|
|
554
|
+
toSubstr = this.fileManagerObj.entries.filter(
|
|
555
|
+
(item) =>
|
|
556
|
+
this.path.includes(
|
|
557
|
+
item.contextParameters.breadcrumb.entries
|
|
558
|
+
.map((item) => item.title)
|
|
559
|
+
.join('/')
|
|
560
|
+
)
|
|
561
|
+
);
|
|
562
|
+
const pathSplit =
|
|
563
|
+
toSubstr[0]?.contextParameters.breadcrumb.entries.map(
|
|
564
|
+
(item) => item.title
|
|
565
|
+
);
|
|
566
|
+
let x = (pathSplit ? pathSplit[0]?.length : 0)
|
|
567
|
+
this.currentPath = this.path.substr(x
|
|
568
|
+
);
|
|
569
|
+
}
|
|
570
|
+
}
|
|
571
|
+
}
|
|
572
|
+
this.fileItems = d;
|
|
573
|
+
let directory = this.getCurrentDirectory();
|
|
574
|
+
this.currentFolder =
|
|
575
|
+
directory.dataItem === undefined
|
|
576
|
+
? this.canCreate
|
|
577
|
+
: directory.dataItem.canCreate;
|
|
578
|
+
}
|
|
579
|
+
);
|
|
580
|
+
} else {
|
|
581
|
+
this.getFolderChildren(id).subscribe((data) => {
|
|
582
|
+
this.fileItems = data;
|
|
583
|
+
let directory = this.getCurrentDirectory();
|
|
584
|
+
this.currentFolder =
|
|
585
|
+
directory.dataItem === undefined
|
|
586
|
+
? this.canCreate
|
|
587
|
+
: directory.dataItem.canCreate;
|
|
588
|
+
// this is required to redraw the tree to make it show up to solve issue with the tree not showing in the first time load
|
|
589
|
+
setTimeout(() => {
|
|
590
|
+
this.fileItems = [...data];
|
|
591
|
+
this.cdRef.detectChanges();
|
|
592
|
+
}, 500);
|
|
593
|
+
});
|
|
594
|
+
}
|
|
595
|
+
}
|
|
596
|
+
|
|
597
|
+
getFolderChildren(id) {
|
|
598
|
+
this.clicked = true;
|
|
599
|
+
this.cdRef.detectChanges();
|
|
600
|
+
if (id === "sharedDocumentsRoot") {
|
|
601
|
+
return this.fileManagerService.getChildrenForSharedDocumentRoot(id).pipe(
|
|
602
|
+
map((data: any) => {
|
|
603
|
+
this.showNoDataImage(data);
|
|
604
|
+
let fileItems = data;
|
|
605
|
+
return fileItems.sort((value) => {
|
|
606
|
+
return value.isDirectory ? -1 : 1; // `true` values first
|
|
607
|
+
});
|
|
608
|
+
}),
|
|
609
|
+
tap(
|
|
610
|
+
() => {this.clicked = false; this.cdRef.detectChanges();}
|
|
611
|
+
),
|
|
612
|
+
first()
|
|
613
|
+
);
|
|
614
|
+
} else {
|
|
615
|
+
return this.fileManagerService.getChildren(id).pipe(
|
|
616
|
+
map((data: any) => {
|
|
617
|
+
this.showNoDataImage(data);
|
|
618
|
+
let fileItems = data;
|
|
619
|
+
return fileItems.sort((value) => {
|
|
620
|
+
return value.isDirectory ? -1 : 1; // `true` values first
|
|
621
|
+
});
|
|
622
|
+
}),
|
|
623
|
+
tap(
|
|
624
|
+
() => {this.clicked = false; this.cdRef.detectChanges();}
|
|
625
|
+
),
|
|
626
|
+
first()
|
|
627
|
+
);
|
|
628
|
+
}
|
|
629
|
+
}
|
|
630
|
+
|
|
631
|
+
expandComp(entries: Observable<any>, breadcrumbs) {
|
|
632
|
+
return entries.pipe(
|
|
633
|
+
mergeMap((entries) =>
|
|
634
|
+
from(entries).pipe(
|
|
635
|
+
mergeMap((entry: any) => {
|
|
636
|
+
if (breadcrumbs.includes(entry.id)) {
|
|
637
|
+
return concat(
|
|
638
|
+
of(entry).pipe(
|
|
639
|
+
tap((ent) => (ent['items'] = []))
|
|
640
|
+
),
|
|
641
|
+
this.expandComp(
|
|
642
|
+
this.getFolderChildren(entry.id),
|
|
643
|
+
breadcrumbs
|
|
644
|
+
)
|
|
645
|
+
).pipe(
|
|
646
|
+
reduce((parent: any, children) => {
|
|
647
|
+
parent.items = children;
|
|
648
|
+
return parent;
|
|
649
|
+
})
|
|
650
|
+
);
|
|
651
|
+
} else {
|
|
652
|
+
return of(entry);
|
|
653
|
+
}
|
|
654
|
+
}),
|
|
655
|
+
toArray()
|
|
656
|
+
)
|
|
657
|
+
)
|
|
658
|
+
);
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
getCurrentDirectory() {
|
|
662
|
+
let directory = this.fileManager.instance.getCurrentDirectory();
|
|
663
|
+
return directory;
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
async reinitializeFolderTree(id, directory, node = null) {
|
|
667
|
+
let $node = null;
|
|
668
|
+
this.clicked = true;
|
|
669
|
+
if (node) {
|
|
670
|
+
$node = (
|
|
671
|
+
this.fileManager as any
|
|
672
|
+
).instance._filesTreeView._filesTreeView._getNodeElement(node);
|
|
673
|
+
(
|
|
674
|
+
this.fileManager as any
|
|
675
|
+
).instance._filesTreeView._filesTreeView._createLoadIndicator(
|
|
676
|
+
$node
|
|
677
|
+
);
|
|
678
|
+
}
|
|
679
|
+
if (directory.dataItem === undefined) {
|
|
680
|
+
this.fileManagerService
|
|
681
|
+
.refreshData(this.mainFolder)
|
|
682
|
+
.subscribe((data) => {
|
|
683
|
+
this.showNoDataImage(data);
|
|
684
|
+
this.fileItems = data;
|
|
685
|
+
this.clicked = false;
|
|
686
|
+
return this.fileItems.sort((value) => {
|
|
687
|
+
return value.isDirectory ? -1 : 1; // `true` values first
|
|
688
|
+
});
|
|
689
|
+
});
|
|
690
|
+
} else {
|
|
691
|
+
const children = await this.fileManagerService
|
|
692
|
+
.refreshData(id)
|
|
693
|
+
.pipe(
|
|
694
|
+
map((data: any) => {
|
|
695
|
+
this.showNoDataImage(data);
|
|
696
|
+
let fileItems = data;
|
|
697
|
+
this.clicked = false;
|
|
698
|
+
return fileItems.sort((value) => {
|
|
699
|
+
return value.isDirectory ? -1 : 1; // `true` values first
|
|
700
|
+
});
|
|
701
|
+
}),
|
|
702
|
+
first()
|
|
703
|
+
)
|
|
704
|
+
.toPromise();
|
|
705
|
+
directory.dataItem.items = children;
|
|
706
|
+
if (node) {
|
|
707
|
+
(
|
|
708
|
+
this.fileManager as any
|
|
709
|
+
).instance._filesTreeView._filesTreeView._updateExpandedItemsUI(
|
|
710
|
+
node,
|
|
711
|
+
!node.expanded
|
|
712
|
+
);
|
|
713
|
+
}
|
|
714
|
+
|
|
715
|
+
this.fileManager.instance.refresh();
|
|
716
|
+
}
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
showNoDataImage(data: any) {
|
|
720
|
+
if (this.itemListView) {
|
|
721
|
+
if (data.length === 0) {
|
|
722
|
+
document
|
|
723
|
+
.getElementsByClassName(
|
|
724
|
+
'dx-filemanager-thumbnails-view-port'
|
|
725
|
+
)[0]
|
|
726
|
+
?.classList.add('empty-collection');
|
|
727
|
+
} else {
|
|
728
|
+
document
|
|
729
|
+
.getElementsByClassName(
|
|
730
|
+
'dx-filemanager-thumbnails-view-port'
|
|
731
|
+
)[0]
|
|
732
|
+
?.classList.remove('empty-collection');
|
|
733
|
+
}
|
|
734
|
+
} else {
|
|
735
|
+
if (data.length === 0) {
|
|
736
|
+
let dataGridElement =
|
|
737
|
+
document.getElementsByClassName('dx-datagrid-nodata')[0];
|
|
738
|
+
if (dataGridElement) dataGridElement.classList.remove('empty');
|
|
739
|
+
}
|
|
740
|
+
}
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
openShareDialog() {
|
|
744
|
+
this.shared.openShareDialog(this.selectedItem);
|
|
745
|
+
}
|
|
746
|
+
|
|
747
|
+
setMyTableConfiguration() {
|
|
748
|
+
this.config =
|
|
749
|
+
this.appConfService.myConfiguration.tables[this.configKey];
|
|
750
|
+
this.headers = this.config.headers;
|
|
751
|
+
this.fields = this.config.fields;
|
|
752
|
+
this.operation = this.config.operations;
|
|
753
|
+
this.pageProvider = this.config.pageProvider;
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
getSelectedFolderTree(id) {
|
|
757
|
+
this.fileManagerService.getFolder(id).subscribe(async (res) => {
|
|
758
|
+
if (this.myPageConfiguration.isStaticRoot) {
|
|
759
|
+
this.path = res.path;
|
|
760
|
+
} else {
|
|
761
|
+
this.path = res.contextParameters.breadcrumb.entries
|
|
762
|
+
.map((item) => item.title)
|
|
763
|
+
.join('/');
|
|
764
|
+
}
|
|
765
|
+
if (this.route.snapshot.queryParams['fromSharedDocument']) {
|
|
766
|
+
res.contextParameters.breadcrumb.entries = [
|
|
767
|
+
{ uid: 'sharedDocumentsRoot' },
|
|
768
|
+
...res.contextParameters.breadcrumb.entries,
|
|
769
|
+
];
|
|
770
|
+
} else {
|
|
771
|
+
// if not static root then add the root name to breadcrumb
|
|
772
|
+
if (!this.myPageConfiguration.isStaticRoot) {
|
|
773
|
+
res.contextParameters.breadcrumb.entries = [
|
|
774
|
+
{ uid: this.myPageConfiguration.rootName },
|
|
775
|
+
...res.contextParameters.breadcrumb.entries,
|
|
776
|
+
];
|
|
777
|
+
}
|
|
778
|
+
}
|
|
779
|
+
const breadcrumbs = res.contextParameters.breadcrumb.entries.map(
|
|
780
|
+
(item) => item.uid
|
|
781
|
+
);
|
|
782
|
+
if (this.mainFolder !== 'sharedDocumentsRoot') {
|
|
783
|
+
breadcrumbs.splice(breadcrumbs.indexOf(id), 1);
|
|
784
|
+
}
|
|
785
|
+
this.init(this.mainFolder, breadcrumbs);
|
|
786
|
+
});
|
|
787
|
+
}
|
|
788
|
+
|
|
789
|
+
openUpdateModal() {
|
|
790
|
+
this.dialog.open(UpdateModalComponent, {
|
|
791
|
+
width: '40%',
|
|
792
|
+
height: '70%',
|
|
793
|
+
maxWidth: 'auto',
|
|
794
|
+
panelClass: 'watcher-dialog-container',
|
|
795
|
+
data: {
|
|
796
|
+
id: this.selectedItem.id,
|
|
797
|
+
type: this.selectedItem.entity.type,
|
|
798
|
+
code: this.selectedItem.entity.properties['gdoc:documentTypeCode'] ? this.selectedItem.entity.properties['gdoc:documentTypeCode'] : this.selectedItem.entity.type,
|
|
799
|
+
isDirectory: this.selectedItem.isDirectory,
|
|
800
|
+
},
|
|
801
|
+
disableClose: true,
|
|
802
|
+
});
|
|
803
|
+
}
|
|
804
|
+
|
|
805
|
+
getSelectedItem(directory) {
|
|
806
|
+
let selectedItem =
|
|
807
|
+
directory?.dataItem && directory.dataItem.id
|
|
808
|
+
? directory.dataItem.id
|
|
809
|
+
: this.mainFolder;
|
|
810
|
+
return selectedItem;
|
|
811
|
+
}
|
|
812
|
+
|
|
813
|
+
contextItemsParser(items = []) {
|
|
814
|
+
return items.map(item => {
|
|
815
|
+
let parsed = { ...item };
|
|
816
|
+
if (parsed.visibleEvaluator && typeof parsed.visibleEvaluator == 'function') {
|
|
817
|
+
parsed.visible = parsed.visibleEvaluator();
|
|
818
|
+
}
|
|
819
|
+
return parsed;
|
|
820
|
+
});
|
|
821
|
+
}
|
|
822
|
+
|
|
823
|
+
onSelected(e) {
|
|
824
|
+
// if (this.showDetails) {
|
|
825
|
+
// this.sideMenuLoading = true;
|
|
826
|
+
// }
|
|
827
|
+
this.showClipboard = false;
|
|
828
|
+
this.showDgdaClipboard = false;
|
|
829
|
+
this.myFileMangerInstance = e.component;
|
|
830
|
+
this.currentDirectory = this.getCurrentDirectory();
|
|
831
|
+
let selectedItem = this.fileManager.instance.getSelectedItems();
|
|
832
|
+
this.itemsSelected =
|
|
833
|
+
e?.selectedItems.length > 1
|
|
834
|
+
? `${e?.selectedItems.length} items`
|
|
835
|
+
: e?.selectedItems[0]?.dataItem.name;
|
|
836
|
+
this.isItemSelected = e?.selectedItems.length > 0 ? true : false;
|
|
837
|
+
this.selectedItemLength = selectedItem.length > 1 ? false : true;
|
|
838
|
+
if (e?.selectedItems[0]?.dataItem) {
|
|
839
|
+
this.selectedItem = e?.selectedItems[0]?.dataItem;
|
|
840
|
+
}
|
|
841
|
+
this.selectedItems = e?.selectedItems
|
|
842
|
+
.map((element) => element.dataItem.id)
|
|
843
|
+
.toString();
|
|
844
|
+
this.multipleItems = e?.selectedItems;
|
|
845
|
+
this.selectedItemsObjects = this.fileManager.instance.getSelectedItems();
|
|
846
|
+
if (this.selectedItem) {
|
|
847
|
+
this.myFileMangerInstance.option('contextMenu.items', this.contextItemsParser(this.contextMenuItems));
|
|
848
|
+
this.myFileMangerInstance.option('toolbar.fileSelectionItems', this.contextItemsParser(this.toolbarItems));
|
|
849
|
+
if (this.showDetails) {
|
|
850
|
+
this.openSideMenuDetails();
|
|
851
|
+
}
|
|
852
|
+
} else {
|
|
853
|
+
this.showDetails = false;
|
|
854
|
+
// this.sideMenuLoading = false;
|
|
855
|
+
}
|
|
856
|
+
|
|
857
|
+
}
|
|
858
|
+
//----------------- CONTEXT MENU -----------------------
|
|
859
|
+
onContextMenuShowing(e) {
|
|
860
|
+
// this.showDetails = false; // hide side menu details when right click
|
|
861
|
+
let directory = this.getCurrentDirectory();
|
|
862
|
+
if (e.viewArea === 'itemView' && !this.isItemSelected) {
|
|
863
|
+
if (this.myPageConfiguration.showAddFolderInContextMenu) {
|
|
864
|
+
this.myFileMangerInstance.option('contextMenu.items', [
|
|
865
|
+
{
|
|
866
|
+
name: 'create_folder',
|
|
867
|
+
text: this.isArabic ? 'مجلد جديد' : 'New Directory',
|
|
868
|
+
action: this.createFolder,
|
|
869
|
+
visibleEvaluator: () => {
|
|
870
|
+
return this.selectedItem.isDirectory &&
|
|
871
|
+
this.selectedItemLength &&
|
|
872
|
+
this.selectedItem.canCreate
|
|
873
|
+
}
|
|
874
|
+
}
|
|
875
|
+
]);
|
|
876
|
+
}
|
|
877
|
+
this.myFileMangerInstance.option('contextMenu.items', [
|
|
878
|
+
{
|
|
879
|
+
name: 'refresh',
|
|
880
|
+
action: this.refresh,
|
|
881
|
+
text: this.isArabic ? 'تحديث' : 'Refresh',
|
|
882
|
+
icon: '',
|
|
883
|
+
}
|
|
884
|
+
]);
|
|
885
|
+
}
|
|
886
|
+
if (e.viewArea === 'navPane') {
|
|
887
|
+
e.cancel = true;
|
|
888
|
+
}
|
|
889
|
+
}
|
|
890
|
+
|
|
891
|
+
onContextItemClick({ itemData, viewArea, fileSystemItem }) {
|
|
892
|
+
let selectedItem = this.fileManager.instance.getSelectedItems();
|
|
893
|
+
this.itemToDisplay =
|
|
894
|
+
viewArea === 'navPane'
|
|
895
|
+
? fileSystemItem.dataItem
|
|
896
|
+
: selectedItem[0]?.dataItem;
|
|
897
|
+
let directory = this.getCurrentDirectory();
|
|
898
|
+
let id = this.getCurrentFolderId(directory);
|
|
899
|
+
|
|
900
|
+
itemData.action();
|
|
901
|
+
}
|
|
902
|
+
// ------------------------------------------------------------------------
|
|
903
|
+
// ----------------- TOOL BAR -----------------------------
|
|
904
|
+
onToolbarItemClicked(e) {
|
|
905
|
+
this.showDetails = false;
|
|
906
|
+
// this.sideMenuLoading = false;
|
|
907
|
+
let directory = this.getCurrentDirectory();
|
|
908
|
+
let id = this.getCurrentFolderId(directory);
|
|
909
|
+
let selectedItem = this.fileManager.instance.getSelectedItems();
|
|
910
|
+
e.itemData.action ? e.itemData.action() : () => { };
|
|
911
|
+
}
|
|
912
|
+
|
|
913
|
+
getCurrentFolderId(directory) {
|
|
914
|
+
let id =
|
|
915
|
+
directory.dataItem === undefined
|
|
916
|
+
? this.selectedItem?.id
|
|
917
|
+
: directory.dataItem?.id;
|
|
918
|
+
return id;
|
|
919
|
+
}
|
|
920
|
+
// ------------------------------------------------------------
|
|
921
|
+
//-----------------------on item click ---------------
|
|
922
|
+
async onItemClicked(e) {
|
|
923
|
+
this.showClipboard = false; // close clipboard if navigated to any place
|
|
924
|
+
this.showDgdaClipboard = false;
|
|
925
|
+
this.selectedFolderPath = e.directory.dataItem?.entity.path;
|
|
926
|
+
if (e.directory.dataItem === undefined) {
|
|
927
|
+
if (this.mainFolder === 'sharedDocumentsRoot') {
|
|
928
|
+
this.fileManagerService.getChildrenForSharedDocumentRoot(this.mainFolder)
|
|
929
|
+
.subscribe((data) => {
|
|
930
|
+
this.showNoDataImage(data);
|
|
931
|
+
this.fileItems = data;
|
|
932
|
+
return this.fileItems.sort((value) => {
|
|
933
|
+
return value.isDirectory ? -1 : 1; // `true` values first
|
|
934
|
+
});
|
|
935
|
+
});
|
|
936
|
+
} else {
|
|
937
|
+
this.fileManagerService
|
|
938
|
+
.refreshData(this.mainFolder)
|
|
939
|
+
.subscribe((data) => {
|
|
940
|
+
this.showNoDataImage(data);
|
|
941
|
+
this.fileItems = data;
|
|
942
|
+
return this.fileItems.sort((value) => {
|
|
943
|
+
return value.isDirectory ? -1 : 1; // `true` values first
|
|
944
|
+
});
|
|
945
|
+
});
|
|
946
|
+
}
|
|
947
|
+
}
|
|
948
|
+
|
|
949
|
+
this.myCurrecntFolderData = e.directory.dataItem ? e.directory.dataItem : (this.mainFolder === 'sharedDocumentsRoot' ? 'sharedDocumentsRoot' : this.myPageConfiguration.rootName);
|
|
950
|
+
this.permissionEvaluatorService.evaluateRule('canCreateNewFolderTemplates', { entity: this.myCurrecntFolderData.entity }).then(res => {
|
|
951
|
+
this.showfolderTemplates = res;
|
|
952
|
+
})
|
|
953
|
+
// if not coming from shared document then save the id to track it
|
|
954
|
+
if (this.mainFolder !== 'sharedDocumentsRoot') {
|
|
955
|
+
if (e.directory?.dataItem?.id) {
|
|
956
|
+
this.userPreferenceService.set(this.myPageConfiguration.trackedIdPropertyName, JSON.stringify(e.directory?.dataItem?.id));
|
|
957
|
+
} else {
|
|
958
|
+
localStorage.removeItem(this.userPreferenceService.getPropertyKey(this.myPageConfiguration.trackedIdPropertyName));
|
|
959
|
+
|
|
960
|
+
}
|
|
961
|
+
}
|
|
962
|
+
this.itemListView = e.component._itemView._itemList;
|
|
963
|
+
let directory = this.getCurrentDirectory();
|
|
964
|
+
|
|
965
|
+
this.currentFolder =
|
|
966
|
+
directory.dataItem === undefined
|
|
967
|
+
? this.canCreate
|
|
968
|
+
: directory.dataItem.canCreate;
|
|
969
|
+
if (this.itemListView) {
|
|
970
|
+
document
|
|
971
|
+
.getElementsByClassName(
|
|
972
|
+
'dx-filemanager-thumbnails-view-port'
|
|
973
|
+
)[0]
|
|
974
|
+
.classList.remove('empty-collection');
|
|
975
|
+
} else {
|
|
976
|
+
let loadPanelElement = document.getElementsByClassName(
|
|
977
|
+
'dx-loadpanel-content'
|
|
978
|
+
)[0];
|
|
979
|
+
let dataGridElement =
|
|
980
|
+
document.getElementsByClassName('dx-datagrid-nodata')[0];
|
|
981
|
+
if (loadPanelElement && dataGridElement) {
|
|
982
|
+
loadPanelElement.classList.add('hide-loadpanel');
|
|
983
|
+
dataGridElement.classList.add('empty');
|
|
984
|
+
}
|
|
985
|
+
}
|
|
986
|
+
var elem =
|
|
987
|
+
e?.directory?.path === ''
|
|
988
|
+
? document
|
|
989
|
+
.getElementsByClassName('dx-menu-item-content')[0]
|
|
990
|
+
.classList.add('custom')
|
|
991
|
+
: '';
|
|
992
|
+
const id = e?.directory?.dataItem?.id;
|
|
993
|
+
this.fileManagerService.selectedFolderId =
|
|
994
|
+
e?.directory && e?.directory?.dataItem ? id : this.mainFolder;
|
|
995
|
+
const queryParams: Params = {
|
|
996
|
+
id: e?.directory && e?.directory?.dataItem ? id : this.mainFolder,
|
|
997
|
+
};
|
|
998
|
+
each(
|
|
999
|
+
(
|
|
1000
|
+
this.fileManager as any
|
|
1001
|
+
).instance._filesTreeView._filesTreeView._dataAdapter.getExpandedNodesKeys(),
|
|
1002
|
+
(key) => {
|
|
1003
|
+
if (
|
|
1004
|
+
key.includes(e.directory.path) &&
|
|
1005
|
+
key.replace('FIK_', '') !== e.directory.path
|
|
1006
|
+
) {
|
|
1007
|
+
(
|
|
1008
|
+
this.fileManager as any
|
|
1009
|
+
).instance._filesTreeView._filesTreeView._toggleExpandedState(
|
|
1010
|
+
key,
|
|
1011
|
+
false
|
|
1012
|
+
);
|
|
1013
|
+
}
|
|
1014
|
+
}
|
|
1015
|
+
);
|
|
1016
|
+
this.router.navigate([], {
|
|
1017
|
+
relativeTo: this.route,
|
|
1018
|
+
queryParams: queryParams,
|
|
1019
|
+
queryParamsHandling: 'merge', // remove to replace all query params by provided
|
|
1020
|
+
});
|
|
1021
|
+
|
|
1022
|
+
if (id !== undefined && e && e?.directory?.dataItem) {
|
|
1023
|
+
try {
|
|
1024
|
+
// (
|
|
1025
|
+
// document.querySelector(
|
|
1026
|
+
// `[data-item-id="FIK_${encodeURI(
|
|
1027
|
+
// e.directory.parentPath
|
|
1028
|
+
// )}"]`
|
|
1029
|
+
// ) as HTMLElement
|
|
1030
|
+
// ).style.pointerEvents = 'none';
|
|
1031
|
+
(
|
|
1032
|
+
document.querySelector(
|
|
1033
|
+
`[data-item-id="FIK_${encodeURI(e.directory.path)}"]`
|
|
1034
|
+
) as HTMLElement
|
|
1035
|
+
).style.pointerEvents = 'none';
|
|
1036
|
+
} catch (e) { }
|
|
1037
|
+
e.directory.dataItem.items = await this.getFolderChildren(id).toPromise();
|
|
1038
|
+
try {
|
|
1039
|
+
// (
|
|
1040
|
+
// document.querySelector(
|
|
1041
|
+
// `[data-item-id="FIK_${encodeURI(
|
|
1042
|
+
// e.directory.parentPath
|
|
1043
|
+
// )}"]`
|
|
1044
|
+
// ) as HTMLElement
|
|
1045
|
+
// ).style.pointerEvents = 'all';
|
|
1046
|
+
(
|
|
1047
|
+
document.querySelector(
|
|
1048
|
+
`[data-item-id="FIK_${encodeURI(e.directory.path)}"]`
|
|
1049
|
+
) as HTMLElement
|
|
1050
|
+
).style.pointerEvents = 'all';
|
|
1051
|
+
} catch (e) { }
|
|
1052
|
+
if (!this.itemListView) {
|
|
1053
|
+
document
|
|
1054
|
+
.getElementsByClassName('dx-loadpanel-content')[0]
|
|
1055
|
+
.classList.remove('hide-loadpanel');
|
|
1056
|
+
}
|
|
1057
|
+
}
|
|
1058
|
+
const scrollTopPosition =
|
|
1059
|
+
e.component._filesTreeView._filesTreeView?._scrollableContainer?.scrollTop();
|
|
1060
|
+
e.component.refresh().then(() => {
|
|
1061
|
+
e.component._filesTreeView._filesTreeView?._scrollableContainer?.scrollTo(
|
|
1062
|
+
scrollTopPosition
|
|
1063
|
+
);
|
|
1064
|
+
});
|
|
1065
|
+
}
|
|
1066
|
+
//--------------------------------------------------------------
|
|
1067
|
+
|
|
1068
|
+
// --------------------------------------- create new file popups ---------------------------------------------------------------------
|
|
1069
|
+
|
|
1070
|
+
checkForOpeningCreationDialog(fileType) {
|
|
1071
|
+
if (this.dialogMangmentService.minizedModal) {
|
|
1072
|
+
let dialogRef = this.dialog.open(ConfirmationDialogComponent, {
|
|
1073
|
+
width: '510px',
|
|
1074
|
+
data: {
|
|
1075
|
+
title: 'createFileInProgressTitle',
|
|
1076
|
+
message: 'createFileInProgress',
|
|
1077
|
+
confirmButton: `BUTTONS.Yes`,
|
|
1078
|
+
cancelButton: "BUTTONS.No"
|
|
1079
|
+
},
|
|
1080
|
+
disableClose: true,
|
|
1081
|
+
});
|
|
1082
|
+
dialogRef.afterClosed().subscribe((res) => {
|
|
1083
|
+
if (res) {
|
|
1084
|
+
if (this.dialogMangmentService.creationMode === 'upload') {
|
|
1085
|
+
this.dialogMangmentService.openMinimzedModal(
|
|
1086
|
+
CreateModalComponent,
|
|
1087
|
+
'70%',
|
|
1088
|
+
'85%',
|
|
1089
|
+
(!this.myPageConfiguration.isStaticRoot ? this.selectedFolderPath : '') // send path in case of file list or other page with none static root and not send it in case of my files or any other page with static root
|
|
1090
|
+
);
|
|
1091
|
+
} else if (
|
|
1092
|
+
this.dialogMangmentService.creationMode === 'scan'
|
|
1093
|
+
) {
|
|
1094
|
+
this.dialogMangmentService.openMinimzedModal(
|
|
1095
|
+
ScanModalComponent,
|
|
1096
|
+
'90%',
|
|
1097
|
+
'90%',
|
|
1098
|
+
(!this.myPageConfiguration.isStaticRoot ? this.selectedFolderPath : '') // send path in case of file list or other page with none static root and not send it in case of my files or any other page with static root
|
|
1099
|
+
);
|
|
1100
|
+
}
|
|
1101
|
+
} else {
|
|
1102
|
+
//if choose to start new form then reset last form validation
|
|
1103
|
+
this.uploadMangmentService.GeneralFormValidation = true;
|
|
1104
|
+
this.openCreationTypeDialog(fileType);
|
|
1105
|
+
}
|
|
1106
|
+
});
|
|
1107
|
+
} else {
|
|
1108
|
+
this.dynamicFormService
|
|
1109
|
+
.getDynamicForm(fileType.documentCode ? fileType.documentCode : fileType.type)
|
|
1110
|
+
.subscribe((res) => {
|
|
1111
|
+
if (res) {
|
|
1112
|
+
this.dialogMangmentService.storedDynamicForm = res;
|
|
1113
|
+
this.openCreationTypeDialog(fileType);
|
|
1114
|
+
} else {
|
|
1115
|
+
this.customToastrService.show(
|
|
1116
|
+
'notification',
|
|
1117
|
+
'No Form',
|
|
1118
|
+
'Administrator Must Set File Form First'
|
|
1119
|
+
);
|
|
1120
|
+
}
|
|
1121
|
+
});
|
|
1122
|
+
}
|
|
1123
|
+
}
|
|
1124
|
+
|
|
1125
|
+
openCreationTypeDialog(fileType) {
|
|
1126
|
+
let creationDialogRef = this.dialog.open(CreationTypeComponent, {
|
|
1127
|
+
width: '500px',
|
|
1128
|
+
height: '300px',
|
|
1129
|
+
panelClass: 'watcher-dialog-container',
|
|
1130
|
+
data: {},
|
|
1131
|
+
disableClose: true,
|
|
1132
|
+
});
|
|
1133
|
+
creationDialogRef.afterClosed().subscribe((res) => {
|
|
1134
|
+
// if there was a minimied scan modal and he want to open another modal then reset for saved scanned modal
|
|
1135
|
+
if (this.documentScanService.storedFile && res !== '') {
|
|
1136
|
+
this.documentScanService.storedFile = {};
|
|
1137
|
+
}
|
|
1138
|
+
if (res === 'upload') {
|
|
1139
|
+
this.openDialog(
|
|
1140
|
+
CreateModalComponent,
|
|
1141
|
+
fileType,
|
|
1142
|
+
'upload',
|
|
1143
|
+
'70%',
|
|
1144
|
+
'85%',
|
|
1145
|
+
(!this.myPageConfiguration.isStaticRoot ? this.selectedFolderPath : '') // send path in case of file list or other page with none static root and not send it in case of my files or any other page with static root
|
|
1146
|
+
);
|
|
1147
|
+
} else if (res === 'scan') {
|
|
1148
|
+
this.openDialog(
|
|
1149
|
+
ScanModalComponent,
|
|
1150
|
+
fileType,
|
|
1151
|
+
'scan',
|
|
1152
|
+
'90%',
|
|
1153
|
+
'90%',
|
|
1154
|
+
(!this.myPageConfiguration.isStaticRoot ? this.selectedFolderPath : '') // send path in case of file list or other page with none static root and not send it in case of my files or any other page with static root
|
|
1155
|
+
);
|
|
1156
|
+
} else if (res === 'template') {
|
|
1157
|
+
this.openDialog(
|
|
1158
|
+
TemplateModalComponent,
|
|
1159
|
+
fileType.type,
|
|
1160
|
+
'scan',
|
|
1161
|
+
'70%',
|
|
1162
|
+
'85%'
|
|
1163
|
+
);
|
|
1164
|
+
}
|
|
1165
|
+
});
|
|
1166
|
+
}
|
|
1167
|
+
|
|
1168
|
+
openDialog(component, fileType, creationMode, width, height, path?) {
|
|
1169
|
+
this.uploadMangmentService.resetStatus();
|
|
1170
|
+
this.dialogMangmentService.openModal(
|
|
1171
|
+
component,
|
|
1172
|
+
fileType,
|
|
1173
|
+
creationMode,
|
|
1174
|
+
'fileManger',
|
|
1175
|
+
width,
|
|
1176
|
+
height,
|
|
1177
|
+
path
|
|
1178
|
+
);
|
|
1179
|
+
}
|
|
1180
|
+
|
|
1181
|
+
checkForCreateNewFolder(folderType) {
|
|
1182
|
+
if (this.dialogMangmentService.minizedModal) {
|
|
1183
|
+
let dialogRef = this.dialog.open(ConfirmationDialogComponent, {
|
|
1184
|
+
width: '510px',
|
|
1185
|
+
data: {
|
|
1186
|
+
title: 'createFileInProgressTitle',
|
|
1187
|
+
message: 'createFileInProgress',
|
|
1188
|
+
confirmButton: `BUTTONS.Yes`,
|
|
1189
|
+
cancelButton: "BUTTONS.No"
|
|
1190
|
+
},
|
|
1191
|
+
disableClose: true,
|
|
1192
|
+
});
|
|
1193
|
+
dialogRef.afterClosed().subscribe((res) => {
|
|
1194
|
+
if (res) {
|
|
1195
|
+
if (this.dialogMangmentService.creationMode === 'upload') {
|
|
1196
|
+
this.dialogMangmentService.openMinimzedModal(
|
|
1197
|
+
CreateModalComponent,
|
|
1198
|
+
'70%',
|
|
1199
|
+
'85%',
|
|
1200
|
+
(!this.myPageConfiguration.isStaticRoot ? this.selectedFolderPath : '') // send path in case of file list or other page with none static root and not send it in case of my files or any other page with static root
|
|
1201
|
+
);
|
|
1202
|
+
} else if (
|
|
1203
|
+
this.dialogMangmentService.creationMode === 'scan'
|
|
1204
|
+
) {
|
|
1205
|
+
this.dialogMangmentService.openMinimzedModal(
|
|
1206
|
+
ScanModalComponent,
|
|
1207
|
+
'90%',
|
|
1208
|
+
'90%',
|
|
1209
|
+
(!this.myPageConfiguration.isStaticRoot ? this.selectedFolderPath : '') // send path in case of file list or other page with none static root and not send it in case of my files or any other page with static root
|
|
1210
|
+
);
|
|
1211
|
+
}
|
|
1212
|
+
} else {
|
|
1213
|
+
this.getFormForFolderCreation(folderType);
|
|
1214
|
+
}
|
|
1215
|
+
});
|
|
1216
|
+
} else {
|
|
1217
|
+
this.getFormForFolderCreation(folderType);
|
|
1218
|
+
}
|
|
1219
|
+
}
|
|
1220
|
+
|
|
1221
|
+
getFormForFolderCreation(folderType) {
|
|
1222
|
+
this.dynamicFormService
|
|
1223
|
+
.getDynamicForm(folderType.type)
|
|
1224
|
+
.subscribe((res) => {
|
|
1225
|
+
if (res) {
|
|
1226
|
+
this.dialogMangmentService.storedDynamicForm = res;
|
|
1227
|
+
this.openCreateFolderDialog(folderType, res);
|
|
1228
|
+
} else {
|
|
1229
|
+
this.customToastrService.show(
|
|
1230
|
+
'notification',
|
|
1231
|
+
'No Form',
|
|
1232
|
+
'Administrator Must Set Folder Form First'
|
|
1233
|
+
);
|
|
1234
|
+
}
|
|
1235
|
+
});
|
|
1236
|
+
}
|
|
1237
|
+
|
|
1238
|
+
openCreateFolderDialog(folderType, dynamicform) {
|
|
1239
|
+
this.dialog.open(FolderModalComponent, {
|
|
1240
|
+
width: '40%',
|
|
1241
|
+
height: '70%',
|
|
1242
|
+
maxWidth: 'auto',
|
|
1243
|
+
panelClass: 'watcher-dialog-container',
|
|
1244
|
+
data: { folderType: folderType, dynamicForm: dynamicform },
|
|
1245
|
+
disableClose: true,
|
|
1246
|
+
});
|
|
1247
|
+
}
|
|
1248
|
+
|
|
1249
|
+
openPublishModal = () => {
|
|
1250
|
+
let myType = "File";
|
|
1251
|
+
if (this.multipleItems.length > 1) {
|
|
1252
|
+
let newSelectedWithArrPrefix = [];
|
|
1253
|
+
this.newSelectedWithIdPrefix = "";
|
|
1254
|
+
this.multipleItems.map((item, index) => {
|
|
1255
|
+
(index == 0) ? newSelectedWithArrPrefix.push({
|
|
1256
|
+
type: item.isDirectory ? "Folder" : "File",
|
|
1257
|
+
id: 'docs:' + item.dataItem.id.toString()
|
|
1258
|
+
}) : newSelectedWithArrPrefix.push({
|
|
1259
|
+
type: item.isDirectory ? "Folder" : "File",
|
|
1260
|
+
id: item.dataItem.id.toString()
|
|
1261
|
+
})
|
|
1262
|
+
})
|
|
1263
|
+
newSelectedWithArrPrefix.map((item, index) => {
|
|
1264
|
+
this.newSelectedWithIdPrefix += (index == newSelectedWithArrPrefix.length - 1) ? item.id : item.id + ',';
|
|
1265
|
+
(item.type == "Folder") ? myType = "Folder" : null;
|
|
1266
|
+
})
|
|
1267
|
+
}
|
|
1268
|
+
this.dialog.open(PublishDialogComponent, {
|
|
1269
|
+
width: '500px',
|
|
1270
|
+
height: '400px',
|
|
1271
|
+
maxWidth: 'auto',
|
|
1272
|
+
panelClass: 'watcher-dialog-container',
|
|
1273
|
+
data: {
|
|
1274
|
+
id: (this.multipleItems.length > 1) ? this.newSelectedWithIdPrefix : this.selectedItem.id,
|
|
1275
|
+
PublishType: (this.multipleItems.length > 1) ? myType : this.selectedItem.isDirectory ? "Folder" : "File",
|
|
1276
|
+
},
|
|
1277
|
+
disableClose: true,
|
|
1278
|
+
});
|
|
1279
|
+
|
|
1280
|
+
}
|
|
1281
|
+
|
|
1282
|
+
addToClipboard = () => {
|
|
1283
|
+
let selectedItemsIds = this.selectedItems.split(',');
|
|
1284
|
+
let directory = this.getCurrentDirectory();
|
|
1285
|
+
let id =
|
|
1286
|
+
directory.dataItem === undefined
|
|
1287
|
+
? this.mainFolder
|
|
1288
|
+
: this.getCurrentFolderId(directory);
|
|
1289
|
+
if (selectedItemsIds.length === 1 && this.clipboardItems.length > 0 && this.clipboardItems.indexOf(selectedItemsIds[0]) > -1) {
|
|
1290
|
+
this.customToastrService.show('error', 'TOASTER.ERROR', "TOASTER.item_already_added")
|
|
1291
|
+
|
|
1292
|
+
} else {
|
|
1293
|
+
this.clipboardItems = union(this.clipboardItems, selectedItemsIds);
|
|
1294
|
+
this.userPreferenceService.set('clipboardItems', JSON.stringify(this.clipboardItems));
|
|
1295
|
+
this.customToastrService.show('success', 'TOASTER.SUCCESS', "TOASTER.added_to_clipboard");
|
|
1296
|
+
this.reinitializeFolderTree(id, directory);
|
|
1297
|
+
this.fileManagerService.onRefreshClipboard.emit();
|
|
1298
|
+
this.showClipboard = true;
|
|
1299
|
+
console.log(this.clipboardItems);
|
|
1300
|
+
}
|
|
1301
|
+
}
|
|
1302
|
+
// -------------------------------------------------------------------------------------------------------------------------------------
|
|
1303
|
+
customizeIcon = (fileSystemItem) => {
|
|
1304
|
+
let thumb = this.iconService.getFileIcon(
|
|
1305
|
+
fileSystemItem.dataItem.entity,
|
|
1306
|
+
'document'
|
|
1307
|
+
);
|
|
1308
|
+
let isFavorite = fileSystemItem?.dataItem?.isFavorite;
|
|
1309
|
+
let face = fileSystemItem?.dataItem?.entity?.properties['ctimagga:faces'];
|
|
1310
|
+
let isImaggaProccessed = !!(face && face.length);
|
|
1311
|
+
return isFavorite ? `${thumb}?fav=1${isImaggaProccessed ? '&imagga=1' : ''}` : isImaggaProccessed ? `${thumb}?imagga=1` : thumb;
|
|
1312
|
+
};
|
|
1313
|
+
|
|
1314
|
+
//--------------------------------- may be unused funtions -------------------
|
|
1315
|
+
checkForClass(className) {
|
|
1316
|
+
let classes = [
|
|
1317
|
+
'detailed-menu',
|
|
1318
|
+
'ng-tag-label',
|
|
1319
|
+
'ng-option-label',
|
|
1320
|
+
'ng-star-inserted',
|
|
1321
|
+
];
|
|
1322
|
+
let classFounded = false;
|
|
1323
|
+
classes.map((item) => {
|
|
1324
|
+
if (className.includes(item)) {
|
|
1325
|
+
classFounded = true;
|
|
1326
|
+
}
|
|
1327
|
+
});
|
|
1328
|
+
return classFounded;
|
|
1329
|
+
}
|
|
1330
|
+
|
|
1331
|
+
openSideMenuDetails() {
|
|
1332
|
+
this.showDetails = true;
|
|
1333
|
+
this.showClipboard = false;
|
|
1334
|
+
this.showDgdaClipboard = false;
|
|
1335
|
+
}
|
|
1336
|
+
|
|
1337
|
+
closeSideMenu() {
|
|
1338
|
+
this.showDetails = false;
|
|
1339
|
+
// this.sideMenuLoading = false;
|
|
1340
|
+
}
|
|
1341
|
+
//----------------------------------------------------------------------
|
|
1342
|
+
destroyClass() {
|
|
1343
|
+
this.subscriptions.forEach(sub => sub.unsubscribe());
|
|
1344
|
+
this.onDestroy$.next();
|
|
1345
|
+
this.onDestroy$.complete();
|
|
1346
|
+
}
|
|
1347
|
+
}
|