-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathutils.ts
274 lines (234 loc) · 8.3 KB
/
utils.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
import ApolloClient, { ApolloQueryResult } from 'apollo-client';
import { FetchResult } from 'apollo-link';
import {
ObjectTypeDefinitionNode,
DocumentNode,
IntrospectionQuery,
OperationDefinitionNode,
buildClientSchema,
printSchema,
getIntrospectionQuery,
FieldNode, GraphQLError
} from 'graphql';
import { parse } from 'graphql/language/parser';
import { IVueOOPOptions } from './index';
import { Config, KeyValueUnknown, ResolvingRESTOptions } from './typings';
import omitDeep from 'omit-deep-lodash';
import Registry from './Registry';
import UnexpectedException from './models/Exceptions/UnexpectedException';
import makeApolloClient from './graphql/makeApolloClient';
export const defaultRESTHeaders = {
'Accept': 'application/json',
'Content-Type': 'application/json;charset=UTF-8',
};
export function getApolloClient(providerName = 'default'): ApolloClient<unknown> {
return config(providerName).apolloClient || makeApolloClient(providerName);
}
export function camelToKebab(input: string): string {
return input.replace(/([a-z])([A-Z])/g, '$1-$2').toLowerCase();
}
export function queryParams(params, camelToKebabActive = true) {
const str: string[] = [];
for (const paramsKey in params)
if (params.hasOwnProperty(paramsKey) && (params[paramsKey] || params[paramsKey] === 0)) {
const normalized = camelToKebabActive ? camelToKebab(encodeURIComponent(paramsKey)) : encodeURIComponent(paramsKey);
str.push(`${normalized}=${encodeURIComponent(params[paramsKey])}`);
}
return str.join('&');
}
export async function performSafeRequestREST(url, params = {}, method = 'get', opts: KeyValueUnknown = {}) {
let fullUrl = url;
let body = {};
if (method === 'get') {
const queryEscaped = queryParams(params);
if (queryEscaped) {
fullUrl = `${fullUrl}?${queryEscaped}`;
}
} else {
body = params;
}
return fetch(fullUrl, {
method: method.toLowerCase(),
headers: defaultRESTHeaders,
body: JSON.stringify(body),
...opts,
}).then(response => response.json());
}
/**
* Performs GQL query request
*
* @param {object} query
* @param {object} variables
* @param {string} providerName
* @returns {Promise<any>}
*/
export function performGqlQuery(query, variables, providerName = 'default') {
return getApolloClient(providerName).query({
query,
variables,
});
}
/**
* Performs GQL mutation request
*
* @param {object} mutation
* @param {object} variables
* @param {string} providerName
* @returns {Promise<any>}
*/
export function performGqlMutation(mutation, variables, providerName = 'default') {
return getApolloClient(providerName).mutate({
mutation,
variables,
});
}
/**
* Perform GQL subscription request
*
* @param {object} subscription
* @param {object} variables
* @param {string} providerName
* @returns {Promise<any>}
*/
export async function performGqlSubscription(subscription, variables, providerName = 'default') {
return getApolloClient(providerName).subscribe({
query: subscription,
variables,
});
}
/**
* Removes __typename from object recursively
*/
export function stripTypename<T>(obj: T) {
return config().stripTypename ? config().stripTypename(obj) : stripTypenameDefault(obj);
}
/**
* Removes __typename from object recursively
*/
export function stripTypenameDefault<T>(obj: T): Omit<T, "__typename"> {
return omitDeep(obj, '__typename');
}
/**
* Performs GQL query or mutation with error handling and loading status
*
* @param {object} query
* @param {object} variables
* @param {string} providerName
* @returns {Promise<*>}
*/
export async function performSafeRequestGraphql(query: DocumentNode, variables = {}, providerName = 'default') {
const operationDefinition = query.definitions.find(def => (<OperationDefinitionNode>def).kind === 'OperationDefinition') as OperationDefinitionNode;
const queryName = operationDefinition?.name.value;
const isQuery = (<OperationDefinitionNode>query.definitions.find(def => def.kind === 'OperationDefinition')).operation === 'query';
if (isQuery) {
const firstField = operationDefinition?.selectionSet?.selections?.find(s => s.kind === 'Field') as FieldNode;
const name = firstField?.name.value;
return performGqlQuery(query, stripTypename(variables), providerName)
.then((value: ApolloQueryResult<unknown>) => {
if (value?.errors?.length) {
throw new GraphQLError(
value?.errors[0].message,
value?.errors[0].nodes,
value?.errors[0].source,
value?.errors[0].positions,
value?.errors[0].path,
value?.errors[0].originalError,
value?.errors[0].extensions,
)
}
return name ? value.data[name] : value.data;
})
}
const isSubscription = (<OperationDefinitionNode>query.definitions.find(def => def.kind === 'OperationDefinition')).operation === 'subscription';
if (isSubscription) {
return performGqlSubscription(query, stripTypename(variables), providerName);
// .then((value: ApolloQueryResult<unknown>) => value.data[queryName]);
}
return performGqlMutation(query, stripTypename(variables), providerName)
.then((value: FetchResult<unknown>) => value.data[queryName]);
}
export function registryGet(key: string): unknown {
return Registry.getInstance().get(key);
}
export function config(name = 'default'): Config {
const defaultConfig = registryGet('Config') as IVueOOPOptions;
if (name === 'default') {
return defaultConfig;
}
return defaultConfig.providers.find(config => config.name === name);
}
export async function getParsedSchema(configName = 'default'): Promise<DocumentNode> {
const configSchema = config(configName).schema;
const configSchemaUrl = config(configName).schemaUrl;
let schema = Registry.getInstance().get('schema') as DocumentNode | null;
if (!schema && configSchema) {
schema = configSchema;
} else if (!schema && configSchemaUrl) {
schema = await fetchIntrospectionSchema(configSchemaUrl)
.then(buildClientSchema.bind(null))
.then(printSchema.bind(null))
.then(parse.bind(null));
Registry.getInstance().set('schema', schema);
}
if (!schema) {
throw new UnexpectedException('Configuration error: \'schema\' must be passed as a config key, e.g\n\nimport schema from \'raw-loader!@/../schema.graphql\';\n\n//...\n\nVue.use(VueOOP, {\n //...,\n schema,\n})\n\n;');
}
return schema;
}
export async function getSchemaTypeFields(typeName, configName = 'default'): Promise<string[]> {
return ((await getParsedSchema(configName))
.definitions as ReadonlyArray<ObjectTypeDefinitionNode>)
.find(def => (def.name || {}).value === typeName)
.fields
.map(f => f.name.value);
}
export async function getSchemaMutation(mutationName, configName = 'default') {
return ((await getParsedSchema(configName))
.definitions as ReadonlyArray<ObjectTypeDefinitionNode>)
.find(def => (def.name || {}).value === 'Mutation')
.fields
.find(def => (def.name || {}).value === mutationName)
}
export async function getSchemaQuery(queryName, configName = 'default') {
return ((await getParsedSchema(configName))
.definitions as ReadonlyArray<ObjectTypeDefinitionNode>)
.find(def => (def.name || {}).value === 'Query')
.fields
.find(def => (def.name || {}).value === queryName);
}
export async function getUrl(_opts: ResolvingRESTOptions) {
const { url, params } = _opts;
let resolvedUrl = url;
if (typeof url === 'function') {
resolvedUrl = await url();
} else {
resolvedUrl = (resolvedUrl as string).replace(
/:([^\s\/?&]+)/gi,
(_, m) => {
const param = params[m];
const hasParam = param !== undefined;
if (hasParam) {
delete params[m];
return param;
}
return m;
},
);
}
return resolvedUrl;
}
export function stripObject(obj) {
return omitDeep(obj, 'loading');
}
export function fetchIntrospectionSchema(url: string): Promise<IntrospectionQuery> {
const body = JSON.stringify({ query: getIntrospectionQuery() });
return fetch(url, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body
})
.then(res => res.json())
.then(res => res.data);
}
export const isClass = (fn: CallableFunction): boolean => /^\s*class/.test(fn.toString());
export const isSubscription = (data) => data._subscriber;