site

Version: org.nasdanika.models.app.cli
Usage: nsd drawio html-app site [-hlV] [--progress-console] [--progress-data] [--progress-json] [-b=<baseDir>] [-F=<pageTemplateFile>] [-m=<domian>] [-P=<parallelism>] [--progress-output=<progressOutput>] [-r=<pageErrors>] [-t=<timeout>] [-T=<pageTemplate>] [-w=<workDir>] [-x=<extension>] [-c=<String=String>]... [-C=URL]... [-M=<String=String>]... [-e [=<excludes>...]]... [-i[=<includes>...]]... <output> Generates HTML site <output> Output directory relative to the base directory -b, --base-dir=<baseDir> Base directory -c, --context-entry=<String=String> Context entries. Shadow entries in contexts and mounts. -C, --context=URL Context resource URL relative to the current directory. YAML, JSON, or properties. In properties dots are treated as key path separators. Type is inferred from the content type header, if it is present, or extension. Contexts are composed in the order of definition, later context entries shadowing the former -e, --exclude[=<excludes>...] Output directory clean excludes Ant pattern -F, --page-template-file=<pageTemplateFile> Page template file relative to the current directory -h, --help Show this help message and exit. -i, --include[=<includes>...] Output directory clean includes Ant pattern -l, --[no-]clean Clean working directory defaults to true -m, --domain=<domian> Sitemap domain -M, --context-mount=<String=String> MappingContext resource URL relative to the current directory. YAML, JSON, or properties. In properties dots are treated as key path separators. Type is inferred from the content type header, if it is present, or extension. Mounts shadow context entries. -P, --parallelism=<parallelism> If the value greater than one then an executor service is created and injected into the context to allow concurrent execution. --progress-console Output progress to console --progress-data Output progress data --progress-json Output progress in JSON --progress-output=<progressOutput> Output file for progress monitor -r, --errors=<pageErrors> Expected number of page errors -1 for any (not fail on errors) default is 0 -t, --timeout=<timeout> If parallelism is greater than one this option specifies timout in seconds awaiting completion of execution. Default value is 60. -T, --page-template=<pageTemplate> Page template URI relative to the current directory -V, --version Print version information and exit. -w, --work-dir=<workDir> Working directory -x, --extension=<extension> Extension of files to include in search and site map. Defaults to html Exit codes: Non-negative number Delegate result -1 Unhandled exception during execution -2 Invalid input -3 Diagnostic failed -4 Execution failed or was cancelled, successful rollback -5 Execution failed or was cancelled, rollback failed -6 Executor service termination timed out

Example

drawio diagram.drawio html-app -r root-action.yml --add-to-root site -r=-1 -F page-template.yml docs

  • Grandparent drawio command loads diagram.drawio diagram resource
  • Parent html-app command generates an html application model from the diagram elements
  • This command:
    • Loads a page template from page-template.yml
    • Generates a documentation site ignoring page errors (-r=-1)
    • Outputs the generated site to the docs directory

Options

-r=-1 command line option means “don’t fail on page errors” such as:

  • Blank pages
  • Broken internal links
  • Missing resources

Missing resources are reported on pages using danger alert blocks.

If you want to prevent deployment of a site with page errors, don’t use the option or set it to the expected number of errors - there might be “known errors” which you are OK to live with.

Bootstrap Page to use as a template for site pages.

In the page template file you can:

  • Modify the theme - choose one of 20+ Bootswatch themes or the default theme. Please note that generated sites look good with light themes, and not so good (in my personal opinion) with dark themes.
  • Set fluid to true.
  • Modify navigation panel style

See Bootstrap Page Load Specification for supported configuration keys.

Sample page template in YAML:

bootstrap.Page:
  cdn: true
  theme: Simplex
  name: Application Page Template
  language: EN
  stylesheets: 
    - https://cdn.jsdelivr.net/gh/Nasdanika-Models/html-app@master/gen/web-resources/css/app.css 
    - https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css
    - https://cdn.jsdelivr.net/npm/jstree@3.3.11/dist/themes/default/style.min.css
    - https://cdn.jsdelivr.net/npm/github-markdown-css@5.1.0/github-markdown.min.css
    - https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.3.1/build/styles/default.min.css
    - https://cdn.jsdelivr.net/npm/bootstrap-vue@2.21.2/dist/bootstrap-vue.css
  scripts:
    - https://cdn.jsdelivr.net/gh/Nasdanika-Models/html-app@master/gen/web-resources/js/common.js 
    - https://cdn.jsdelivr.net/gh/Nasdanika-Models/html-app@master/gen/web-resources/js/dark-head.js 
    - https://cdn.jsdelivr.net/npm/jstree@3.3.11/dist/jstree.min.js
    - https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.3.1/build/highlight.min.js
    - https://cdn.jsdelivr.net/npm/vue@2.6.14/dist/vue.min.js
    - https://cdn.jsdelivr.net/npm/bootstrap-vue@2.21.2/dist/bootstrap-vue.min.js
    - https://cdn.jsdelivr.net/gh/Nasdanika-Models/html-app@master/gen/web-resources/js/components/table.js
    - https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js
  body:
    app.Page:
      fluid: false
      navigation-panel:
        style: SEARCHABLE_TREE # COLLAPSIBLE_CARDS
        collapsible: true