@optics/prism-action-mapper
v1.1.0
Published
Automatically configure and register Prism actions based on declarative configuration
Downloads
6
Readme
Prism Action Mapper
A complimentary tool for Prism that reduces the boilerplate necessary to instantiate and configure Prism Resources and Actions against various database entities.
Instead of manually configuring each Action according to the entities they are are bound to, Prism Action Mapper consumes a single, declarative configuration object (called the 'Action Map') and does the tedious work for you.
Usage
Install into your existing Prism project with:
$ npm install --save @optics/prism-action-mapper
Declare an Action Map and ActionMapper instance in your application:
import {ActionMapper} from 'prism-action-mapper';
const ACTION_MAP = {
'users': {
backend: {}
},
'activity_feed': {
readCollection: {
options: {
pageSize: 30
},
public: true
}
},
'widgets': {
readItem: {},
readCollection: {}
}
}
// `server` is the Hapi server instance that Prism is installed to
// `source` is the Prism `Source` instance that will be bound to created Actions
const actionMapper = new ActionMapper(server, source, ACITON_MAP);
Then, instead of directly instatiating Prism Actions and configuring them yourself (for example, when iterating through a Collimator inspection result), simply use ActionMapper#register()
:
collimator.inspect(db)
.then(schema => {
schema.tables.forEach(table => {
actionMapper.register(table);
});
schema.views.forEach(table => {
actionMapper.register(table);
});
});
Action Map
The Action Map is simply an object keyed by entity name, with each value being an object with the following (optional) properties:
resource
- Optional parameters to merge in when creating the underlyingResource
object that will be bound to a newAction
.backend
- If specified, this entity will also be used to create and configure aResourceBackend
to be used for user authentication purposesreadItem
,readCollection
,createItem
,updateItem
,deleteItem
- Will create a correspding Prism Action bound to this database entity
With the exception of resource
, each of these entries may also specify the following nested properties:
- options - An
options
that will be passed to the Action or Backend constructor - merge - An object that will be merged with the Action or Backend instance that was created, but before it is registered against Prism
readItem
, readCollection
, createItem
, updateItem
and deleteItem
also accept a public
property. If public
is true
, then, the resultant route will be visible and usuable to anybody, even if not authenticated.