UNPKG

@gqlts/runtime

Version:

Gqlts runtime client

104 lines 5.06 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.resolveConcreteTypes = void 0; exports.linkTypeMap = linkTypeMap; var tslib_1 = require("tslib"); var lodash_assign_1 = tslib_1.__importDefault(require("lodash.assign")); function linkTypeMap(typeMap) { var indexToName = lodash_assign_1.default.apply(void 0, tslib_1.__spreadArray([{}], tslib_1.__read(Object.keys(typeMap.types).map(function (k, i) { var _a; return (_a = {}, _a[i] = k, _a); })), false)); // add the name value var intermediaryTypeMap = lodash_assign_1.default.apply(void 0, tslib_1.__spreadArray([{}], tslib_1.__read(Object.keys(typeMap.types || {}).map(function (k) { var _a; var type = typeMap.types[k]; var fields = type || {}; // processFields(fields, indexToName) return _a = {}, _a[k] = { name: k, // type scalar properties scalar: Object.keys(fields).filter(function (f) { var _a; var _b = tslib_1.__read((_a = fields[f]) !== null && _a !== void 0 ? _a : [], 1), type = _b[0]; if (!type && type !== 0) { return false; } return typeMap.scalars.includes(type); }), // fields with corresponding `type` and `args` fields: lodash_assign_1.default.apply(void 0, tslib_1.__spreadArray([{}], tslib_1.__read(Object.keys(fields).map(function (f) { var _a; var _b; var _c = tslib_1.__read((_b = fields[f]) !== null && _b !== void 0 ? _b : [], 2), typeIndex = _c[0], args = _c[1]; if (!typeIndex && typeIndex !== 0) { return {}; } return _a = {}, _a[f] = { // replace index with type name type: indexToName[typeIndex], args: lodash_assign_1.default.apply(void 0, tslib_1.__spreadArray([{}], tslib_1.__read(Object.keys(args !== null && args !== void 0 ? args : {}).map(function (k) { var _a; var _b; if (!args || !args[k]) { return {}; } // if argTypeString == argTypeName, argTypeString is missing, need to read it var _c = tslib_1.__read((_b = args[k]) !== null && _b !== void 0 ? _b : [], 2), argTypeName = _c[0], argTypeString = _c[1]; if (!argTypeName && argTypeName !== 0) { return {}; } return _a = {}, _a[k] = [indexToName[argTypeName], argTypeString || indexToName[argTypeName]], _a; })), false)), }, _a; })), false)), }, _a; })), false)); var res = (0, exports.resolveConcreteTypes)(intermediaryTypeMap); return res; } // replace typename with concrete type var resolveConcreteTypes = function (linkedTypeMap) { Object.keys(linkedTypeMap).forEach(function (typeNameFromKey) { var type = linkedTypeMap[typeNameFromKey]; // type.name = typeNameFromKey if (!(type === null || type === void 0 ? void 0 : type.fields)) { return; } var fields = type.fields; Object.keys(fields).forEach(function (f) { var field = fields[f]; if (field === null || field === void 0 ? void 0 : field.args) { var args_1 = field.args; Object.keys(args_1).forEach(function (key) { var arg = args_1[key]; if (arg) { var _a = tslib_1.__read(arg, 1), typeName_1 = _a[0]; if (typeof typeName_1 === 'string') { if (!linkedTypeMap[typeName_1]) { linkedTypeMap[typeName_1] = { name: typeName_1 }; } arg[0] = linkedTypeMap[typeName_1]; } } }); } var typeName = field === null || field === void 0 ? void 0 : field.type; if ((field === null || field === void 0 ? void 0 : field.type) && typeof typeName === 'string') { if (!linkedTypeMap[typeName]) { linkedTypeMap[typeName] = { name: typeName }; } field.type = linkedTypeMap[typeName]; } }); }); return linkedTypeMap; }; exports.resolveConcreteTypes = resolveConcreteTypes; //# sourceMappingURL=linkTypeMap.js.map