User interface for administering Treecreeper data. It provides:
- CMS style view and edit pages
- primitive components, that can be combined by users how they wish
At present the UI is tightly coupled to the FT's origami build service. The plan is to move towards a self-contained implementation, but for the time being it's not possible
This returns an object containing 3 handlers: { viewHandler, deleteHandler, editHandler }
Each handler accepts input, and returns output, of similar structure to tc-api-rest-handlers
:
An object with the following properties
{
type, // the type of record to view/edit
code, // the code of the record to view/edit
metadata: // object similar to the metadata objects used by `tc-api-rest-handlers`
query: req.query || {}, // query string of the request, parsed into an object
method: req.method, // http method used for the request
body: req.body, // body sent with the request
}
A {status, body, headers}
object
Choice of logger to use
Base url for the treecreeper REST api
Base url for the treecreeper GraphQL api
String to send to the API as the Client-Id
header
Either:
- Function that is passed the object received as input, and should return an object containing additional headers to use when calling the treecreeper endpoints e.g.
Api-Key
,Client-User-Id
. - An object to be use directly as the headers
Optional React component for rendering a subheader when viewing records. It is passed all the props used to render the page, and is useful for e.g. rendering links to related resources
Array of primitive components to use for rendering types of data, e.g. you may want to render a StarRating
type using a different component to a normal numeric field. (see the section on Primitive Components below to see what structure each one should be in)
Object defining which components should be used to render which types e.g.
{
Paragraph: 'LargeText',
Temperature: 'Slider'
}
Function for rendering the CMS as a full page. The tc-ui package only provides the main content of the page, and logic for handling any data submitted, but this needs to be contained within a full page of the developer's own choosing and implementation. The object the function will receive contains the following properties
template
- the React template for rendering the view/edit screen for the current recorddata
- the complete data needed to populate the screen for the current record.event
- the original event received by the handlerstatus
- the status to respond with
It should return a {status, body, headers}
object
Function for handling any errors. Should ideally return a {status, body, headers}
object in orer to present the user with a friendly error message
Styling and client side interactivity are dependent on a few things:
- If using webpack or a similar build tool that respects the
browser
field of package.json,import @financial-times/tc-ui
in your client side bundle - On the server side,
origamiModules: { css, js }
retrieves lists of components you will need to include. Currently no mechanism is provided to automate including them - sorry
See the demo directory of this repository.
At the heart of the CMS are a set of primitive components. These allow any property of any record to be displayed and edited in a consistent way.
tc-ui provides 6 of these by default, but the user may provide more that implement the same interface in order to provide custom views and edit tools. Those bundled in tc-ui are:
- Boolean
- Text
- LargeText
- Number
- Relationship (a relationship which may have annotations on the edge)
- SimpleRelationship (a relationship which has no annotations on the edge)
- Temporal
- Enum
- MultipleChoice
See tc-schema-sdk/data-accessors/primitive-types.js to see which components are used for rendering which default primitive data types
The 'CMS' pages do not make use of SimpleRelationship
at present - all relationships use Relationship
. This is in order to simplify the CMS code. The SimpleRelationship
primitives are provided with an eye to two things
- making wider use of them to render views in the wider Biz Ops ecosystem without having to always use
_rel
properties in GraphQL - adding the ability to render
@cypher
driven properties in the CMS views at some point
Each primitive component constitutes of one or more of the following:
- browser.js - Client side js needed to interact with the component (not required in most cases)
- main.css - Client side css needed to render the component (not required in most cases)
- server.js - The server side code to render the component
server.js will export 5 properties:
The React component for rendering a view of the data. Should expect the following 2 properties:
- id - the name of the property
- value - the value for the property retrieved from the treecreeper api
The React component for rendering an editable view of the data. //TODO document the interface
Function for determnining if a property contains a real value. Defaults to whether the property's value is 'truthy' but e.g. for Boolean properties, this is not an adequate check
Function for converting the value retrieved from the form POST data into a value to be sent to the treecreeper API. Defaults to a noop, but some components require that the data be preprocessed
Function for converting the property into a fragment to put in a GraphQL query. Defaults to just outputting the field name
If all the above are defined correctly, then a new component can be used in your CMS by defining a mapping in your schema's primitive types and then passing in the component as an option when creating the CMS