npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@hmcts/dg-docassembly-webcomponent

v1.0.8

Published

[![Coverage Status](https://coveralls.io/repos/github/hmcts/dg-docassembly-webcomponent/badge.svg?branch=master)](https://coveralls.io/github/hmcts/dg-docassembly-webcomponent?branch=upload-npm-in-pipeline) [![Build Status](https://travis-ci.com/hmcts/dg-

Downloads

19

Readme

@hmcts/dg-docassembly-webcomponent

Coverage Status Build Status

The docassembly webcomponent is an angular library that provides components to generate a document based on a predefined template customised with user input. The library is made up of 3 main components:

  • assembly-viewer, which is the parent component that acts as a wrapper that wires the other components together
  • form-viewer, which retrieves and displays the input form that allows the user to customise the generated document
  • document-viewer, which enables the user to preview the generated document

Integration options

  • default setup, wiring between internal components already done
  • service-driven setup, more control to the service to define the styling of the component, but also requires the service to do the wiring between the form-viewer and the document-viewer (more details below)

Add as a dependency in your angular app

  • add @hmcts/dg-docassembly-webcomponent as a dependency in package.json

  • import AssemblyModule and declare it in your NgModule imports.

    For example:

    import { AssemblyModule } from '@hmcts/dg-docassembly-webcomponent';
    
    @NgModule({
      imports: [
        ...,
        AssemblyModule,
      ]
    })
  • import assets to your angular.json

      {
          "glob": "**/*",
          "input": "node_modules/@hmcts/dg-docassembly-webcomponent/assets",
          "output": "/assets"
      }
  • and styles

    "styles": [
      "node_modules/@hmcts/dg-docassembly-webcomponent/assets/aui-styles.scss",
      ...
    ],
  • import JS dependencies as scripts within angular.json

    "scripts": [
        "node_modules/@hmcts/dg-docassembly-webcomponent/assets/js/pdf.combined.min.js",
        "node_modules/@hmcts/dg-docassembly-webcomponent/assets/js/pdf_viewer.min.js",
        "node_modules/@hmcts/dg-docassembly-webcomponent/assets/js/pdf-annotate.min.js"
        ...
    ]
  • component entry point:

    • using the default setup, the service needs to set: templateName, ouputFormats, templateData

      <app-assembly-viewer *ngIf="selectedTemplate"
                           [templateName]="selectedTemplate"
                           [outputFormats]="['PDF']"
                           [templateData]="templateData"></app-assembly-viewer>
    • using the service-driven setup, the service needs to:

      • set the templateName, outputFormats, templateData on the form-viewer
      • listen to the previewDocument event to retrieve the selected outputFormat, and documentUrl these need to be set on the document-viewer
      <app-form-viewer *ngIf="selectedTemplate"
                       [templateName]="selectedTemplate"
                       [outputFormats]="['PDF', 'DOC']"
                       [templateData]="templateData"
                       (previewDocument)="setPreviewData($event)"></app-form-viewer>
      <app-document-viewer *ngIf="documentUrl"
                           [baseUrl]="'api'"
                           [isDM]="true"
                           [contentType]="outputFormat | lowercase"
                           [url]="documentUrl"></app-document-viewer>

Accessing template data

Any changes made by the user can be accessed through the 'templateData' property by including a reference to the webcomponent within the service component as follows:

  • HTML
    <app-assembly-viewer *ngIf="selectedTemplate" #assemblyComponent
                         [templateName]="selectedTemplate"
                         [templateData]="templateData"></app-assembly-viewer>
  • component class
    @ViewChild(AssemblyViewerComponent) assemblyComponent: AssemblyViewerComponent;
      
    getAssemblyData() {
      const documentUrl = assemblyComponent.documentUrl;
      const templateData = assemblyComponent.templateData;
    }

Backend requirements

The docassembly component requies access to a number of API endpoints, some of which need to be proxied

  • rpa-dg-docassembly-api, which depends on rpa-dg-template-management-api and DOCMOSIS
  • proxy access to document store through 'document/' endpoint
  • access to template store (still to be finalised)

Development setup

Running backend dependencies in docker

  • export DOCMOSIS_ACCESS_KEY=<"GET-DOCMOSIS-API-KEY-FROM-TEAM">
  • az login
  • az acr login --name hmcts --subscription 1c4f0704-a29e-403d-b719-b90c34ef14c9
  • docker-compose -f docker-compose-dependencies.yml pull
  • docker-compose -f docker-compose-dependencies.yml up

Running the demo angular app

  • in another terminal window/tab, build the library then start the app as follows
    npm run package
    npm run build-demo
    npm start