As explained in Using Components, a typical LoopBack component is an npm package exporting a Component class.
import {MyController} from './controllers/my.controller';
import {MyValueProvider} from './providers/my-value.provider';
import {Component} from '@loopback/core';
export class MyComponent implements Component {
constructor() {
this.controllers = [MyController];
this.providers = {
'my-value': MyValueProvider,
};
}
}
When a component is mounted to an application, a new instance of the component class is created and then:
- Each Controller class is registered via
app.controller()
, - Each Provider is bound to its key in
providers
object.
The example MyComponent
above will add MyController
to application’s API and
create a new binding my-value
that will be resolved using MyValueProvider
.
Providers
Providers enable components to export values that can be used by the target
application or other components. The Provider
class provides a value()
function called by Context when another entity requests a value to
be injected.
import {Provider} from '@loopback/context';
export class MyValueProvider implements Provider<string> {
value() {
return 'Hello world';
}
}
Specifying binding key
Notice that the provider class itself does not specify any binding key, the key is assigned by the component class.
import {MyValueProvider} from './providers/my-value.provider';
export class MyComponent implements Component {
constructor() {
this.providers = {
'my-component.my-value': MyValueProvider,
};
}
}
We recommend to component authors to use Typed binding keys instead of string keys and to export an object (a TypeScript namespace) providing constants for all binding keys defined by the component.
import {MyValue, MyValueProvider} from './providers/my-value-provider';
export namespace MyComponentKeys {
export const MY_VALUE = new BindingKey<MyValue>('my-component.my-value');
}
export class MyComponent implements Component {
constructor() {
this.providers = {
[MyComponentKeys.MY_VALUE.key]: MyValueProvider,
};
}
}
Accessing values from Providers
Applications can use @inject
decorators to access the value of an exported
Provider. If you’re not familiar with decorators in TypeScript, see
Key Concepts: Decorators
const app = new Application();
app.component(MyComponent);
class MyController {
constructor(@inject('my-component.my-value') private greeting: string) {}
@get('/greet')
greet() {
return this.greeting;
}
}
A note on binding names
To avoid name conflicts, add a unique prefix to your binding key (for example, my-component.
in the example above). See Reserved binding keys for
the list of keys reserved for the framework use.
Asynchronous providers
Provider’s value()
method can be asynchronous too:
import {Provider} from '@loopback/context';
const request = require('request-promise-native');
const weatherUrl =
'http://samples.openweathermap.org/data/2.5/weather?appid=b1b15e88fa797225412429c1c50c122a1';
export class CurrentTemperatureProvider implements Provider<number> {
async value() {
const data = await request(`${weatherUrl}&q=Prague,CZ`, {json: true});
return data.main.temp;
}
}
In this case, LoopBack will wait until the promise returned by value()
is
resolved, and use the resolved value for dependency injection.
Working with HTTP request/response
In some cases, the Provider may depend on other parts of LoopBack; for example
the current request
object. The Provider’s constructor should list such
dependencies annotated with @inject
keyword, so that LoopBack runtime can
resolve them automatically.
import {Provider} from '@loopback/context';
import {Request, RestBindings} from '@loopback/rest';
const uuid = require('uuid/v4');
class CorrelationIdProvider implements Provider<string> {
constructor(@inject(RestBindings.Http.REQUEST) private request: Request) {}
value() {
return this.request.headers['X-Correlation-Id'] || uuid();
}
}
Modifying request handling logic
A frequent use case for components is to modify the way requests are handled. For example, the authentication component needs to verify user credentials before the actual handler can be invoked; or a logger component needs to record start time and write a log entry when the request has been handled.
The idiomatic solution has two parts:
-
The component should define and bind a new Sequence action, for example
authentication.actions.authenticate
:import {Component} from '@loopback/core'; export namespace AuthenticationBindings { export const AUTH_ACTION = BindingKey.create<AuthenticateFn>( 'authentication.actions.authenticate', ); } class AuthenticationComponent implements Component { constructor() { this.providers = { [AuthenticationBindings.AUTH_ACTION.key]: AuthenticateActionProvider, }; } }
A sequence action is typically implemented as an
action()
method in the provider.class AuthenticateActionProvider implements Provider<AuthenticateFn> { // Provider interface value() { return request => this.action(request); } // The sequence action action(request): UserProfile | undefined { // authenticate the user } }
It may be tempting to put action implementation directly inside the anonymous arrow function returned by provider’s
value()
method. We consider that as a bad practice though, because when an error occurs, the stack trace will contain only an anonymous function that makes it more difficult to link the entry with the sequence action. -
The application should use a custom
Sequence
class which calls this new sequence action in an appropriate place.class AppSequence implements SequenceHandler { constructor( @inject(RestBindings.SequenceActions.FIND_ROUTE) protected findRoute: FindRoute, @inject(RestBindings.SequenceActions.PARSE_PARAMS) protected parseParams: ParseParams, @inject(RestBindings.SequenceActions.INVOKE_METHOD) protected invoke: InvokeMethod, @inject(RestBindings.SequenceActions.SEND) public send: Send, @inject(RestBindings.SequenceActions.REJECT) public reject: Reject, // Inject the new action here: @inject('authentication.actions.authenticate') protected authenticate: AuthenticateFn, ) {} async handle(context: RequestContext) { try { const {request, response} = context; const route = this.findRoute(request); // Invoke the new action: const user = await this.authenticate(request); const args = await parseOperationArgs(request, route); const result = await this.invoke(route, args); this.send(response, result); } catch (error) { this.reject(context, err); } } }
Accessing Elements contributed by other Sequence Actions
When writing a custom sequence action, you need to access Elements contributed
by other actions run in the sequence. For example, authenticate()
action needs
information about the invoked route to decide whether and how to authenticate
the request.
Because all Actions are resolved before the Sequence handle
function is run,
Elements contributed by Actions are not available for injection yet. To solve
this problem, use @inject.getter
decorator to obtain a getter function instead
of the actual value. This allows you to defer resolution of your dependency only
until the sequence action contributing this value has already finished.
export class AuthenticateActionProvider implements Provider<AuthenticateFn> {
constructor(
@inject.getter(BindingKeys.Authentication.STRATEGY) readonly getStrategy,
) {}
value() {
return request => this.action(request);
}
async action(request): Promise<UserProfile | undefined> {
const strategy = await this.getStrategy();
// ...
}
}
Contributing Elements from Sequence Actions
Use @inject.setter
decorator to obtain a setter function that can be used to
contribute new Elements to the request context.
export class AuthenticateActionProvider implements Provider<AuthenticateFn> {
constructor(
@inject.getter(BindingKeys.Authentication.STRATEGY) readonly getStrategy,
@inject.setter(BindingKeys.Authentication.CURRENT_USER)
readonly setCurrentUser,
) {}
value() {
return request => this.action(request);
}
async action(request): UserProfile | undefined {
const strategy = await this.getStrategy();
// (authenticate the request using the obtained strategy)
const user = this.setCurrentUser(user);
return user;
}
}
Extending Application with Mixins
When binding a component to an app, you may want to extend the app with the component’s properties and methods by using mixins.
An example of how a mixin leverages a component is RepositoryMixin
. Suppose an
app has multiple components with repositories bound to each of them. You can use
function RepositoryMixin()
to mount those repositories to application level
context.
The following snippet is an abbreviated function
RepositoryMixin
:
src/mixins/repository.mixin.ts
export function RepositoryMixin<T extends Class<any>>(superClass: T) {
return class extends superClass {
constructor(...args: any[]) {
super(...args);
}
}
/**
* Add a component to this application. Also mounts
* all the components' repositories.
*/
public component(component: Class<any>) {
super.component(component);
this.mountComponentRepository(component);
}
mountComponentRepository(component: Class<any>) {
const componentKey = `components.${component.name}`;
const compInstance = this.getSync(componentKey);
// register a component's repositories in the app
if (compInstance.repositories) {
for (const repo of compInstance.repositories) {
this.repository(repo);
}
}
}
}
Then you can extend the app with repositories in a component:
index.ts
import {RepositoryMixin} from 'src/mixins/repository.mixin';
import {Application} from '@loopback/core';
import {FooComponent} from 'src/foo.component';
class AppWithRepoMixin extends RepositoryMixin(Application) {}
let app = new AppWithRepoMixin();
app.component(FooComponent);
// `app.find` returns all repositories in FooComponent
app.find('repositories.*');
Configuring components
More often than not, the component may want to offer different value providers depending on the configuration. For example, a component providing an email API may offer different transports (stub, SMTP, and so on).
Components should use constructor-level Dependency Injection to receive the configuration from the application.
class EmailComponent {
constructor(@inject('config#components.email') config) {
this.providers = {
sendEmail:
this.config.transport == 'stub'
? StubTransportProvider
: SmtpTransportProvider,
};
}
}