Skip to content

Commit dc9a3f6

Browse files
committedMar 6, 2017
disabling dropdown for a property via meta
Joi.allow() creates a valid list that results on dropdown in Swagger docs UI. This is not expected in many cases and here we add `disableDropdown` meta property for those. One example that is used in tests is non-negative integers that could not be edited in swagger UI forms: Joi.number().integer().positive().allow(0) Only by adding `.meta({disableDropdown: true})` one could make this editable as a form field.
1 parent f32d6e4 commit dc9a3f6

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed
 

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,6 @@ npm-debug.log
1717
.DS_Store
1818
.vscode
1919
.coveralls.yml
20+
.idea
2021

2122
test/certs/server.csr

‎lib/properties.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,8 @@ internals.properties.prototype.parseProperty = function (name, joiObj, parent, p
111111

112112
// add enum
113113
let describe = joiObj.describe();
114-
if (Array.isArray(describe.valids) && describe.valids.length) {
114+
const allowDropdown = !property['x-meta'] || !property['x-meta'].disableDropdown;
115+
if (allowDropdown && Array.isArray(describe.valids) && describe.valids.length) {
115116
// fliter out empty values and arrays
116117
var enums = describe.valids.filter((item) => {
117118

‎test/unit/property-test.js

+7
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,16 @@ lab.experiment('property - ', () => {
103103
expect(propertiesNoAlt.parseProperty('x', Joi.string().valid(['a', 'b']), null, 'body', true, false)).to.equal({ type: 'string', enum: ['a', 'b'] });
104104
expect(propertiesNoAlt.parseProperty('x', Joi.string().valid(['a', 'b', '']), null, 'body', true, false)).to.equal({ type: 'string', enum: ['a', 'b'] });
105105
expect(propertiesNoAlt.parseProperty('x', Joi.string().valid(['a', 'b', null]), null, 'body', true, false)).to.equal({ type: 'string', enum: ['a', 'b'] });
106+
expect(propertiesNoAlt.parseProperty('x', Joi.string().valid(['a', 'b', null]), null, 'body', true, false)).to.equal({ type: 'string', enum: ['a', 'b'] });
106107
expect(propertiesNoAlt.parseProperty('x', Joi.date().timestamp().default(() => Date.now(), 'Current Timestamp')).default).to.exist();
107108
//console.log(JSON.stringify(propertiesAlt.parseProperty('x',Joi.date().timestamp().default(() => Date.now(), 'Current Timestamp'))));
108109

110+
const nonNegativeWithDropdown = propertiesAlt.parseProperty('x', Joi.number().integer().positive().allow(0), null, 'body', true, false);
111+
const nonNegativeWithoutDropdown = propertiesAlt.parseProperty('x', Joi.number().integer().positive().allow(0).meta({disableDropdown: true}), null, 'body', true, false);
112+
113+
expect(nonNegativeWithDropdown).to.include({ enum: [0] });
114+
expect(nonNegativeWithoutDropdown).to.not.include({ enum: [0] });
115+
109116
done();
110117
});
111118

0 commit comments

Comments
 (0)
Please sign in to comment.