@cparra/apexdocs 2.25.0-alpha.9 → 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 -36
- 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 -2964
- package/dist/defaults-DUwru49Q.js +0 -12
- package/dist/defaults-SH0Rsi5E.js +0 -11
- package/dist/index.d.ts +0 -100
- 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/index.md +0 -109
- package/examples/plain-markdown/docs/miscellaneous/BaseClass.md +0 -16
- package/examples/plain-markdown/docs/miscellaneous/MultiInheritanceClass.md +0 -72
- package/examples/plain-markdown/docs/miscellaneous/ParentInterface.md +0 -15
- package/examples/plain-markdown/docs/miscellaneous/ReferencedEnum.md +0 -8
- package/examples/plain-markdown/docs/miscellaneous/SampleException.md +0 -24
- package/examples/plain-markdown/docs/miscellaneous/SampleInterface.md +0 -112
- package/examples/plain-markdown/docs/miscellaneous/Url.md +0 -309
- package/examples/plain-markdown/docs/sample-enums/SampleEnum.md +0 -36
- package/examples/plain-markdown/docs/samplegroup/SampleClass.md +0 -170
- 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 -106
- 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/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/docs/miscellaneous/BaseClass.md +0 -20
- package/examples/vitepress/docs/miscellaneous/MultiInheritanceClass.md +0 -76
- package/examples/vitepress/docs/miscellaneous/ParentInterface.md +0 -19
- package/examples/vitepress/docs/miscellaneous/ReferencedEnum.md +0 -15
- package/examples/vitepress/docs/miscellaneous/SampleException.md +0 -28
- package/examples/vitepress/docs/miscellaneous/SampleInterface.md +0 -116
- package/examples/vitepress/docs/miscellaneous/Url.md +0 -317
- package/examples/vitepress/docs/sample-enums/SampleEnum.md +0 -40
- package/examples/vitepress/docs/samplegroup/SampleClass.md +0 -174
- 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 -21
- package/src/application/generators/markdown.ts +0 -58
- 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 -735
- package/src/core/markdown/__test__/generating-enum-docs.spec.ts +0 -385
- package/src/core/markdown/__test__/generating-interface-docs.spec.ts +0 -461
- package/src/core/markdown/__test__/generating-reference-guide.spec.ts +0 -180
- 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 -147
- package/src/core/markdown/adapters/__tests__/references.spec.ts +0 -136
- package/src/core/markdown/adapters/apex-types.ts +0 -238
- 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/reference-guide.ts +0 -35
- package/src/core/markdown/adapters/renderable-bundle.ts +0 -68
- package/src/core/markdown/adapters/renderable-to-page-data.ts +0 -89
- package/src/core/markdown/adapters/type-utils.ts +0 -13
- package/src/core/markdown/adapters/types.d.ts +0 -180
- package/src/core/markdown/generate-docs.ts +0 -215
- 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 -45
- 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 -12
- package/src/core/parse-apex-metadata.ts +0 -14
- package/src/core/settings.ts +0 -56
- package/src/core/shared/types.d.ts +0 -130
- 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,31 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AnnotationBuilder = void 0;
|
|
4
|
+
/**
|
|
5
|
+
* Builder class to create Annotation objects.
|
|
6
|
+
* For testing purposes only.
|
|
7
|
+
*/
|
|
8
|
+
class AnnotationBuilder {
|
|
9
|
+
constructor() {
|
|
10
|
+
this.name = 'restresource';
|
|
11
|
+
this.elementValues = [];
|
|
12
|
+
}
|
|
13
|
+
withName(name) {
|
|
14
|
+
this.name = name;
|
|
15
|
+
return this;
|
|
16
|
+
}
|
|
17
|
+
addElementValue(elementValue) {
|
|
18
|
+
this.elementValues.push(elementValue);
|
|
19
|
+
return this;
|
|
20
|
+
}
|
|
21
|
+
build() {
|
|
22
|
+
return {
|
|
23
|
+
rawDeclaration: '',
|
|
24
|
+
name: this.name,
|
|
25
|
+
type: this.name,
|
|
26
|
+
elementValues: this.elementValues,
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
exports.AnnotationBuilder = AnnotationBuilder;
|
|
31
|
+
//# sourceMappingURL=AnnotationBuilder.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AnnotationBuilder.js","sourceRoot":"","sources":["../../src/test-helpers/AnnotationBuilder.ts"],"names":[],"mappings":";;;AAEA;;;GAGG;AACH,MAAa,iBAAiB;IAA9B;QACU,SAAI,GAAG,cAAc,CAAC;QACtB,kBAAa,GAA6B,EAAE,CAAC;IAoBvD,CAAC;IAlBC,QAAQ,CAAC,IAAY;QACnB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;QACjB,OAAO,IAAI,CAAC;IACd,CAAC;IAED,eAAe,CAAC,YAAoC;QAClD,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;QACtC,OAAO,IAAI,CAAC;IACd,CAAC;IAED,KAAK;QACH,OAAO;YACL,cAAc,EAAE,EAAE;YAClB,IAAI,EAAE,IAAI,CAAC,IAAI;YACf,IAAI,EAAE,IAAI,CAAC,IAAI;YACf,aAAa,EAAE,IAAI,CAAC,aAAa;SAClC,CAAC;IACJ,CAAC;CACF;AAtBD,8CAsBC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Annotation, ClassMirror, DocComment, FieldMirror, MethodMirror } from '@cparra/apex-reflection';
|
|
2
|
+
/**
|
|
3
|
+
* Builder class to create ClassMirror objects.
|
|
4
|
+
* For testing purposes only.
|
|
5
|
+
*/
|
|
6
|
+
export declare class ClassMirrorBuilder {
|
|
7
|
+
private name;
|
|
8
|
+
private annotations;
|
|
9
|
+
private docComment?;
|
|
10
|
+
private methods;
|
|
11
|
+
private fields;
|
|
12
|
+
withName(name: string): ClassMirrorBuilder;
|
|
13
|
+
addAnnotation(annotation: Annotation): ClassMirrorBuilder;
|
|
14
|
+
withDocComment(docComment: DocComment): ClassMirrorBuilder;
|
|
15
|
+
addMethod(method: MethodMirror): ClassMirrorBuilder;
|
|
16
|
+
addFiled(field: FieldMirror): ClassMirrorBuilder;
|
|
17
|
+
build(): ClassMirror;
|
|
18
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ClassMirrorBuilder = void 0;
|
|
4
|
+
/**
|
|
5
|
+
* Builder class to create ClassMirror objects.
|
|
6
|
+
* For testing purposes only.
|
|
7
|
+
*/
|
|
8
|
+
class ClassMirrorBuilder {
|
|
9
|
+
constructor() {
|
|
10
|
+
this.name = 'SampleClass';
|
|
11
|
+
this.annotations = [];
|
|
12
|
+
this.methods = [];
|
|
13
|
+
this.fields = [];
|
|
14
|
+
}
|
|
15
|
+
withName(name) {
|
|
16
|
+
this.name = name;
|
|
17
|
+
return this;
|
|
18
|
+
}
|
|
19
|
+
addAnnotation(annotation) {
|
|
20
|
+
this.annotations.push(annotation);
|
|
21
|
+
return this;
|
|
22
|
+
}
|
|
23
|
+
withDocComment(docComment) {
|
|
24
|
+
this.docComment = docComment;
|
|
25
|
+
return this;
|
|
26
|
+
}
|
|
27
|
+
addMethod(method) {
|
|
28
|
+
this.methods.push(method);
|
|
29
|
+
return this;
|
|
30
|
+
}
|
|
31
|
+
addFiled(field) {
|
|
32
|
+
this.fields.push(field);
|
|
33
|
+
return this;
|
|
34
|
+
}
|
|
35
|
+
build() {
|
|
36
|
+
return {
|
|
37
|
+
annotations: this.annotations,
|
|
38
|
+
name: this.name,
|
|
39
|
+
type_name: 'class',
|
|
40
|
+
methods: this.methods,
|
|
41
|
+
implemented_interfaces: [],
|
|
42
|
+
properties: [],
|
|
43
|
+
fields: this.fields,
|
|
44
|
+
constructors: [],
|
|
45
|
+
enums: [],
|
|
46
|
+
interfaces: [],
|
|
47
|
+
classes: [],
|
|
48
|
+
access_modifier: 'public',
|
|
49
|
+
docComment: this.docComment,
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
exports.ClassMirrorBuilder = ClassMirrorBuilder;
|
|
54
|
+
//# sourceMappingURL=ClassMirrorBuilder.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ClassMirrorBuilder.js","sourceRoot":"","sources":["../../src/test-helpers/ClassMirrorBuilder.ts"],"names":[],"mappings":";;;AAEA;;;GAGG;AACH,MAAa,kBAAkB;IAA/B;QACU,SAAI,GAAG,aAAa,CAAC;QACrB,gBAAW,GAAiB,EAAE,CAAC;QAE/B,YAAO,GAAmB,EAAE,CAAC;QAC7B,WAAM,GAAkB,EAAE,CAAC;IA4CrC,CAAC;IA1CC,QAAQ,CAAC,IAAY;QACnB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;QACjB,OAAO,IAAI,CAAC;IACd,CAAC;IAED,aAAa,CAAC,UAAsB;QAClC,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;QAClC,OAAO,IAAI,CAAC;IACd,CAAC;IAED,cAAc,CAAC,UAAsB;QACnC,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;QAC7B,OAAO,IAAI,CAAC;IACd,CAAC;IAED,SAAS,CAAC,MAAoB;QAC5B,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;QAC1B,OAAO,IAAI,CAAC;IACd,CAAC;IAED,QAAQ,CAAC,KAAkB;QACzB,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QACxB,OAAO,IAAI,CAAC;IACd,CAAC;IAED,KAAK;QACH,OAAO;YACL,WAAW,EAAE,IAAI,CAAC,WAAW;YAC7B,IAAI,EAAE,IAAI,CAAC,IAAI;YACf,SAAS,EAAE,OAAO;YAClB,OAAO,EAAE,IAAI,CAAC,OAAO;YACrB,sBAAsB,EAAE,EAAE;YAC1B,UAAU,EAAE,EAAE;YACd,MAAM,EAAE,IAAI,CAAC,MAAM;YACnB,YAAY,EAAE,EAAE;YAChB,KAAK,EAAE,EAAE;YACT,UAAU,EAAE,EAAE;YACd,OAAO,EAAE,EAAE;YACX,eAAe,EAAE,QAAQ;YACzB,UAAU,EAAE,IAAI,CAAC,UAAU;SAC5B,CAAC;IACJ,CAAC;CACF;AAjDD,gDAiDC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { DocCommentAnnotation } from '@cparra/apex-reflection';
|
|
2
|
+
export declare class DocCommentAnnotationBuilder {
|
|
3
|
+
private name;
|
|
4
|
+
private bodyLines;
|
|
5
|
+
withName(name: string): DocCommentAnnotationBuilder;
|
|
6
|
+
withBodyLines(bodyLines: string[]): DocCommentAnnotationBuilder;
|
|
7
|
+
build(): DocCommentAnnotation;
|
|
8
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DocCommentAnnotationBuilder = void 0;
|
|
4
|
+
class DocCommentAnnotationBuilder {
|
|
5
|
+
constructor() {
|
|
6
|
+
this.name = '';
|
|
7
|
+
this.bodyLines = [];
|
|
8
|
+
}
|
|
9
|
+
withName(name) {
|
|
10
|
+
this.name = name;
|
|
11
|
+
return this;
|
|
12
|
+
}
|
|
13
|
+
withBodyLines(bodyLines) {
|
|
14
|
+
this.bodyLines = bodyLines;
|
|
15
|
+
return this;
|
|
16
|
+
}
|
|
17
|
+
build() {
|
|
18
|
+
return {
|
|
19
|
+
name: this.name,
|
|
20
|
+
body: '',
|
|
21
|
+
bodyLines: this.bodyLines,
|
|
22
|
+
};
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
exports.DocCommentAnnotationBuilder = DocCommentAnnotationBuilder;
|
|
26
|
+
//# sourceMappingURL=DocCommentAnnotationBuilder.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DocCommentAnnotationBuilder.js","sourceRoot":"","sources":["../../src/test-helpers/DocCommentAnnotationBuilder.ts"],"names":[],"mappings":";;;AAEA,MAAa,2BAA2B;IAAxC;QACU,SAAI,GAAG,EAAE,CAAC;QACV,cAAS,GAAa,EAAE,CAAC;IAmBnC,CAAC;IAjBC,QAAQ,CAAC,IAAY;QACnB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;QACjB,OAAO,IAAI,CAAC;IACd,CAAC;IAED,aAAa,CAAC,SAAmB;QAC/B,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;QAC3B,OAAO,IAAI,CAAC;IACd,CAAC;IAED,KAAK;QACH,OAAO;YACL,IAAI,EAAE,IAAI,CAAC,IAAI;YACf,IAAI,EAAE,EAAE;YACR,SAAS,EAAE,IAAI,CAAC,SAAS;SAC1B,CAAC;IACJ,CAAC;CACF;AArBD,kEAqBC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { DocComment, DocCommentAnnotation } from '@cparra/apex-reflection';
|
|
2
|
+
/**
|
|
3
|
+
* Builder class to create DocComment objects.
|
|
4
|
+
* For testing purposes only.
|
|
5
|
+
*/
|
|
6
|
+
export declare class DocCommentBuilder {
|
|
7
|
+
private description?;
|
|
8
|
+
private annotations;
|
|
9
|
+
addAnnotation(annotation: DocCommentAnnotation): DocCommentBuilder;
|
|
10
|
+
withDescription(description: string): DocCommentBuilder;
|
|
11
|
+
build(): DocComment;
|
|
12
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DocCommentBuilder = void 0;
|
|
4
|
+
/**
|
|
5
|
+
* Builder class to create DocComment objects.
|
|
6
|
+
* For testing purposes only.
|
|
7
|
+
*/
|
|
8
|
+
class DocCommentBuilder {
|
|
9
|
+
constructor() {
|
|
10
|
+
this.annotations = [];
|
|
11
|
+
}
|
|
12
|
+
addAnnotation(annotation) {
|
|
13
|
+
this.annotations.push(annotation);
|
|
14
|
+
return this;
|
|
15
|
+
}
|
|
16
|
+
withDescription(description) {
|
|
17
|
+
this.description = description;
|
|
18
|
+
return this;
|
|
19
|
+
}
|
|
20
|
+
build() {
|
|
21
|
+
var _a;
|
|
22
|
+
return {
|
|
23
|
+
paramAnnotations: [],
|
|
24
|
+
returnAnnotation: {
|
|
25
|
+
bodyLines: [],
|
|
26
|
+
},
|
|
27
|
+
exampleAnnotation: {
|
|
28
|
+
bodyLines: [],
|
|
29
|
+
},
|
|
30
|
+
throwsAnnotations: [],
|
|
31
|
+
annotations: this.annotations,
|
|
32
|
+
descriptionLines: [],
|
|
33
|
+
description: (_a = this.description) !== null && _a !== void 0 ? _a : 'Sample Description',
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
exports.DocCommentBuilder = DocCommentBuilder;
|
|
38
|
+
//# sourceMappingURL=DocCommentBuilder.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DocCommentBuilder.js","sourceRoot":"","sources":["../../src/test-helpers/DocCommentBuilder.ts"],"names":[],"mappings":";;;AAEA;;;GAGG;AACH,MAAa,iBAAiB;IAA9B;QAEU,gBAAW,GAA2B,EAAE,CAAC;IA2BnD,CAAC;IAzBC,aAAa,CAAC,UAAgC;QAC5C,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;QAClC,OAAO,IAAI,CAAC;IACd,CAAC;IAED,eAAe,CAAC,WAAmB;QACjC,IAAI,CAAC,WAAW,GAAG,WAAW,CAAC;QAC/B,OAAO,IAAI,CAAC;IACd,CAAC;IAED,KAAK;;QACH,OAAO;YACL,gBAAgB,EAAE,EAAE;YACpB,gBAAgB,EAAE;gBAChB,SAAS,EAAE,EAAE;aACd;YACD,iBAAiB,EAAE;gBACjB,SAAS,EAAE,EAAE;aACd;YACD,iBAAiB,EAAE,EAAE;YACrB,WAAW,EAAE,IAAI,CAAC,WAAW;YAC7B,gBAAgB,EAAE,EAAE;YACpB,WAAW,EAAE,MAAA,IAAI,CAAC,WAAW,mCAAI,oBAAoB;SACtD,CAAC;IACJ,CAAC;CACF;AA7BD,8CA6BC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { DocComment, FieldMirror } from '@cparra/apex-reflection';
|
|
2
|
+
import { ReferencedType } from '@cparra/apex-reflection/index';
|
|
3
|
+
type MemberModifier = 'static' | 'webservice' | 'final' | 'override' | 'testmethod' | 'transient';
|
|
4
|
+
export declare class FieldMirrorBuilder {
|
|
5
|
+
private docComment;
|
|
6
|
+
private accessModifier;
|
|
7
|
+
private name;
|
|
8
|
+
private memberModifiers;
|
|
9
|
+
private type;
|
|
10
|
+
withAccessModifier(accessModifier: string): FieldMirrorBuilder;
|
|
11
|
+
withName(name: string): FieldMirrorBuilder;
|
|
12
|
+
withType(type: string): FieldMirrorBuilder;
|
|
13
|
+
withReferencedType(type: ReferencedType): FieldMirrorBuilder;
|
|
14
|
+
addMemberModifier(memberModifier: MemberModifier): FieldMirrorBuilder;
|
|
15
|
+
withDocComment(docComment: DocComment): FieldMirrorBuilder;
|
|
16
|
+
build(): FieldMirror;
|
|
17
|
+
}
|
|
18
|
+
export {};
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FieldMirrorBuilder = void 0;
|
|
4
|
+
class FieldMirrorBuilder {
|
|
5
|
+
constructor() {
|
|
6
|
+
this.docComment = undefined;
|
|
7
|
+
this.accessModifier = 'public';
|
|
8
|
+
this.name = 'fieldName';
|
|
9
|
+
this.memberModifiers = [];
|
|
10
|
+
this.type = {
|
|
11
|
+
type: 'String',
|
|
12
|
+
rawDeclaration: 'String',
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
withAccessModifier(accessModifier) {
|
|
16
|
+
this.accessModifier = accessModifier;
|
|
17
|
+
return this;
|
|
18
|
+
}
|
|
19
|
+
withName(name) {
|
|
20
|
+
this.name = name;
|
|
21
|
+
return this;
|
|
22
|
+
}
|
|
23
|
+
withType(type) {
|
|
24
|
+
this.type = {
|
|
25
|
+
rawDeclaration: type,
|
|
26
|
+
type: type,
|
|
27
|
+
};
|
|
28
|
+
return this;
|
|
29
|
+
}
|
|
30
|
+
withReferencedType(type) {
|
|
31
|
+
this.type = type;
|
|
32
|
+
return this;
|
|
33
|
+
}
|
|
34
|
+
addMemberModifier(memberModifier) {
|
|
35
|
+
this.memberModifiers.push(memberModifier);
|
|
36
|
+
return this;
|
|
37
|
+
}
|
|
38
|
+
withDocComment(docComment) {
|
|
39
|
+
this.docComment = docComment;
|
|
40
|
+
return this;
|
|
41
|
+
}
|
|
42
|
+
build() {
|
|
43
|
+
return {
|
|
44
|
+
access_modifier: this.accessModifier,
|
|
45
|
+
annotations: [],
|
|
46
|
+
name: this.name,
|
|
47
|
+
memberModifiers: this.memberModifiers,
|
|
48
|
+
typeReference: this.type,
|
|
49
|
+
docComment: this.docComment,
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
exports.FieldMirrorBuilder = FieldMirrorBuilder;
|
|
54
|
+
//# sourceMappingURL=FieldMirrorBuilder.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FieldMirrorBuilder.js","sourceRoot":"","sources":["../../src/test-helpers/FieldMirrorBuilder.ts"],"names":[],"mappings":";;;AAKA,MAAa,kBAAkB;IAA/B;QACU,eAAU,GAA2B,SAAS,CAAC;QAC/C,mBAAc,GAAG,QAAQ,CAAC;QAC1B,SAAI,GAAG,WAAW,CAAC;QACnB,oBAAe,GAAqB,EAAE,CAAC;QACvC,SAAI,GAAmB;YAC7B,IAAI,EAAE,QAAQ;YACd,cAAc,EAAE,QAAQ;SACzB,CAAC;IA6CJ,CAAC;IA3CC,kBAAkB,CAAC,cAAsB;QACvC,IAAI,CAAC,cAAc,GAAG,cAAc,CAAC;QACrC,OAAO,IAAI,CAAC;IACd,CAAC;IAED,QAAQ,CAAC,IAAY;QACnB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;QACjB,OAAO,IAAI,CAAC;IACd,CAAC;IAED,QAAQ,CAAC,IAAY;QACnB,IAAI,CAAC,IAAI,GAAG;YACV,cAAc,EAAE,IAAI;YACpB,IAAI,EAAE,IAAI;SACX,CAAC;QACF,OAAO,IAAI,CAAC;IACd,CAAC;IAED,kBAAkB,CAAC,IAAoB;QACrC,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;QACjB,OAAO,IAAI,CAAC;IACd,CAAC;IAED,iBAAiB,CAAC,cAA8B;QAC9C,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC;QAC1C,OAAO,IAAI,CAAC;IACd,CAAC;IAED,cAAc,CAAC,UAAsB;QACnC,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;QAC7B,OAAO,IAAI,CAAC;IACd,CAAC;IAED,KAAK;QACH,OAAO;YACL,eAAe,EAAE,IAAI,CAAC,cAAc;YACpC,WAAW,EAAE,EAAE;YACf,IAAI,EAAE,IAAI,CAAC,IAAI;YACf,eAAe,EAAE,IAAI,CAAC,eAAe;YACrC,aAAa,EAAE,IAAI,CAAC,IAAI;YACxB,UAAU,EAAE,IAAI,CAAC,UAAU;SAC5B,CAAC;IACJ,CAAC;CACF;AArDD,gDAqDC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Annotation, DocComment, MethodMirror } from '@cparra/apex-reflection';
|
|
2
|
+
export declare class MethodMirrorBuilder {
|
|
3
|
+
private name;
|
|
4
|
+
private annotations;
|
|
5
|
+
private docComment?;
|
|
6
|
+
withName(name: string): MethodMirrorBuilder;
|
|
7
|
+
addAnnotation(annotation: Annotation): MethodMirrorBuilder;
|
|
8
|
+
withDocComment(docComment: DocComment): MethodMirrorBuilder;
|
|
9
|
+
build(): MethodMirror;
|
|
10
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.MethodMirrorBuilder = void 0;
|
|
4
|
+
class MethodMirrorBuilder {
|
|
5
|
+
constructor() {
|
|
6
|
+
this.name = 'sampleMethod';
|
|
7
|
+
this.annotations = [];
|
|
8
|
+
}
|
|
9
|
+
withName(name) {
|
|
10
|
+
this.name = name;
|
|
11
|
+
return this;
|
|
12
|
+
}
|
|
13
|
+
addAnnotation(annotation) {
|
|
14
|
+
this.annotations.push(annotation);
|
|
15
|
+
return this;
|
|
16
|
+
}
|
|
17
|
+
withDocComment(docComment) {
|
|
18
|
+
this.docComment = docComment;
|
|
19
|
+
return this;
|
|
20
|
+
}
|
|
21
|
+
build() {
|
|
22
|
+
return {
|
|
23
|
+
access_modifier: 'public',
|
|
24
|
+
annotations: this.annotations,
|
|
25
|
+
name: this.name,
|
|
26
|
+
memberModifiers: [],
|
|
27
|
+
typeReference: {
|
|
28
|
+
type: 'void',
|
|
29
|
+
rawDeclaration: 'void',
|
|
30
|
+
},
|
|
31
|
+
parameters: [],
|
|
32
|
+
docComment: this.docComment,
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
exports.MethodMirrorBuilder = MethodMirrorBuilder;
|
|
37
|
+
//# sourceMappingURL=MethodMirrorBuilder.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MethodMirrorBuilder.js","sourceRoot":"","sources":["../../src/test-helpers/MethodMirrorBuilder.ts"],"names":[],"mappings":";;;AAEA,MAAa,mBAAmB;IAAhC;QACU,SAAI,GAAG,cAAc,CAAC;QACtB,gBAAW,GAAiB,EAAE,CAAC;IAgCzC,CAAC;IA7BC,QAAQ,CAAC,IAAY;QACnB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;QACjB,OAAO,IAAI,CAAC;IACd,CAAC;IAED,aAAa,CAAC,UAAsB;QAClC,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;QAClC,OAAO,IAAI,CAAC;IACd,CAAC;IAED,cAAc,CAAC,UAAsB;QACnC,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;QAC7B,OAAO,IAAI,CAAC;IACd,CAAC;IAED,KAAK;QACH,OAAO;YACL,eAAe,EAAE,QAAQ;YACzB,WAAW,EAAE,IAAI,CAAC,WAAW;YAC7B,IAAI,EAAE,IAAI,CAAC,IAAI;YACf,eAAe,EAAE,EAAE;YACnB,aAAa,EAAE;gBACb,IAAI,EAAE,MAAM;gBACZ,cAAc,EAAE,MAAM;aACvB;YACD,UAAU,EAAE,EAAE;YACd,UAAU,EAAE,IAAI,CAAC,UAAU;SAC5B,CAAC;IACJ,CAAC;CACF;AAlCD,kDAkCC"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SettingsBuilder = void 0;
|
|
4
|
+
/**
|
|
5
|
+
* Builder class to create SettingsConfig objects.
|
|
6
|
+
* For testing purposes only.
|
|
7
|
+
*/
|
|
8
|
+
class SettingsBuilder {
|
|
9
|
+
build() {
|
|
10
|
+
return {
|
|
11
|
+
sourceDirectory: './',
|
|
12
|
+
recursive: true,
|
|
13
|
+
scope: [],
|
|
14
|
+
outputDir: './',
|
|
15
|
+
targetGenerator: 'openapi',
|
|
16
|
+
indexOnly: false,
|
|
17
|
+
defaultGroupName: 'Misc',
|
|
18
|
+
sanitizeHtml: true,
|
|
19
|
+
openApiTitle: 'Apex API',
|
|
20
|
+
openApiFileName: 'openapi',
|
|
21
|
+
title: 'Classes',
|
|
22
|
+
includeMetadata: false,
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
exports.SettingsBuilder = SettingsBuilder;
|
|
27
|
+
//# sourceMappingURL=SettingsBuilder.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SettingsBuilder.js","sourceRoot":"","sources":["../../src/test-helpers/SettingsBuilder.ts"],"names":[],"mappings":";;;AAEA;;;GAGG;AACH,MAAa,eAAe;IAC1B,KAAK;QACH,OAAO;YACL,eAAe,EAAE,IAAI;YACrB,SAAS,EAAE,IAAI;YACf,KAAK,EAAE,EAAE;YACT,SAAS,EAAE,IAAI;YACf,eAAe,EAAE,SAAS;YAC1B,SAAS,EAAE,KAAK;YAChB,gBAAgB,EAAE,MAAM;YACxB,YAAY,EAAE,IAAI;YAClB,YAAY,EAAE,UAAU;YACxB,eAAe,EAAE,SAAS;YAC1B,KAAK,EAAE,SAAS;YAChB,eAAe,EAAE,KAAK;SACvB,CAAC;IACJ,CAAC;CACF;AAjBD,0CAiBC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import ProcessorTypeTranspiler from './processor-type-transpiler';
|
|
2
|
+
import { GeneratorChoices } from './generator-choices';
|
|
3
|
+
export declare class TypeTranspilerFactory {
|
|
4
|
+
private static typeTranspilerCache?;
|
|
5
|
+
static get(generator: GeneratorChoices): ProcessorTypeTranspiler;
|
|
6
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.TypeTranspilerFactory = void 0;
|
|
4
|
+
const jekyll_docsProcessor_1 = require("./markdown/jekyll/jekyll-docsProcessor");
|
|
5
|
+
const docsify_docs_processor_1 = require("./markdown/docsify/docsify-docs-processor");
|
|
6
|
+
const plain_docsProcessor_1 = require("./markdown/plain-markdown/plain-docsProcessor");
|
|
7
|
+
const open_api_docs_processor_1 = require("./openapi/open-api-docs-processor");
|
|
8
|
+
class TypeTranspilerFactory {
|
|
9
|
+
static get(generator) {
|
|
10
|
+
if (this.typeTranspilerCache) {
|
|
11
|
+
return this.typeTranspilerCache;
|
|
12
|
+
}
|
|
13
|
+
switch (generator) {
|
|
14
|
+
case 'jekyll':
|
|
15
|
+
this.typeTranspilerCache = new jekyll_docsProcessor_1.JekyllDocsProcessor();
|
|
16
|
+
return this.typeTranspilerCache;
|
|
17
|
+
case 'docsify':
|
|
18
|
+
this.typeTranspilerCache = new docsify_docs_processor_1.default();
|
|
19
|
+
return this.typeTranspilerCache;
|
|
20
|
+
case 'plain-markdown':
|
|
21
|
+
this.typeTranspilerCache = new plain_docsProcessor_1.PlainMarkdownDocsProcessor();
|
|
22
|
+
return this.typeTranspilerCache;
|
|
23
|
+
case 'openapi':
|
|
24
|
+
this.typeTranspilerCache = new open_api_docs_processor_1.OpenApiDocsProcessor();
|
|
25
|
+
return this.typeTranspilerCache;
|
|
26
|
+
default:
|
|
27
|
+
throw Error('Invalid target generator');
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
exports.TypeTranspilerFactory = TypeTranspilerFactory;
|
|
32
|
+
//# sourceMappingURL=factory.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"factory.js","sourceRoot":"","sources":["../../src/transpiler/factory.ts"],"names":[],"mappings":";;;AAEA,iFAA6E;AAC7E,sFAA6E;AAC7E,uFAA2F;AAC3F,+EAAyE;AAEzE,MAAa,qBAAqB;IAGzB,MAAM,CAAC,GAAG,CAAC,SAA2B;QAC3C,IAAI,IAAI,CAAC,mBAAmB,EAAE;YAC5B,OAAO,IAAI,CAAC,mBAAmB,CAAC;SACjC;QAED,QAAQ,SAAS,EAAE;YACjB,KAAK,QAAQ;gBACX,IAAI,CAAC,mBAAmB,GAAG,IAAI,0CAAmB,EAAE,CAAC;gBACrD,OAAO,IAAI,CAAC,mBAAmB,CAAC;YAClC,KAAK,SAAS;gBACZ,IAAI,CAAC,mBAAmB,GAAG,IAAI,gCAAoB,EAAE,CAAC;gBACtD,OAAO,IAAI,CAAC,mBAAmB,CAAC;YAClC,KAAK,gBAAgB;gBACnB,IAAI,CAAC,mBAAmB,GAAG,IAAI,gDAA0B,EAAE,CAAC;gBAC5D,OAAO,IAAI,CAAC,mBAAmB,CAAC;YAClC,KAAK,SAAS;gBACZ,IAAI,CAAC,mBAAmB,GAAG,IAAI,8CAAoB,EAAE,CAAC;gBACtD,OAAO,IAAI,CAAC,mBAAmB,CAAC;YAClC;gBACE,MAAM,KAAK,CAAC,0BAA0B,CAAC,CAAC;SAC3C;IACH,CAAC;CACF;AAzBD,sDAyBC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FileContainer = void 0;
|
|
4
|
+
class FileContainer {
|
|
5
|
+
constructor() {
|
|
6
|
+
this._files = [];
|
|
7
|
+
}
|
|
8
|
+
files() {
|
|
9
|
+
return this._files;
|
|
10
|
+
}
|
|
11
|
+
pushFile(file) {
|
|
12
|
+
this._files.push(file);
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
exports.FileContainer = FileContainer;
|
|
16
|
+
//# sourceMappingURL=file-container.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-container.js","sourceRoot":"","sources":["../../src/transpiler/file-container.ts"],"names":[],"mappings":";;;AAEA,MAAa,aAAa;IAA1B;QACE,WAAM,GAAiB,EAAE,CAAC;IAS5B,CAAC;IAPC,KAAK;QACH,OAAO,IAAI,CAAC,MAAM,CAAC;IACrB,CAAC;IAED,QAAQ,CAAC,IAAgB;QACvB,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IACzB,CAAC;CACF;AAVD,sCAUC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type GeneratorChoices = 'jekyll' | 'docsify' | 'plain-markdown' | 'openapi';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"generator-choices.js","sourceRoot":"","sources":["../../src/transpiler/generator-choices.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Type } from '@cparra/apex-reflection';
|
|
2
|
+
export default class ClassFileGeneratorHelper {
|
|
3
|
+
static getSanitizedGroup(classModel: Type): string;
|
|
4
|
+
static getFileLink(classModel: Type): string;
|
|
5
|
+
static getFileLinkByTypeName(typeName: string): string;
|
|
6
|
+
private static getDirectoryRoot;
|
|
7
|
+
private static getClassGroup;
|
|
8
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const types_repository_1 = require("../../model/types-repository");
|
|
4
|
+
const settings_1 = require("../../settings");
|
|
5
|
+
const state_1 = require("../../service/state");
|
|
6
|
+
const factory_1 = require("../factory");
|
|
7
|
+
class ClassFileGeneratorHelper {
|
|
8
|
+
static getSanitizedGroup(classModel) {
|
|
9
|
+
return this.getClassGroup(classModel).replace(/ /g, '-').replace('.', '');
|
|
10
|
+
}
|
|
11
|
+
static getFileLink(classModel) {
|
|
12
|
+
var _a;
|
|
13
|
+
const documentationRoot = (_a = settings_1.Settings.getInstance().getRootDir()) !== null && _a !== void 0 ? _a : '';
|
|
14
|
+
const directoryRoot = `${documentationRoot}${this.getDirectoryRoot(classModel)}`;
|
|
15
|
+
const fullClassName = `${settings_1.Settings.getInstance().getNamespacePrefix()}${classModel.name}`;
|
|
16
|
+
return `[${fullClassName}](${directoryRoot}${fullClassName}.md)`;
|
|
17
|
+
}
|
|
18
|
+
static getFileLinkByTypeName(typeName) {
|
|
19
|
+
const type = types_repository_1.TypesRepository.getInstance().getFromScopedByName(typeName);
|
|
20
|
+
if (!type) {
|
|
21
|
+
// If the type is not found, we return a Markdown hyperlink with whatever we received.
|
|
22
|
+
return `[${typeName}](${typeName})`;
|
|
23
|
+
}
|
|
24
|
+
return this.getFileLink(type);
|
|
25
|
+
}
|
|
26
|
+
static getDirectoryRoot(classModel) {
|
|
27
|
+
// root-relative links start from the root by using a leading '/'
|
|
28
|
+
const generator = settings_1.Settings.getInstance().targetGenerator;
|
|
29
|
+
if (factory_1.TypeTranspilerFactory.get(generator).getLinkingStrategy() === 'root-relative') {
|
|
30
|
+
return `/${this.getSanitizedGroup(classModel)}/`;
|
|
31
|
+
}
|
|
32
|
+
// path-relative links traverse the directory structure
|
|
33
|
+
const typeBeingProcessed = state_1.default.getInstance().getTypeBeingProcessed();
|
|
34
|
+
if (typeBeingProcessed) {
|
|
35
|
+
if (this.getClassGroup(typeBeingProcessed) === this.getClassGroup(classModel)) {
|
|
36
|
+
// If the types the same groups then we simply link directly to that file
|
|
37
|
+
return './';
|
|
38
|
+
}
|
|
39
|
+
else {
|
|
40
|
+
// If the types have different groups, then we have to go up a directory
|
|
41
|
+
return `../${this.getSanitizedGroup(classModel)}/`;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
else {
|
|
45
|
+
// If nothing is being processed, then we assume we are at the root and links should include the groups
|
|
46
|
+
return `./${this.getSanitizedGroup(classModel)}/`;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
static getClassGroup(classModel) {
|
|
50
|
+
var _a, _b;
|
|
51
|
+
const groupAnnotation = (_a = classModel.docComment) === null || _a === void 0 ? void 0 : _a.annotations.find((annotation) => annotation.name.toLowerCase() === 'group');
|
|
52
|
+
return (_b = groupAnnotation === null || groupAnnotation === void 0 ? void 0 : groupAnnotation.body) !== null && _b !== void 0 ? _b : settings_1.Settings.getInstance().getDefaultGroupName();
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
exports.default = ClassFileGeneratorHelper;
|
|
56
|
+
//# sourceMappingURL=class-file-generatorHelper.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"class-file-generatorHelper.js","sourceRoot":"","sources":["../../../src/transpiler/markdown/class-file-generatorHelper.ts"],"names":[],"mappings":";;AACA,mEAA+D;AAC/D,6CAA0C;AAC1C,+CAAwC;AACxC,wCAAmD;AAEnD,MAAqB,wBAAwB;IACpC,MAAM,CAAC,iBAAiB,CAAC,UAAgB;QAC9C,OAAO,IAAI,CAAC,aAAa,CAAC,UAAU,CAAC,CAAC,OAAO,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC,OAAO,CAAC,GAAG,EAAE,EAAE,CAAC,CAAC;IAC5E,CAAC;IAEM,MAAM,CAAC,WAAW,CAAC,UAAgB;;QACxC,MAAM,iBAAiB,GAAG,MAAA,mBAAQ,CAAC,WAAW,EAAE,CAAC,UAAU,EAAE,mCAAI,EAAE,CAAC;QACpE,MAAM,aAAa,GAAG,GAAG,iBAAiB,GAAG,IAAI,CAAC,gBAAgB,CAAC,UAAU,CAAC,EAAE,CAAC;QACjF,MAAM,aAAa,GAAG,GAAG,mBAAQ,CAAC,WAAW,EAAE,CAAC,kBAAkB,EAAE,GAAG,UAAU,CAAC,IAAI,EAAE,CAAC;QACzF,OAAO,IAAI,aAAa,KAAK,aAAa,GAAG,aAAa,MAAM,CAAC;IACnE,CAAC;IAEM,MAAM,CAAC,qBAAqB,CAAC,QAAgB;QAClD,MAAM,IAAI,GAAG,kCAAe,CAAC,WAAW,EAAE,CAAC,mBAAmB,CAAC,QAAQ,CAAC,CAAC;QACzE,IAAI,CAAC,IAAI,EAAE;YACT,sFAAsF;YACtF,OAAO,IAAI,QAAQ,KAAK,QAAQ,GAAG,CAAC;SACrC;QAED,OAAO,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC;IAChC,CAAC;IAEO,MAAM,CAAC,gBAAgB,CAAC,UAAgB;QAC9C,iEAAiE;QACjE,MAAM,SAAS,GAAG,mBAAQ,CAAC,WAAW,EAAE,CAAC,eAAe,CAAC;QACzD,IAAI,+BAAqB,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC,kBAAkB,EAAE,KAAK,eAAe,EAAE;YACjF,OAAO,IAAI,IAAI,CAAC,iBAAiB,CAAC,UAAU,CAAC,GAAG,CAAC;SAClD;QAED,uDAAuD;QACvD,MAAM,kBAAkB,GAAG,eAAK,CAAC,WAAW,EAAE,CAAC,qBAAqB,EAAE,CAAC;QACvE,IAAI,kBAAkB,EAAE;YACtB,IAAI,IAAI,CAAC,aAAa,CAAC,kBAAkB,CAAC,KAAK,IAAI,CAAC,aAAa,CAAC,UAAU,CAAC,EAAE;gBAC7E,yEAAyE;gBACzE,OAAO,IAAI,CAAC;aACb;iBAAM;gBACL,wEAAwE;gBACxE,OAAO,MAAM,IAAI,CAAC,iBAAiB,CAAC,UAAU,CAAC,GAAG,CAAC;aACpD;SACF;aAAM;YACL,uGAAuG;YACvG,OAAO,KAAK,IAAI,CAAC,iBAAiB,CAAC,UAAU,CAAC,GAAG,CAAC;SACnD;IACH,CAAC;IAEO,MAAM,CAAC,aAAa,CAAC,UAAgB;;QAC3C,MAAM,eAAe,GAAG,MAAA,UAAU,CAAC,UAAU,0CAAE,WAAW,CAAC,IAAI,CAC7D,CAAC,UAAU,EAAE,EAAE,CAAC,UAAU,CAAC,IAAI,CAAC,WAAW,EAAE,KAAK,OAAO,CAC1D,CAAC;QACF,OAAO,MAAA,eAAe,aAAf,eAAe,uBAAf,eAAe,CAAE,IAAI,mCAAI,mBAAQ,CAAC,WAAW,EAAE,CAAC,mBAAmB,EAAE,CAAC;IAC/E,CAAC;CACF;AAnDD,2CAmDC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { MarkdownTranspilerBase } from '../markdown-transpiler-base';
|
|
2
|
+
import { LinkingStrategy } from '../../processor-type-transpiler';
|
|
3
|
+
export default class DocsifyDocsProcessor extends MarkdownTranspilerBase {
|
|
4
|
+
homeFileName(): string;
|
|
5
|
+
getLinkingStrategy(): LinkingStrategy;
|
|
6
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const markdown_transpiler_base_1 = require("../markdown-transpiler-base");
|
|
4
|
+
class DocsifyDocsProcessor extends markdown_transpiler_base_1.MarkdownTranspilerBase {
|
|
5
|
+
homeFileName() {
|
|
6
|
+
return 'README';
|
|
7
|
+
}
|
|
8
|
+
getLinkingStrategy() {
|
|
9
|
+
return 'root-relative';
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
exports.default = DocsifyDocsProcessor;
|
|
13
|
+
//# sourceMappingURL=docsify-docs-processor.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"docsify-docs-processor.js","sourceRoot":"","sources":["../../../../src/transpiler/markdown/docsify/docsify-docs-processor.ts"],"names":[],"mappings":";;AAAA,0EAAqE;AAGrE,MAAqB,oBAAqB,SAAQ,iDAAsB;IACtE,YAAY;QACV,OAAO,QAAQ,CAAC;IAClB,CAAC;IAED,kBAAkB;QAChB,OAAO,eAAe,CAAC;IACzB,CAAC;CACF;AARD,uCAQC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { MarkdownTranspilerBase } from '../markdown-transpiler-base';
|
|
2
|
+
import { Type } from '@cparra/apex-reflection';
|
|
3
|
+
import { LinkingStrategy } from '../../processor-type-transpiler';
|
|
4
|
+
export declare class JekyllDocsProcessor extends MarkdownTranspilerBase {
|
|
5
|
+
homeFileName(): string;
|
|
6
|
+
onBeforeProcess: (types: Type[]) => void;
|
|
7
|
+
onProcess(type: Type): void;
|
|
8
|
+
get frontMatterForHomeFile(): string;
|
|
9
|
+
getFrontMatterHeader(type: Type): string;
|
|
10
|
+
getLinkingStrategy(): LinkingStrategy;
|
|
11
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.JekyllDocsProcessor = void 0;
|
|
4
|
+
const markdown_transpiler_base_1 = require("../markdown-transpiler-base");
|
|
5
|
+
const markdown_home_file_1 = require("../../../model/markdown-home-file");
|
|
6
|
+
const markdown_type_file_1 = require("../../../model/markdown-type-file");
|
|
7
|
+
const settings_1 = require("../../../settings");
|
|
8
|
+
class JekyllDocsProcessor extends markdown_transpiler_base_1.MarkdownTranspilerBase {
|
|
9
|
+
constructor() {
|
|
10
|
+
super(...arguments);
|
|
11
|
+
this.onBeforeProcess = (types) => {
|
|
12
|
+
this._fileContainer.pushFile(new markdown_home_file_1.MarkdownHomeFile(this.homeFileName(), types, this.frontMatterForHomeFile));
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
homeFileName() {
|
|
16
|
+
return 'index';
|
|
17
|
+
}
|
|
18
|
+
onProcess(type) {
|
|
19
|
+
this._fileContainer.pushFile(new markdown_type_file_1.MarkdownTypeFile(type, 1, this.getFrontMatterHeader(type)));
|
|
20
|
+
}
|
|
21
|
+
get frontMatterForHomeFile() {
|
|
22
|
+
return '---\nlayout: default\n---';
|
|
23
|
+
}
|
|
24
|
+
getFrontMatterHeader(type) {
|
|
25
|
+
var _a;
|
|
26
|
+
const headerLines = ['---'];
|
|
27
|
+
// "layout: default" is a required front matter header for Jekyll
|
|
28
|
+
headerLines.push('layout: default');
|
|
29
|
+
// Add any additional front matter headers that might have been configured in the settings
|
|
30
|
+
const targetType = {
|
|
31
|
+
name: type.name,
|
|
32
|
+
typeName: type.type_name,
|
|
33
|
+
accessModifier: type.access_modifier,
|
|
34
|
+
group: type.group,
|
|
35
|
+
description: (_a = type.docComment) === null || _a === void 0 ? void 0 : _a.description,
|
|
36
|
+
};
|
|
37
|
+
const configuredHeaders = settings_1.Settings.getInstance().frontMatterHeader(targetType);
|
|
38
|
+
if (configuredHeaders) {
|
|
39
|
+
configuredHeaders.forEach((header) => {
|
|
40
|
+
headerLines.push(header);
|
|
41
|
+
});
|
|
42
|
+
}
|
|
43
|
+
headerLines.push('---');
|
|
44
|
+
return headerLines.join('\n');
|
|
45
|
+
}
|
|
46
|
+
getLinkingStrategy() {
|
|
47
|
+
return 'path-relative';
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
exports.JekyllDocsProcessor = JekyllDocsProcessor;
|
|
51
|
+
//# sourceMappingURL=jekyll-docsProcessor.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"jekyll-docsProcessor.js","sourceRoot":"","sources":["../../../../src/transpiler/markdown/jekyll/jekyll-docsProcessor.ts"],"names":[],"mappings":";;;AAAA,0EAAqE;AAErE,0EAAqE;AACrE,0EAAqE;AAErE,gDAA6C;AAE7C,MAAa,mBAAoB,SAAQ,iDAAsB;IAA/D;;QAKE,oBAAe,GAAG,CAAC,KAAa,EAAE,EAAE;YAClC,IAAI,CAAC,cAAc,CAAC,QAAQ,CAAC,IAAI,qCAAgB,CAAC,IAAI,CAAC,YAAY,EAAE,EAAE,KAAK,EAAE,IAAI,CAAC,sBAAsB,CAAC,CAAC,CAAC;QAC9G,CAAC,CAAC;IAmCJ,CAAC;IAzCC,YAAY;QACV,OAAO,OAAO,CAAC;IACjB,CAAC;IAMD,SAAS,CAAC,IAAU;QAClB,IAAI,CAAC,cAAc,CAAC,QAAQ,CAAC,IAAI,qCAAgB,CAAC,IAAI,EAAE,CAAC,EAAE,IAAI,CAAC,oBAAoB,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IAC/F,CAAC;IAED,IAAI,sBAAsB;QACxB,OAAO,2BAA2B,CAAC;IACrC,CAAC;IAED,oBAAoB,CAAC,IAAU;;QAC7B,MAAM,WAAW,GAAG,CAAC,KAAK,CAAC,CAAC;QAC5B,iEAAiE;QACjE,WAAW,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC;QACpC,0FAA0F;QAC1F,MAAM,UAAU,GAAG;YACjB,IAAI,EAAE,IAAI,CAAC,IAAI;YACf,QAAQ,EAAE,IAAI,CAAC,SAAS;YACxB,cAAc,EAAE,IAAI,CAAC,eAAe;YACpC,KAAK,EAAE,IAAI,CAAC,KAAK;YACjB,WAAW,EAAE,MAAA,IAAI,CAAC,UAAU,0CAAE,WAAW;SAC1C,CAAC;QACF,MAAM,iBAAiB,GAAG,mBAAQ,CAAC,WAAW,EAAE,CAAC,iBAAiB,CAAC,UAAU,CAAC,CAAC;QAC/E,IAAI,iBAAiB,EAAE;YACrB,iBAAiB,CAAC,OAAO,CAAC,CAAC,MAAM,EAAE,EAAE;gBACnC,WAAW,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;YAC3B,CAAC,CAAC,CAAC;SACJ;QACD,WAAW,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QACxB,OAAO,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IAChC,CAAC;IAED,kBAAkB;QAChB,OAAO,eAAe,CAAC;IACzB,CAAC;CACF;AA1CD,kDA0CC"}
|