@cparra/apexdocs 2.25.0-alpha.8 → 2.25.0
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/.eslintrc.js +12 -0
- package/README.md +12 -73
- package/apexdocs.config.ts +13 -0
- package/docs/.nojekyll +0 -0
- package/docs/README.md +1 -0
- package/docs/index.html +22 -0
- package/docs/restapi.json +589 -0
- package/docs/types/Classes/nspc.AnotherInterface.md +22 -0
- package/docs/types/Classes/nspc.ChildClass.md +97 -0
- package/docs/types/Main/nspc.GroupedClass.md +10 -0
- package/docs/types/Main/nspc.SampleClass.md +190 -0
- package/docs/types/Misc-Group/nspc.EscapedAnnotations.md +4 -0
- package/docs/types/Misc-Group/nspc.GrandparentClass.md +13 -0
- package/docs/types/Misc-Group/nspc.InterfaceWithInheritance.md +29 -0
- package/docs/types/Misc-Group/nspc.MemberGrouping.md +13 -0
- package/docs/types/Misc-Group/nspc.ParentClass.md +37 -0
- package/docs/types/Misc-Group/nspc.Reference1.md +18 -0
- package/docs/types/Misc-Group/nspc.Reference2.md +12 -0
- package/docs/types/Misc-Group/nspc.Reference3.md +7 -0
- package/docs/types/Misc-Group/nspc.Reference4.md +7 -0
- package/docs/types/Misc-Group/nspc.Reference5.md +7 -0
- package/docs/types/Misc-Group/nspc.Reference6.md +9 -0
- package/docs/types/Misc-Group/nspc.Reference7.md +7 -0
- package/docs/types/Misc-Group/nspc.SampleClassWithoutModifier.md +11 -0
- package/docs/types/Misc-Group/nspc.SampleRestResource.md +211 -0
- package/docs/types/Misc-Group/nspc.SampleRestResourceWithInnerClass.md +34 -0
- package/docs/types/Misc-Group/nspc.SampleRestResourceWithoutApexDocs.md +14 -0
- package/docs/types/README.md +97 -0
- package/docs/types/Sample-Interfaces/nspc.SampleInterface.md +23 -0
- package/examples/includes/header.md +3 -0
- package/jest.config.js +1 -6
- package/lib/application/Apexdocs.d.ts +13 -0
- package/lib/application/Apexdocs.js +77 -0
- package/lib/application/Apexdocs.js.map +1 -0
- package/lib/cli/generate.d.ts +2 -0
- package/lib/cli/generate.js +131 -0
- package/lib/cli/generate.js.map +1 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +18 -0
- package/lib/index.js.map +1 -0
- package/lib/model/apex-bundle.d.ts +6 -0
- package/lib/model/apex-bundle.js +11 -0
- package/lib/model/apex-bundle.js.map +1 -0
- package/lib/model/apex-type-wrappers/ClassMirrorWrapper.d.ts +7 -0
- package/lib/model/apex-type-wrappers/ClassMirrorWrapper.js +14 -0
- package/lib/model/apex-type-wrappers/ClassMirrorWrapper.js.map +1 -0
- package/lib/model/apex-type-wrappers/MethodMirrorWrapper.d.ts +7 -0
- package/lib/model/apex-type-wrappers/MethodMirrorWrapper.js +12 -0
- package/lib/model/apex-type-wrappers/MethodMirrorWrapper.js.map +1 -0
- package/lib/model/inheritance.d.ts +8 -0
- package/lib/model/inheritance.js +3 -0
- package/lib/model/inheritance.js.map +1 -0
- package/lib/model/manifest-diff.d.ts +27 -0
- package/lib/model/manifest-diff.js +69 -0
- package/lib/model/manifest-diff.js.map +1 -0
- package/lib/model/manifest.d.ts +22 -0
- package/lib/model/manifest.js +47 -0
- package/lib/model/manifest.js.map +1 -0
- package/lib/model/markdown-file.d.ts +16 -0
- package/lib/model/markdown-file.js +107 -0
- package/lib/model/markdown-file.js.map +1 -0
- package/lib/model/markdown-generation-util/doc-comment-annotation-util.d.ts +8 -0
- package/lib/model/markdown-generation-util/doc-comment-annotation-util.js +44 -0
- package/lib/model/markdown-generation-util/doc-comment-annotation-util.js.map +1 -0
- package/lib/model/markdown-generation-util/field-declaration-util.d.ts +3 -0
- package/lib/model/markdown-generation-util/field-declaration-util.js +55 -0
- package/lib/model/markdown-generation-util/field-declaration-util.js.map +1 -0
- package/lib/model/markdown-generation-util/index.d.ts +3 -0
- package/lib/model/markdown-generation-util/index.js +20 -0
- package/lib/model/markdown-generation-util/index.js.map +1 -0
- package/lib/model/markdown-generation-util/method-declaration-util.d.ts +4 -0
- package/lib/model/markdown-generation-util/method-declaration-util.js +115 -0
- package/lib/model/markdown-generation-util/method-declaration-util.js.map +1 -0
- package/lib/model/markdown-generation-util/type-declaration-util.d.ts +3 -0
- package/lib/model/markdown-generation-util/type-declaration-util.js +82 -0
- package/lib/model/markdown-generation-util/type-declaration-util.js.map +1 -0
- package/lib/model/markdown-home-file.d.ts +11 -0
- package/lib/model/markdown-home-file.js +54 -0
- package/lib/model/markdown-home-file.js.map +1 -0
- package/lib/model/markdown-type-file.d.ts +26 -0
- package/lib/model/markdown-type-file.js +134 -0
- package/lib/model/markdown-type-file.js.map +1 -0
- package/lib/model/openapi/apex-doc-types.d.ts +19 -0
- package/lib/model/openapi/apex-doc-types.js +5 -0
- package/lib/model/openapi/apex-doc-types.js.map +1 -0
- package/lib/model/openapi/open-api-types.d.ts +93 -0
- package/lib/model/openapi/open-api-types.js +3 -0
- package/lib/model/openapi/open-api-types.js.map +1 -0
- package/lib/model/openapi/open-api.d.ts +16 -0
- package/lib/model/openapi/open-api.js +34 -0
- package/lib/model/openapi/open-api.js.map +1 -0
- package/lib/model/openapi/openapi-type-file.d.ts +7 -0
- package/lib/model/openapi/openapi-type-file.js +17 -0
- package/lib/model/openapi/openapi-type-file.js.map +1 -0
- package/lib/model/outputFile.d.ts +10 -0
- package/lib/model/outputFile.js +29 -0
- package/lib/model/outputFile.js.map +1 -0
- package/lib/model/types-repository.d.ts +16 -0
- package/lib/model/types-repository.js +54 -0
- package/lib/model/types-repository.js.map +1 -0
- package/lib/service/apex-file-reader.d.ts +14 -0
- package/lib/service/apex-file-reader.js +46 -0
- package/lib/service/apex-file-reader.js.map +1 -0
- package/lib/service/file-system.d.ts +14 -0
- package/lib/service/file-system.js +25 -0
- package/lib/service/file-system.js.map +1 -0
- package/lib/service/file-writer.d.ts +6 -0
- package/lib/service/file-writer.js +34 -0
- package/lib/service/file-writer.js.map +1 -0
- package/lib/service/manifest-factory.d.ts +10 -0
- package/lib/service/manifest-factory.js +14 -0
- package/lib/service/manifest-factory.js.map +1 -0
- package/lib/service/metadata-processor.d.ts +3 -0
- package/lib/service/metadata-processor.js +17 -0
- package/lib/service/metadata-processor.js.map +1 -0
- package/lib/service/parser.d.ts +21 -0
- package/lib/service/parser.js +135 -0
- package/lib/service/parser.js.map +1 -0
- package/lib/service/state.d.ts +9 -0
- package/lib/service/state.js +20 -0
- package/lib/service/state.js.map +1 -0
- package/lib/service/walkers/class-walker.d.ts +4 -0
- package/lib/service/walkers/class-walker.js +33 -0
- package/lib/service/walkers/class-walker.js.map +1 -0
- package/lib/service/walkers/enum-walker.d.ts +4 -0
- package/lib/service/walkers/enum-walker.js +11 -0
- package/lib/service/walkers/enum-walker.js.map +1 -0
- package/lib/service/walkers/interface-walker.d.ts +4 -0
- package/lib/service/walkers/interface-walker.js +15 -0
- package/lib/service/walkers/interface-walker.js.map +1 -0
- package/lib/service/walkers/walker-factory.d.ts +5 -0
- package/lib/service/walkers/walker-factory.js +21 -0
- package/lib/service/walkers/walker-factory.js.map +1 -0
- package/lib/service/walkers/walker.d.ts +19 -0
- package/lib/service/walkers/walker.js +17 -0
- package/lib/service/walkers/walker.js.map +1 -0
- package/lib/settings.d.ts +64 -0
- package/lib/settings.js +89 -0
- package/lib/settings.js.map +1 -0
- package/lib/test-helpers/AnnotationBuilder.d.ts +12 -0
- package/lib/test-helpers/AnnotationBuilder.js +31 -0
- package/lib/test-helpers/AnnotationBuilder.js.map +1 -0
- package/lib/test-helpers/ClassMirrorBuilder.d.ts +18 -0
- package/lib/test-helpers/ClassMirrorBuilder.js +54 -0
- package/lib/test-helpers/ClassMirrorBuilder.js.map +1 -0
- package/lib/test-helpers/DocCommentAnnotationBuilder.d.ts +8 -0
- package/lib/test-helpers/DocCommentAnnotationBuilder.js +26 -0
- package/lib/test-helpers/DocCommentAnnotationBuilder.js.map +1 -0
- package/lib/test-helpers/DocCommentBuilder.d.ts +12 -0
- package/lib/test-helpers/DocCommentBuilder.js +38 -0
- package/lib/test-helpers/DocCommentBuilder.js.map +1 -0
- package/lib/test-helpers/FieldMirrorBuilder.d.ts +18 -0
- package/lib/test-helpers/FieldMirrorBuilder.js +54 -0
- package/lib/test-helpers/FieldMirrorBuilder.js.map +1 -0
- package/lib/test-helpers/MethodMirrorBuilder.d.ts +10 -0
- package/lib/test-helpers/MethodMirrorBuilder.js +37 -0
- package/lib/test-helpers/MethodMirrorBuilder.js.map +1 -0
- package/lib/test-helpers/SettingsBuilder.d.ts +8 -0
- package/lib/test-helpers/SettingsBuilder.js +27 -0
- package/lib/test-helpers/SettingsBuilder.js.map +1 -0
- package/lib/transpiler/factory.d.ts +6 -0
- package/lib/transpiler/factory.js +32 -0
- package/lib/transpiler/factory.js.map +1 -0
- package/lib/transpiler/file-container.d.ts +6 -0
- package/lib/transpiler/file-container.js +16 -0
- package/lib/transpiler/file-container.js.map +1 -0
- package/lib/transpiler/generator-choices.d.ts +1 -0
- package/lib/transpiler/generator-choices.js +3 -0
- package/lib/transpiler/generator-choices.js.map +1 -0
- package/lib/transpiler/markdown/class-file-generatorHelper.d.ts +8 -0
- package/lib/transpiler/markdown/class-file-generatorHelper.js +56 -0
- package/lib/transpiler/markdown/class-file-generatorHelper.js.map +1 -0
- package/lib/transpiler/markdown/docsify/docsify-docs-processor.d.ts +6 -0
- package/lib/transpiler/markdown/docsify/docsify-docs-processor.js +13 -0
- package/lib/transpiler/markdown/docsify/docsify-docs-processor.js.map +1 -0
- package/lib/transpiler/markdown/jekyll/jekyll-docsProcessor.d.ts +11 -0
- package/lib/transpiler/markdown/jekyll/jekyll-docsProcessor.js +51 -0
- package/lib/transpiler/markdown/jekyll/jekyll-docsProcessor.js.map +1 -0
- package/lib/transpiler/markdown/markdown-transpiler-base.d.ts +11 -0
- package/lib/transpiler/markdown/markdown-transpiler-base.js +24 -0
- package/lib/transpiler/markdown/markdown-transpiler-base.js.map +1 -0
- package/lib/transpiler/markdown/plain-markdown/plain-docsProcessor.d.ts +6 -0
- package/lib/transpiler/markdown/plain-markdown/plain-docsProcessor.js +14 -0
- package/lib/transpiler/markdown/plain-markdown/plain-docsProcessor.js.map +1 -0
- package/lib/transpiler/openapi/open-api-docs-processor.d.ts +13 -0
- package/lib/transpiler/openapi/open-api-docs-processor.js +75 -0
- package/lib/transpiler/openapi/open-api-docs-processor.js.map +1 -0
- package/lib/transpiler/openapi/parsers/Builder.d.ts +16 -0
- package/lib/transpiler/openapi/parsers/Builder.js +30 -0
- package/lib/transpiler/openapi/parsers/Builder.js.map +1 -0
- package/lib/transpiler/openapi/parsers/MethodParser.d.ts +20 -0
- package/lib/transpiler/openapi/parsers/MethodParser.js +167 -0
- package/lib/transpiler/openapi/parsers/MethodParser.js.map +1 -0
- package/lib/transpiler/openapi/parsers/ParameterObjectBuilder.d.ts +7 -0
- package/lib/transpiler/openapi/parsers/ParameterObjectBuilder.js +11 -0
- package/lib/transpiler/openapi/parsers/ParameterObjectBuilder.js.map +1 -0
- package/lib/transpiler/openapi/parsers/ReferenceBuilder.d.ts +39 -0
- package/lib/transpiler/openapi/parsers/ReferenceBuilder.js +226 -0
- package/lib/transpiler/openapi/parsers/ReferenceBuilder.js.map +1 -0
- package/lib/transpiler/openapi/parsers/RequestBodyBuilder.d.ts +10 -0
- package/lib/transpiler/openapi/parsers/RequestBodyBuilder.js +20 -0
- package/lib/transpiler/openapi/parsers/RequestBodyBuilder.js.map +1 -0
- package/lib/transpiler/openapi/parsers/ResponsesBuilder.d.ts +7 -0
- package/lib/transpiler/openapi/parsers/ResponsesBuilder.js +22 -0
- package/lib/transpiler/openapi/parsers/ResponsesBuilder.js.map +1 -0
- package/lib/transpiler/processor-type-transpiler.d.ts +10 -0
- package/lib/transpiler/processor-type-transpiler.js +9 -0
- package/lib/transpiler/processor-type-transpiler.js.map +1 -0
- package/lib/transpiler/transpiler.d.ts +5 -0
- package/lib/transpiler/transpiler.js +27 -0
- package/lib/transpiler/transpiler.js.map +1 -0
- package/lib/util/error-logger.d.ts +8 -0
- package/lib/util/error-logger.js +90 -0
- package/lib/util/error-logger.js.map +1 -0
- package/lib/util/logger.d.ts +21 -0
- package/lib/util/logger.js +58 -0
- package/lib/util/logger.js.map +1 -0
- package/lib/util/string-utils.d.ts +2 -0
- package/lib/util/string-utils.js +15 -0
- package/lib/util/string-utils.js.map +1 -0
- package/package.json +36 -35
- package/src/application/Apexdocs.ts +70 -17
- package/src/cli/generate.ts +131 -10
- package/src/index.ts +1 -35
- package/src/model/__tests__/manifest-diff.spec.ts +147 -0
- package/src/model/apex-bundle.ts +3 -0
- package/src/{core/openapi → model}/apex-type-wrappers/__tests__/ClassMirrorWrapper.spec.ts +3 -3
- package/src/model/inheritance.ts +7 -0
- package/src/model/manifest-diff.ts +94 -0
- package/src/model/manifest.ts +74 -0
- package/src/model/markdown-file.ts +121 -0
- package/src/model/markdown-generation-util/doc-comment-annotation-util.ts +50 -0
- package/src/model/markdown-generation-util/field-declaration-util.ts +71 -0
- package/src/model/markdown-generation-util/index.ts +3 -0
- package/src/model/markdown-generation-util/method-declaration-util.ts +166 -0
- package/src/model/markdown-generation-util/type-declaration-util.ts +91 -0
- package/src/model/markdown-home-file.ts +58 -0
- package/src/model/markdown-type-file.ts +165 -0
- package/src/{core → model}/openapi/open-api-types.ts +2 -2
- package/src/model/openapi/openapi-type-file.ts +14 -0
- package/src/model/outputFile.ts +29 -0
- package/src/{core/openapi → model}/types-repository.ts +9 -0
- package/src/service/__tests__/apex-file-reader.spec.ts +92 -0
- package/src/{core/openapi → service}/__tests__/manifest-factory.spec.ts +2 -1
- package/src/service/apex-file-reader.ts +51 -0
- package/src/service/file-writer.ts +34 -0
- package/src/{core/openapi → service}/manifest-factory.ts +3 -3
- package/src/service/metadata-processor.ts +16 -0
- package/src/{core/openapi → service}/parser.ts +9 -9
- package/src/service/state.ts +24 -0
- package/src/service/walkers/class-walker.ts +30 -0
- package/src/service/walkers/enum-walker.ts +7 -0
- package/src/service/walkers/interface-walker.ts +12 -0
- package/src/service/walkers/walker-factory.ts +19 -0
- package/src/service/walkers/walker.ts +42 -0
- package/src/settings.ts +147 -0
- package/src/test-helpers/ClassMirrorBuilder.ts +1 -14
- package/src/test-helpers/FieldMirrorBuilder.ts +1 -1
- package/src/test-helpers/MethodMirrorBuilder.ts +6 -46
- package/src/test-helpers/SettingsBuilder.ts +4 -1
- package/src/transpiler/factory.ts +33 -0
- package/src/transpiler/file-container.ts +13 -0
- package/src/transpiler/generator-choices.ts +1 -0
- package/src/transpiler/markdown/class-file-generatorHelper.ts +58 -0
- package/src/transpiler/markdown/docsify/docsify-docs-processor.ts +12 -0
- package/src/transpiler/markdown/jekyll/jekyll-docsProcessor.ts +50 -0
- package/src/transpiler/markdown/markdown-transpiler-base.ts +28 -0
- package/src/transpiler/markdown/plain-markdown/plain-docsProcessor.ts +12 -0
- package/src/{core → transpiler}/openapi/__tests__/open-api-docs-processor.spec.ts +1 -1
- package/src/{core → transpiler}/openapi/open-api-docs-processor.ts +10 -9
- package/src/{core → transpiler}/openapi/parsers/Builder.ts +3 -3
- package/src/{core → transpiler}/openapi/parsers/MethodParser.ts +6 -6
- package/src/{core → transpiler}/openapi/parsers/ParameterObjectBuilder.ts +2 -2
- package/src/{core → transpiler}/openapi/parsers/ReferenceBuilder.ts +6 -7
- package/src/{core → transpiler}/openapi/parsers/RequestBodyBuilder.ts +2 -2
- package/src/{core → transpiler}/openapi/parsers/ResponsesBuilder.ts +2 -2
- package/src/{core → transpiler}/openapi/parsers/__tests__/MethodParser.spec.ts +1 -1
- package/src/{core → transpiler}/openapi/parsers/__tests__/ParameterObjectBuilder.spec.ts +2 -2
- package/src/{core → transpiler}/openapi/parsers/__tests__/ReferenceBuilder.spec.ts +2 -2
- package/src/{core → transpiler}/openapi/parsers/__tests__/RequestBodyBuilder.spec.ts +2 -2
- package/src/{core → transpiler}/openapi/parsers/__tests__/ResponsesBuilder.spec.ts +1 -1
- package/src/transpiler/processor-type-transpiler.ts +18 -0
- package/src/{core/openapi → transpiler}/transpiler.ts +6 -2
- package/src/util/error-logger.ts +4 -4
- package/src/util/logger.ts +6 -6
- package/src/util/string-utils.ts +4 -0
- package/tsconfig.json +3 -8
- package/.github/workflows/ci.yaml +0 -22
- package/__mocks__/chalk.js +0 -12
- package/__mocks__/log-update.js +0 -6
- package/dist/cli/generate.js +0 -2976
- package/dist/defaults-DUwru49Q.js +0 -12
- package/dist/defaults-SH0Rsi5E.js +0 -11
- package/dist/index.d.ts +0 -62
- package/dist/index.js +0 -36
- package/eslint.config.mjs +0 -10
- package/examples/plain-markdown/.forceignore +0 -12
- package/examples/plain-markdown/config/project-scratch-def.json +0 -5
- package/examples/plain-markdown/docs/Miscellaneous/ns.BaseClass.md +0 -16
- package/examples/plain-markdown/docs/Miscellaneous/ns.MultiInheritanceClass.md +0 -73
- package/examples/plain-markdown/docs/Miscellaneous/ns.ParentInterface.md +0 -15
- package/examples/plain-markdown/docs/Miscellaneous/ns.ReferencedEnum.md +0 -8
- package/examples/plain-markdown/docs/Miscellaneous/ns.SampleException.md +0 -25
- package/examples/plain-markdown/docs/Miscellaneous/ns.SampleInterface.md +0 -119
- package/examples/plain-markdown/docs/Miscellaneous/ns.Url.md +0 -320
- package/examples/plain-markdown/docs/Sample-Enums/ns.SampleEnum.md +0 -38
- package/examples/plain-markdown/docs/SampleGroup/ns.SampleClass.md +0 -173
- package/examples/plain-markdown/docs/index.md +0 -117
- package/examples/plain-markdown/force-app/classes/BaseClass.cls +0 -3
- package/examples/plain-markdown/force-app/classes/MultiInheritanceClass.cls +0 -1
- package/examples/plain-markdown/force-app/classes/ParentInterface.cls +0 -3
- package/examples/plain-markdown/force-app/classes/ReferencedEnum.cls +0 -3
- package/examples/plain-markdown/force-app/classes/SampleClass.cls +0 -72
- package/examples/plain-markdown/force-app/classes/SampleEnum.cls +0 -30
- package/examples/plain-markdown/force-app/classes/SampleException.cls +0 -17
- package/examples/plain-markdown/force-app/classes/SampleInterface.cls +0 -46
- package/examples/plain-markdown/force-app/classes/Url.cls +0 -194
- package/examples/plain-markdown/package-lock.json +0 -665
- package/examples/plain-markdown/package.json +0 -20
- package/examples/plain-markdown/sfdx-project.json +0 -12
- package/examples/vitepress/.forceignore +0 -12
- package/examples/vitepress/apexdocs.config.ts +0 -108
- package/examples/vitepress/config/project-scratch-def.json +0 -13
- package/examples/vitepress/docs/.vitepress/cache/deps/@theme_index.js +0 -259
- package/examples/vitepress/docs/.vitepress/cache/deps/@theme_index.js.map +0 -7
- package/examples/vitepress/docs/.vitepress/cache/deps/_metadata.json +0 -40
- package/examples/vitepress/docs/.vitepress/cache/deps/chunk-574YRH25.js +0 -11474
- package/examples/vitepress/docs/.vitepress/cache/deps/chunk-574YRH25.js.map +0 -7
- package/examples/vitepress/docs/.vitepress/cache/deps/chunk-E5DZZB2I.js +0 -9172
- package/examples/vitepress/docs/.vitepress/cache/deps/chunk-E5DZZB2I.js.map +0 -7
- package/examples/vitepress/docs/.vitepress/cache/deps/package.json +0 -3
- package/examples/vitepress/docs/.vitepress/cache/deps/vitepress___@vue_devtools-api.js +0 -4339
- package/examples/vitepress/docs/.vitepress/cache/deps/vitepress___@vue_devtools-api.js.map +0 -7
- package/examples/vitepress/docs/.vitepress/cache/deps/vitepress___@vueuse_core.js +0 -567
- package/examples/vitepress/docs/.vitepress/cache/deps/vitepress___@vueuse_core.js.map +0 -7
- package/examples/vitepress/docs/.vitepress/cache/deps/vue.js +0 -323
- package/examples/vitepress/docs/.vitepress/cache/deps/vue.js.map +0 -7
- package/examples/vitepress/docs/.vitepress/config.mts +0 -21
- package/examples/vitepress/docs/.vitepress/sidebar.json +0 -119
- package/examples/vitepress/docs/Miscellaneous/apexdocs.BaseClass.md +0 -20
- package/examples/vitepress/docs/Miscellaneous/apexdocs.MultiInheritanceClass.md +0 -76
- package/examples/vitepress/docs/Miscellaneous/apexdocs.ParentInterface.md +0 -19
- package/examples/vitepress/docs/Miscellaneous/apexdocs.ReferencedEnum.md +0 -15
- package/examples/vitepress/docs/Miscellaneous/apexdocs.SampleException.md +0 -28
- package/examples/vitepress/docs/Miscellaneous/apexdocs.SampleInterface.md +0 -116
- package/examples/vitepress/docs/Miscellaneous/apexdocs.Url.md +0 -317
- package/examples/vitepress/docs/Sample-Enums/apexdocs.SampleEnum.md +0 -40
- package/examples/vitepress/docs/SampleGroup/apexdocs.SampleClass.md +0 -174
- package/examples/vitepress/docs/api-examples.md +0 -49
- package/examples/vitepress/docs/index-frontmatter.md +0 -16
- package/examples/vitepress/docs/index.md +0 -56
- package/examples/vitepress/docs/markdown-examples.md +0 -85
- package/examples/vitepress/force-app/main/default/classes/BaseClass.cls +0 -3
- package/examples/vitepress/force-app/main/default/classes/MultiInheritanceClass.cls +0 -1
- package/examples/vitepress/force-app/main/default/classes/ParentInterface.cls +0 -3
- package/examples/vitepress/force-app/main/default/classes/ReferencedEnum.cls +0 -5
- package/examples/vitepress/force-app/main/default/classes/SampleClass.cls +0 -72
- package/examples/vitepress/force-app/main/default/classes/SampleEnum.cls +0 -30
- package/examples/vitepress/force-app/main/default/classes/SampleException.cls +0 -17
- package/examples/vitepress/force-app/main/default/classes/SampleInterface.cls +0 -46
- package/examples/vitepress/force-app/main/default/classes/Url.cls +0 -198
- package/examples/vitepress/package-lock.json +0 -2574
- package/examples/vitepress/package.json +0 -18
- package/examples/vitepress/sfdx-project.json +0 -12
- package/jest.d.ts +0 -7
- package/src/application/__tests__/apex-file-reader.spec.ts +0 -104
- package/src/application/apex-file-reader.ts +0 -42
- package/src/application/file-writer.ts +0 -25
- package/src/application/generators/markdown.ts +0 -53
- package/src/application/generators/openapi.ts +0 -56
- package/src/cli/args.ts +0 -43
- package/src/cli/commands/markdown.ts +0 -58
- package/src/core/manifest.ts +0 -90
- package/src/core/markdown/__test__/expect-extensions.ts +0 -32
- package/src/core/markdown/__test__/generating-class-docs.spec.ts +0 -733
- package/src/core/markdown/__test__/generating-enum-docs.spec.ts +0 -385
- package/src/core/markdown/__test__/generating-interface-docs.spec.ts +0 -459
- package/src/core/markdown/__test__/generating-reference-guide.spec.ts +0 -184
- package/src/core/markdown/__test__/inheritance-chain.test.ts +0 -54
- package/src/core/markdown/__test__/test-helpers.ts +0 -22
- package/src/core/markdown/adapters/__tests__/documentables.spec.ts +0 -109
- package/src/core/markdown/adapters/__tests__/interface-adapter.spec.ts +0 -112
- package/src/core/markdown/adapters/__tests__/references.spec.ts +0 -136
- package/src/core/markdown/adapters/apex-types.ts +0 -237
- package/src/core/markdown/adapters/documentables.ts +0 -116
- package/src/core/markdown/adapters/fields-and-properties.ts +0 -45
- package/src/core/markdown/adapters/inline.ts +0 -143
- package/src/core/markdown/adapters/methods-and-constructors.ts +0 -133
- package/src/core/markdown/adapters/renderable-bundle.ts +0 -144
- package/src/core/markdown/adapters/renderable-to-page-data.ts +0 -92
- package/src/core/markdown/adapters/type-utils.ts +0 -13
- package/src/core/markdown/adapters/types.d.ts +0 -182
- package/src/core/markdown/generate-docs.ts +0 -158
- package/src/core/markdown/reflection/error-handling.ts +0 -37
- package/src/core/markdown/reflection/filter-scope.ts +0 -13
- package/src/core/markdown/reflection/inheritance-chain-expanion.ts +0 -22
- package/src/core/markdown/reflection/inheritance-chain.ts +0 -23
- package/src/core/markdown/reflection/inherited-member-expansion.ts +0 -105
- package/src/core/markdown/reflection/reflect-source.ts +0 -41
- package/src/core/markdown/reflection/sort-members.ts +0 -59
- package/src/core/markdown/templates/class-template.ts +0 -75
- package/src/core/markdown/templates/constructors-partial-template.ts +0 -32
- package/src/core/markdown/templates/documentable-partial-template.ts +0 -26
- package/src/core/markdown/templates/enum-template.ts +0 -12
- package/src/core/markdown/templates/fieldsPartialTemplate.ts +0 -23
- package/src/core/markdown/templates/grouped-members-partial-template.ts +0 -6
- package/src/core/markdown/templates/hookable.ts +0 -7
- package/src/core/markdown/templates/interface-template.ts +0 -16
- package/src/core/markdown/templates/methods-partial-template.ts +0 -43
- package/src/core/markdown/templates/reference-guide.ts +0 -14
- package/src/core/markdown/templates/template.ts +0 -114
- package/src/core/markdown/templates/type-doc-partial.ts +0 -27
- package/src/core/markdown/utils.ts +0 -3
- package/src/core/openapi/file-container.ts +0 -13
- package/src/core/openapi/openapi-type-file.ts +0 -14
- package/src/core/parse-apex-metadata.ts +0 -14
- package/src/core/settings.ts +0 -56
- package/src/core/shared/types.d.ts +0 -92
- package/src/core/shared/utils.ts +0 -5
- package/src/defaults.ts +0 -8
- package/src/test-helpers/InterfaceMirrorBuilder.ts +0 -39
- package/src/util/fp.ts +0 -3
- /package/src/{core/__test__ → model/__tests__}/manifest.spec.ts +0 -0
- /package/src/{core/openapi → model}/apex-type-wrappers/ClassMirrorWrapper.ts +0 -0
- /package/src/{core/openapi → model}/apex-type-wrappers/MethodMirrorWrapper.ts +0 -0
- /package/src/{core → model}/openapi/__tests__/open-api.spec.ts +0 -0
- /package/src/{core → model}/openapi/apex-doc-types.ts +0 -0
- /package/src/{core → model}/openapi/open-api.ts +0 -0
- /package/src/{application → service}/file-system.ts +0 -0
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { ClassMirror, ConstructorMirror, EnumMirror, InterfaceMirror, MethodMirror, Type } from '@cparra/apex-reflection';
|
|
2
|
+
import { WalkerListener } from '../service/walkers/walker';
|
|
3
|
+
import { MarkdownFile } from './markdown-file';
|
|
4
|
+
import { FieldMirrorWithInheritance, PropertyMirrorWithInheritance } from './inheritance';
|
|
5
|
+
export declare class MarkdownTypeFile extends MarkdownFile implements WalkerListener {
|
|
6
|
+
private type;
|
|
7
|
+
private headingLevel;
|
|
8
|
+
private isInner;
|
|
9
|
+
constructor(type: Type, headingLevel?: number, headerContent?: string, isInner?: boolean);
|
|
10
|
+
onTypeDeclaration(typeMirror: Type): void;
|
|
11
|
+
private isClass;
|
|
12
|
+
onConstructorDeclaration(className: string, constructors: ConstructorMirror[]): void;
|
|
13
|
+
onFieldsDeclaration(fields: FieldMirrorWithInheritance[]): void;
|
|
14
|
+
onPropertiesDeclaration(properties: PropertyMirrorWithInheritance[]): void;
|
|
15
|
+
onMethodsDeclaration(methods: MethodMirror[]): void;
|
|
16
|
+
onInnerEnumsDeclaration(enums: EnumMirror[]): void;
|
|
17
|
+
onInnerClassesDeclaration(classes: ClassMirror[]): void;
|
|
18
|
+
onInnerInterfacesDeclaration(interfaces: InterfaceMirror[]): void;
|
|
19
|
+
private addInnerTypes;
|
|
20
|
+
private hasGroupings;
|
|
21
|
+
private declareMethodWithGroupings;
|
|
22
|
+
private declareFieldOrProperty;
|
|
23
|
+
private startGroup;
|
|
24
|
+
private endGroup;
|
|
25
|
+
private group;
|
|
26
|
+
}
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.MarkdownTypeFile = void 0;
|
|
4
|
+
const walker_factory_1 = require("../service/walkers/walker-factory");
|
|
5
|
+
const markdown_file_1 = require("./markdown-file");
|
|
6
|
+
const markdown_generation_util_1 = require("./markdown-generation-util");
|
|
7
|
+
const class_file_generatorHelper_1 = require("../transpiler/markdown/class-file-generatorHelper");
|
|
8
|
+
const settings_1 = require("../settings");
|
|
9
|
+
class MarkdownTypeFile extends markdown_file_1.MarkdownFile {
|
|
10
|
+
constructor(type, headingLevel = 1, headerContent, isInner = false) {
|
|
11
|
+
super(`${settings_1.Settings.getInstance().getNamespacePrefix()}${type.name}`, class_file_generatorHelper_1.default.getSanitizedGroup(type));
|
|
12
|
+
this.type = type;
|
|
13
|
+
this.headingLevel = headingLevel;
|
|
14
|
+
this.isInner = isInner;
|
|
15
|
+
if (headerContent) {
|
|
16
|
+
this.addText(headerContent);
|
|
17
|
+
}
|
|
18
|
+
const walker = walker_factory_1.WalkerFactory.get(type);
|
|
19
|
+
walker.walk(this);
|
|
20
|
+
}
|
|
21
|
+
onTypeDeclaration(typeMirror) {
|
|
22
|
+
let fullTypeName;
|
|
23
|
+
if (this.isInner) {
|
|
24
|
+
fullTypeName = typeMirror.name;
|
|
25
|
+
}
|
|
26
|
+
else {
|
|
27
|
+
// If we are dealing with a class, we want to check if it has a class
|
|
28
|
+
// modifier and add it to the name.
|
|
29
|
+
if (this.isClass(typeMirror) && typeMirror.classModifier) {
|
|
30
|
+
fullTypeName = `${typeMirror.classModifier} ${settings_1.Settings.getInstance().getNamespacePrefix()}${typeMirror.name}`;
|
|
31
|
+
}
|
|
32
|
+
else {
|
|
33
|
+
fullTypeName = `${settings_1.Settings.getInstance().getNamespacePrefix()}${typeMirror.name}`;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
this.addTitle(fullTypeName, this.headingLevel);
|
|
37
|
+
(0, markdown_generation_util_1.declareType)(this, typeMirror);
|
|
38
|
+
}
|
|
39
|
+
isClass(typeMirror) {
|
|
40
|
+
return typeMirror.type_name === 'class';
|
|
41
|
+
}
|
|
42
|
+
onConstructorDeclaration(className, constructors) {
|
|
43
|
+
this.addTitle('Constructors', this.headingLevel + 1);
|
|
44
|
+
this.declareMethodWithGroupings(constructors, className);
|
|
45
|
+
}
|
|
46
|
+
onFieldsDeclaration(fields) {
|
|
47
|
+
this.addTitle('Fields', this.headingLevel + 1);
|
|
48
|
+
this.declareFieldOrProperty(fields);
|
|
49
|
+
}
|
|
50
|
+
onPropertiesDeclaration(properties) {
|
|
51
|
+
this.addTitle('Properties', this.headingLevel + 1);
|
|
52
|
+
this.declareFieldOrProperty(properties);
|
|
53
|
+
}
|
|
54
|
+
onMethodsDeclaration(methods) {
|
|
55
|
+
this.addTitle('Methods', this.headingLevel + 1);
|
|
56
|
+
this.declareMethodWithGroupings(methods);
|
|
57
|
+
}
|
|
58
|
+
onInnerEnumsDeclaration(enums) {
|
|
59
|
+
this.addInnerTypes('Enums', enums);
|
|
60
|
+
}
|
|
61
|
+
onInnerClassesDeclaration(classes) {
|
|
62
|
+
this.addInnerTypes('Classes', classes);
|
|
63
|
+
}
|
|
64
|
+
onInnerInterfacesDeclaration(interfaces) {
|
|
65
|
+
this.addInnerTypes('Interfaces', interfaces, false);
|
|
66
|
+
}
|
|
67
|
+
addInnerTypes(title, types, addSeparator = true) {
|
|
68
|
+
this.addTitle(title, this.headingLevel + 1);
|
|
69
|
+
types.forEach((currentType) => {
|
|
70
|
+
const innerFile = new MarkdownTypeFile(currentType, this.headingLevel + 2, undefined, true);
|
|
71
|
+
this.addText(innerFile._contents);
|
|
72
|
+
});
|
|
73
|
+
if (addSeparator) {
|
|
74
|
+
this.addHorizontalRule();
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
hasGroupings(groupAware) {
|
|
78
|
+
return !!groupAware.find((current) => !!current.group);
|
|
79
|
+
}
|
|
80
|
+
declareMethodWithGroupings(methods, className = '') {
|
|
81
|
+
const hasGroupings = this.hasGroupings(methods);
|
|
82
|
+
if (!hasGroupings) {
|
|
83
|
+
(0, markdown_generation_util_1.declareMethod)(this, methods, this.headingLevel, className);
|
|
84
|
+
}
|
|
85
|
+
else {
|
|
86
|
+
const groupedConstructors = this.group(methods);
|
|
87
|
+
for (const key in groupedConstructors) {
|
|
88
|
+
// For the group description, we can take the first one, since they all have the same description.
|
|
89
|
+
this.startGroup(key, groupedConstructors[key][0].groupDescription);
|
|
90
|
+
const constructorsForGroup = groupedConstructors[key];
|
|
91
|
+
(0, markdown_generation_util_1.declareMethod)(this, constructorsForGroup, this.headingLevel, className);
|
|
92
|
+
this.endGroup();
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
declareFieldOrProperty(fieldsOrProperties) {
|
|
97
|
+
const hasGroupings = this.hasGroupings(fieldsOrProperties);
|
|
98
|
+
if (!hasGroupings) {
|
|
99
|
+
(0, markdown_generation_util_1.declareField)(this, fieldsOrProperties, this.headingLevel, false);
|
|
100
|
+
}
|
|
101
|
+
else {
|
|
102
|
+
const groupedFields = this.group(fieldsOrProperties);
|
|
103
|
+
for (const key in groupedFields) {
|
|
104
|
+
// For the group description, we can take the first one, since they all have the same description.
|
|
105
|
+
this.startGroup(key, groupedFields[key][0].groupDescription);
|
|
106
|
+
const fieldsForGroup = groupedFields[key];
|
|
107
|
+
(0, markdown_generation_util_1.declareField)(this, fieldsForGroup, this.headingLevel, true);
|
|
108
|
+
this.endGroup();
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
startGroup(groupName, groupDescription) {
|
|
113
|
+
this.headingLevel = this.headingLevel + 2;
|
|
114
|
+
this.addTitle(groupName, this.headingLevel);
|
|
115
|
+
if (groupDescription) {
|
|
116
|
+
this.addText(groupDescription);
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
endGroup() {
|
|
120
|
+
this.headingLevel = this.headingLevel - 2;
|
|
121
|
+
}
|
|
122
|
+
group(list) {
|
|
123
|
+
return list.reduce((groups, item) => {
|
|
124
|
+
var _a;
|
|
125
|
+
const groupName = (_a = item.group) !== null && _a !== void 0 ? _a : 'Other';
|
|
126
|
+
const group = groups[groupName] || [];
|
|
127
|
+
group.push(item);
|
|
128
|
+
groups[groupName] = group;
|
|
129
|
+
return groups;
|
|
130
|
+
}, {});
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
exports.MarkdownTypeFile = MarkdownTypeFile;
|
|
134
|
+
//# sourceMappingURL=markdown-type-file.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"markdown-type-file.js","sourceRoot":"","sources":["../../src/model/markdown-type-file.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { SchemaObjectArray, SchemaObjectObject } from './open-api-types';
|
|
2
|
+
export type ApexDocHttpResponse = {
|
|
3
|
+
statusCode: number;
|
|
4
|
+
description?: string;
|
|
5
|
+
schema: ApexDocSchemaObject;
|
|
6
|
+
};
|
|
7
|
+
export type ApexDocHttpRequestBody = {
|
|
8
|
+
description?: string;
|
|
9
|
+
schema: ApexDocSchemaObject;
|
|
10
|
+
required?: boolean;
|
|
11
|
+
};
|
|
12
|
+
export type ApexDocParameterObject = {
|
|
13
|
+
name: string;
|
|
14
|
+
in: 'query' | 'header' | 'path' | 'cookie';
|
|
15
|
+
description?: string;
|
|
16
|
+
required?: boolean;
|
|
17
|
+
schema: ApexDocSchemaObject;
|
|
18
|
+
};
|
|
19
|
+
export type ApexDocSchemaObject = SchemaObjectObject | SchemaObjectArray | string;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// These are types that represent how the data is expected to be created in the ApexDoc (as YAML), which
|
|
3
|
+
// in some cases might be different from the official OpenApi spec for simplicity when writing the ApexDoc.
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
//# sourceMappingURL=apex-doc-types.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"apex-doc-types.js","sourceRoot":"","sources":["../../../src/model/openapi/apex-doc-types.ts"],"names":[],"mappings":";AAAA,wGAAwG;AACxG,2GAA2G"}
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
export type InfoObject = {
|
|
2
|
+
title: string;
|
|
3
|
+
version: string;
|
|
4
|
+
};
|
|
5
|
+
export type ServerObject = {
|
|
6
|
+
url: string;
|
|
7
|
+
};
|
|
8
|
+
export type PathsObject = {
|
|
9
|
+
[index: string]: PathItemObject;
|
|
10
|
+
};
|
|
11
|
+
export type PathItemObject = {
|
|
12
|
+
description?: string;
|
|
13
|
+
get?: OperationObject;
|
|
14
|
+
put?: OperationObject;
|
|
15
|
+
post?: OperationObject;
|
|
16
|
+
delete?: OperationObject;
|
|
17
|
+
patch?: OperationObject;
|
|
18
|
+
};
|
|
19
|
+
export type OperationObject = {
|
|
20
|
+
tags?: string[];
|
|
21
|
+
description?: string;
|
|
22
|
+
summary?: string;
|
|
23
|
+
requestBody?: RequestBody;
|
|
24
|
+
parameters?: ParameterObject[];
|
|
25
|
+
responses?: ResponsesObject;
|
|
26
|
+
};
|
|
27
|
+
export type ParameterObject = {
|
|
28
|
+
name: string;
|
|
29
|
+
in: 'query' | 'header' | 'path' | 'cookie';
|
|
30
|
+
description?: string;
|
|
31
|
+
required?: boolean;
|
|
32
|
+
schema?: SchemaObject;
|
|
33
|
+
};
|
|
34
|
+
export type RequestBody = {
|
|
35
|
+
description?: string;
|
|
36
|
+
content: RequestBodyContent;
|
|
37
|
+
required?: boolean;
|
|
38
|
+
};
|
|
39
|
+
export type RequestBodyContent = {
|
|
40
|
+
[index: string]: MediaTypeObject;
|
|
41
|
+
};
|
|
42
|
+
export type MediaTypeObject = {
|
|
43
|
+
schema?: SchemaObject;
|
|
44
|
+
example?: any;
|
|
45
|
+
examples?: {
|
|
46
|
+
[index: string]: ExampleObject;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
export type ExampleObject = {
|
|
50
|
+
summary?: string;
|
|
51
|
+
description?: string;
|
|
52
|
+
value?: any;
|
|
53
|
+
};
|
|
54
|
+
export type ResponsesObject = {
|
|
55
|
+
[index: string]: ResponseObject;
|
|
56
|
+
};
|
|
57
|
+
export type ResponseObject = {
|
|
58
|
+
description: string;
|
|
59
|
+
content?: ContentObject;
|
|
60
|
+
};
|
|
61
|
+
export type ContentObject = {
|
|
62
|
+
[index: string]: {
|
|
63
|
+
schema: SchemaObject;
|
|
64
|
+
};
|
|
65
|
+
};
|
|
66
|
+
export type SchemaObject = SchemaObjectObject | SchemaObjectArray | ReferenceObject;
|
|
67
|
+
export type SchemaObjectObject = {
|
|
68
|
+
type: string;
|
|
69
|
+
properties?: PropertiesObject;
|
|
70
|
+
format?: string;
|
|
71
|
+
description?: string;
|
|
72
|
+
};
|
|
73
|
+
export type PropertiesObject = {
|
|
74
|
+
[index: string]: SchemaObject;
|
|
75
|
+
};
|
|
76
|
+
export type SchemaObjectArray = {
|
|
77
|
+
type: 'array';
|
|
78
|
+
items: SchemaObject;
|
|
79
|
+
description?: string;
|
|
80
|
+
};
|
|
81
|
+
export type ReferenceObject = {
|
|
82
|
+
$ref: string;
|
|
83
|
+
description?: string;
|
|
84
|
+
};
|
|
85
|
+
export type ComponentsObject = {
|
|
86
|
+
schemas: {
|
|
87
|
+
[index: string]: SchemaObject;
|
|
88
|
+
};
|
|
89
|
+
};
|
|
90
|
+
export type TagObject = {
|
|
91
|
+
name: string;
|
|
92
|
+
description?: string;
|
|
93
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"open-api-types.js","sourceRoot":"","sources":["../../../src/model/openapi/open-api-types.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { ComponentsObject, InfoObject, PathsObject, ServerObject, TagObject } from './open-api-types';
|
|
2
|
+
/**
|
|
3
|
+
* Represents the OpenApi 3.1.0 spec
|
|
4
|
+
* https://spec.openapis.org/oas/v3.1.0
|
|
5
|
+
*/
|
|
6
|
+
export declare class OpenApi {
|
|
7
|
+
private namespace?;
|
|
8
|
+
openapi: string;
|
|
9
|
+
info: InfoObject;
|
|
10
|
+
tags: TagObject[];
|
|
11
|
+
paths: PathsObject;
|
|
12
|
+
servers: ServerObject[];
|
|
13
|
+
components?: ComponentsObject;
|
|
14
|
+
constructor(title: string, version: string, namespace?: string | undefined);
|
|
15
|
+
private getServerUrl;
|
|
16
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.OpenApi = void 0;
|
|
4
|
+
const OPEN_API_VERSION = '3.1.0';
|
|
5
|
+
const SERVER_URL = '/services/apexrest/';
|
|
6
|
+
/**
|
|
7
|
+
* Represents the OpenApi 3.1.0 spec
|
|
8
|
+
* https://spec.openapis.org/oas/v3.1.0
|
|
9
|
+
*/
|
|
10
|
+
class OpenApi {
|
|
11
|
+
constructor(title, version, namespace) {
|
|
12
|
+
this.namespace = namespace;
|
|
13
|
+
this.openapi = OPEN_API_VERSION;
|
|
14
|
+
this.info = {
|
|
15
|
+
title: title,
|
|
16
|
+
version: version,
|
|
17
|
+
};
|
|
18
|
+
this.servers = [
|
|
19
|
+
{
|
|
20
|
+
url: this.getServerUrl(),
|
|
21
|
+
},
|
|
22
|
+
];
|
|
23
|
+
this.paths = {};
|
|
24
|
+
this.tags = [];
|
|
25
|
+
}
|
|
26
|
+
getServerUrl() {
|
|
27
|
+
if (!this.namespace) {
|
|
28
|
+
return SERVER_URL;
|
|
29
|
+
}
|
|
30
|
+
return `${SERVER_URL}${this.namespace}/`;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
exports.OpenApi = OpenApi;
|
|
34
|
+
//# sourceMappingURL=open-api.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"open-api.js","sourceRoot":"","sources":["../../../src/model/openapi/open-api.ts"],"names":[],"mappings":";;;AAEA,MAAM,gBAAgB,GAAG,OAAO,CAAC;AACjC,MAAM,UAAU,GAAG,qBAAqB,CAAC;AAEzC;;;GAGG;AACH,MAAa,OAAO;IAQlB,YAAY,KAAa,EAAE,OAAe,EAAU,SAAkB;QAAlB,cAAS,GAAT,SAAS,CAAS;QAPtE,YAAO,GAAG,gBAAgB,CAAC;QAQzB,IAAI,CAAC,IAAI,GAAG;YACV,KAAK,EAAE,KAAK;YACZ,OAAO,EAAE,OAAO;SACjB,CAAC;QAEF,IAAI,CAAC,OAAO,GAAG;YACb;gBACE,GAAG,EAAE,IAAI,CAAC,YAAY,EAAE;aACzB;SACF,CAAC;QAEF,IAAI,CAAC,KAAK,GAAG,EAAE,CAAC;QAChB,IAAI,CAAC,IAAI,GAAG,EAAE,CAAC;IACjB,CAAC;IAEO,YAAY;QAClB,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE;YACnB,OAAO,UAAU,CAAC;SACnB;QAED,OAAO,GAAG,UAAU,GAAG,IAAI,CAAC,SAAS,GAAG,CAAC;IAC3C,CAAC;CACF;AA/BD,0BA+BC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.OpenapiTypeFile = void 0;
|
|
4
|
+
const outputFile_1 = require("../outputFile");
|
|
5
|
+
const settings_1 = require("../../settings");
|
|
6
|
+
class OpenapiTypeFile extends outputFile_1.OutputFile {
|
|
7
|
+
constructor(openApiModel) {
|
|
8
|
+
super(settings_1.Settings.getInstance().openApiFileName(), '');
|
|
9
|
+
this.openApiModel = openApiModel;
|
|
10
|
+
this.addText(JSON.stringify(Object.assign(Object.assign({}, openApiModel), { namespace: undefined }), null, 2));
|
|
11
|
+
}
|
|
12
|
+
fileExtension() {
|
|
13
|
+
return '.json';
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
exports.OpenapiTypeFile = OpenapiTypeFile;
|
|
17
|
+
//# sourceMappingURL=openapi-type-file.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"openapi-type-file.js","sourceRoot":"","sources":["../../../src/model/openapi/openapi-type-file.ts"],"names":[],"mappings":";;;AAAA,8CAA2C;AAE3C,6CAA0C;AAE1C,MAAa,eAAgB,SAAQ,uBAAU;IAC7C,YAAmB,YAAqB;QACtC,KAAK,CAAC,mBAAQ,CAAC,WAAW,EAAE,CAAC,eAAe,EAAE,EAAE,EAAE,CAAC,CAAC;QADnC,iBAAY,GAAZ,YAAY,CAAS;QAEtC,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,SAAS,iCAAM,YAAY,KAAE,SAAS,EAAE,SAAS,KAAI,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC;IACnF,CAAC;IAED,aAAa;QACX,OAAO,OAAO,CAAC;IACjB,CAAC;CACF;AATD,0CASC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export declare abstract class OutputFile {
|
|
2
|
+
fileName: string;
|
|
3
|
+
dir: string;
|
|
4
|
+
_contents: string;
|
|
5
|
+
constructor(fileName: string, dir: string);
|
|
6
|
+
abstract fileExtension(): string;
|
|
7
|
+
get body(): string;
|
|
8
|
+
addText(text: string, encodeHtml?: boolean): void;
|
|
9
|
+
addBlankLine(): void;
|
|
10
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.OutputFile = void 0;
|
|
4
|
+
const xss = require("xss");
|
|
5
|
+
const settings_1 = require("../settings");
|
|
6
|
+
const xssFilter = new xss.FilterXSS({
|
|
7
|
+
whiteList: { br: [], p: [], ul: [], li: [], code: [], pre: [] },
|
|
8
|
+
});
|
|
9
|
+
class OutputFile {
|
|
10
|
+
constructor(fileName, dir) {
|
|
11
|
+
this.fileName = fileName;
|
|
12
|
+
this.dir = dir;
|
|
13
|
+
this._contents = '';
|
|
14
|
+
}
|
|
15
|
+
get body() {
|
|
16
|
+
return this._contents;
|
|
17
|
+
}
|
|
18
|
+
addText(text, encodeHtml = true) {
|
|
19
|
+
const shouldEncode = encodeHtml && settings_1.Settings.getInstance().sanitizeHtml;
|
|
20
|
+
const textToAdd = shouldEncode ? xssFilter.process(text) : text;
|
|
21
|
+
this._contents += textToAdd;
|
|
22
|
+
this.addBlankLine();
|
|
23
|
+
}
|
|
24
|
+
addBlankLine() {
|
|
25
|
+
this._contents += '\n';
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
exports.OutputFile = OutputFile;
|
|
29
|
+
//# sourceMappingURL=outputFile.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"outputFile.js","sourceRoot":"","sources":["../../src/model/outputFile.ts"],"names":[],"mappings":";;;AAAA,2BAA4B;AAC5B,0CAAuC;AAEvC,MAAM,SAAS,GAAG,IAAI,GAAG,CAAC,SAAS,CAAC;IAClC,SAAS,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE;CAChE,CAAC,CAAC;AAEH,MAAsB,UAAU;IAG9B,YAAmB,QAAgB,EAAS,GAAW;QAApC,aAAQ,GAAR,QAAQ,CAAQ;QAAS,QAAG,GAAH,GAAG,CAAQ;QAFvD,cAAS,GAAG,EAAE,CAAC;IAE2C,CAAC;IAI3D,IAAI,IAAI;QACN,OAAO,IAAI,CAAC,SAAS,CAAC;IACxB,CAAC;IAED,OAAO,CAAC,IAAY,EAAE,UAAU,GAAG,IAAI;QACrC,MAAM,YAAY,GAAG,UAAU,IAAI,mBAAQ,CAAC,WAAW,EAAE,CAAC,YAAY,CAAC;QACvE,MAAM,SAAS,GAAG,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC;QAChE,IAAI,CAAC,SAAS,IAAI,SAAS,CAAC;QAC5B,IAAI,CAAC,YAAY,EAAE,CAAC;IACtB,CAAC;IAED,YAAY;QACV,IAAI,CAAC,SAAS,IAAI,IAAI,CAAC;IACzB,CAAC;CACF;AArBD,gCAqBC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Type } from '@cparra/apex-reflection';
|
|
2
|
+
export type TypeBundle = {
|
|
3
|
+
type: Type;
|
|
4
|
+
isChild: boolean;
|
|
5
|
+
parentType?: Type;
|
|
6
|
+
};
|
|
7
|
+
export declare class TypesRepository {
|
|
8
|
+
private static instance;
|
|
9
|
+
private scopedTypes;
|
|
10
|
+
private allTypes;
|
|
11
|
+
static getInstance(): TypesRepository;
|
|
12
|
+
populateAll(types: Type[]): void;
|
|
13
|
+
getFromAllByName(typeName: string): TypeBundle | undefined;
|
|
14
|
+
populateScoped(types: Type[]): void;
|
|
15
|
+
getFromScopedByName(typeName: string): Type | undefined;
|
|
16
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.TypesRepository = void 0;
|
|
4
|
+
class TypesRepository {
|
|
5
|
+
constructor() {
|
|
6
|
+
this.scopedTypes = [];
|
|
7
|
+
this.allTypes = [];
|
|
8
|
+
}
|
|
9
|
+
static getInstance() {
|
|
10
|
+
if (!TypesRepository.instance) {
|
|
11
|
+
TypesRepository.instance = new TypesRepository();
|
|
12
|
+
}
|
|
13
|
+
return TypesRepository.instance;
|
|
14
|
+
}
|
|
15
|
+
populateAll(types) {
|
|
16
|
+
this.allTypes = types;
|
|
17
|
+
}
|
|
18
|
+
getFromAllByName(typeName) {
|
|
19
|
+
if (typeName.includes('.')) {
|
|
20
|
+
// If it includes a dot we are assuming we are dealing with an inner class.
|
|
21
|
+
const [parentTypeName, childTypeName] = typeName.split('.');
|
|
22
|
+
const parentReference = this.allTypes.find((currentType) => currentType.name.toLowerCase() === parentTypeName.toLowerCase());
|
|
23
|
+
if (!parentReference || parentReference.type_name !== 'class') {
|
|
24
|
+
// If the parent is not found, no reason to keep searching, instead we return undefined.
|
|
25
|
+
// Similarly, if the parent is not a class, it means it cannot have children, so we return early.
|
|
26
|
+
return undefined;
|
|
27
|
+
}
|
|
28
|
+
const parentReferenceAsClass = parentReference;
|
|
29
|
+
const childTypes = [
|
|
30
|
+
...parentReferenceAsClass.classes,
|
|
31
|
+
...parentReferenceAsClass.interfaces,
|
|
32
|
+
...parentReferenceAsClass.enums,
|
|
33
|
+
];
|
|
34
|
+
const foundType = childTypes.find((currentType) => currentType.name.toLowerCase() === childTypeName);
|
|
35
|
+
if (!foundType) {
|
|
36
|
+
return undefined;
|
|
37
|
+
}
|
|
38
|
+
return { type: foundType, isChild: true, parentType: parentReference };
|
|
39
|
+
}
|
|
40
|
+
const foundType = this.allTypes.find((currentType) => currentType.name.toLowerCase() === typeName.toLowerCase());
|
|
41
|
+
if (!foundType) {
|
|
42
|
+
return undefined;
|
|
43
|
+
}
|
|
44
|
+
return { type: foundType, isChild: false };
|
|
45
|
+
}
|
|
46
|
+
populateScoped(types) {
|
|
47
|
+
this.scopedTypes = types;
|
|
48
|
+
}
|
|
49
|
+
getFromScopedByName(typeName) {
|
|
50
|
+
return this.scopedTypes.find((currentType) => currentType.name === typeName);
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
exports.TypesRepository = TypesRepository;
|
|
54
|
+
//# sourceMappingURL=types-repository.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types-repository.js","sourceRoot":"","sources":["../../src/model/types-repository.ts"],"names":[],"mappings":";;;AAIA,MAAa,eAAe;IAA5B;QAEU,gBAAW,GAAW,EAAE,CAAC;QACzB,aAAQ,GAAW,EAAE,CAAC;IAuDhC,CAAC;IArDQ,MAAM,CAAC,WAAW;QACvB,IAAI,CAAC,eAAe,CAAC,QAAQ,EAAE;YAC7B,eAAe,CAAC,QAAQ,GAAG,IAAI,eAAe,EAAE,CAAC;SAClD;QACD,OAAO,eAAe,CAAC,QAAQ,CAAC;IAClC,CAAC;IAEM,WAAW,CAAC,KAAa;QAC9B,IAAI,CAAC,QAAQ,GAAG,KAAK,CAAC;IACxB,CAAC;IAEM,gBAAgB,CAAC,QAAgB;QACtC,IAAI,QAAQ,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE;YAC1B,2EAA2E;YAC3E,MAAM,CAAC,cAAc,EAAE,aAAa,CAAC,GAAG,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;YAC5D,MAAM,eAAe,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CACxC,CAAC,WAAiB,EAAE,EAAE,CAAC,WAAW,CAAC,IAAI,CAAC,WAAW,EAAE,KAAK,cAAc,CAAC,WAAW,EAAE,CACvF,CAAC;YACF,IAAI,CAAC,eAAe,IAAI,eAAe,CAAC,SAAS,KAAK,OAAO,EAAE;gBAC7D,wFAAwF;gBACxF,iGAAiG;gBACjG,OAAO,SAAS,CAAC;aAClB;YAED,MAAM,sBAAsB,GAAG,eAA8B,CAAC;YAC9D,MAAM,UAAU,GAAG;gBACjB,GAAG,sBAAsB,CAAC,OAAO;gBACjC,GAAG,sBAAsB,CAAC,UAAU;gBACpC,GAAG,sBAAsB,CAAC,KAAK;aAChC,CAAC;YACF,MAAM,SAAS,GAAG,UAAU,CAAC,IAAI,CAAC,CAAC,WAAiB,EAAE,EAAE,CAAC,WAAW,CAAC,IAAI,CAAC,WAAW,EAAE,KAAK,aAAa,CAAC,CAAC;YAC3G,IAAI,CAAC,SAAS,EAAE;gBACd,OAAO,SAAS,CAAC;aAClB;YACD,OAAO,EAAE,IAAI,EAAE,SAAS,EAAE,OAAO,EAAE,IAAI,EAAE,UAAU,EAAE,eAAe,EAAE,CAAC;SACxE;QAED,MAAM,SAAS,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAClC,CAAC,WAAiB,EAAE,EAAE,CAAC,WAAW,CAAC,IAAI,CAAC,WAAW,EAAE,KAAK,QAAQ,CAAC,WAAW,EAAE,CACjF,CAAC;QACF,IAAI,CAAC,SAAS,EAAE;YACd,OAAO,SAAS,CAAC;SAClB;QACD,OAAO,EAAE,IAAI,EAAE,SAAS,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;IAC7C,CAAC;IAEM,cAAc,CAAC,KAAa;QACjC,IAAI,CAAC,WAAW,GAAG,KAAK,CAAC;IAC3B,CAAC;IAEM,mBAAmB,CAAC,QAAgB;QACzC,OAAO,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,WAAiB,EAAE,EAAE,CAAC,WAAW,CAAC,IAAI,KAAK,QAAQ,CAAC,CAAC;IACrF,CAAC;CACF;AA1DD,0CA0DC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { FileSystem } from './file-system';
|
|
2
|
+
import ApexBundle from '../model/apex-bundle';
|
|
3
|
+
/**
|
|
4
|
+
* Reads from .cls files and returns their raw body.
|
|
5
|
+
*/
|
|
6
|
+
export declare class ApexFileReader {
|
|
7
|
+
/**
|
|
8
|
+
* Reads from .cls files and returns their raw body.
|
|
9
|
+
*/
|
|
10
|
+
static processFiles(fileSystem: FileSystem, rootPath?: string): ApexBundle[];
|
|
11
|
+
private static isApexFile;
|
|
12
|
+
private static get sourceDirectory();
|
|
13
|
+
private static get readRecursively();
|
|
14
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ApexFileReader = void 0;
|
|
4
|
+
const settings_1 = require("../settings");
|
|
5
|
+
const apex_bundle_1 = require("../model/apex-bundle");
|
|
6
|
+
const APEX_FILE_EXTENSION = '.cls';
|
|
7
|
+
/**
|
|
8
|
+
* Reads from .cls files and returns their raw body.
|
|
9
|
+
*/
|
|
10
|
+
class ApexFileReader {
|
|
11
|
+
/**
|
|
12
|
+
* Reads from .cls files and returns their raw body.
|
|
13
|
+
*/
|
|
14
|
+
static processFiles(fileSystem, rootPath = this.sourceDirectory) {
|
|
15
|
+
let bundles = [];
|
|
16
|
+
const directoryContents = fileSystem.readDirectory(rootPath);
|
|
17
|
+
directoryContents.forEach((currentFilePath) => {
|
|
18
|
+
const currentPath = fileSystem.joinPath(rootPath, currentFilePath);
|
|
19
|
+
if (this.readRecursively && fileSystem.isDirectory(currentPath)) {
|
|
20
|
+
bundles = bundles.concat(this.processFiles(fileSystem, currentPath));
|
|
21
|
+
}
|
|
22
|
+
if (!this.isApexFile(currentFilePath)) {
|
|
23
|
+
return;
|
|
24
|
+
}
|
|
25
|
+
const rawApexFile = fileSystem.readFile(currentPath);
|
|
26
|
+
const metadataPath = fileSystem.joinPath(rootPath, `${currentFilePath}-meta.xml`);
|
|
27
|
+
let rawMetadataFile = null;
|
|
28
|
+
if (settings_1.Settings.getInstance().includeMetadata()) {
|
|
29
|
+
rawMetadataFile = fileSystem.exists(metadataPath) ? fileSystem.readFile(metadataPath) : null;
|
|
30
|
+
}
|
|
31
|
+
bundles.push(new apex_bundle_1.default(currentFilePath, rawApexFile, rawMetadataFile));
|
|
32
|
+
});
|
|
33
|
+
return bundles;
|
|
34
|
+
}
|
|
35
|
+
static isApexFile(currentFile) {
|
|
36
|
+
return currentFile.endsWith(APEX_FILE_EXTENSION);
|
|
37
|
+
}
|
|
38
|
+
static get sourceDirectory() {
|
|
39
|
+
return settings_1.Settings.getInstance().sourceDirectory;
|
|
40
|
+
}
|
|
41
|
+
static get readRecursively() {
|
|
42
|
+
return settings_1.Settings.getInstance().recursive;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
exports.ApexFileReader = ApexFileReader;
|
|
46
|
+
//# sourceMappingURL=apex-file-reader.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"apex-file-reader.js","sourceRoot":"","sources":["../../src/service/apex-file-reader.ts"],"names":[],"mappings":";;;AAAA,0CAAuC;AAEvC,sDAA8C;AAE9C,MAAM,mBAAmB,GAAG,MAAM,CAAC;AAEnC;;GAEG;AACH,MAAa,cAAc;IACzB;;OAEG;IACH,MAAM,CAAC,YAAY,CAAC,UAAsB,EAAE,WAAmB,IAAI,CAAC,eAAe;QACjF,IAAI,OAAO,GAAiB,EAAE,CAAC;QAE/B,MAAM,iBAAiB,GAAG,UAAU,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC;QAC7D,iBAAiB,CAAC,OAAO,CAAC,CAAC,eAAe,EAAE,EAAE;YAC5C,MAAM,WAAW,GAAG,UAAU,CAAC,QAAQ,CAAC,QAAQ,EAAE,eAAe,CAAC,CAAC;YACnE,IAAI,IAAI,CAAC,eAAe,IAAI,UAAU,CAAC,WAAW,CAAC,WAAW,CAAC,EAAE;gBAC/D,OAAO,GAAG,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,YAAY,CAAC,UAAU,EAAE,WAAW,CAAC,CAAC,CAAC;aACtE;YAED,IAAI,CAAC,IAAI,CAAC,UAAU,CAAC,eAAe,CAAC,EAAE;gBACrC,OAAO;aACR;YAED,MAAM,WAAW,GAAG,UAAU,CAAC,QAAQ,CAAC,WAAW,CAAC,CAAC;YACrD,MAAM,YAAY,GAAG,UAAU,CAAC,QAAQ,CAAC,QAAQ,EAAE,GAAG,eAAe,WAAW,CAAC,CAAC;YAClF,IAAI,eAAe,GAAG,IAAI,CAAC;YAC3B,IAAI,mBAAQ,CAAC,WAAW,EAAE,CAAC,eAAe,EAAE,EAAE;gBAC5C,eAAe,GAAG,UAAU,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC,UAAU,CAAC,QAAQ,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC;aAC9F;YAED,OAAO,CAAC,IAAI,CAAC,IAAI,qBAAU,CAAC,eAAe,EAAE,WAAW,EAAE,eAAe,CAAC,CAAC,CAAC;QAC9E,CAAC,CAAC,CAAC;QACH,OAAO,OAAO,CAAC;IACjB,CAAC;IAEO,MAAM,CAAC,UAAU,CAAC,WAAmB;QAC3C,OAAO,WAAW,CAAC,QAAQ,CAAC,mBAAmB,CAAC,CAAC;IACnD,CAAC;IAEO,MAAM,KAAK,eAAe;QAChC,OAAO,mBAAQ,CAAC,WAAW,EAAE,CAAC,eAAe,CAAC;IAChD,CAAC;IAEO,MAAM,KAAK,eAAe;QAChC,OAAO,mBAAQ,CAAC,WAAW,EAAE,CAAC,SAAS,CAAC;IAC1C,CAAC;CACF;AAzCD,wCAyCC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export interface FileSystem {
|
|
2
|
+
readDirectory: (sourceDirectory: string) => string[];
|
|
3
|
+
isDirectory: (path: string) => boolean;
|
|
4
|
+
readFile: (path: string) => string;
|
|
5
|
+
joinPath: (...paths: string[]) => string;
|
|
6
|
+
exists: (path: string) => boolean;
|
|
7
|
+
}
|
|
8
|
+
export declare class DefaultFileSystem implements FileSystem {
|
|
9
|
+
isDirectory(pathToRead: string): boolean;
|
|
10
|
+
readDirectory(sourceDirectory: string): string[];
|
|
11
|
+
readFile(pathToRead: string): string;
|
|
12
|
+
joinPath(...paths: string[]): string;
|
|
13
|
+
exists(path: string): boolean;
|
|
14
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DefaultFileSystem = void 0;
|
|
4
|
+
const fs = require("fs");
|
|
5
|
+
const path = require("path");
|
|
6
|
+
class DefaultFileSystem {
|
|
7
|
+
isDirectory(pathToRead) {
|
|
8
|
+
return fs.statSync(pathToRead).isDirectory();
|
|
9
|
+
}
|
|
10
|
+
readDirectory(sourceDirectory) {
|
|
11
|
+
return fs.readdirSync(sourceDirectory);
|
|
12
|
+
}
|
|
13
|
+
readFile(pathToRead) {
|
|
14
|
+
const rawFile = fs.readFileSync(pathToRead);
|
|
15
|
+
return rawFile.toString();
|
|
16
|
+
}
|
|
17
|
+
joinPath(...paths) {
|
|
18
|
+
return path.join(...paths);
|
|
19
|
+
}
|
|
20
|
+
exists(path) {
|
|
21
|
+
return fs.existsSync(path);
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
exports.DefaultFileSystem = DefaultFileSystem;
|
|
25
|
+
//# sourceMappingURL=file-system.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-system.js","sourceRoot":"","sources":["../../src/service/file-system.ts"],"names":[],"mappings":";;;AAAA,yBAAyB;AACzB,6BAA6B;AAU7B,MAAa,iBAAiB;IAC5B,WAAW,CAAC,UAAkB;QAC5B,OAAO,EAAE,CAAC,QAAQ,CAAC,UAAU,CAAC,CAAC,WAAW,EAAE,CAAC;IAC/C,CAAC;IAED,aAAa,CAAC,eAAuB;QACnC,OAAO,EAAE,CAAC,WAAW,CAAC,eAAe,CAAC,CAAC;IACzC,CAAC;IAED,QAAQ,CAAC,UAAkB;QACzB,MAAM,OAAO,GAAG,EAAE,CAAC,YAAY,CAAC,UAAU,CAAC,CAAC;QAC5C,OAAO,OAAO,CAAC,QAAQ,EAAE,CAAC;IAC5B,CAAC;IAED,QAAQ,CAAC,GAAG,KAAe;QACzB,OAAO,IAAI,CAAC,IAAI,CAAC,GAAG,KAAK,CAAC,CAAC;IAC7B,CAAC;IAED,MAAM,CAAC,IAAY;QACjB,OAAO,EAAE,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;IAC7B,CAAC;CACF;AArBD,8CAqBC"}
|