nexus
Version:
Scalable, strongly typed GraphQL schema development
141 lines (138 loc) • 5.79 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.declarativeWrappingPlugin = void 0;
const list_1 = require("../definitions/list");
const nonNull_1 = require("../definitions/nonNull");
const nullable_1 = require("../definitions/nullable");
const plugin_1 = require("../plugin");
const utils_1 = require("../utils");
const wrapping_1 = require("../definitions/wrapping");
const messages_1 = require("../messages");
const DeclarativeWrapping = [
(0, utils_1.printedGenTyping)({
name: 'nullable',
type: 'boolean',
optional: true,
description: `\
Whether the type can be null
@default (depends on whether nullability is configured in type or schema)
@see declarativeWrappingPlugin
`,
}),
(0, utils_1.printedGenTyping)({
name: 'list',
type: 'true | boolean[]',
optional: true,
description: `\
Whether the type is list of values, or just a single value.
If list is true, we assume the type is a list. If list is an array,
we'll assume that it's a list with the depth. The boolean indicates whether
the type is required (non-null), where true = nonNull, false = nullable.
@see declarativeWrappingPlugin
`,
}),
(0, utils_1.printedGenTyping)({
name: 'required',
type: 'boolean',
optional: true,
description: `\
Whether the type should be non null, \`required: true\` = \`nullable: false\`
@default (depends on whether nullability is configured in type or schema)
@see declarativeWrappingPlugin
`,
}),
];
const declarativeWrappingPlugin = (config = {}) => {
let hasWarned = false;
return (0, plugin_1.plugin)({
name: 'declarativeWrapping',
fieldDefTypes: config.disable ? undefined : DeclarativeWrapping,
argTypeDefTypes: config.disable ? undefined : DeclarativeWrapping,
inputFieldDefTypes: config.disable ? undefined : DeclarativeWrapping,
description: 'Provides a declarative nullable/list API, available by default pre-0.19',
onAddOutputField(field) {
return Object.assign(Object.assign({}, field), { type: maybeWrapType(field, config) });
},
onAddInputField(field) {
return Object.assign(Object.assign({}, field), { type: maybeWrapType(field, config) });
},
onAddArg(arg) {
return Object.assign(Object.assign({}, arg), { type: maybeWrapType(arg, config) });
},
});
function maybeWrapType(field, config) {
if (field.list == null && field.nullable == null && field.required == null) {
return field.type;
}
const used = [];
if (field.list != null) {
used.push('list');
}
if (field.nullable != null) {
used.push('nullable');
}
if (field.required != null) {
used.push('required');
}
if (config.disable || config.shouldWarn) {
const d = field;
let location = d.configFor === 'arg'
? `'${d.parentType}.${d.fieldName}' field's '${d.argName}' argument`
: `'${d.parentType}.${d.type}' field`;
if (config.disable) {
throw new Error(messages_1.messages.removedDeclarativeWrapping(location, used));
}
else {
if (hasWarned) {
console.warn(messages_1.messages.removedDeclarativeWrappingShort(location, used));
}
else {
console.warn(messages_1.messages.removedDeclarativeWrapping(location, used));
}
}
}
if ((0, wrapping_1.isNexusWrappingType)(field.type) &&
(field.list != null || field.nullable != null || field.required != null)) {
let errorStr = field.configFor === 'arg'
? `the arg '${field.argName}' of the field '${field.parentType}.${field.fieldName}'.`
: `the field '${field.parentType}.${field.name}'.`;
let usedProp = field.list != null ? 'list' : field.nullable != null ? 'nullable' : 'required';
throw new Error(`[declarativeWrappingPlugin] It looks like you used \`${usedProp}\` and wrapped the type of ` +
errorStr +
' You should only do one or the other');
}
let type = field.type;
if (field.list === true) {
if (field.nullable === false || field.required === true) {
type = (0, nonNull_1.nonNull)(type);
}
type = (0, list_1.list)(type);
}
else if (Array.isArray(field.list)) {
for (const isNonNull of field.list) {
if (isNonNull === true) {
type = (0, list_1.list)((0, nonNull_1.nonNull)(type));
}
else {
type = (0, list_1.list)((0, nullable_1.nullable)(type));
}
}
}
/* istanbul ignore if */
if (field.required != null && field.nullable != null) {
let errorSuffix = field.configFor === 'arg'
? ` on ${field.parentType}.${field.fieldName} arg ${field.argName}`
: ` on ${field.parentType}.${field.name}`;
throw new Error(`Cannot set both required & nullable wrapping modifiers on ${errorSuffix}`);
}
if (field.nullable === true || field.required === false) {
type = (0, nullable_1.nullable)(type);
}
else if (field.nullable === false || field.required === true) {
type = (0, nonNull_1.nonNull)(type);
}
return type;
}
};
exports.declarativeWrappingPlugin = declarativeWrappingPlugin;
//# sourceMappingURL=declarativeWrappingPlugin.js.map