1.2.1 • Published 7 years ago

@hmcts/draft-store-client v1.2.1

Weekly downloads
1,352
License
MIT
Repository
-
Last release
7 years ago

@hmcts/draft-store-client

Greenkeeper badge

Standard - JavaScript Style Guide

This is a client library for interacting with the draft store api

To configure the draft store client you need to:

  • Implement the ServiceAuthTokenFactory interface.
export interface ServiceAuthTokenFactory {
     get (): Promise<ServiceAuthToken>
   }
  • Sample implementation:
let token: ServiceAuthToken

export class ServiceAuthTokenFactoryImpl implements ServiceAuthTokenFactory{
  async get (): Promise<ServiceAuthToken> {
    if (token === undefined || token.hasExpired()) {
      token = await IdamClient.retrieveServiceToken()
    }
    return token
  }
}

API available with clients

  • DraftService provides wrapper around creating DraftStoreClientFactory to save and delete draft documents
  • DraftStoreClientFactory is responsible for creating DraftStoreClients
  • DraftStoreClient is responsible for search, save and delete of draft store data
  • DraftMiddleware manages number of draft store client can be configured and is available if user is logged in

To add library

yarn add @hmcts/draft-store-client

Getting Started

Prerequisites

Running the application

Install dependencies by executing the following command:

$ yarn install

Developing

Code style

We use TSLint with StandardJS rules

Running the linting: yarn lint

Running the tests

Mocha is used for writing tests.

Run them with:

$ yarn test

For test coverage:

$ yarn test:coverage

License

This project is licensed under the MIT License - see the LICENSE file for details

1.2.1

7 years ago

1.1.1

7 years ago

1.1.0

7 years ago

1.0.21

7 years ago

1.0.20

7 years ago

1.0.19

7 years ago

1.0.18

7 years ago

1.0.17

7 years ago

1.0.16

7 years ago

1.0.14

7 years ago

1.0.13

7 years ago

1.0.12

7 years ago

1.0.11

7 years ago

1.0.10-beta

7 years ago

1.0.10

7 years ago

1.0.9

7 years ago

1.0.8

7 years ago

1.0.7

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago