@nxus/base-ui
v2.4.0-6
Published
Basic UI pages for Nxus apps, like 404 and 500 pages
Downloads
5
Readme
@nxus/base-ui
Base UI pages including 404 and error page handlers.
Installation
> npm install @nxus/base-ui --save
Usage
The module registers two handlers:
- 404: If no other handler responds the route, the module will render the
404
template and return the rendered content. /error
: On a 50x error, the router will redirecto to/error
and the module will render the500
template and return the rendered content.
Model View helpers
The module provides a helper for generating list/detail views from a model:
app.get('base-ui').viewModel('user', {base: '/users', titleField: 'email'})
You may pass in an options object, as in this example, or subclass of ViewBase, or a string path to a subclass of ViewBase.
import {ViewBase} from '@nxus/base-ui'
class UserView extends ViewBase {
model() {
return 'user'
}
base() {
return '/users'
}
titleField() {
return 'email
}
}
app.get('base-ui').viewModel(UserView)
Customizing
If you want to provide your own 404 or 500 page, define the relevant new template. Base-ui will use these to handle the routes above.
404 Page Template
app.get('templater').template('404', 'ejs', 'path/to/my/404template.ejs')
500 Page Template
app.get('templater').template('500', 'ejs', 'path/to/my/500template.ejs')
List and Detail View
You can specify your own list view template to use instead of the default. The base-ui module looks for a template matching the following
pattern: view-<model>-list
and view-<model>-detail
.
Each template will be passed either a model instance (for detail view) or an array of models (for list view), using the model name.
So using the examples above:
app.get('templater').template('view-user-list', 'ejs', () => {
return "<% users.forEach(function(user){ .... }) %>"
})
app.get('templater').template('view-user-detail', 'ejs', () => {
return "<%= user.email %>"
})
API
ViewBase
The ViewBase class provides a helper module for defining Base-UI based pages.
Examples
class TodoView extends ViewBase {
base () {
return '/todo'
}
model () {
return 'todo'
}
templateDir () {
return __dirname+'/views'
}
}
base
The base url for the UI pages.
Returns string Defaults to /<models>
display
Fields in the model to show
Returns array
displayName
The display name for the model to use in the UI
Returns string Defaults to <model>
ignore
Fields in the model to ignore in the UI
Returns array
model
Define the primary model for this view module
Returns string
modelPopulate
Define any populated relationships for the model
Returns array
templateDir
The directory to find the templates.
Returns string Defaults to null.
templatePrefix
The prefix to use for the templates. Defaults to view-<model>-
Returns string
titleField
Fields in the model to use for the instance title
Returns string
BaseUI
The base-ui module class.
getViewModel
Returns a viewModel, if it has been regsitered
Parameters
model
string the name of the model to return
Returns ViewBase An instance of the viewModel
getViewModels
Returns all the registered viewModel instances
Returns array An array of the viewModel/viewBase instances.
viewModel
Creates a List and Detail UI for the specified model, including all routes and views. You can pass in the following combinations:
- a model name and opts hash.
- a path to a file which is a subclass of ViewBase
- a class which is a subclass of ViewBase
Routes created are:
/<base>
: list page/<base>/:id
: detail page
Views which can be overriden are:
view-<model>-list
: the list page viewview-<model>-detail
: the detail page view
Options available are:
base
: the url at which the paths are created. For example, '/users'.templatePrefix
: a custom prefix for generated templates. Defaults toview-<model>
.ignore
: an array of model fields to ignore in the UI. Defaults to['id', 'createdAt', 'updatedAt']
templateDir
: a directory containing the list/form templates for the model. Defaults to none.displayName
: an alternate name to use for the display in the UI. Defaults tomodel
.instanceTitle
: attribute of instance to use for title and link
Parameters