Converts Joi schema into a Siren action fields.
npm install joi-siren
- The root of the schema must be an object
- Supports these Joi types: Boolean, Number, Object and String
For an exhaustive list of examples see the tests
const Joi = require('joi');
const schemaToFields = require('joi-siren');
const schema = {
single: Joi.string(),
};
const fields = schemaToFields(schema);
// [ { name: 'single', type: 'text' } ]
const schema = {
outer: {
inner: Joi.string(),
layer2_1: {
layer3: {
mostInner: Joi.number(),
},
},
layer2_2: {
reallyInner: Joi.boolean(),
},
},
};
const fields = schemaToFields(schema);
// [
// { name: 'outer[inner]', type: 'text' },
// { name: 'outer[layer2_1][layer3][mostInner]', type: 'number' },
// { name: 'outer[layer2_2][reallyInner]', type: 'checkbox' }
// ]
const schema = {
outer: {
inner: 'this is the only value',
},
};
const fields = schemaToFields(schema);
// [ { name: 'outer[inner]', type: 'text', value: 'this is the only value' } ]