@decaf-ts/for-angular 0.1.1 → 0.1.4
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/.editorconfig +31 -0
- package/.gitlab-ci.yml +197 -0
- package/.hintrc +19 -0
- package/.prettierrc +49 -0
- package/.snyk +13 -0
- package/LICENSE.md +260 -0
- package/angular.json +274 -0
- package/bs-config.json +5 -0
- package/cli-module.js.map +1 -0
- package/dist/for-angular/cli/cli-module.d.ts +22 -0
- package/dist/for-angular/cli/cli-module.d.ts.map +1 -0
- package/dist/for-angular/cli/cli-module.js +131 -0
- package/dist/for-angular/cli/cli-module.js.map +1 -0
- package/dist/lib/README.md +117 -0
- package/{fesm2022 → dist/lib/fesm2022}/decaf-ts-for-angular.mjs +93 -109
- package/dist/lib/fesm2022/decaf-ts-for-angular.mjs.map +1 -0
- package/{index.d.ts → dist/lib/index.d.ts} +6 -5
- package/eslint.config.mjs +101 -0
- package/ionic.config.json +14 -0
- package/jest.config.ts +52 -0
- package/jest.setup.ts +50 -0
- package/karma.conf.js +50 -0
- package/ng-package.json +16 -0
- package/ngsw-config.json +30 -0
- package/package.json +86 -17
- package/playwright.config.ts +80 -0
- package/resources/favicon.png +0 -0
- package/resources/favicon.svg +29 -0
- package/resources/icon-background.png +0 -0
- package/resources/icon-foreground.png +0 -0
- package/resources/icon-only.png +0 -0
- package/resources/icon-only.svg +29 -0
- package/resources/splash-dark.png +0 -0
- package/resources/splash-dark2.png +0 -0
- package/resources/splash.png +0 -0
- package/resources/splash2.png +0 -0
- package/resources/touch-icon.svg +29 -0
- package/schematics/README.md +28 -0
- package/schematics/collection.json +20 -0
- package/schematics/package-lock.json +1501 -0
- package/schematics/package.json +37 -0
- package/schematics/src/component/files/__name@dasherize@if-flat__/__name@dasherize__.__type@dasherize__.__style__.template +0 -0
- package/schematics/src/component/files/__name@dasherize@if-flat__/__name@dasherize__.__type@dasherize__.html.template +3 -0
- package/schematics/src/component/files/__name@dasherize@if-flat__/__name@dasherize__.__type@dasherize__.spec.ts.template +40 -0
- package/schematics/src/component/files/__name@dasherize@if-flat__/__name@dasherize__.__type@dasherize__.ts.template +37 -0
- package/schematics/src/component/files/__name@dasherize@if-flat__/__name@dasherize__.module.ts.template +14 -0
- package/schematics/src/component/index.js +146 -0
- package/schematics/src/component/schema.js +2 -0
- package/schematics/src/component/schema.json +101 -0
- package/schematics/src/page/files/__name@dasherize__.page.html.template +15 -0
- package/schematics/src/page/files/__name@dasherize__.page.scss.template +0 -0
- package/schematics/src/page/files/__name@dasherize__.page.ts.template +19 -0
- package/schematics/src/page/index.js +71 -0
- package/schematics/src/page/schema.json +87 -0
- package/schematics/src/schematics/index.js +11 -0
- package/schematics/src/schematics/index_spec.js +13 -0
- package/schematics/src/util/ast-util.js +517 -0
- package/schematics/src/util/change.js +96 -0
- package/schematics/src/util/index.js +14 -0
- package/settings.json +112 -0
- package/tsconfig.app.json +22 -0
- package/tsconfig.cli.json +82 -0
- package/tsconfig.lib.json +14 -0
- package/tsconfig.lib.prod.json +10 -0
- package/tsconfig.spec.json +22 -0
- package/webpack.config.js +10 -0
- package/workdocs/1-Header.md +5 -0
- package/workdocs/2-Badges.md +30 -0
- package/workdocs/4-Description.md +4 -0
- package/workdocs/5-HowToUse.md +27 -0
- package/workdocs/6-Related.md +7 -0
- package/workdocs/7-Social.md +5 -0
- package/workdocs/99-Footer.md +28 -0
- package/workdocs/Readme.md +12 -0
- package/workdocs/assets/apple-touch-icon.png +0 -0
- package/workdocs/assets/decaf-logo.svg +54 -0
- package/workdocs/assets/favicon.png +0 -0
- package/workdocs/assets/slogans.json +182 -0
- package/workdocs/confluence/.markdown-confluence.template.json +6 -0
- package/workdocs/confluence/Angular Module.md +5 -0
- package/workdocs/drawings/diagram.drawio +24 -0
- package/workdocs/prompts/bulk.md +122 -0
- package/workdocs/prompts/code.md +47 -0
- package/workdocs/prompts/documentation.md +146 -0
- package/workdocs/prompts/uml.md +11 -0
- package/workdocs/readme-md.json +6 -0
- package/workdocs/reports/CHANGELOG.md +12 -0
- package/workdocs/reports/DEPENDENCIES.md +213 -0
- package/workdocs/reports/RELEASE_NOTES.md +24 -0
- package/workdocs/reports/coverage/.gitkeep +0 -0
- package/workdocs/reports/coverage/clover.xml +4110 -0
- package/workdocs/reports/coverage/coverage-final.json +76 -0
- package/workdocs/reports/coverage/lcov-report/base.css +224 -0
- package/workdocs/reports/coverage/lcov-report/block-navigation.js +87 -0
- package/workdocs/reports/coverage/lcov-report/favicon.png +0 -0
- package/workdocs/reports/coverage/lcov-report/index.html +551 -0
- package/workdocs/reports/coverage/lcov-report/prettify.css +1 -0
- package/workdocs/reports/coverage/lcov-report/prettify.js +2 -0
- package/workdocs/reports/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/workdocs/reports/coverage/lcov-report/sorter.js +210 -0
- package/workdocs/reports/coverage/lcov-report/src/app/models/CategoryModel.ts.html +277 -0
- package/workdocs/reports/coverage/lcov-report/src/app/models/DemoModel.ts.html +427 -0
- package/workdocs/reports/coverage/lcov-report/src/app/models/UserModel.ts.html +226 -0
- package/workdocs/reports/coverage/lcov-report/src/app/models/index.html +146 -0
- package/workdocs/reports/coverage/lcov-report/src/cli-module.ts.html +502 -0
- package/workdocs/reports/coverage/lcov-report/src/environments/environment.ts.html +166 -0
- package/workdocs/reports/coverage/lcov-report/src/environments/index.html +116 -0
- package/workdocs/reports/coverage/lcov-report/src/index.html +191 -0
- package/workdocs/reports/coverage/lcov-report/src/karma-test.ts.html +121 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/components/card/card.component.ts.html +625 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/components/card/index.html +116 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/components/component-renderer/component-renderer.component.ts.html +772 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/components/component-renderer/index.html +116 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/components/crud-field/crud-field.component.ts.html +2698 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/components/crud-field/index.html +116 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/components/crud-form/constants.ts.html +133 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/components/crud-form/crud-form.component.ts.html +346 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/components/crud-form/index.html +116 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/components/empty-state/empty-state.component.ts.html +1264 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/components/empty-state/index.html +116 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/components/fieldset/fieldset.component.ts.html +2965 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/components/fieldset/index.html +116 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/components/file-upload/file-upload.component.ts.html +2263 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/components/file-upload/index.html +116 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/components/filter/filter.component.ts.html +2485 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/components/filter/index.html +116 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/components/for-angular-components.module.ts.html +259 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/components/icon/icon.component.ts.html +358 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/components/icon/index.html +116 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/components/index.html +131 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/components/index.ts.html +181 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/components/layout/index.html +116 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/components/layout/layout.component.ts.html +943 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/components/list/index.html +116 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/components/list/list.component.ts.html +4261 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/components/list-item/index.html +116 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/components/list-item/list-item.component.ts.html +1741 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/components/modal/index.html +116 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/components/modal/modal.component.ts.html +1984 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/components/model-renderer/index.html +116 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/components/model-renderer/model-renderer.component.ts.html +373 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/components/pagination/index.html +116 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/components/pagination/pagination.component.ts.html +1165 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/components/searchbar/index.html +116 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/components/searchbar/searchbar.component.ts.html +1774 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/components/stepped-form/index.html +116 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/components/stepped-form/stepped-form.component.ts.html +1219 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/components/table/index.html +116 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/components/table/table.component.ts.html +988 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/directives/NgxSvgDirective.ts.html +163 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/directives/collapsable.directive.ts.html +268 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/directives/index.html +131 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/directives/index.ts.html +91 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/engine/DynamicModule.ts.html +133 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/engine/MediaService.ts.html +142 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/engine/NgxBaseComponent.ts.html +2194 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/engine/NgxComponentDirective.ts.html +3430 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/engine/NgxCrudFormField.ts.html +721 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/engine/NgxDecafComponentDirective.ts.html +1864 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/engine/NgxDecafFormFieldDirective.ts.html +952 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/engine/NgxDecafFormService.ts.html +3211 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/engine/NgxEventHandler.ts.html +307 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/engine/NgxFormDirective.ts.html +1366 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/engine/NgxFormFieldDirective.ts.html +1960 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/engine/NgxFormService.ts.html +3004 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/engine/NgxModelPageDirective.ts.html +1672 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/engine/NgxPageDirective.ts.html +748 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/engine/NgxParentComponentDirective.ts.html +775 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/engine/NgxRenderableComponentDirective.ts.html +727 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/engine/NgxRenderingEngine.ts.html +2005 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/engine/NgxRepositoryDirective.ts.html +1561 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/engine/ValidatorFactory.ts.html +817 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/engine/constants.ts.html +1120 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/engine/decorators.ts.html +376 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/engine/helpers.ts.html +676 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/engine/index.html +356 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/engine/index.ts.html +160 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/engine/overrides.ts.html +499 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/for-angular-common.module.ts.html +298 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/helpers/index.html +131 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/helpers/index.ts.html +121 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/helpers/utils.ts.html +1603 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/i18n/FakeLoader.ts.html +157 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/i18n/Loader.ts.html +826 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/i18n/index.html +146 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/i18n/index.ts.html +91 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/index.html +131 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/public-apis.ts.html +157 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/services/NgxFormService.ts.html +3460 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/services/NgxMediaService.ts.html +1420 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/services/NgxRouterService.ts.html +1231 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/services/NgxTranslateService.ts.html +214 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/services/index.html +176 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/services/index.ts.html +91 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/utils/DecafFakerRepository.ts.html +571 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/utils/helpers.ts.html +1663 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/utils/index.html +146 -0
- package/workdocs/reports/coverage/lcov-report/src/lib/utils/index.ts.html +124 -0
- package/workdocs/reports/coverage/lcov-report/src/main.ts.html +100 -0
- package/workdocs/reports/coverage/lcov-report/src/polyfills.ts.html +271 -0
- package/workdocs/reports/coverage/lcov-report/src/stories/Configure.stories.ts.html +1156 -0
- package/workdocs/reports/coverage/lcov-report/src/stories/button.component.ts.html +229 -0
- package/workdocs/reports/coverage/lcov-report/src/stories/button.stories.ts.html +235 -0
- package/workdocs/reports/coverage/lcov-report/src/stories/crud-field.stories.ts.html +325 -0
- package/workdocs/reports/coverage/lcov-report/src/stories/header.stories.ts.html +181 -0
- package/workdocs/reports/coverage/lcov-report/src/stories/index.html +281 -0
- package/workdocs/reports/coverage/lcov-report/src/stories/list.stories.ts.html +289 -0
- package/workdocs/reports/coverage/lcov-report/src/stories/login.page.stories.ts.html +175 -0
- package/workdocs/reports/coverage/lcov-report/src/stories/model-renderer.stories.ts.html +259 -0
- package/workdocs/reports/coverage/lcov-report/src/stories/page.component.ts.html +331 -0
- package/workdocs/reports/coverage/lcov-report/src/stories/page.stories.ts.html +193 -0
- package/workdocs/reports/coverage/lcov-report/src/stories/setup.ts.html +127 -0
- package/workdocs/reports/coverage/lcov-report/src/stories/utils.ts.html +247 -0
- package/workdocs/reports/coverage/lcov-report/src/tests/index.html +116 -0
- package/workdocs/reports/coverage/lcov-report/src/tests/karmaErrorParser.ts.html +190 -0
- package/workdocs/reports/coverage/lcov-report/src/typings.d.ts.html +88 -0
- package/workdocs/reports/coverage/lcov-report/src/zone-flags.ts.html +103 -0
- package/workdocs/reports/coverage/lcov.info +7917 -0
- package/workdocs/reports/data/.gitkeep +1 -0
- package/workdocs/reports/html/.gitkeep +0 -0
- package/workdocs/reports/html/jest-html-reporters-attach/test-report/index.js +3 -0
- package/workdocs/reports/html/jest-html-reporters-attach/test-report/result.js +1 -0
- package/workdocs/reports/html/test-report.html +1 -0
- package/workdocs/reports/images/.gitkeep +1 -0
- package/workdocs/reports/jest.coverage.config.ts +43 -0
- package/workdocs/reports/junit/junit-report.xml +91 -0
- package/workdocs/resources/.gitlock +0 -0
- package/workdocs/resources/diagram-Actor.png +0 -0
- package/workdocs/resources/diagram-banner.png +0 -0
- package/workdocs/resources/diagram.png +0 -0
- package/workdocs/tutorials/Contributing.md +64 -0
- package/workdocs/tutorials/Documentation.md +340 -0
- package/workdocs/tutorials/For Developers.md +337 -0
- package/workdocs/uml/diagram.puml +11 -0
- package/www/1049.10b030f0de36543b.js +1 -0
- package/www/1102.67cedfb3e29f0a05.js +1 -0
- package/www/1107.6454396befef800d.js +1 -0
- package/www/1459.cabc18e941afa5d7.js +1 -0
- package/www/1577.5221deebe3501e43.js +1 -0
- package/www/2075.b6dc4fbb89dd6afc.js +1 -0
- package/www/2348.c4cc27dadbec70ec.js +1 -0
- package/www/2375.318d0b24ab346271.js +1 -0
- package/www/2415.618d6968ffda319c.js +1 -0
- package/www/2460.1d97c6f48b898ee2.js +1 -0
- package/www/2560.2e7000dcf80b6b2c.js +1 -0
- package/www/2585.dffa5649fffafb44.js +1 -0
- package/www/2885.d99b86afd1ff7aa8.js +1 -0
- package/www/3162.bbc401f4a5f82460.js +1 -0
- package/www/323.f64c512be5c8d797.js +1 -0
- package/www/3238.a3e7e8004c6b6667.js +1 -0
- package/www/3506.8c03f5589b33a4a6.js +1 -0
- package/www/3511.56b7e49bb6c2c936.js +1 -0
- package/www/3519.84fbb67dc803f702.js +1 -0
- package/www/3675.7ebfdcf145052232.js +1 -0
- package/www/3814.765c1794e1be63de.js +1 -0
- package/www/3rdpartylicenses.txt +1344 -0
- package/www/4171.a974bdbf9c97e4e1.js +1 -0
- package/www/4183.41ef1def450a2cc0.js +1 -0
- package/www/4406.0b2dd3839b8c1417.js +1 -0
- package/www/441.e1031657c7e5f0ff.js +1 -0
- package/www/4463.6ad7b857e5f34009.js +1 -0
- package/www/4591.42f34534d38b9b31.js +1 -0
- package/www/4699.8df8ea9806163d4c.js +1 -0
- package/www/5100.ed6483c55a157d67.js +1 -0
- package/www/5193.15ea6938534eceb1.js +1 -0
- package/www/5197.6733853529768a45.js +1 -0
- package/www/5222.8439a641c2c4b1c1.js +1 -0
- package/www/5373.d7878f708309f038.js +1 -0
- package/www/5467.53f5cce977c2e28b.js +1 -0
- package/www/5712.b08cf436ee8145ce.js +1 -0
- package/www/5887.3d038f564e925abb.js +1 -0
- package/www/5949.37330f20e95dee79.js +1 -0
- package/www/6024.c10cc3d1b341c748.js +1 -0
- package/www/6433.360fcff952bde822.js +1 -0
- package/www/6499.60169da9869db697.js +1 -0
- package/www/6521.fab1f34bfe6b8200.js +1 -0
- package/www/6631.eaa711da6e0aeed9.js +1 -0
- package/www/6717.b4731255038304cd.js +1 -0
- package/www/6840.7317cd962ab23932.js +1 -0
- package/www/7030.d115d82ca7468a4e.js +1 -0
- package/www/7076.cce20ed5c79ff305.js +1 -0
- package/www/7179.c0545989ce869b3d.js +1 -0
- package/www/7240.69aeb484d78eb24d.js +1 -0
- package/www/7372.94c62459e34f7303.js +1 -0
- package/www/7402.983a5ecff61e9a5d.js +1 -0
- package/www/7428.527ac48035a2f915.js +1 -0
- package/www/7676.d7db23d350e4b096.js +1 -0
- package/www/770.80af87d5eb0075d3.js +1 -0
- package/www/7720.0701576cb9966779.js +1 -0
- package/www/7927.ee869d0dc478250a.js +1 -0
- package/www/8066.894688fbb2e5c832.js +1 -0
- package/www/8193.7f09ecd40b6d42c2.js +1 -0
- package/www/8255.158098a6302c91c2.js +1 -0
- package/www/8314.596c1ccf26b9c93a.js +1 -0
- package/www/8357.c5406b92e6933d7a.js +1 -0
- package/www/8477.a3ccc11c25a642d3.js +1 -0
- package/www/8487.93b6f7465ae1b7ac.js +1 -0
- package/www/8584.b77ad478a5a7ac2a.js +1 -0
- package/www/8805.a87413652185ff8f.js +1 -0
- package/www/8814.b489a78ae8e926c4.js +1 -0
- package/www/8970.234b3db1f97528fe.js +1 -0
- package/www/9013.c2e6ba17a915bdd6.js +1 -0
- package/www/9073.16c4e42482d55a3c.js +1 -0
- package/www/9344.7d2d24b194b794e2.js +1 -0
- package/www/9364.9a028036dd89e3e7.js +1 -0
- package/www/944.7e4317348c48d4f4.js +1 -0
- package/www/964.9a979e1c1aad0f5b.js +1 -0
- package/www/9657.8c3589a0aff521c0.js +1 -0
- package/www/9956.2d00a2153e9a7799.js +1 -0
- package/www/9977.068cd5561462bc99.js +1 -0
- package/www/assets/i18n/en.json +210 -0
- package/www/assets/i18n/ew/en.json +346 -0
- package/www/assets/i18n/pt.json +186 -0
- package/www/assets/icons/icon-128.webp +0 -0
- package/www/assets/icons/icon-192.webp +0 -0
- package/www/assets/icons/icon-256.webp +0 -0
- package/www/assets/icons/icon-48.webp +0 -0
- package/www/assets/icons/icon-512.webp +0 -0
- package/www/assets/icons/icon-72.webp +0 -0
- package/www/assets/icons/icon-96.webp +0 -0
- package/www/assets/images/angular-logo.svg +45 -0
- package/www/assets/images/apple-touch-icon.png +0 -0
- package/www/assets/images/decaf-logo-black.svg +22 -0
- package/www/assets/images/decaf-logo-contrast.svg +54 -0
- package/www/assets/images/decaf-logo-white.svg +22 -0
- package/www/assets/images/decaf-logo.svg +54 -0
- package/www/assets/images/ew/product.txt +1 -0
- package/www/assets/images/favicon-contrast.svg +7 -0
- package/www/assets/images/favicon.png +0 -0
- package/www/assets/images/favicon.svg +29 -0
- package/www/assets/images/icons/document.svg +7 -0
- package/www/assets/images/icons/edit.svg +1 -0
- package/www/assets/images/icons/logout.svg +4 -0
- package/www/assets/images/icons/menu-collapse.svg +5 -0
- package/www/assets/images/icons/menu.svg +3 -0
- package/www/assets/images/icons/moon-stars.svg +5 -0
- package/www/assets/images/icons/trash.svg +1 -0
- package/www/cli-module.ts +139 -0
- package/www/common.e50b5f8708aca9a5.js +1 -0
- package/www/index.html +29 -0
- package/www/main.6144bf417dec1977.js +1 -0
- package/www/polyfills.4c1e087fffe784e8.js +1 -0
- package/www/runtime.d8dcb0932f88fe3c.js +1 -0
- package/www/styles.5a3cd83eba16afc9.css +4 -0
- package/www/tabler-icons.bfabe54eef86ae62.woff +0 -0
- package/www/tabler-icons.d9f65ab9439b4ffc.ttf +0 -0
- package/www/tabler-icons.f17d2c3b34a5deaa.woff2 +0 -0
- package/fesm2022/decaf-ts-for-angular.mjs.map +0 -1
- /package/{assets → dist/lib/assets}/i18n/en.json +0 -0
- /package/{assets → dist/lib/assets}/i18n/ew/en.json +0 -0
- /package/{assets → dist/lib/assets}/i18n/pt.json +0 -0
- /package/{assets → dist/lib/assets}/icons/icon-128.webp +0 -0
- /package/{assets → dist/lib/assets}/icons/icon-192.webp +0 -0
- /package/{assets → dist/lib/assets}/icons/icon-256.webp +0 -0
- /package/{assets → dist/lib/assets}/icons/icon-48.webp +0 -0
- /package/{assets → dist/lib/assets}/icons/icon-512.webp +0 -0
- /package/{assets → dist/lib/assets}/icons/icon-72.webp +0 -0
- /package/{assets → dist/lib/assets}/icons/icon-96.webp +0 -0
- /package/{assets → dist/lib/assets}/images/angular-logo.svg +0 -0
- /package/{assets → dist/lib/assets}/images/apple-touch-icon.png +0 -0
- /package/{assets → dist/lib/assets}/images/decaf-logo-black.svg +0 -0
- /package/{assets → dist/lib/assets}/images/decaf-logo-contrast.svg +0 -0
- /package/{assets → dist/lib/assets}/images/decaf-logo-white.svg +0 -0
- /package/{assets → dist/lib/assets}/images/decaf-logo.svg +0 -0
- /package/{assets → dist/lib/assets}/images/ew/product.txt +0 -0
- /package/{assets → dist/lib/assets}/images/favicon-contrast.svg +0 -0
- /package/{assets → dist/lib/assets}/images/favicon.png +0 -0
- /package/{assets → dist/lib/assets}/images/favicon.svg +0 -0
- /package/{assets → dist/lib/assets}/images/icons/document.svg +0 -0
- /package/{assets → dist/lib/assets}/images/icons/edit.svg +0 -0
- /package/{assets → dist/lib/assets}/images/icons/logout.svg +0 -0
- /package/{assets → dist/lib/assets}/images/icons/menu-collapse.svg +0 -0
- /package/{assets → dist/lib/assets}/images/icons/menu.svg +0 -0
- /package/{assets → dist/lib/assets}/images/icons/moon-stars.svg +0 -0
- /package/{assets → dist/lib/assets}/images/icons/trash.svg +0 -0
|
@@ -0,0 +1,1561 @@
|
|
|
1
|
+
|
|
2
|
+
<!doctype html>
|
|
3
|
+
<html lang="en">
|
|
4
|
+
|
|
5
|
+
<head>
|
|
6
|
+
<title>Code coverage report for src/lib/engine/NgxRepositoryDirective.ts</title>
|
|
7
|
+
<meta charset="utf-8" />
|
|
8
|
+
<link rel="stylesheet" href="../../../prettify.css" />
|
|
9
|
+
<link rel="stylesheet" href="../../../base.css" />
|
|
10
|
+
<link rel="shortcut icon" type="image/x-icon" href="../../../favicon.png" />
|
|
11
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
12
|
+
<style type='text/css'>
|
|
13
|
+
.coverage-summary .sorter {
|
|
14
|
+
background-image: url(../../../sort-arrow-sprite.png);
|
|
15
|
+
}
|
|
16
|
+
</style>
|
|
17
|
+
</head>
|
|
18
|
+
|
|
19
|
+
<body>
|
|
20
|
+
<div class='wrapper'>
|
|
21
|
+
<div class='pad1'>
|
|
22
|
+
<h1><a href="../../../index.html">All files</a> / <a href="index.html">src/lib/engine</a> NgxRepositoryDirective.ts</h1>
|
|
23
|
+
<div class='clearfix'>
|
|
24
|
+
|
|
25
|
+
<div class='fl pad1y space-right2'>
|
|
26
|
+
<span class="strong">16.29% </span>
|
|
27
|
+
<span class="quiet">Statements</span>
|
|
28
|
+
<span class='fraction'>22/135</span>
|
|
29
|
+
</div>
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
<div class='fl pad1y space-right2'>
|
|
33
|
+
<span class="strong">1.03% </span>
|
|
34
|
+
<span class="quiet">Branches</span>
|
|
35
|
+
<span class='fraction'>1/97</span>
|
|
36
|
+
</div>
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
<div class='fl pad1y space-right2'>
|
|
40
|
+
<span class="strong">11.11% </span>
|
|
41
|
+
<span class="quiet">Functions</span>
|
|
42
|
+
<span class='fraction'>3/27</span>
|
|
43
|
+
</div>
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
<div class='fl pad1y space-right2'>
|
|
47
|
+
<span class="strong">16.03% </span>
|
|
48
|
+
<span class="quiet">Lines</span>
|
|
49
|
+
<span class='fraction'>21/131</span>
|
|
50
|
+
</div>
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
</div>
|
|
54
|
+
<p class="quiet">
|
|
55
|
+
Press <em>n</em> or <em>j</em> to go to the next uncovered block, <em>b</em>, <em>p</em> or <em>k</em> for the previous block.
|
|
56
|
+
</p>
|
|
57
|
+
<template id="filterTemplate">
|
|
58
|
+
<div class="quiet">
|
|
59
|
+
Filter:
|
|
60
|
+
<input type="search" id="fileSearch">
|
|
61
|
+
</div>
|
|
62
|
+
</template>
|
|
63
|
+
</div>
|
|
64
|
+
<div class='status-line low'></div>
|
|
65
|
+
<pre><table class="coverage">
|
|
66
|
+
<tr><td class="line-count quiet"><a name='L1'></a><a href='#L1'>1</a>
|
|
67
|
+
<a name='L2'></a><a href='#L2'>2</a>
|
|
68
|
+
<a name='L3'></a><a href='#L3'>3</a>
|
|
69
|
+
<a name='L4'></a><a href='#L4'>4</a>
|
|
70
|
+
<a name='L5'></a><a href='#L5'>5</a>
|
|
71
|
+
<a name='L6'></a><a href='#L6'>6</a>
|
|
72
|
+
<a name='L7'></a><a href='#L7'>7</a>
|
|
73
|
+
<a name='L8'></a><a href='#L8'>8</a>
|
|
74
|
+
<a name='L9'></a><a href='#L9'>9</a>
|
|
75
|
+
<a name='L10'></a><a href='#L10'>10</a>
|
|
76
|
+
<a name='L11'></a><a href='#L11'>11</a>
|
|
77
|
+
<a name='L12'></a><a href='#L12'>12</a>
|
|
78
|
+
<a name='L13'></a><a href='#L13'>13</a>
|
|
79
|
+
<a name='L14'></a><a href='#L14'>14</a>
|
|
80
|
+
<a name='L15'></a><a href='#L15'>15</a>
|
|
81
|
+
<a name='L16'></a><a href='#L16'>16</a>
|
|
82
|
+
<a name='L17'></a><a href='#L17'>17</a>
|
|
83
|
+
<a name='L18'></a><a href='#L18'>18</a>
|
|
84
|
+
<a name='L19'></a><a href='#L19'>19</a>
|
|
85
|
+
<a name='L20'></a><a href='#L20'>20</a>
|
|
86
|
+
<a name='L21'></a><a href='#L21'>21</a>
|
|
87
|
+
<a name='L22'></a><a href='#L22'>22</a>
|
|
88
|
+
<a name='L23'></a><a href='#L23'>23</a>
|
|
89
|
+
<a name='L24'></a><a href='#L24'>24</a>
|
|
90
|
+
<a name='L25'></a><a href='#L25'>25</a>
|
|
91
|
+
<a name='L26'></a><a href='#L26'>26</a>
|
|
92
|
+
<a name='L27'></a><a href='#L27'>27</a>
|
|
93
|
+
<a name='L28'></a><a href='#L28'>28</a>
|
|
94
|
+
<a name='L29'></a><a href='#L29'>29</a>
|
|
95
|
+
<a name='L30'></a><a href='#L30'>30</a>
|
|
96
|
+
<a name='L31'></a><a href='#L31'>31</a>
|
|
97
|
+
<a name='L32'></a><a href='#L32'>32</a>
|
|
98
|
+
<a name='L33'></a><a href='#L33'>33</a>
|
|
99
|
+
<a name='L34'></a><a href='#L34'>34</a>
|
|
100
|
+
<a name='L35'></a><a href='#L35'>35</a>
|
|
101
|
+
<a name='L36'></a><a href='#L36'>36</a>
|
|
102
|
+
<a name='L37'></a><a href='#L37'>37</a>
|
|
103
|
+
<a name='L38'></a><a href='#L38'>38</a>
|
|
104
|
+
<a name='L39'></a><a href='#L39'>39</a>
|
|
105
|
+
<a name='L40'></a><a href='#L40'>40</a>
|
|
106
|
+
<a name='L41'></a><a href='#L41'>41</a>
|
|
107
|
+
<a name='L42'></a><a href='#L42'>42</a>
|
|
108
|
+
<a name='L43'></a><a href='#L43'>43</a>
|
|
109
|
+
<a name='L44'></a><a href='#L44'>44</a>
|
|
110
|
+
<a name='L45'></a><a href='#L45'>45</a>
|
|
111
|
+
<a name='L46'></a><a href='#L46'>46</a>
|
|
112
|
+
<a name='L47'></a><a href='#L47'>47</a>
|
|
113
|
+
<a name='L48'></a><a href='#L48'>48</a>
|
|
114
|
+
<a name='L49'></a><a href='#L49'>49</a>
|
|
115
|
+
<a name='L50'></a><a href='#L50'>50</a>
|
|
116
|
+
<a name='L51'></a><a href='#L51'>51</a>
|
|
117
|
+
<a name='L52'></a><a href='#L52'>52</a>
|
|
118
|
+
<a name='L53'></a><a href='#L53'>53</a>
|
|
119
|
+
<a name='L54'></a><a href='#L54'>54</a>
|
|
120
|
+
<a name='L55'></a><a href='#L55'>55</a>
|
|
121
|
+
<a name='L56'></a><a href='#L56'>56</a>
|
|
122
|
+
<a name='L57'></a><a href='#L57'>57</a>
|
|
123
|
+
<a name='L58'></a><a href='#L58'>58</a>
|
|
124
|
+
<a name='L59'></a><a href='#L59'>59</a>
|
|
125
|
+
<a name='L60'></a><a href='#L60'>60</a>
|
|
126
|
+
<a name='L61'></a><a href='#L61'>61</a>
|
|
127
|
+
<a name='L62'></a><a href='#L62'>62</a>
|
|
128
|
+
<a name='L63'></a><a href='#L63'>63</a>
|
|
129
|
+
<a name='L64'></a><a href='#L64'>64</a>
|
|
130
|
+
<a name='L65'></a><a href='#L65'>65</a>
|
|
131
|
+
<a name='L66'></a><a href='#L66'>66</a>
|
|
132
|
+
<a name='L67'></a><a href='#L67'>67</a>
|
|
133
|
+
<a name='L68'></a><a href='#L68'>68</a>
|
|
134
|
+
<a name='L69'></a><a href='#L69'>69</a>
|
|
135
|
+
<a name='L70'></a><a href='#L70'>70</a>
|
|
136
|
+
<a name='L71'></a><a href='#L71'>71</a>
|
|
137
|
+
<a name='L72'></a><a href='#L72'>72</a>
|
|
138
|
+
<a name='L73'></a><a href='#L73'>73</a>
|
|
139
|
+
<a name='L74'></a><a href='#L74'>74</a>
|
|
140
|
+
<a name='L75'></a><a href='#L75'>75</a>
|
|
141
|
+
<a name='L76'></a><a href='#L76'>76</a>
|
|
142
|
+
<a name='L77'></a><a href='#L77'>77</a>
|
|
143
|
+
<a name='L78'></a><a href='#L78'>78</a>
|
|
144
|
+
<a name='L79'></a><a href='#L79'>79</a>
|
|
145
|
+
<a name='L80'></a><a href='#L80'>80</a>
|
|
146
|
+
<a name='L81'></a><a href='#L81'>81</a>
|
|
147
|
+
<a name='L82'></a><a href='#L82'>82</a>
|
|
148
|
+
<a name='L83'></a><a href='#L83'>83</a>
|
|
149
|
+
<a name='L84'></a><a href='#L84'>84</a>
|
|
150
|
+
<a name='L85'></a><a href='#L85'>85</a>
|
|
151
|
+
<a name='L86'></a><a href='#L86'>86</a>
|
|
152
|
+
<a name='L87'></a><a href='#L87'>87</a>
|
|
153
|
+
<a name='L88'></a><a href='#L88'>88</a>
|
|
154
|
+
<a name='L89'></a><a href='#L89'>89</a>
|
|
155
|
+
<a name='L90'></a><a href='#L90'>90</a>
|
|
156
|
+
<a name='L91'></a><a href='#L91'>91</a>
|
|
157
|
+
<a name='L92'></a><a href='#L92'>92</a>
|
|
158
|
+
<a name='L93'></a><a href='#L93'>93</a>
|
|
159
|
+
<a name='L94'></a><a href='#L94'>94</a>
|
|
160
|
+
<a name='L95'></a><a href='#L95'>95</a>
|
|
161
|
+
<a name='L96'></a><a href='#L96'>96</a>
|
|
162
|
+
<a name='L97'></a><a href='#L97'>97</a>
|
|
163
|
+
<a name='L98'></a><a href='#L98'>98</a>
|
|
164
|
+
<a name='L99'></a><a href='#L99'>99</a>
|
|
165
|
+
<a name='L100'></a><a href='#L100'>100</a>
|
|
166
|
+
<a name='L101'></a><a href='#L101'>101</a>
|
|
167
|
+
<a name='L102'></a><a href='#L102'>102</a>
|
|
168
|
+
<a name='L103'></a><a href='#L103'>103</a>
|
|
169
|
+
<a name='L104'></a><a href='#L104'>104</a>
|
|
170
|
+
<a name='L105'></a><a href='#L105'>105</a>
|
|
171
|
+
<a name='L106'></a><a href='#L106'>106</a>
|
|
172
|
+
<a name='L107'></a><a href='#L107'>107</a>
|
|
173
|
+
<a name='L108'></a><a href='#L108'>108</a>
|
|
174
|
+
<a name='L109'></a><a href='#L109'>109</a>
|
|
175
|
+
<a name='L110'></a><a href='#L110'>110</a>
|
|
176
|
+
<a name='L111'></a><a href='#L111'>111</a>
|
|
177
|
+
<a name='L112'></a><a href='#L112'>112</a>
|
|
178
|
+
<a name='L113'></a><a href='#L113'>113</a>
|
|
179
|
+
<a name='L114'></a><a href='#L114'>114</a>
|
|
180
|
+
<a name='L115'></a><a href='#L115'>115</a>
|
|
181
|
+
<a name='L116'></a><a href='#L116'>116</a>
|
|
182
|
+
<a name='L117'></a><a href='#L117'>117</a>
|
|
183
|
+
<a name='L118'></a><a href='#L118'>118</a>
|
|
184
|
+
<a name='L119'></a><a href='#L119'>119</a>
|
|
185
|
+
<a name='L120'></a><a href='#L120'>120</a>
|
|
186
|
+
<a name='L121'></a><a href='#L121'>121</a>
|
|
187
|
+
<a name='L122'></a><a href='#L122'>122</a>
|
|
188
|
+
<a name='L123'></a><a href='#L123'>123</a>
|
|
189
|
+
<a name='L124'></a><a href='#L124'>124</a>
|
|
190
|
+
<a name='L125'></a><a href='#L125'>125</a>
|
|
191
|
+
<a name='L126'></a><a href='#L126'>126</a>
|
|
192
|
+
<a name='L127'></a><a href='#L127'>127</a>
|
|
193
|
+
<a name='L128'></a><a href='#L128'>128</a>
|
|
194
|
+
<a name='L129'></a><a href='#L129'>129</a>
|
|
195
|
+
<a name='L130'></a><a href='#L130'>130</a>
|
|
196
|
+
<a name='L131'></a><a href='#L131'>131</a>
|
|
197
|
+
<a name='L132'></a><a href='#L132'>132</a>
|
|
198
|
+
<a name='L133'></a><a href='#L133'>133</a>
|
|
199
|
+
<a name='L134'></a><a href='#L134'>134</a>
|
|
200
|
+
<a name='L135'></a><a href='#L135'>135</a>
|
|
201
|
+
<a name='L136'></a><a href='#L136'>136</a>
|
|
202
|
+
<a name='L137'></a><a href='#L137'>137</a>
|
|
203
|
+
<a name='L138'></a><a href='#L138'>138</a>
|
|
204
|
+
<a name='L139'></a><a href='#L139'>139</a>
|
|
205
|
+
<a name='L140'></a><a href='#L140'>140</a>
|
|
206
|
+
<a name='L141'></a><a href='#L141'>141</a>
|
|
207
|
+
<a name='L142'></a><a href='#L142'>142</a>
|
|
208
|
+
<a name='L143'></a><a href='#L143'>143</a>
|
|
209
|
+
<a name='L144'></a><a href='#L144'>144</a>
|
|
210
|
+
<a name='L145'></a><a href='#L145'>145</a>
|
|
211
|
+
<a name='L146'></a><a href='#L146'>146</a>
|
|
212
|
+
<a name='L147'></a><a href='#L147'>147</a>
|
|
213
|
+
<a name='L148'></a><a href='#L148'>148</a>
|
|
214
|
+
<a name='L149'></a><a href='#L149'>149</a>
|
|
215
|
+
<a name='L150'></a><a href='#L150'>150</a>
|
|
216
|
+
<a name='L151'></a><a href='#L151'>151</a>
|
|
217
|
+
<a name='L152'></a><a href='#L152'>152</a>
|
|
218
|
+
<a name='L153'></a><a href='#L153'>153</a>
|
|
219
|
+
<a name='L154'></a><a href='#L154'>154</a>
|
|
220
|
+
<a name='L155'></a><a href='#L155'>155</a>
|
|
221
|
+
<a name='L156'></a><a href='#L156'>156</a>
|
|
222
|
+
<a name='L157'></a><a href='#L157'>157</a>
|
|
223
|
+
<a name='L158'></a><a href='#L158'>158</a>
|
|
224
|
+
<a name='L159'></a><a href='#L159'>159</a>
|
|
225
|
+
<a name='L160'></a><a href='#L160'>160</a>
|
|
226
|
+
<a name='L161'></a><a href='#L161'>161</a>
|
|
227
|
+
<a name='L162'></a><a href='#L162'>162</a>
|
|
228
|
+
<a name='L163'></a><a href='#L163'>163</a>
|
|
229
|
+
<a name='L164'></a><a href='#L164'>164</a>
|
|
230
|
+
<a name='L165'></a><a href='#L165'>165</a>
|
|
231
|
+
<a name='L166'></a><a href='#L166'>166</a>
|
|
232
|
+
<a name='L167'></a><a href='#L167'>167</a>
|
|
233
|
+
<a name='L168'></a><a href='#L168'>168</a>
|
|
234
|
+
<a name='L169'></a><a href='#L169'>169</a>
|
|
235
|
+
<a name='L170'></a><a href='#L170'>170</a>
|
|
236
|
+
<a name='L171'></a><a href='#L171'>171</a>
|
|
237
|
+
<a name='L172'></a><a href='#L172'>172</a>
|
|
238
|
+
<a name='L173'></a><a href='#L173'>173</a>
|
|
239
|
+
<a name='L174'></a><a href='#L174'>174</a>
|
|
240
|
+
<a name='L175'></a><a href='#L175'>175</a>
|
|
241
|
+
<a name='L176'></a><a href='#L176'>176</a>
|
|
242
|
+
<a name='L177'></a><a href='#L177'>177</a>
|
|
243
|
+
<a name='L178'></a><a href='#L178'>178</a>
|
|
244
|
+
<a name='L179'></a><a href='#L179'>179</a>
|
|
245
|
+
<a name='L180'></a><a href='#L180'>180</a>
|
|
246
|
+
<a name='L181'></a><a href='#L181'>181</a>
|
|
247
|
+
<a name='L182'></a><a href='#L182'>182</a>
|
|
248
|
+
<a name='L183'></a><a href='#L183'>183</a>
|
|
249
|
+
<a name='L184'></a><a href='#L184'>184</a>
|
|
250
|
+
<a name='L185'></a><a href='#L185'>185</a>
|
|
251
|
+
<a name='L186'></a><a href='#L186'>186</a>
|
|
252
|
+
<a name='L187'></a><a href='#L187'>187</a>
|
|
253
|
+
<a name='L188'></a><a href='#L188'>188</a>
|
|
254
|
+
<a name='L189'></a><a href='#L189'>189</a>
|
|
255
|
+
<a name='L190'></a><a href='#L190'>190</a>
|
|
256
|
+
<a name='L191'></a><a href='#L191'>191</a>
|
|
257
|
+
<a name='L192'></a><a href='#L192'>192</a>
|
|
258
|
+
<a name='L193'></a><a href='#L193'>193</a>
|
|
259
|
+
<a name='L194'></a><a href='#L194'>194</a>
|
|
260
|
+
<a name='L195'></a><a href='#L195'>195</a>
|
|
261
|
+
<a name='L196'></a><a href='#L196'>196</a>
|
|
262
|
+
<a name='L197'></a><a href='#L197'>197</a>
|
|
263
|
+
<a name='L198'></a><a href='#L198'>198</a>
|
|
264
|
+
<a name='L199'></a><a href='#L199'>199</a>
|
|
265
|
+
<a name='L200'></a><a href='#L200'>200</a>
|
|
266
|
+
<a name='L201'></a><a href='#L201'>201</a>
|
|
267
|
+
<a name='L202'></a><a href='#L202'>202</a>
|
|
268
|
+
<a name='L203'></a><a href='#L203'>203</a>
|
|
269
|
+
<a name='L204'></a><a href='#L204'>204</a>
|
|
270
|
+
<a name='L205'></a><a href='#L205'>205</a>
|
|
271
|
+
<a name='L206'></a><a href='#L206'>206</a>
|
|
272
|
+
<a name='L207'></a><a href='#L207'>207</a>
|
|
273
|
+
<a name='L208'></a><a href='#L208'>208</a>
|
|
274
|
+
<a name='L209'></a><a href='#L209'>209</a>
|
|
275
|
+
<a name='L210'></a><a href='#L210'>210</a>
|
|
276
|
+
<a name='L211'></a><a href='#L211'>211</a>
|
|
277
|
+
<a name='L212'></a><a href='#L212'>212</a>
|
|
278
|
+
<a name='L213'></a><a href='#L213'>213</a>
|
|
279
|
+
<a name='L214'></a><a href='#L214'>214</a>
|
|
280
|
+
<a name='L215'></a><a href='#L215'>215</a>
|
|
281
|
+
<a name='L216'></a><a href='#L216'>216</a>
|
|
282
|
+
<a name='L217'></a><a href='#L217'>217</a>
|
|
283
|
+
<a name='L218'></a><a href='#L218'>218</a>
|
|
284
|
+
<a name='L219'></a><a href='#L219'>219</a>
|
|
285
|
+
<a name='L220'></a><a href='#L220'>220</a>
|
|
286
|
+
<a name='L221'></a><a href='#L221'>221</a>
|
|
287
|
+
<a name='L222'></a><a href='#L222'>222</a>
|
|
288
|
+
<a name='L223'></a><a href='#L223'>223</a>
|
|
289
|
+
<a name='L224'></a><a href='#L224'>224</a>
|
|
290
|
+
<a name='L225'></a><a href='#L225'>225</a>
|
|
291
|
+
<a name='L226'></a><a href='#L226'>226</a>
|
|
292
|
+
<a name='L227'></a><a href='#L227'>227</a>
|
|
293
|
+
<a name='L228'></a><a href='#L228'>228</a>
|
|
294
|
+
<a name='L229'></a><a href='#L229'>229</a>
|
|
295
|
+
<a name='L230'></a><a href='#L230'>230</a>
|
|
296
|
+
<a name='L231'></a><a href='#L231'>231</a>
|
|
297
|
+
<a name='L232'></a><a href='#L232'>232</a>
|
|
298
|
+
<a name='L233'></a><a href='#L233'>233</a>
|
|
299
|
+
<a name='L234'></a><a href='#L234'>234</a>
|
|
300
|
+
<a name='L235'></a><a href='#L235'>235</a>
|
|
301
|
+
<a name='L236'></a><a href='#L236'>236</a>
|
|
302
|
+
<a name='L237'></a><a href='#L237'>237</a>
|
|
303
|
+
<a name='L238'></a><a href='#L238'>238</a>
|
|
304
|
+
<a name='L239'></a><a href='#L239'>239</a>
|
|
305
|
+
<a name='L240'></a><a href='#L240'>240</a>
|
|
306
|
+
<a name='L241'></a><a href='#L241'>241</a>
|
|
307
|
+
<a name='L242'></a><a href='#L242'>242</a>
|
|
308
|
+
<a name='L243'></a><a href='#L243'>243</a>
|
|
309
|
+
<a name='L244'></a><a href='#L244'>244</a>
|
|
310
|
+
<a name='L245'></a><a href='#L245'>245</a>
|
|
311
|
+
<a name='L246'></a><a href='#L246'>246</a>
|
|
312
|
+
<a name='L247'></a><a href='#L247'>247</a>
|
|
313
|
+
<a name='L248'></a><a href='#L248'>248</a>
|
|
314
|
+
<a name='L249'></a><a href='#L249'>249</a>
|
|
315
|
+
<a name='L250'></a><a href='#L250'>250</a>
|
|
316
|
+
<a name='L251'></a><a href='#L251'>251</a>
|
|
317
|
+
<a name='L252'></a><a href='#L252'>252</a>
|
|
318
|
+
<a name='L253'></a><a href='#L253'>253</a>
|
|
319
|
+
<a name='L254'></a><a href='#L254'>254</a>
|
|
320
|
+
<a name='L255'></a><a href='#L255'>255</a>
|
|
321
|
+
<a name='L256'></a><a href='#L256'>256</a>
|
|
322
|
+
<a name='L257'></a><a href='#L257'>257</a>
|
|
323
|
+
<a name='L258'></a><a href='#L258'>258</a>
|
|
324
|
+
<a name='L259'></a><a href='#L259'>259</a>
|
|
325
|
+
<a name='L260'></a><a href='#L260'>260</a>
|
|
326
|
+
<a name='L261'></a><a href='#L261'>261</a>
|
|
327
|
+
<a name='L262'></a><a href='#L262'>262</a>
|
|
328
|
+
<a name='L263'></a><a href='#L263'>263</a>
|
|
329
|
+
<a name='L264'></a><a href='#L264'>264</a>
|
|
330
|
+
<a name='L265'></a><a href='#L265'>265</a>
|
|
331
|
+
<a name='L266'></a><a href='#L266'>266</a>
|
|
332
|
+
<a name='L267'></a><a href='#L267'>267</a>
|
|
333
|
+
<a name='L268'></a><a href='#L268'>268</a>
|
|
334
|
+
<a name='L269'></a><a href='#L269'>269</a>
|
|
335
|
+
<a name='L270'></a><a href='#L270'>270</a>
|
|
336
|
+
<a name='L271'></a><a href='#L271'>271</a>
|
|
337
|
+
<a name='L272'></a><a href='#L272'>272</a>
|
|
338
|
+
<a name='L273'></a><a href='#L273'>273</a>
|
|
339
|
+
<a name='L274'></a><a href='#L274'>274</a>
|
|
340
|
+
<a name='L275'></a><a href='#L275'>275</a>
|
|
341
|
+
<a name='L276'></a><a href='#L276'>276</a>
|
|
342
|
+
<a name='L277'></a><a href='#L277'>277</a>
|
|
343
|
+
<a name='L278'></a><a href='#L278'>278</a>
|
|
344
|
+
<a name='L279'></a><a href='#L279'>279</a>
|
|
345
|
+
<a name='L280'></a><a href='#L280'>280</a>
|
|
346
|
+
<a name='L281'></a><a href='#L281'>281</a>
|
|
347
|
+
<a name='L282'></a><a href='#L282'>282</a>
|
|
348
|
+
<a name='L283'></a><a href='#L283'>283</a>
|
|
349
|
+
<a name='L284'></a><a href='#L284'>284</a>
|
|
350
|
+
<a name='L285'></a><a href='#L285'>285</a>
|
|
351
|
+
<a name='L286'></a><a href='#L286'>286</a>
|
|
352
|
+
<a name='L287'></a><a href='#L287'>287</a>
|
|
353
|
+
<a name='L288'></a><a href='#L288'>288</a>
|
|
354
|
+
<a name='L289'></a><a href='#L289'>289</a>
|
|
355
|
+
<a name='L290'></a><a href='#L290'>290</a>
|
|
356
|
+
<a name='L291'></a><a href='#L291'>291</a>
|
|
357
|
+
<a name='L292'></a><a href='#L292'>292</a>
|
|
358
|
+
<a name='L293'></a><a href='#L293'>293</a>
|
|
359
|
+
<a name='L294'></a><a href='#L294'>294</a>
|
|
360
|
+
<a name='L295'></a><a href='#L295'>295</a>
|
|
361
|
+
<a name='L296'></a><a href='#L296'>296</a>
|
|
362
|
+
<a name='L297'></a><a href='#L297'>297</a>
|
|
363
|
+
<a name='L298'></a><a href='#L298'>298</a>
|
|
364
|
+
<a name='L299'></a><a href='#L299'>299</a>
|
|
365
|
+
<a name='L300'></a><a href='#L300'>300</a>
|
|
366
|
+
<a name='L301'></a><a href='#L301'>301</a>
|
|
367
|
+
<a name='L302'></a><a href='#L302'>302</a>
|
|
368
|
+
<a name='L303'></a><a href='#L303'>303</a>
|
|
369
|
+
<a name='L304'></a><a href='#L304'>304</a>
|
|
370
|
+
<a name='L305'></a><a href='#L305'>305</a>
|
|
371
|
+
<a name='L306'></a><a href='#L306'>306</a>
|
|
372
|
+
<a name='L307'></a><a href='#L307'>307</a>
|
|
373
|
+
<a name='L308'></a><a href='#L308'>308</a>
|
|
374
|
+
<a name='L309'></a><a href='#L309'>309</a>
|
|
375
|
+
<a name='L310'></a><a href='#L310'>310</a>
|
|
376
|
+
<a name='L311'></a><a href='#L311'>311</a>
|
|
377
|
+
<a name='L312'></a><a href='#L312'>312</a>
|
|
378
|
+
<a name='L313'></a><a href='#L313'>313</a>
|
|
379
|
+
<a name='L314'></a><a href='#L314'>314</a>
|
|
380
|
+
<a name='L315'></a><a href='#L315'>315</a>
|
|
381
|
+
<a name='L316'></a><a href='#L316'>316</a>
|
|
382
|
+
<a name='L317'></a><a href='#L317'>317</a>
|
|
383
|
+
<a name='L318'></a><a href='#L318'>318</a>
|
|
384
|
+
<a name='L319'></a><a href='#L319'>319</a>
|
|
385
|
+
<a name='L320'></a><a href='#L320'>320</a>
|
|
386
|
+
<a name='L321'></a><a href='#L321'>321</a>
|
|
387
|
+
<a name='L322'></a><a href='#L322'>322</a>
|
|
388
|
+
<a name='L323'></a><a href='#L323'>323</a>
|
|
389
|
+
<a name='L324'></a><a href='#L324'>324</a>
|
|
390
|
+
<a name='L325'></a><a href='#L325'>325</a>
|
|
391
|
+
<a name='L326'></a><a href='#L326'>326</a>
|
|
392
|
+
<a name='L327'></a><a href='#L327'>327</a>
|
|
393
|
+
<a name='L328'></a><a href='#L328'>328</a>
|
|
394
|
+
<a name='L329'></a><a href='#L329'>329</a>
|
|
395
|
+
<a name='L330'></a><a href='#L330'>330</a>
|
|
396
|
+
<a name='L331'></a><a href='#L331'>331</a>
|
|
397
|
+
<a name='L332'></a><a href='#L332'>332</a>
|
|
398
|
+
<a name='L333'></a><a href='#L333'>333</a>
|
|
399
|
+
<a name='L334'></a><a href='#L334'>334</a>
|
|
400
|
+
<a name='L335'></a><a href='#L335'>335</a>
|
|
401
|
+
<a name='L336'></a><a href='#L336'>336</a>
|
|
402
|
+
<a name='L337'></a><a href='#L337'>337</a>
|
|
403
|
+
<a name='L338'></a><a href='#L338'>338</a>
|
|
404
|
+
<a name='L339'></a><a href='#L339'>339</a>
|
|
405
|
+
<a name='L340'></a><a href='#L340'>340</a>
|
|
406
|
+
<a name='L341'></a><a href='#L341'>341</a>
|
|
407
|
+
<a name='L342'></a><a href='#L342'>342</a>
|
|
408
|
+
<a name='L343'></a><a href='#L343'>343</a>
|
|
409
|
+
<a name='L344'></a><a href='#L344'>344</a>
|
|
410
|
+
<a name='L345'></a><a href='#L345'>345</a>
|
|
411
|
+
<a name='L346'></a><a href='#L346'>346</a>
|
|
412
|
+
<a name='L347'></a><a href='#L347'>347</a>
|
|
413
|
+
<a name='L348'></a><a href='#L348'>348</a>
|
|
414
|
+
<a name='L349'></a><a href='#L349'>349</a>
|
|
415
|
+
<a name='L350'></a><a href='#L350'>350</a>
|
|
416
|
+
<a name='L351'></a><a href='#L351'>351</a>
|
|
417
|
+
<a name='L352'></a><a href='#L352'>352</a>
|
|
418
|
+
<a name='L353'></a><a href='#L353'>353</a>
|
|
419
|
+
<a name='L354'></a><a href='#L354'>354</a>
|
|
420
|
+
<a name='L355'></a><a href='#L355'>355</a>
|
|
421
|
+
<a name='L356'></a><a href='#L356'>356</a>
|
|
422
|
+
<a name='L357'></a><a href='#L357'>357</a>
|
|
423
|
+
<a name='L358'></a><a href='#L358'>358</a>
|
|
424
|
+
<a name='L359'></a><a href='#L359'>359</a>
|
|
425
|
+
<a name='L360'></a><a href='#L360'>360</a>
|
|
426
|
+
<a name='L361'></a><a href='#L361'>361</a>
|
|
427
|
+
<a name='L362'></a><a href='#L362'>362</a>
|
|
428
|
+
<a name='L363'></a><a href='#L363'>363</a>
|
|
429
|
+
<a name='L364'></a><a href='#L364'>364</a>
|
|
430
|
+
<a name='L365'></a><a href='#L365'>365</a>
|
|
431
|
+
<a name='L366'></a><a href='#L366'>366</a>
|
|
432
|
+
<a name='L367'></a><a href='#L367'>367</a>
|
|
433
|
+
<a name='L368'></a><a href='#L368'>368</a>
|
|
434
|
+
<a name='L369'></a><a href='#L369'>369</a>
|
|
435
|
+
<a name='L370'></a><a href='#L370'>370</a>
|
|
436
|
+
<a name='L371'></a><a href='#L371'>371</a>
|
|
437
|
+
<a name='L372'></a><a href='#L372'>372</a>
|
|
438
|
+
<a name='L373'></a><a href='#L373'>373</a>
|
|
439
|
+
<a name='L374'></a><a href='#L374'>374</a>
|
|
440
|
+
<a name='L375'></a><a href='#L375'>375</a>
|
|
441
|
+
<a name='L376'></a><a href='#L376'>376</a>
|
|
442
|
+
<a name='L377'></a><a href='#L377'>377</a>
|
|
443
|
+
<a name='L378'></a><a href='#L378'>378</a>
|
|
444
|
+
<a name='L379'></a><a href='#L379'>379</a>
|
|
445
|
+
<a name='L380'></a><a href='#L380'>380</a>
|
|
446
|
+
<a name='L381'></a><a href='#L381'>381</a>
|
|
447
|
+
<a name='L382'></a><a href='#L382'>382</a>
|
|
448
|
+
<a name='L383'></a><a href='#L383'>383</a>
|
|
449
|
+
<a name='L384'></a><a href='#L384'>384</a>
|
|
450
|
+
<a name='L385'></a><a href='#L385'>385</a>
|
|
451
|
+
<a name='L386'></a><a href='#L386'>386</a>
|
|
452
|
+
<a name='L387'></a><a href='#L387'>387</a>
|
|
453
|
+
<a name='L388'></a><a href='#L388'>388</a>
|
|
454
|
+
<a name='L389'></a><a href='#L389'>389</a>
|
|
455
|
+
<a name='L390'></a><a href='#L390'>390</a>
|
|
456
|
+
<a name='L391'></a><a href='#L391'>391</a>
|
|
457
|
+
<a name='L392'></a><a href='#L392'>392</a>
|
|
458
|
+
<a name='L393'></a><a href='#L393'>393</a>
|
|
459
|
+
<a name='L394'></a><a href='#L394'>394</a>
|
|
460
|
+
<a name='L395'></a><a href='#L395'>395</a>
|
|
461
|
+
<a name='L396'></a><a href='#L396'>396</a>
|
|
462
|
+
<a name='L397'></a><a href='#L397'>397</a>
|
|
463
|
+
<a name='L398'></a><a href='#L398'>398</a>
|
|
464
|
+
<a name='L399'></a><a href='#L399'>399</a>
|
|
465
|
+
<a name='L400'></a><a href='#L400'>400</a>
|
|
466
|
+
<a name='L401'></a><a href='#L401'>401</a>
|
|
467
|
+
<a name='L402'></a><a href='#L402'>402</a>
|
|
468
|
+
<a name='L403'></a><a href='#L403'>403</a>
|
|
469
|
+
<a name='L404'></a><a href='#L404'>404</a>
|
|
470
|
+
<a name='L405'></a><a href='#L405'>405</a>
|
|
471
|
+
<a name='L406'></a><a href='#L406'>406</a>
|
|
472
|
+
<a name='L407'></a><a href='#L407'>407</a>
|
|
473
|
+
<a name='L408'></a><a href='#L408'>408</a>
|
|
474
|
+
<a name='L409'></a><a href='#L409'>409</a>
|
|
475
|
+
<a name='L410'></a><a href='#L410'>410</a>
|
|
476
|
+
<a name='L411'></a><a href='#L411'>411</a>
|
|
477
|
+
<a name='L412'></a><a href='#L412'>412</a>
|
|
478
|
+
<a name='L413'></a><a href='#L413'>413</a>
|
|
479
|
+
<a name='L414'></a><a href='#L414'>414</a>
|
|
480
|
+
<a name='L415'></a><a href='#L415'>415</a>
|
|
481
|
+
<a name='L416'></a><a href='#L416'>416</a>
|
|
482
|
+
<a name='L417'></a><a href='#L417'>417</a>
|
|
483
|
+
<a name='L418'></a><a href='#L418'>418</a>
|
|
484
|
+
<a name='L419'></a><a href='#L419'>419</a>
|
|
485
|
+
<a name='L420'></a><a href='#L420'>420</a>
|
|
486
|
+
<a name='L421'></a><a href='#L421'>421</a>
|
|
487
|
+
<a name='L422'></a><a href='#L422'>422</a>
|
|
488
|
+
<a name='L423'></a><a href='#L423'>423</a>
|
|
489
|
+
<a name='L424'></a><a href='#L424'>424</a>
|
|
490
|
+
<a name='L425'></a><a href='#L425'>425</a>
|
|
491
|
+
<a name='L426'></a><a href='#L426'>426</a>
|
|
492
|
+
<a name='L427'></a><a href='#L427'>427</a>
|
|
493
|
+
<a name='L428'></a><a href='#L428'>428</a>
|
|
494
|
+
<a name='L429'></a><a href='#L429'>429</a>
|
|
495
|
+
<a name='L430'></a><a href='#L430'>430</a>
|
|
496
|
+
<a name='L431'></a><a href='#L431'>431</a>
|
|
497
|
+
<a name='L432'></a><a href='#L432'>432</a>
|
|
498
|
+
<a name='L433'></a><a href='#L433'>433</a>
|
|
499
|
+
<a name='L434'></a><a href='#L434'>434</a>
|
|
500
|
+
<a name='L435'></a><a href='#L435'>435</a>
|
|
501
|
+
<a name='L436'></a><a href='#L436'>436</a>
|
|
502
|
+
<a name='L437'></a><a href='#L437'>437</a>
|
|
503
|
+
<a name='L438'></a><a href='#L438'>438</a>
|
|
504
|
+
<a name='L439'></a><a href='#L439'>439</a>
|
|
505
|
+
<a name='L440'></a><a href='#L440'>440</a>
|
|
506
|
+
<a name='L441'></a><a href='#L441'>441</a>
|
|
507
|
+
<a name='L442'></a><a href='#L442'>442</a>
|
|
508
|
+
<a name='L443'></a><a href='#L443'>443</a>
|
|
509
|
+
<a name='L444'></a><a href='#L444'>444</a>
|
|
510
|
+
<a name='L445'></a><a href='#L445'>445</a>
|
|
511
|
+
<a name='L446'></a><a href='#L446'>446</a>
|
|
512
|
+
<a name='L447'></a><a href='#L447'>447</a>
|
|
513
|
+
<a name='L448'></a><a href='#L448'>448</a>
|
|
514
|
+
<a name='L449'></a><a href='#L449'>449</a>
|
|
515
|
+
<a name='L450'></a><a href='#L450'>450</a>
|
|
516
|
+
<a name='L451'></a><a href='#L451'>451</a>
|
|
517
|
+
<a name='L452'></a><a href='#L452'>452</a>
|
|
518
|
+
<a name='L453'></a><a href='#L453'>453</a>
|
|
519
|
+
<a name='L454'></a><a href='#L454'>454</a>
|
|
520
|
+
<a name='L455'></a><a href='#L455'>455</a>
|
|
521
|
+
<a name='L456'></a><a href='#L456'>456</a>
|
|
522
|
+
<a name='L457'></a><a href='#L457'>457</a>
|
|
523
|
+
<a name='L458'></a><a href='#L458'>458</a>
|
|
524
|
+
<a name='L459'></a><a href='#L459'>459</a>
|
|
525
|
+
<a name='L460'></a><a href='#L460'>460</a>
|
|
526
|
+
<a name='L461'></a><a href='#L461'>461</a>
|
|
527
|
+
<a name='L462'></a><a href='#L462'>462</a>
|
|
528
|
+
<a name='L463'></a><a href='#L463'>463</a>
|
|
529
|
+
<a name='L464'></a><a href='#L464'>464</a>
|
|
530
|
+
<a name='L465'></a><a href='#L465'>465</a>
|
|
531
|
+
<a name='L466'></a><a href='#L466'>466</a>
|
|
532
|
+
<a name='L467'></a><a href='#L467'>467</a>
|
|
533
|
+
<a name='L468'></a><a href='#L468'>468</a>
|
|
534
|
+
<a name='L469'></a><a href='#L469'>469</a>
|
|
535
|
+
<a name='L470'></a><a href='#L470'>470</a>
|
|
536
|
+
<a name='L471'></a><a href='#L471'>471</a>
|
|
537
|
+
<a name='L472'></a><a href='#L472'>472</a>
|
|
538
|
+
<a name='L473'></a><a href='#L473'>473</a>
|
|
539
|
+
<a name='L474'></a><a href='#L474'>474</a>
|
|
540
|
+
<a name='L475'></a><a href='#L475'>475</a>
|
|
541
|
+
<a name='L476'></a><a href='#L476'>476</a>
|
|
542
|
+
<a name='L477'></a><a href='#L477'>477</a>
|
|
543
|
+
<a name='L478'></a><a href='#L478'>478</a>
|
|
544
|
+
<a name='L479'></a><a href='#L479'>479</a>
|
|
545
|
+
<a name='L480'></a><a href='#L480'>480</a>
|
|
546
|
+
<a name='L481'></a><a href='#L481'>481</a>
|
|
547
|
+
<a name='L482'></a><a href='#L482'>482</a>
|
|
548
|
+
<a name='L483'></a><a href='#L483'>483</a>
|
|
549
|
+
<a name='L484'></a><a href='#L484'>484</a>
|
|
550
|
+
<a name='L485'></a><a href='#L485'>485</a>
|
|
551
|
+
<a name='L486'></a><a href='#L486'>486</a>
|
|
552
|
+
<a name='L487'></a><a href='#L487'>487</a>
|
|
553
|
+
<a name='L488'></a><a href='#L488'>488</a>
|
|
554
|
+
<a name='L489'></a><a href='#L489'>489</a>
|
|
555
|
+
<a name='L490'></a><a href='#L490'>490</a>
|
|
556
|
+
<a name='L491'></a><a href='#L491'>491</a>
|
|
557
|
+
<a name='L492'></a><a href='#L492'>492</a>
|
|
558
|
+
<a name='L493'></a><a href='#L493'>493</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">11x</span>
|
|
559
|
+
<span class="cline-any cline-yes">11x</span>
|
|
560
|
+
<span class="cline-any cline-yes">11x</span>
|
|
561
|
+
<span class="cline-any cline-yes">11x</span>
|
|
562
|
+
<span class="cline-any cline-yes">11x</span>
|
|
563
|
+
<span class="cline-any cline-yes">11x</span>
|
|
564
|
+
<span class="cline-any cline-yes">11x</span>
|
|
565
|
+
<span class="cline-any cline-yes">11x</span>
|
|
566
|
+
<span class="cline-any cline-neutral"> </span>
|
|
567
|
+
<span class="cline-any cline-neutral"> </span>
|
|
568
|
+
<span class="cline-any cline-neutral"> </span>
|
|
569
|
+
<span class="cline-any cline-neutral"> </span>
|
|
570
|
+
<span class="cline-any cline-neutral"> </span>
|
|
571
|
+
<span class="cline-any cline-neutral"> </span>
|
|
572
|
+
<span class="cline-any cline-yes">11x</span>
|
|
573
|
+
<span class="cline-any cline-neutral"> </span>
|
|
574
|
+
<span class="cline-any cline-neutral"> </span>
|
|
575
|
+
<span class="cline-any cline-neutral"> </span>
|
|
576
|
+
<span class="cline-any cline-neutral"> </span>
|
|
577
|
+
<span class="cline-any cline-neutral"> </span>
|
|
578
|
+
<span class="cline-any cline-neutral"> </span>
|
|
579
|
+
<span class="cline-any cline-neutral"> </span>
|
|
580
|
+
<span class="cline-any cline-neutral"> </span>
|
|
581
|
+
<span class="cline-any cline-neutral"> </span>
|
|
582
|
+
<span class="cline-any cline-yes">32x</span>
|
|
583
|
+
<span class="cline-any cline-neutral"> </span>
|
|
584
|
+
<span class="cline-any cline-neutral"> </span>
|
|
585
|
+
<span class="cline-any cline-neutral"> </span>
|
|
586
|
+
<span class="cline-any cline-neutral"> </span>
|
|
587
|
+
<span class="cline-any cline-neutral"> </span>
|
|
588
|
+
<span class="cline-any cline-neutral"> </span>
|
|
589
|
+
<span class="cline-any cline-neutral"> </span>
|
|
590
|
+
<span class="cline-any cline-neutral"> </span>
|
|
591
|
+
<span class="cline-any cline-neutral"> </span>
|
|
592
|
+
<span class="cline-any cline-yes">32x</span>
|
|
593
|
+
<span class="cline-any cline-neutral"> </span>
|
|
594
|
+
<span class="cline-any cline-neutral"> </span>
|
|
595
|
+
<span class="cline-any cline-neutral"> </span>
|
|
596
|
+
<span class="cline-any cline-neutral"> </span>
|
|
597
|
+
<span class="cline-any cline-neutral"> </span>
|
|
598
|
+
<span class="cline-any cline-neutral"> </span>
|
|
599
|
+
<span class="cline-any cline-neutral"> </span>
|
|
600
|
+
<span class="cline-any cline-neutral"> </span>
|
|
601
|
+
<span class="cline-any cline-neutral"> </span>
|
|
602
|
+
<span class="cline-any cline-neutral"> </span>
|
|
603
|
+
<span class="cline-any cline-neutral"> </span>
|
|
604
|
+
<span class="cline-any cline-neutral"> </span>
|
|
605
|
+
<span class="cline-any cline-neutral"> </span>
|
|
606
|
+
<span class="cline-any cline-neutral"> </span>
|
|
607
|
+
<span class="cline-any cline-neutral"> </span>
|
|
608
|
+
<span class="cline-any cline-neutral"> </span>
|
|
609
|
+
<span class="cline-any cline-neutral"> </span>
|
|
610
|
+
<span class="cline-any cline-neutral"> </span>
|
|
611
|
+
<span class="cline-any cline-neutral"> </span>
|
|
612
|
+
<span class="cline-any cline-neutral"> </span>
|
|
613
|
+
<span class="cline-any cline-neutral"> </span>
|
|
614
|
+
<span class="cline-any cline-neutral"> </span>
|
|
615
|
+
<span class="cline-any cline-neutral"> </span>
|
|
616
|
+
<span class="cline-any cline-yes">32x</span>
|
|
617
|
+
<span class="cline-any cline-neutral"> </span>
|
|
618
|
+
<span class="cline-any cline-neutral"> </span>
|
|
619
|
+
<span class="cline-any cline-neutral"> </span>
|
|
620
|
+
<span class="cline-any cline-neutral"> </span>
|
|
621
|
+
<span class="cline-any cline-neutral"> </span>
|
|
622
|
+
<span class="cline-any cline-neutral"> </span>
|
|
623
|
+
<span class="cline-any cline-neutral"> </span>
|
|
624
|
+
<span class="cline-any cline-neutral"> </span>
|
|
625
|
+
<span class="cline-any cline-neutral"> </span>
|
|
626
|
+
<span class="cline-any cline-neutral"> </span>
|
|
627
|
+
<span class="cline-any cline-neutral"> </span>
|
|
628
|
+
<span class="cline-any cline-neutral"> </span>
|
|
629
|
+
<span class="cline-any cline-neutral"> </span>
|
|
630
|
+
<span class="cline-any cline-neutral"> </span>
|
|
631
|
+
<span class="cline-any cline-neutral"> </span>
|
|
632
|
+
<span class="cline-any cline-neutral"> </span>
|
|
633
|
+
<span class="cline-any cline-neutral"> </span>
|
|
634
|
+
<span class="cline-any cline-neutral"> </span>
|
|
635
|
+
<span class="cline-any cline-neutral"> </span>
|
|
636
|
+
<span class="cline-any cline-neutral"> </span>
|
|
637
|
+
<span class="cline-any cline-neutral"> </span>
|
|
638
|
+
<span class="cline-any cline-neutral"> </span>
|
|
639
|
+
<span class="cline-any cline-neutral"> </span>
|
|
640
|
+
<span class="cline-any cline-neutral"> </span>
|
|
641
|
+
<span class="cline-any cline-neutral"> </span>
|
|
642
|
+
<span class="cline-any cline-neutral"> </span>
|
|
643
|
+
<span class="cline-any cline-neutral"> </span>
|
|
644
|
+
<span class="cline-any cline-neutral"> </span>
|
|
645
|
+
<span class="cline-any cline-neutral"> </span>
|
|
646
|
+
<span class="cline-any cline-neutral"> </span>
|
|
647
|
+
<span class="cline-any cline-neutral"> </span>
|
|
648
|
+
<span class="cline-any cline-neutral"> </span>
|
|
649
|
+
<span class="cline-any cline-neutral"> </span>
|
|
650
|
+
<span class="cline-any cline-neutral"> </span>
|
|
651
|
+
<span class="cline-any cline-neutral"> </span>
|
|
652
|
+
<span class="cline-any cline-neutral"> </span>
|
|
653
|
+
<span class="cline-any cline-neutral"> </span>
|
|
654
|
+
<span class="cline-any cline-neutral"> </span>
|
|
655
|
+
<span class="cline-any cline-neutral"> </span>
|
|
656
|
+
<span class="cline-any cline-neutral"> </span>
|
|
657
|
+
<span class="cline-any cline-neutral"> </span>
|
|
658
|
+
<span class="cline-any cline-neutral"> </span>
|
|
659
|
+
<span class="cline-any cline-neutral"> </span>
|
|
660
|
+
<span class="cline-any cline-neutral"> </span>
|
|
661
|
+
<span class="cline-any cline-neutral"> </span>
|
|
662
|
+
<span class="cline-any cline-neutral"> </span>
|
|
663
|
+
<span class="cline-any cline-neutral"> </span>
|
|
664
|
+
<span class="cline-any cline-neutral"> </span>
|
|
665
|
+
<span class="cline-any cline-neutral"> </span>
|
|
666
|
+
<span class="cline-any cline-neutral"> </span>
|
|
667
|
+
<span class="cline-any cline-neutral"> </span>
|
|
668
|
+
<span class="cline-any cline-neutral"> </span>
|
|
669
|
+
<span class="cline-any cline-neutral"> </span>
|
|
670
|
+
<span class="cline-any cline-neutral"> </span>
|
|
671
|
+
<span class="cline-any cline-neutral"> </span>
|
|
672
|
+
<span class="cline-any cline-neutral"> </span>
|
|
673
|
+
<span class="cline-any cline-neutral"> </span>
|
|
674
|
+
<span class="cline-any cline-neutral"> </span>
|
|
675
|
+
<span class="cline-any cline-neutral"> </span>
|
|
676
|
+
<span class="cline-any cline-neutral"> </span>
|
|
677
|
+
<span class="cline-any cline-neutral"> </span>
|
|
678
|
+
<span class="cline-any cline-neutral"> </span>
|
|
679
|
+
<span class="cline-any cline-neutral"> </span>
|
|
680
|
+
<span class="cline-any cline-neutral"> </span>
|
|
681
|
+
<span class="cline-any cline-neutral"> </span>
|
|
682
|
+
<span class="cline-any cline-neutral"> </span>
|
|
683
|
+
<span class="cline-any cline-neutral"> </span>
|
|
684
|
+
<span class="cline-any cline-neutral"> </span>
|
|
685
|
+
<span class="cline-any cline-yes">32x</span>
|
|
686
|
+
<span class="cline-any cline-neutral"> </span>
|
|
687
|
+
<span class="cline-any cline-neutral"> </span>
|
|
688
|
+
<span class="cline-any cline-neutral"> </span>
|
|
689
|
+
<span class="cline-any cline-neutral"> </span>
|
|
690
|
+
<span class="cline-any cline-neutral"> </span>
|
|
691
|
+
<span class="cline-any cline-neutral"> </span>
|
|
692
|
+
<span class="cline-any cline-neutral"> </span>
|
|
693
|
+
<span class="cline-any cline-neutral"> </span>
|
|
694
|
+
<span class="cline-any cline-neutral"> </span>
|
|
695
|
+
<span class="cline-any cline-neutral"> </span>
|
|
696
|
+
<span class="cline-any cline-yes">32x</span>
|
|
697
|
+
<span class="cline-any cline-neutral"> </span>
|
|
698
|
+
<span class="cline-any cline-neutral"> </span>
|
|
699
|
+
<span class="cline-any cline-neutral"> </span>
|
|
700
|
+
<span class="cline-any cline-neutral"> </span>
|
|
701
|
+
<span class="cline-any cline-neutral"> </span>
|
|
702
|
+
<span class="cline-any cline-neutral"> </span>
|
|
703
|
+
<span class="cline-any cline-neutral"> </span>
|
|
704
|
+
<span class="cline-any cline-neutral"> </span>
|
|
705
|
+
<span class="cline-any cline-neutral"> </span>
|
|
706
|
+
<span class="cline-any cline-neutral"> </span>
|
|
707
|
+
<span class="cline-any cline-yes">32x</span>
|
|
708
|
+
<span class="cline-any cline-neutral"> </span>
|
|
709
|
+
<span class="cline-any cline-neutral"> </span>
|
|
710
|
+
<span class="cline-any cline-neutral"> </span>
|
|
711
|
+
<span class="cline-any cline-neutral"> </span>
|
|
712
|
+
<span class="cline-any cline-neutral"> </span>
|
|
713
|
+
<span class="cline-any cline-neutral"> </span>
|
|
714
|
+
<span class="cline-any cline-neutral"> </span>
|
|
715
|
+
<span class="cline-any cline-neutral"> </span>
|
|
716
|
+
<span class="cline-any cline-neutral"> </span>
|
|
717
|
+
<span class="cline-any cline-neutral"> </span>
|
|
718
|
+
<span class="cline-any cline-neutral"> </span>
|
|
719
|
+
<span class="cline-any cline-neutral"> </span>
|
|
720
|
+
<span class="cline-any cline-neutral"> </span>
|
|
721
|
+
<span class="cline-any cline-neutral"> </span>
|
|
722
|
+
<span class="cline-any cline-neutral"> </span>
|
|
723
|
+
<span class="cline-any cline-neutral"> </span>
|
|
724
|
+
<span class="cline-any cline-neutral"> </span>
|
|
725
|
+
<span class="cline-any cline-neutral"> </span>
|
|
726
|
+
<span class="cline-any cline-neutral"> </span>
|
|
727
|
+
<span class="cline-any cline-neutral"> </span>
|
|
728
|
+
<span class="cline-any cline-neutral"> </span>
|
|
729
|
+
<span class="cline-any cline-yes">32x</span>
|
|
730
|
+
<span class="cline-any cline-neutral"> </span>
|
|
731
|
+
<span class="cline-any cline-neutral"> </span>
|
|
732
|
+
<span class="cline-any cline-neutral"> </span>
|
|
733
|
+
<span class="cline-any cline-neutral"> </span>
|
|
734
|
+
<span class="cline-any cline-neutral"> </span>
|
|
735
|
+
<span class="cline-any cline-neutral"> </span>
|
|
736
|
+
<span class="cline-any cline-neutral"> </span>
|
|
737
|
+
<span class="cline-any cline-neutral"> </span>
|
|
738
|
+
<span class="cline-any cline-neutral"> </span>
|
|
739
|
+
<span class="cline-any cline-neutral"> </span>
|
|
740
|
+
<span class="cline-any cline-neutral"> </span>
|
|
741
|
+
<span class="cline-any cline-yes">32x</span>
|
|
742
|
+
<span class="cline-any cline-neutral"> </span>
|
|
743
|
+
<span class="cline-any cline-neutral"> </span>
|
|
744
|
+
<span class="cline-any cline-neutral"> </span>
|
|
745
|
+
<span class="cline-any cline-neutral"> </span>
|
|
746
|
+
<span class="cline-any cline-neutral"> </span>
|
|
747
|
+
<span class="cline-any cline-neutral"> </span>
|
|
748
|
+
<span class="cline-any cline-neutral"> </span>
|
|
749
|
+
<span class="cline-any cline-neutral"> </span>
|
|
750
|
+
<span class="cline-any cline-neutral"> </span>
|
|
751
|
+
<span class="cline-any cline-neutral"> </span>
|
|
752
|
+
<span class="cline-any cline-neutral"> </span>
|
|
753
|
+
<span class="cline-any cline-neutral"> </span>
|
|
754
|
+
<span class="cline-any cline-yes">32x</span>
|
|
755
|
+
<span class="cline-any cline-neutral"> </span>
|
|
756
|
+
<span class="cline-any cline-neutral"> </span>
|
|
757
|
+
<span class="cline-any cline-yes">31x</span>
|
|
758
|
+
<span class="cline-any cline-no"> </span>
|
|
759
|
+
<span class="cline-any cline-no"> </span>
|
|
760
|
+
<span class="cline-any cline-no"> </span>
|
|
761
|
+
<span class="cline-any cline-no"> </span>
|
|
762
|
+
<span class="cline-any cline-no"> </span>
|
|
763
|
+
<span class="cline-any cline-neutral"> </span>
|
|
764
|
+
<span class="cline-any cline-no"> </span>
|
|
765
|
+
<span class="cline-any cline-no"> </span>
|
|
766
|
+
<span class="cline-any cline-no"> </span>
|
|
767
|
+
<span class="cline-any cline-neutral"> </span>
|
|
768
|
+
<span class="cline-any cline-neutral"> </span>
|
|
769
|
+
<span class="cline-any cline-neutral"> </span>
|
|
770
|
+
<span class="cline-any cline-neutral"> </span>
|
|
771
|
+
<span class="cline-any cline-neutral"> </span>
|
|
772
|
+
<span class="cline-any cline-neutral"> </span>
|
|
773
|
+
<span class="cline-any cline-neutral"> </span>
|
|
774
|
+
<span class="cline-any cline-neutral"> </span>
|
|
775
|
+
<span class="cline-any cline-neutral"> </span>
|
|
776
|
+
<span class="cline-any cline-neutral"> </span>
|
|
777
|
+
<span class="cline-any cline-neutral"> </span>
|
|
778
|
+
<span class="cline-any cline-neutral"> </span>
|
|
779
|
+
<span class="cline-any cline-neutral"> </span>
|
|
780
|
+
<span class="cline-any cline-neutral"> </span>
|
|
781
|
+
<span class="cline-any cline-no"> </span>
|
|
782
|
+
<span class="cline-any cline-neutral"> </span>
|
|
783
|
+
<span class="cline-any cline-neutral"> </span>
|
|
784
|
+
<span class="cline-any cline-neutral"> </span>
|
|
785
|
+
<span class="cline-any cline-no"> </span>
|
|
786
|
+
<span class="cline-any cline-no"> </span>
|
|
787
|
+
<span class="cline-any cline-neutral"> </span>
|
|
788
|
+
<span class="cline-any cline-neutral"> </span>
|
|
789
|
+
<span class="cline-any cline-neutral"> </span>
|
|
790
|
+
<span class="cline-any cline-no"> </span>
|
|
791
|
+
<span class="cline-any cline-no"> </span>
|
|
792
|
+
<span class="cline-any cline-neutral"> </span>
|
|
793
|
+
<span class="cline-any cline-no"> </span>
|
|
794
|
+
<span class="cline-any cline-neutral"> </span>
|
|
795
|
+
<span class="cline-any cline-neutral"> </span>
|
|
796
|
+
<span class="cline-any cline-neutral"> </span>
|
|
797
|
+
<span class="cline-any cline-yes">2x</span>
|
|
798
|
+
<span class="cline-any cline-no"> </span>
|
|
799
|
+
<span class="cline-any cline-neutral"> </span>
|
|
800
|
+
<span class="cline-any cline-yes">2x</span>
|
|
801
|
+
<span class="cline-any cline-no"> </span>
|
|
802
|
+
<span class="cline-any cline-no"> </span>
|
|
803
|
+
<span class="cline-any cline-neutral"> </span>
|
|
804
|
+
<span class="cline-any cline-neutral"> </span>
|
|
805
|
+
<span class="cline-any cline-neutral"> </span>
|
|
806
|
+
<span class="cline-any cline-neutral"> </span>
|
|
807
|
+
<span class="cline-any cline-no"> </span>
|
|
808
|
+
<span class="cline-any cline-no"> </span>
|
|
809
|
+
<span class="cline-any cline-no"> </span>
|
|
810
|
+
<span class="cline-any cline-neutral"> </span>
|
|
811
|
+
<span class="cline-any cline-no"> </span>
|
|
812
|
+
<span class="cline-any cline-neutral"> </span>
|
|
813
|
+
<span class="cline-any cline-neutral"> </span>
|
|
814
|
+
<span class="cline-any cline-neutral"> </span>
|
|
815
|
+
<span class="cline-any cline-no"> </span>
|
|
816
|
+
<span class="cline-any cline-no"> </span>
|
|
817
|
+
<span class="cline-any cline-no"> </span>
|
|
818
|
+
<span class="cline-any cline-no"> </span>
|
|
819
|
+
<span class="cline-any cline-neutral"> </span>
|
|
820
|
+
<span class="cline-any cline-no"> </span>
|
|
821
|
+
<span class="cline-any cline-neutral"> </span>
|
|
822
|
+
<span class="cline-any cline-no"> </span>
|
|
823
|
+
<span class="cline-any cline-neutral"> </span>
|
|
824
|
+
<span class="cline-any cline-neutral"> </span>
|
|
825
|
+
<span class="cline-any cline-no"> </span>
|
|
826
|
+
<span class="cline-any cline-neutral"> </span>
|
|
827
|
+
<span class="cline-any cline-neutral"> </span>
|
|
828
|
+
<span class="cline-any cline-neutral"> </span>
|
|
829
|
+
<span class="cline-any cline-neutral"> </span>
|
|
830
|
+
<span class="cline-any cline-neutral"> </span>
|
|
831
|
+
<span class="cline-any cline-no"> </span>
|
|
832
|
+
<span class="cline-any cline-no"> </span>
|
|
833
|
+
<span class="cline-any cline-neutral"> </span>
|
|
834
|
+
<span class="cline-any cline-no"> </span>
|
|
835
|
+
<span class="cline-any cline-no"> </span>
|
|
836
|
+
<span class="cline-any cline-no"> </span>
|
|
837
|
+
<span class="cline-any cline-no"> </span>
|
|
838
|
+
<span class="cline-any cline-no"> </span>
|
|
839
|
+
<span class="cline-any cline-neutral"> </span>
|
|
840
|
+
<span class="cline-any cline-neutral"> </span>
|
|
841
|
+
<span class="cline-any cline-no"> </span>
|
|
842
|
+
<span class="cline-any cline-no"> </span>
|
|
843
|
+
<span class="cline-any cline-no"> </span>
|
|
844
|
+
<span class="cline-any cline-neutral"> </span>
|
|
845
|
+
<span class="cline-any cline-neutral"> </span>
|
|
846
|
+
<span class="cline-any cline-neutral"> </span>
|
|
847
|
+
<span class="cline-any cline-neutral"> </span>
|
|
848
|
+
<span class="cline-any cline-neutral"> </span>
|
|
849
|
+
<span class="cline-any cline-no"> </span>
|
|
850
|
+
<span class="cline-any cline-neutral"> </span>
|
|
851
|
+
<span class="cline-any cline-neutral"> </span>
|
|
852
|
+
<span class="cline-any cline-neutral"> </span>
|
|
853
|
+
<span class="cline-any cline-no"> </span>
|
|
854
|
+
<span class="cline-any cline-neutral"> </span>
|
|
855
|
+
<span class="cline-any cline-neutral"> </span>
|
|
856
|
+
<span class="cline-any cline-neutral"> </span>
|
|
857
|
+
<span class="cline-any cline-no"> </span>
|
|
858
|
+
<span class="cline-any cline-no"> </span>
|
|
859
|
+
<span class="cline-any cline-no"> </span>
|
|
860
|
+
<span class="cline-any cline-neutral"> </span>
|
|
861
|
+
<span class="cline-any cline-no"> </span>
|
|
862
|
+
<span class="cline-any cline-neutral"> </span>
|
|
863
|
+
<span class="cline-any cline-no"> </span>
|
|
864
|
+
<span class="cline-any cline-neutral"> </span>
|
|
865
|
+
<span class="cline-any cline-no"> </span>
|
|
866
|
+
<span class="cline-any cline-neutral"> </span>
|
|
867
|
+
<span class="cline-any cline-neutral"> </span>
|
|
868
|
+
<span class="cline-any cline-neutral"> </span>
|
|
869
|
+
<span class="cline-any cline-neutral"> </span>
|
|
870
|
+
<span class="cline-any cline-neutral"> </span>
|
|
871
|
+
<span class="cline-any cline-neutral"> </span>
|
|
872
|
+
<span class="cline-any cline-neutral"> </span>
|
|
873
|
+
<span class="cline-any cline-no"> </span>
|
|
874
|
+
<span class="cline-any cline-no"> </span>
|
|
875
|
+
<span class="cline-any cline-neutral"> </span>
|
|
876
|
+
<span class="cline-any cline-no"> </span>
|
|
877
|
+
<span class="cline-any cline-no"> </span>
|
|
878
|
+
<span class="cline-any cline-neutral"> </span>
|
|
879
|
+
<span class="cline-any cline-no"> </span>
|
|
880
|
+
<span class="cline-any cline-no"> </span>
|
|
881
|
+
<span class="cline-any cline-neutral"> </span>
|
|
882
|
+
<span class="cline-any cline-neutral"> </span>
|
|
883
|
+
<span class="cline-any cline-neutral"> </span>
|
|
884
|
+
<span class="cline-any cline-neutral"> </span>
|
|
885
|
+
<span class="cline-any cline-neutral"> </span>
|
|
886
|
+
<span class="cline-any cline-neutral"> </span>
|
|
887
|
+
<span class="cline-any cline-neutral"> </span>
|
|
888
|
+
<span class="cline-any cline-neutral"> </span>
|
|
889
|
+
<span class="cline-any cline-neutral"> </span>
|
|
890
|
+
<span class="cline-any cline-neutral"> </span>
|
|
891
|
+
<span class="cline-any cline-neutral"> </span>
|
|
892
|
+
<span class="cline-any cline-neutral"> </span>
|
|
893
|
+
<span class="cline-any cline-neutral"> </span>
|
|
894
|
+
<span class="cline-any cline-neutral"> </span>
|
|
895
|
+
<span class="cline-any cline-neutral"> </span>
|
|
896
|
+
<span class="cline-any cline-neutral"> </span>
|
|
897
|
+
<span class="cline-any cline-neutral"> </span>
|
|
898
|
+
<span class="cline-any cline-no"> </span>
|
|
899
|
+
<span class="cline-any cline-no"> </span>
|
|
900
|
+
<span class="cline-any cline-neutral"> </span>
|
|
901
|
+
<span class="cline-any cline-no"> </span>
|
|
902
|
+
<span class="cline-any cline-neutral"> </span>
|
|
903
|
+
<span class="cline-any cline-neutral"> </span>
|
|
904
|
+
<span class="cline-any cline-neutral"> </span>
|
|
905
|
+
<span class="cline-any cline-neutral"> </span>
|
|
906
|
+
<span class="cline-any cline-neutral"> </span>
|
|
907
|
+
<span class="cline-any cline-neutral"> </span>
|
|
908
|
+
<span class="cline-any cline-neutral"> </span>
|
|
909
|
+
<span class="cline-any cline-neutral"> </span>
|
|
910
|
+
<span class="cline-any cline-neutral"> </span>
|
|
911
|
+
<span class="cline-any cline-neutral"> </span>
|
|
912
|
+
<span class="cline-any cline-neutral"> </span>
|
|
913
|
+
<span class="cline-any cline-no"> </span>
|
|
914
|
+
<span class="cline-any cline-no"> </span>
|
|
915
|
+
<span class="cline-any cline-no"> </span>
|
|
916
|
+
<span class="cline-any cline-no"> </span>
|
|
917
|
+
<span class="cline-any cline-no"> </span>
|
|
918
|
+
<span class="cline-any cline-no"> </span>
|
|
919
|
+
<span class="cline-any cline-no"> </span>
|
|
920
|
+
<span class="cline-any cline-no"> </span>
|
|
921
|
+
<span class="cline-any cline-neutral"> </span>
|
|
922
|
+
<span class="cline-any cline-neutral"> </span>
|
|
923
|
+
<span class="cline-any cline-no"> </span>
|
|
924
|
+
<span class="cline-any cline-neutral"> </span>
|
|
925
|
+
<span class="cline-any cline-no"> </span>
|
|
926
|
+
<span class="cline-any cline-no"> </span>
|
|
927
|
+
<span class="cline-any cline-neutral"> </span>
|
|
928
|
+
<span class="cline-any cline-neutral"> </span>
|
|
929
|
+
<span class="cline-any cline-neutral"> </span>
|
|
930
|
+
<span class="cline-any cline-neutral"> </span>
|
|
931
|
+
<span class="cline-any cline-neutral"> </span>
|
|
932
|
+
<span class="cline-any cline-neutral"> </span>
|
|
933
|
+
<span class="cline-any cline-neutral"> </span>
|
|
934
|
+
<span class="cline-any cline-neutral"> </span>
|
|
935
|
+
<span class="cline-any cline-no"> </span>
|
|
936
|
+
<span class="cline-any cline-no"> </span>
|
|
937
|
+
<span class="cline-any cline-no"> </span>
|
|
938
|
+
<span class="cline-any cline-no"> </span>
|
|
939
|
+
<span class="cline-any cline-no"> </span>
|
|
940
|
+
<span class="cline-any cline-no"> </span>
|
|
941
|
+
<span class="cline-any cline-no"> </span>
|
|
942
|
+
<span class="cline-any cline-neutral"> </span>
|
|
943
|
+
<span class="cline-any cline-no"> </span>
|
|
944
|
+
<span class="cline-any cline-neutral"> </span>
|
|
945
|
+
<span class="cline-any cline-no"> </span>
|
|
946
|
+
<span class="cline-any cline-neutral"> </span>
|
|
947
|
+
<span class="cline-any cline-no"> </span>
|
|
948
|
+
<span class="cline-any cline-no"> </span>
|
|
949
|
+
<span class="cline-any cline-neutral"> </span>
|
|
950
|
+
<span class="cline-any cline-neutral"> </span>
|
|
951
|
+
<span class="cline-any cline-neutral"> </span>
|
|
952
|
+
<span class="cline-any cline-neutral"> </span>
|
|
953
|
+
<span class="cline-any cline-neutral"> </span>
|
|
954
|
+
<span class="cline-any cline-neutral"> </span>
|
|
955
|
+
<span class="cline-any cline-neutral"> </span>
|
|
956
|
+
<span class="cline-any cline-neutral"> </span>
|
|
957
|
+
<span class="cline-any cline-neutral"> </span>
|
|
958
|
+
<span class="cline-any cline-neutral"> </span>
|
|
959
|
+
<span class="cline-any cline-neutral"> </span>
|
|
960
|
+
<span class="cline-any cline-neutral"> </span>
|
|
961
|
+
<span class="cline-any cline-neutral"> </span>
|
|
962
|
+
<span class="cline-any cline-neutral"> </span>
|
|
963
|
+
<span class="cline-any cline-neutral"> </span>
|
|
964
|
+
<span class="cline-any cline-neutral"> </span>
|
|
965
|
+
<span class="cline-any cline-neutral"> </span>
|
|
966
|
+
<span class="cline-any cline-neutral"> </span>
|
|
967
|
+
<span class="cline-any cline-neutral"> </span>
|
|
968
|
+
<span class="cline-any cline-no"> </span>
|
|
969
|
+
<span class="cline-any cline-no"> </span>
|
|
970
|
+
<span class="cline-any cline-neutral"> </span>
|
|
971
|
+
<span class="cline-any cline-no"> </span>
|
|
972
|
+
<span class="cline-any cline-neutral"> </span>
|
|
973
|
+
<span class="cline-any cline-neutral"> </span>
|
|
974
|
+
<span class="cline-any cline-neutral"> </span>
|
|
975
|
+
<span class="cline-any cline-no"> </span>
|
|
976
|
+
<span class="cline-any cline-neutral"> </span>
|
|
977
|
+
<span class="cline-any cline-no"> </span>
|
|
978
|
+
<span class="cline-any cline-no"> </span>
|
|
979
|
+
<span class="cline-any cline-no"> </span>
|
|
980
|
+
<span class="cline-any cline-no"> </span>
|
|
981
|
+
<span class="cline-any cline-no"> </span>
|
|
982
|
+
<span class="cline-any cline-neutral"> </span>
|
|
983
|
+
<span class="cline-any cline-no"> </span>
|
|
984
|
+
<span class="cline-any cline-no"> </span>
|
|
985
|
+
<span class="cline-any cline-no"> </span>
|
|
986
|
+
<span class="cline-any cline-neutral"> </span>
|
|
987
|
+
<span class="cline-any cline-no"> </span>
|
|
988
|
+
<span class="cline-any cline-no"> </span>
|
|
989
|
+
<span class="cline-any cline-no"> </span>
|
|
990
|
+
<span class="cline-any cline-neutral"> </span>
|
|
991
|
+
<span class="cline-any cline-no"> </span>
|
|
992
|
+
<span class="cline-any cline-neutral"> </span>
|
|
993
|
+
<span class="cline-any cline-neutral"> </span>
|
|
994
|
+
<span class="cline-any cline-neutral"> </span>
|
|
995
|
+
<span class="cline-any cline-neutral"> </span>
|
|
996
|
+
<span class="cline-any cline-no"> </span>
|
|
997
|
+
<span class="cline-any cline-neutral"> </span>
|
|
998
|
+
<span class="cline-any cline-neutral"> </span>
|
|
999
|
+
<span class="cline-any cline-neutral"> </span>
|
|
1000
|
+
<span class="cline-any cline-no"> </span>
|
|
1001
|
+
<span class="cline-any cline-no"> </span>
|
|
1002
|
+
<span class="cline-any cline-neutral"> </span>
|
|
1003
|
+
<span class="cline-any cline-neutral"> </span>
|
|
1004
|
+
<span class="cline-any cline-neutral"> </span>
|
|
1005
|
+
<span class="cline-any cline-no"> </span>
|
|
1006
|
+
<span class="cline-any cline-neutral"> </span>
|
|
1007
|
+
<span class="cline-any cline-neutral"> </span>
|
|
1008
|
+
<span class="cline-any cline-neutral"> </span>
|
|
1009
|
+
<span class="cline-any cline-no"> </span>
|
|
1010
|
+
<span class="cline-any cline-neutral"> </span>
|
|
1011
|
+
<span class="cline-any cline-neutral"> </span>
|
|
1012
|
+
<span class="cline-any cline-neutral"> </span>
|
|
1013
|
+
<span class="cline-any cline-no"> </span>
|
|
1014
|
+
<span class="cline-any cline-neutral"> </span>
|
|
1015
|
+
<span class="cline-any cline-neutral"> </span>
|
|
1016
|
+
<span class="cline-any cline-neutral"> </span>
|
|
1017
|
+
<span class="cline-any cline-no"> </span>
|
|
1018
|
+
<span class="cline-any cline-no"> </span>
|
|
1019
|
+
<span class="cline-any cline-neutral"> </span>
|
|
1020
|
+
<span class="cline-any cline-no"> </span>
|
|
1021
|
+
<span class="cline-any cline-no"> </span>
|
|
1022
|
+
<span class="cline-any cline-no"> </span>
|
|
1023
|
+
<span class="cline-any cline-neutral"> </span>
|
|
1024
|
+
<span class="cline-any cline-neutral"> </span>
|
|
1025
|
+
<span class="cline-any cline-neutral"> </span>
|
|
1026
|
+
<span class="cline-any cline-neutral"> </span>
|
|
1027
|
+
<span class="cline-any cline-no"> </span>
|
|
1028
|
+
<span class="cline-any cline-neutral"> </span>
|
|
1029
|
+
<span class="cline-any cline-neutral"> </span>
|
|
1030
|
+
<span class="cline-any cline-neutral"> </span>
|
|
1031
|
+
<span class="cline-any cline-neutral"> </span>
|
|
1032
|
+
<span class="cline-any cline-neutral"> </span>
|
|
1033
|
+
<span class="cline-any cline-neutral"> </span>
|
|
1034
|
+
<span class="cline-any cline-neutral"> </span>
|
|
1035
|
+
<span class="cline-any cline-neutral"> </span>
|
|
1036
|
+
<span class="cline-any cline-neutral"> </span>
|
|
1037
|
+
<span class="cline-any cline-neutral"> </span>
|
|
1038
|
+
<span class="cline-any cline-neutral"> </span>
|
|
1039
|
+
<span class="cline-any cline-neutral"> </span>
|
|
1040
|
+
<span class="cline-any cline-no"> </span>
|
|
1041
|
+
<span class="cline-any cline-no"> </span>
|
|
1042
|
+
<span class="cline-any cline-no"> </span>
|
|
1043
|
+
<span class="cline-any cline-no"> </span>
|
|
1044
|
+
<span class="cline-any cline-neutral"> </span>
|
|
1045
|
+
<span class="cline-any cline-neutral"> </span>
|
|
1046
|
+
<span class="cline-any cline-neutral"> </span>
|
|
1047
|
+
<span class="cline-any cline-no"> </span>
|
|
1048
|
+
<span class="cline-any cline-neutral"> </span>
|
|
1049
|
+
<span class="cline-any cline-neutral"> </span>
|
|
1050
|
+
<span class="cline-any cline-neutral"> </span></td><td class="text"><pre class="prettyprint lang-js">import { Directive, Input } from '@angular/core';
|
|
1051
|
+
import { AttributeOption, Condition, Observer, OrderDirection, Paginator } from '@decaf-ts/core';
|
|
1052
|
+
import { CrudOperations, IRepository, OperationKeys, PrimaryKeyType } from '@decaf-ts/db-decorators';
|
|
1053
|
+
import { Constructor, Metadata } from '@decaf-ts/decoration';
|
|
1054
|
+
import { Model, Primitives } from '@decaf-ts/decorator-validation';
|
|
1055
|
+
import { DecafComponent } from '@decaf-ts/ui-decorators';
|
|
1056
|
+
import { debounceTime, shareReplay, Subject, takeUntil } from 'rxjs';
|
|
1057
|
+
import { getModelAndRepository } from './helpers';
|
|
1058
|
+
import { IFilterQuery } from './interfaces';
|
|
1059
|
+
import { DecafRepository, KeyValue } from './types';
|
|
1060
|
+
|
|
1061
|
+
type TransactionResponse<M extends Model> = M | M[] | PrimaryKeyType | PrimaryKeyType[] | undefined;
|
|
1062
|
+
|
|
1063
|
+
@Directive()
|
|
1064
|
+
export class NgxRepositoryDirective<M extends Model> extends DecafComponent<M> {
|
|
1065
|
+
private _context?: DecafRepository<M>;
|
|
1066
|
+
|
|
1067
|
+
/**
|
|
1068
|
+
* @description Store query results for the component.
|
|
1069
|
+
* @summary Holds an array of `Model` instances returned from repository queries.
|
|
1070
|
+
* This is used internally to cache query results that child components may bind to.
|
|
1071
|
+
* @type {M[]}
|
|
1072
|
+
*/
|
|
1073
|
+
@Input()
|
|
1074
|
+
_query: M[] = [];
|
|
1075
|
+
|
|
1076
|
+
/**
|
|
1077
|
+
* @description Backing main model data supplied to the component.
|
|
1078
|
+
* @summary Holds the raw `Model` instance or a generic key-value payload that child
|
|
1079
|
+
* components may bind to. When provided, it represents the contextual data the
|
|
1080
|
+
* component should render or mutate.
|
|
1081
|
+
* @type {M | M[] | KeyValue | KeyValue[] | undefined}
|
|
1082
|
+
*/
|
|
1083
|
+
@Input()
|
|
1084
|
+
_data?: M | M[] | KeyValue | KeyValue[] = {};
|
|
1085
|
+
|
|
1086
|
+
/**
|
|
1087
|
+
* @description Data model or model name for component operations.
|
|
1088
|
+
* @summary The data model that this component will use for CRUD operations. This can be provided
|
|
1089
|
+
* as a Model instance, a model constructor, or a string representing the model's registered name.
|
|
1090
|
+
* When set, this property provides the component with access to the model's schema, validation rules,
|
|
1091
|
+
* and metadata needed for rendering and data operations.
|
|
1092
|
+
* @type {Model | string | undefined}
|
|
1093
|
+
* @memberOf module:lib/engine/NgxRepositoryDirective
|
|
1094
|
+
*/
|
|
1095
|
+
@Input()
|
|
1096
|
+
override model!: Model | string | undefined;
|
|
1097
|
+
|
|
1098
|
+
/**
|
|
1099
|
+
* @description Primary key value of the current model instance.
|
|
1100
|
+
* @summary Specifies the primary key value for the current model record being displayed or
|
|
1101
|
+
* manipulated by the component. This identifier is used for CRUD operations that target
|
|
1102
|
+
* specific records, such as read, update, and delete operations. The value corresponds to
|
|
1103
|
+
* the field designated as the primary key in the model definition.
|
|
1104
|
+
* @type {PrimaryKeyType}
|
|
1105
|
+
* @memberOf module:lib/engine/NgxRepositoryDirective
|
|
1106
|
+
*/
|
|
1107
|
+
@Input()
|
|
1108
|
+
override modelId: PrimaryKeyType = '';
|
|
1109
|
+
|
|
1110
|
+
/**
|
|
1111
|
+
* @description The name of the model class to operate on.
|
|
1112
|
+
* @summary Identifies which registered model class this component should work with.
|
|
1113
|
+
* This name is used to resolve the model constructor from the global model registry
|
|
1114
|
+
* and instantiate the appropriate repository for data operations. The model must
|
|
1115
|
+
* be properly registered using the @Model decorator for resolution to work.
|
|
1116
|
+
*
|
|
1117
|
+
* @type {string}
|
|
1118
|
+
*/
|
|
1119
|
+
@Input()
|
|
1120
|
+
modelName!: string;
|
|
1121
|
+
|
|
1122
|
+
/**
|
|
1123
|
+
* @description Primary key field name for the data model.
|
|
1124
|
+
* @summary Specifies which field in the model should be used as the primary key.
|
|
1125
|
+
* This is typically used for identifying unique records in operations like update and delete.
|
|
1126
|
+
* If not explicitly set, it defaults to the repository's configured primary key or 'id'.
|
|
1127
|
+
* @type {string}
|
|
1128
|
+
*/
|
|
1129
|
+
@Input()
|
|
1130
|
+
override pk!: string;
|
|
1131
|
+
|
|
1132
|
+
/**
|
|
1133
|
+
* @description Pre-built filtering expression applied to repository queries.
|
|
1134
|
+
* @summary Supply a custom `AttributeOption` to control how records are constrained. When omitted,
|
|
1135
|
+
* the directive derives a condition from `filterBy` or `pk`, comparing it against `modelId`.
|
|
1136
|
+
* @type {AttributeOption<M>}
|
|
1137
|
+
*/
|
|
1138
|
+
@Input()
|
|
1139
|
+
override filter!: AttributeOption<M>;
|
|
1140
|
+
|
|
1141
|
+
/**
|
|
1142
|
+
* @description Model field used when generating the default condition.
|
|
1143
|
+
* @summary Indicates which key should be compared to `modelId` when `filter` is not provided.
|
|
1144
|
+
* Defaults to the configured primary key so overrides are only needed for custom lookups.
|
|
1145
|
+
* @type {string}
|
|
1146
|
+
*/
|
|
1147
|
+
@Input()
|
|
1148
|
+
override filterBy!: string;
|
|
1149
|
+
|
|
1150
|
+
/**
|
|
1151
|
+
* @description Primitive type descriptor for the primary key.
|
|
1152
|
+
* @summary Helps coerce `modelId` to the proper primitive before executing queries, ensuring numeric
|
|
1153
|
+
* identifiers are handled correctly when the repository expects number-based keys.
|
|
1154
|
+
* @type {string}
|
|
1155
|
+
*/
|
|
1156
|
+
pkType!: string;
|
|
1157
|
+
|
|
1158
|
+
/**
|
|
1159
|
+
* @description The current search query value.
|
|
1160
|
+
* @summary Stores the text entered in the search bar. This is used to filter
|
|
1161
|
+
* the list data or to send as a search parameter when fetching new data.
|
|
1162
|
+
*
|
|
1163
|
+
* @type {string | undefined}
|
|
1164
|
+
* @memberOf ListComponent
|
|
1165
|
+
*/
|
|
1166
|
+
searchValue?: string | IFilterQuery | undefined;
|
|
1167
|
+
|
|
1168
|
+
/**
|
|
1169
|
+
* @description The starting index for data fetching.
|
|
1170
|
+
* @summary Specifies the index from which to start fetching data. This is used
|
|
1171
|
+
* for pagination and infinite scrolling to determine which subset of data to load.
|
|
1172
|
+
*
|
|
1173
|
+
* @type {number}
|
|
1174
|
+
* @default 0
|
|
1175
|
+
*/
|
|
1176
|
+
@Input()
|
|
1177
|
+
start: number = 0;
|
|
1178
|
+
|
|
1179
|
+
/**
|
|
1180
|
+
* @description The number of items to fetch per page or load operation.
|
|
1181
|
+
* @summary Determines how many items are loaded at once during pagination or
|
|
1182
|
+
* infinite scrolling. This affects the size of data chunks requested from the source.
|
|
1183
|
+
*
|
|
1184
|
+
* @type {number}
|
|
1185
|
+
* @default 10
|
|
1186
|
+
*/
|
|
1187
|
+
@Input()
|
|
1188
|
+
limit: number = 10;
|
|
1189
|
+
|
|
1190
|
+
/**
|
|
1191
|
+
* @description Sorting parameters for data fetching.
|
|
1192
|
+
* @summary Specifies how the fetched data should be sorted. This can be provided
|
|
1193
|
+
* as a string (field name with optional direction) or a direct object.
|
|
1194
|
+
*
|
|
1195
|
+
* @type {OrderDirection}
|
|
1196
|
+
* @default OrderDirection.DSC
|
|
1197
|
+
*/
|
|
1198
|
+
@Input()
|
|
1199
|
+
sortDirection: OrderDirection = OrderDirection.DSC;
|
|
1200
|
+
|
|
1201
|
+
/**
|
|
1202
|
+
* @description Sorting parameters for data fetching.
|
|
1203
|
+
* @summary Specifies how the fetched data should be sorted. This can be provided
|
|
1204
|
+
* as a string (field name with optional direction) or a direct object.
|
|
1205
|
+
*
|
|
1206
|
+
* @type {string | KeyValue | undefined}
|
|
1207
|
+
*/
|
|
1208
|
+
@Input()
|
|
1209
|
+
sortBy!: string;
|
|
1210
|
+
|
|
1211
|
+
/**
|
|
1212
|
+
* @description Available field indexes for filtering operations.
|
|
1213
|
+
* @summary Defines the list of field names that users can filter by. These represent
|
|
1214
|
+
* the data properties available for filtering operations. Each index corresponds to
|
|
1215
|
+
* a field in the data model that supports comparison operations.
|
|
1216
|
+
*
|
|
1217
|
+
* @type {string[]}
|
|
1218
|
+
* @default []
|
|
1219
|
+
*/
|
|
1220
|
+
@Input()
|
|
1221
|
+
indexes: string[] = [];
|
|
1222
|
+
|
|
1223
|
+
/**
|
|
1224
|
+
* @description Subject for debouncing repository observation events.
|
|
1225
|
+
* @summary RxJS Subject that collects repository change events and emits them after
|
|
1226
|
+
* a debounce period. This prevents multiple rapid repository changes from triggering
|
|
1227
|
+
* multiple list refresh operations, improving performance and user experience.
|
|
1228
|
+
*
|
|
1229
|
+
* @private
|
|
1230
|
+
* @type {Subject<any>}
|
|
1231
|
+
*/
|
|
1232
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
1233
|
+
protected repositoryObserverSubject: Subject<any> = new Subject<any>();
|
|
1234
|
+
|
|
1235
|
+
/**
|
|
1236
|
+
* @description Observer object for repository change notifications.
|
|
1237
|
+
* @summary Implements the Observer interface to receive notifications when the
|
|
1238
|
+
* underlying data repository changes. This enables automatic list updates when
|
|
1239
|
+
* data is created, updated, or deleted through the repository.
|
|
1240
|
+
*
|
|
1241
|
+
* @private
|
|
1242
|
+
* @type {Observer}
|
|
1243
|
+
*/
|
|
1244
|
+
protected repositoryObserver!: Observer;
|
|
1245
|
+
|
|
1246
|
+
protected destroySubscriptions$ = new Subject<void>();
|
|
1247
|
+
|
|
1248
|
+
override async initialize(): Promise<void> {
|
|
1249
|
+
<span class="missing-if-branch" title="if path not taken" >I</span>if (this.repository) {
|
|
1250
|
+
<span class="cstat-no" title="statement not covered" > if (this.filter) {</span>
|
|
1251
|
+
const value = <span class="cstat-no" title="statement not covered" >!this.modelId || !`${this.modelId}`.trim().length ? null : this.modelId;</span>
|
|
1252
|
+
<span class="cstat-no" title="statement not covered" > <span class="missing-if-branch" title="if path not taken" >I</span>if (value === null) {</span>
|
|
1253
|
+
<span class="cstat-no" title="statement not covered" > this._data = [];</span>
|
|
1254
|
+
<span class="cstat-no" title="statement not covered" > return;</span>
|
|
1255
|
+
}
|
|
1256
|
+
<span class="cstat-no" title="statement not covered" > this._data = await this.query(this.filter.eq(value as PrimaryKeyType));</span>
|
|
1257
|
+
<span class="cstat-no" title="statement not covered" > <span class="missing-if-branch" title="if path not taken" >I</span>if (this._data) {</span>
|
|
1258
|
+
<span class="cstat-no" title="statement not covered" > await this.refresh();</span>
|
|
1259
|
+
}
|
|
1260
|
+
} else {
|
|
1261
|
+
// this._data = await this.read(this.modelId as PrimaryKeyType);
|
|
1262
|
+
// if (String(this.modelName) === this.model?.constructor.name) {
|
|
1263
|
+
// const model = await this.repository.read(this.modelId as PrimaryKeyType);
|
|
1264
|
+
// if (model) {
|
|
1265
|
+
// await this.refresh(model);
|
|
1266
|
+
// }
|
|
1267
|
+
// }
|
|
1268
|
+
}
|
|
1269
|
+
}
|
|
1270
|
+
}
|
|
1271
|
+
|
|
1272
|
+
<span class="fstat-no" title="function not covered" > set c</span>ontext(context: DecafRepository<M>) {
|
|
1273
|
+
<span class="cstat-no" title="statement not covered" > this._context = context;</span>
|
|
1274
|
+
}
|
|
1275
|
+
|
|
1276
|
+
<span class="fstat-no" title="function not covered" > from(</span>repository: IRepository<M>): NgxRepositoryDirective<M> {
|
|
1277
|
+
<span class="cstat-no" title="statement not covered" > this.context = repository as DecafRepository<M>;</span>
|
|
1278
|
+
<span class="cstat-no" title="statement not covered" > return this;</span>
|
|
1279
|
+
}
|
|
1280
|
+
|
|
1281
|
+
<span class="fstat-no" title="function not covered" > override get r</span>epository(): DecafRepository<M> {
|
|
1282
|
+
<span class="cstat-no" title="statement not covered" > <span class="missing-if-branch" title="if path not taken" >I</span>if (!this._context) {</span>
|
|
1283
|
+
<span class="cstat-no" title="statement not covered" > return super.repository as DecafRepository<M>;</span>
|
|
1284
|
+
}
|
|
1285
|
+
<span class="cstat-no" title="statement not covered" > return this._context;</span>
|
|
1286
|
+
}
|
|
1287
|
+
|
|
1288
|
+
override async refresh(model?: unknown): Promise<void> {
|
|
1289
|
+
<span class="missing-if-branch" title="if path not taken" >I</span>if (this.repository) {
|
|
1290
|
+
<span class="cstat-no" title="statement not covered" > this.observe();</span>
|
|
1291
|
+
}
|
|
1292
|
+
<span class="missing-if-branch" title="if path not taken" >I</span>if (model && <span class="branch-1 cbranch-no" title="branch not covered" >Model.isModel(model))</span> {
|
|
1293
|
+
<span class="cstat-no" title="statement not covered" > this.model = Model.build(model as M, this.modelName);</span>
|
|
1294
|
+
<span class="cstat-no" title="statement not covered" > this._data = model;</span>
|
|
1295
|
+
}
|
|
1296
|
+
}
|
|
1297
|
+
|
|
1298
|
+
<span class="fstat-no" title="function not covered" > observe(</span>) {
|
|
1299
|
+
<span class="cstat-no" title="statement not covered" > <span class="missing-if-branch" title="if path not taken" >I</span>if (!this.repositoryObserver) {</span>
|
|
1300
|
+
<span class="cstat-no" title="statement not covered" > this.repositoryObserver = {</span>
|
|
1301
|
+
refresh: <span class="fstat-no" title="function not covered" >async </span>(...args) => <span class="cstat-no" title="statement not covered" >this.handleRepositoryRefresh(...args),</span>
|
|
1302
|
+
};
|
|
1303
|
+
<span class="cstat-no" title="statement not covered" > try {</span>
|
|
1304
|
+
// const observerHandler = (this._repository as DecafRepository<Model>)['observerHandler'];
|
|
1305
|
+
// if (!observerHandler)
|
|
1306
|
+
// (this._repository as DecafRepository<Model>).observe(this.repositoryObserver);
|
|
1307
|
+
const observerHandler = <span class="cstat-no" title="statement not covered" >this.repository?.['observerHandler'] as { observers: Observer[] } | undefined;</span>
|
|
1308
|
+
<span class="cstat-no" title="statement not covered" > <span class="missing-if-branch" title="if path not taken" >I</span>if (!observerHandler?.observers?.length) {</span>
|
|
1309
|
+
<span class="cstat-no" title="statement not covered" > this.repository?.observe(this.repositoryObserver);</span>
|
|
1310
|
+
<span class="cstat-no" title="statement not covered" > this.log.for(this.observe).info(`Registered repository observer for model ${this.modelName}`);</span>
|
|
1311
|
+
|
|
1312
|
+
<span class="cstat-no" title="statement not covered" > this.repositoryObserverSubject</span>
|
|
1313
|
+
.pipe(debounceTime(100), shareReplay(1), takeUntil(this.destroySubscriptions$))
|
|
1314
|
+
.subscribe(<span class="fstat-no" title="function not covered" >([</span>model, action, uid, data]) => <span class="cstat-no" title="statement not covered" >this.handleObserveEvent(data, model, action, uid))</span>;
|
|
1315
|
+
}
|
|
1316
|
+
} catch (error: unknown) {
|
|
1317
|
+
<span class="cstat-no" title="statement not covered" > this.log.info((error as Error)?.message);</span>
|
|
1318
|
+
}
|
|
1319
|
+
}
|
|
1320
|
+
}
|
|
1321
|
+
|
|
1322
|
+
protected <span class="fstat-no" title="function not covered" >buildCondition(</span>attr?: keyof M): Condition<M> {
|
|
1323
|
+
<span class="cstat-no" title="statement not covered" > <span class="missing-if-branch" title="if path not taken" >I</span>if (!attr) {</span>
|
|
1324
|
+
<span class="cstat-no" title="statement not covered" > attr = (this.filterBy || this.pk) as keyof M;</span>
|
|
1325
|
+
}
|
|
1326
|
+
const condition = <span class="cstat-no" title="statement not covered" >this.filter || Condition.attribute<M>(attr);</span>
|
|
1327
|
+
<span class="cstat-no" title="statement not covered" > <span class="missing-if-branch" title="if path not taken" >I</span>if (!this.repository) {</span>
|
|
1328
|
+
const repo = <span class="cstat-no" title="statement not covered" >getModelAndRepository(Model.tableName(this.model as Model));</span>
|
|
1329
|
+
<span class="cstat-no" title="statement not covered" > <span class="missing-if-branch" title="if path not taken" >I</span>if (repo) {</span>
|
|
1330
|
+
<span class="cstat-no" title="statement not covered" > this._repository = repo.repository as DecafRepository<M>;</span>
|
|
1331
|
+
}
|
|
1332
|
+
}
|
|
1333
|
+
const type = <span class="cstat-no" title="statement not covered" >this.getModelPropertyType(this.repository.class, attr as keyof M);</span>
|
|
1334
|
+
<span class="cstat-no" title="statement not covered" > <span class="missing-if-branch" title="if path not taken" >I</span>if (this.modelId) {</span>
|
|
1335
|
+
<span class="cstat-no" title="statement not covered" > return condition.eq(</span>
|
|
1336
|
+
[Primitives.NUMBER, Primitives.BIGINT].includes(type as Primitives)
|
|
1337
|
+
? Number(this.modelId)
|
|
1338
|
+
: (this.modelId as PrimaryKeyType)
|
|
1339
|
+
);
|
|
1340
|
+
}
|
|
1341
|
+
<span class="cstat-no" title="statement not covered" > return condition.dif(null);</span>
|
|
1342
|
+
}
|
|
1343
|
+
|
|
1344
|
+
<span class="fstat-no" title="function not covered" > async </span>read(uid: PrimaryKeyType): Promise<M> {
|
|
1345
|
+
<span class="cstat-no" title="statement not covered" > return (await this.repository.read(uid)) as M;</span>
|
|
1346
|
+
}
|
|
1347
|
+
|
|
1348
|
+
<span class="fstat-no" title="function not covered" > async </span>delete(data: PrimaryKeyType | PrimaryKeyType[] | M[], pk: PrimaryKeyType): Promise<void> {
|
|
1349
|
+
<span class="cstat-no" title="statement not covered" > if (Array.isArray(data)) {</span>
|
|
1350
|
+
<span class="cstat-no" title="statement not covered" > <span class="missing-if-branch" title="if path not taken" >I</span>if (pk && this._context) {</span>
|
|
1351
|
+
<span class="cstat-no" title="statement not covered" > pk = Model.pk(this._context.class) as PrimaryKeyType;</span>
|
|
1352
|
+
}
|
|
1353
|
+
<span class="cstat-no" title="statement not covered" > data = data.map(<span class="fstat-no" title="function not covered" >(i</span>tem) => (<span class="cstat-no" title="statement not covered" >item as KeyValue)[pk as string | number])</span>.filter(Boolean) as PrimaryKeyType[];</span>
|
|
1354
|
+
} else {
|
|
1355
|
+
<span class="cstat-no" title="statement not covered" > data = [data] as PrimaryKeyType[];</span>
|
|
1356
|
+
}
|
|
1357
|
+
<span class="cstat-no" title="statement not covered" > await this.repository.deleteAll(data as PrimaryKeyType[]);</span>
|
|
1358
|
+
}
|
|
1359
|
+
|
|
1360
|
+
<span class="fstat-no" title="function not covered" > async </span>query(
|
|
1361
|
+
condition?: Condition<M>,
|
|
1362
|
+
sortBy: keyof M = (<span class="branch-0 cbranch-no" title="branch not covered" >this.sortBy || this.pk)</span> as keyof M,
|
|
1363
|
+
sortDirection: OrderDirection = <span class="branch-0 cbranch-no" title="branch not covered" >this.sortDirection</span>
|
|
1364
|
+
): Promise<M[]> {
|
|
1365
|
+
<span class="cstat-no" title="statement not covered" > <span class="missing-if-branch" title="if path not taken" >I</span>if (!condition) {</span>
|
|
1366
|
+
<span class="cstat-no" title="statement not covered" > condition = this.buildCondition();</span>
|
|
1367
|
+
}
|
|
1368
|
+
<span class="cstat-no" title="statement not covered" > try {</span>
|
|
1369
|
+
<span class="cstat-no" title="statement not covered" > return (await this.repository.query(condition as Condition<M>, sortBy, sortDirection)) as M[];</span>
|
|
1370
|
+
} catch (error: unknown) {
|
|
1371
|
+
<span class="cstat-no" title="statement not covered" > this.log.for(this).error((error as Error)?.message || String(error));</span>
|
|
1372
|
+
<span class="cstat-no" title="statement not covered" > return [];</span>
|
|
1373
|
+
}
|
|
1374
|
+
// const paginator = await this.repository
|
|
1375
|
+
// .select()
|
|
1376
|
+
// .where(condition)
|
|
1377
|
+
// .orderBy([(this.sortBy || this.pk) as keyof M, sortDirection])
|
|
1378
|
+
// .paginate(250);
|
|
1379
|
+
// if (paginator.total === 0) {
|
|
1380
|
+
// return [];
|
|
1381
|
+
// }
|
|
1382
|
+
// return await paginator.page(1);
|
|
1383
|
+
}
|
|
1384
|
+
|
|
1385
|
+
<span class="fstat-no" title="function not covered" > async </span>paginate(
|
|
1386
|
+
limit: number = <span class="branch-0 cbranch-no" title="branch not covered" >this.limit,</span>
|
|
1387
|
+
sortDirection: OrderDirection = <span class="branch-0 cbranch-no" title="branch not covered" >this.sortDirection,</span>
|
|
1388
|
+
condition?: Condition<M>
|
|
1389
|
+
): Promise<Paginator<M>> {
|
|
1390
|
+
<span class="cstat-no" title="statement not covered" > <span class="missing-if-branch" title="if path not taken" >I</span>if (!condition) {</span>
|
|
1391
|
+
<span class="cstat-no" title="statement not covered" > condition = this.buildCondition();</span>
|
|
1392
|
+
}
|
|
1393
|
+
<span class="cstat-no" title="statement not covered" > return await this.repository</span>
|
|
1394
|
+
.select()
|
|
1395
|
+
.where(condition)
|
|
1396
|
+
.orderBy([(this.sortBy || this.pk) as keyof M, sortDirection])
|
|
1397
|
+
.paginate(limit);
|
|
1398
|
+
}
|
|
1399
|
+
|
|
1400
|
+
protected <span class="fstat-no" title="function not covered" >async </span>transactionBegin<M extends Model>(
|
|
1401
|
+
data: M,
|
|
1402
|
+
repository: DecafRepository<M>,
|
|
1403
|
+
operation: CrudOperations
|
|
1404
|
+
): Promise<M | M[] | PrimaryKeyType | undefined> {
|
|
1405
|
+
<span class="cstat-no" title="statement not covered" > try {</span>
|
|
1406
|
+
const hook = <span class="cstat-no" title="statement not covered" >`before${operation.charAt(0).toUpperCase() + operation.slice(1)}`;</span>
|
|
1407
|
+
const handler = <span class="cstat-no" title="statement not covered" >this.handlers?.[hook] || undefined;</span>
|
|
1408
|
+
const model = <span class="cstat-no" title="statement not covered" >this.buildTransactionModel(data || {}, repository, operation);</span>
|
|
1409
|
+
<span class="cstat-no" title="statement not covered" > <span class="missing-if-branch" title="if path not taken" >I</span>if (handler && typeof handler === 'function') {</span>
|
|
1410
|
+
const result = (<span class="cstat-no" title="statement not covered" >await handler.bind(this)(model, repository, this.modelId))</span> as M | boolean;
|
|
1411
|
+
<span class="cstat-no" title="statement not covered" > <span class="missing-if-branch" title="if path not taken" >I</span>if (result === false) {</span>
|
|
1412
|
+
<span class="cstat-no" title="statement not covered" > return undefined;</span>
|
|
1413
|
+
}
|
|
1414
|
+
}
|
|
1415
|
+
<span class="cstat-no" title="statement not covered" > return model as M;</span>
|
|
1416
|
+
} catch (error: unknown) {
|
|
1417
|
+
<span class="cstat-no" title="statement not covered" > this.log.for(this).error((error as Error)?.message || String(error));</span>
|
|
1418
|
+
<span class="cstat-no" title="statement not covered" > return undefined;</span>
|
|
1419
|
+
}
|
|
1420
|
+
}
|
|
1421
|
+
|
|
1422
|
+
protected <span class="fstat-no" title="function not covered" >async </span>transactionEnd<M extends Model>(
|
|
1423
|
+
model: M,
|
|
1424
|
+
repository: DecafRepository<M>,
|
|
1425
|
+
operation: CrudOperations
|
|
1426
|
+
): Promise<TransactionResponse<M>> {
|
|
1427
|
+
<span class="cstat-no" title="statement not covered" > try {</span>
|
|
1428
|
+
const hook = <span class="cstat-no" title="statement not covered" >`after${operation.charAt(0).toUpperCase() + operation.slice(1)}`;</span>
|
|
1429
|
+
const handler = <span class="cstat-no" title="statement not covered" >this.handlers?.[hook] || undefined;</span>
|
|
1430
|
+
<span class="cstat-no" title="statement not covered" > <span class="missing-if-branch" title="if path not taken" >I</span>if (handler && typeof handler === 'function') {</span>
|
|
1431
|
+
const result = (<span class="cstat-no" title="statement not covered" >await handler.bind(this)(model, repository, this.modelId))</span> as M | boolean;
|
|
1432
|
+
<span class="cstat-no" title="statement not covered" > <span class="missing-if-branch" title="if path not taken" >I</span>if (result === false) {</span>
|
|
1433
|
+
<span class="cstat-no" title="statement not covered" > return undefined;</span>
|
|
1434
|
+
}
|
|
1435
|
+
<span class="cstat-no" title="statement not covered" > return result as M;</span>
|
|
1436
|
+
}
|
|
1437
|
+
<span class="cstat-no" title="statement not covered" > return model;</span>
|
|
1438
|
+
} catch (error: unknown) {
|
|
1439
|
+
<span class="cstat-no" title="statement not covered" > this.log.for(this).error((error as Error)?.message || String(error));</span>
|
|
1440
|
+
<span class="cstat-no" title="statement not covered" > return undefined;</span>
|
|
1441
|
+
}
|
|
1442
|
+
}
|
|
1443
|
+
|
|
1444
|
+
/**
|
|
1445
|
+
* @description Parses and transforms form data for repository operations.
|
|
1446
|
+
* @summary Converts raw form data into the appropriate format for repository operations.
|
|
1447
|
+
* For DELETE operations, returns the primary key value (string or number). For CREATE
|
|
1448
|
+
* and UPDATE operations, builds a complete model instance using the Model.build method
|
|
1449
|
+
* with proper primary key assignment for updates.
|
|
1450
|
+
*
|
|
1451
|
+
* @param {Partial<Model>} data - The raw form data to be processed
|
|
1452
|
+
* @return {Model | string | number} Processed data ready for repository operations
|
|
1453
|
+
* @private
|
|
1454
|
+
*/
|
|
1455
|
+
protected <span class="fstat-no" title="function not covered" >buildTransactionModel<</span>M extends Model>(
|
|
1456
|
+
data: KeyValue | KeyValue[],
|
|
1457
|
+
repository: DecafRepository<M>,
|
|
1458
|
+
operation?: OperationKeys
|
|
1459
|
+
): TransactionResponse<M> {
|
|
1460
|
+
<span class="cstat-no" title="statement not covered" > <span class="missing-if-branch" title="if path not taken" >I</span>if (!operation) {</span>
|
|
1461
|
+
<span class="cstat-no" title="statement not covered" > operation = this.operation as OperationKeys;</span>
|
|
1462
|
+
}
|
|
1463
|
+
<span class="cstat-no" title="statement not covered" > operation = (</span>
|
|
1464
|
+
[OperationKeys.READ, OperationKeys.DELETE].includes(operation) ? OperationKeys.DELETE : operation.toLowerCase()
|
|
1465
|
+
) as OperationKeys;
|
|
1466
|
+
|
|
1467
|
+
<span class="cstat-no" title="statement not covered" > <span class="missing-if-branch" title="if path not taken" >I</span>if (Array.isArray(data)) <span class="cstat-no" title="statement not covered" >return data.map(<span class="fstat-no" title="function not covered" >(i</span>tem) => <span class="cstat-no" title="statement not covered" >this.buildTransactionModel(item, repository, operation))</span> as M[];</span></span>
|
|
1468
|
+
|
|
1469
|
+
const pk = <span class="cstat-no" title="statement not covered" >Model.pk(repository.class as Constructor<M>) as string;</span>
|
|
1470
|
+
const pkType = <span class="cstat-no" title="statement not covered" >Metadata.type(repository.class as Constructor<M>, pk as string).name;</span>
|
|
1471
|
+
const modelId = (<span class="cstat-no" title="statement not covered" >this.modelId || data[pk])</span> as Primitives;
|
|
1472
|
+
<span class="cstat-no" title="statement not covered" > <span class="missing-if-branch" title="if path not taken" >I</span>if (!this.modelId) {</span>
|
|
1473
|
+
<span class="cstat-no" title="statement not covered" > this.modelId = modelId;</span>
|
|
1474
|
+
}
|
|
1475
|
+
const uid = <span class="cstat-no" title="statement not covered" >this.parsePkValue(operation === OperationKeys.DELETE ? data[pk] : modelId, pkType);</span>
|
|
1476
|
+
<span class="cstat-no" title="statement not covered" > <span class="missing-if-branch" title="if path not taken" >I</span>if (operation !== OperationKeys.DELETE) {</span>
|
|
1477
|
+
const properties = <span class="cstat-no" title="statement not covered" >Metadata.properties(repository.class as Constructor<M>) as string[];</span>
|
|
1478
|
+
const relation =
|
|
1479
|
+
<span class="cstat-no" title="statement not covered" > pk === this.pk ? {} : properties.includes(this.pk) && !data[this.pk] ? { [this.pk]: modelId } : {};</span>
|
|
1480
|
+
<span class="cstat-no" title="statement not covered" > <span class="missing-if-branch" title="if path not taken" >I</span>if (!String(data?.[pk] || '').trim().length) {</span>
|
|
1481
|
+
<span class="cstat-no" title="statement not covered" > data[pk] = undefined;</span>
|
|
1482
|
+
}
|
|
1483
|
+
<span class="cstat-no" title="statement not covered" > return Model.build(</span>
|
|
1484
|
+
Object.assign(data || {}, relation, modelId && !data[this.pk] ? { [this.pk]: modelId } : {}),
|
|
1485
|
+
repository.class.name
|
|
1486
|
+
) as M;
|
|
1487
|
+
}
|
|
1488
|
+
<span class="cstat-no" title="statement not covered" > return uid as PrimaryKeyType;</span>
|
|
1489
|
+
}
|
|
1490
|
+
|
|
1491
|
+
protected <span class="fstat-no" title="function not covered" >getIndexes(</span>model: M): string[] {
|
|
1492
|
+
<span class="cstat-no" title="statement not covered" > this.indexes = Object.keys(Model.indexes((model || this.model) as Model) || {});</span>
|
|
1493
|
+
<span class="cstat-no" title="statement not covered" > return this.indexes;</span>
|
|
1494
|
+
}
|
|
1495
|
+
|
|
1496
|
+
protected <span class="fstat-no" title="function not covered" >parsePkValue(</span>value: PrimaryKeyType, type: string): PrimaryKeyType {
|
|
1497
|
+
<span class="cstat-no" title="statement not covered" > return [Primitives.NUMBER, Primitives.BIGINT].includes(type.toLowerCase() as Primitives) ? Number(value) : value;</span>
|
|
1498
|
+
}
|
|
1499
|
+
|
|
1500
|
+
protected <span class="fstat-no" title="function not covered" >getModelConstrutor(</span>model: string | Model): Constructor<Model> | undefined {
|
|
1501
|
+
<span class="cstat-no" title="statement not covered" > return Model.get(typeof model === Primitives.STRING ? String(model) : model?.constructor.name);</span>
|
|
1502
|
+
}
|
|
1503
|
+
|
|
1504
|
+
protected <span class="fstat-no" title="function not covered" >getModelProperties(</span>clazz: Constructor<M>): (keyof M)[] {
|
|
1505
|
+
<span class="cstat-no" title="statement not covered" > return Metadata.properties(clazz) as (keyof M)[];</span>
|
|
1506
|
+
}
|
|
1507
|
+
|
|
1508
|
+
protected <span class="fstat-no" title="function not covered" >getModelPropertyType(</span>constructor: Constructor<M> | string, prop: keyof M): string {
|
|
1509
|
+
<span class="cstat-no" title="statement not covered" > try {</span>
|
|
1510
|
+
<span class="cstat-no" title="statement not covered" > return Metadata.type(constructor as Constructor<M>, prop as string)?.name;</span>
|
|
1511
|
+
} catch (error: unknown) {
|
|
1512
|
+
<span class="cstat-no" title="statement not covered" > this.log.for(this).info(`${(error as Error)?.message || String(error)}. Tryng get with table Name`);</span>
|
|
1513
|
+
<span class="cstat-no" title="statement not covered" > constructor = Model.get(Model.tableName(this.repository.class as Constructor<M>) as string) as Constructor<M>;</span>
|
|
1514
|
+
<span class="cstat-no" title="statement not covered" > return Metadata.type(constructor, prop as string)?.name;</span>
|
|
1515
|
+
}
|
|
1516
|
+
}
|
|
1517
|
+
|
|
1518
|
+
protected <span class="fstat-no" title="function not covered" >getModelPkType(</span>clazz: Constructor<M>): string {
|
|
1519
|
+
<span class="cstat-no" title="statement not covered" > return this.getModelPropertyType(clazz, Model.pk(clazz) as keyof M);</span>
|
|
1520
|
+
}
|
|
1521
|
+
|
|
1522
|
+
/**
|
|
1523
|
+
* @description Handles repository observation events with debouncing.
|
|
1524
|
+
* @summary Processes repository change notifications and routes them appropriately.
|
|
1525
|
+
* For CREATE events with a UID, handles them immediately. For other events,
|
|
1526
|
+
* passes them to the debounced observer subject to prevent excessive updates.
|
|
1527
|
+
*
|
|
1528
|
+
* @param {...unknown[]} args - The repository event arguments including table, event type, and UID
|
|
1529
|
+
* @returns {Promise<void>}
|
|
1530
|
+
*/
|
|
1531
|
+
<span class="fstat-no" title="function not covered" > async </span>handleRepositoryRefresh(...args: unknown[]): Promise<void> {
|
|
1532
|
+
const [model, action, uid, data] = <span class="cstat-no" title="statement not covered" >args;</span>
|
|
1533
|
+
<span class="cstat-no" title="statement not covered" > <span class="missing-if-branch" title="if path not taken" >I</span>if ([OperationKeys.CREATE, OperationKeys.DELETE].includes(action as OperationKeys))</span>
|
|
1534
|
+
<span class="cstat-no" title="statement not covered" > return this.handleObserveEvent(data, model, action, uid as string | number, data);</span>
|
|
1535
|
+
<span class="cstat-no" title="statement not covered" > return this.repositoryObserverSubject.next(args);</span>
|
|
1536
|
+
}
|
|
1537
|
+
|
|
1538
|
+
<span class="fstat-no" title="function not covered" > async </span>handleObserveEvent(...args: unknown[]): Promise<void> {
|
|
1539
|
+
<span class="cstat-no" title="statement not covered" > this.log.for(this.handleObserveEvent).info(`Repository change observed with args: ${args}`);</span>
|
|
1540
|
+
}
|
|
1541
|
+
}
|
|
1542
|
+
</pre></td></tr></table></pre>
|
|
1543
|
+
|
|
1544
|
+
<div class='push'></div><!-- for sticky footer -->
|
|
1545
|
+
</div><!-- /wrapper -->
|
|
1546
|
+
<div class='footer quiet pad2 space-top1 center small'>
|
|
1547
|
+
Code coverage generated by
|
|
1548
|
+
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
|
|
1549
|
+
at 2026-02-25T10:45:48.506Z
|
|
1550
|
+
</div>
|
|
1551
|
+
<script src="../../../prettify.js"></script>
|
|
1552
|
+
<script>
|
|
1553
|
+
window.onload = function () {
|
|
1554
|
+
prettyPrint();
|
|
1555
|
+
};
|
|
1556
|
+
</script>
|
|
1557
|
+
<script src="../../../sorter.js"></script>
|
|
1558
|
+
<script src="../../../block-navigation.js"></script>
|
|
1559
|
+
</body>
|
|
1560
|
+
</html>
|
|
1561
|
+
|