-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathquery.ts
135 lines (123 loc) · 4.78 KB
/
query.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
/**
* @module @ember-data/legacy-compat/builders
*/
import { assert } from '@ember/debug';
import type Model from '@ember-data/model';
import { SkipCache } from '@ember-data/request';
import type { ImmutableRequestInfo } from '@ember-data/request/-private/types';
import { normalizeModelName } from './utils';
type QueryRequestInput<T extends string = string, RT = unknown[]> = ImmutableRequestInfo & {
op: 'query';
data: {
type: T;
query: Record<string, unknown>;
options: QueryBuilderOptions;
};
};
type QueryBuilderOptions = {
[K in string | 'adapterOptions']?: K extends 'adapterOptions' ? Record<string, unknown> : unknown;
};
/**
This function builds a request config for a given type and query object.
When passed to `store.request`, this config will result in the same behavior as a `store.query` request.
Additionally, it takes the same options as `store.query`.
All `@ember-data/legacy-compat` builders exist to enable you to migrate your codebase to using the correct syntax for `store.request` while temporarily preserving legacy behaviors.
This is useful for quickly upgrading an entire app to a unified syntax while a longer incremental migration is made to shift off of adapters and serializers.
To that end, these builders are deprecated and will be removed in a future version of Ember Data.
@method query
@deprecated
@public
@static
@for @ember-data/legacy-compat/builders
@param {string} type the name of the resource
@param {object} query a query to be used by the adapter
@param {QueryBuilderOptions} [options] optional, may include `adapterOptions` hash which will be passed to adapter.query
@return {QueryRequestInput} request config
*/
export function queryBuilder<T extends Model>(
type: string,
query: Record<string, unknown>,
options?: QueryBuilderOptions
): QueryRequestInput<string, T[]>;
export function queryBuilder(
type: string,
query: Record<string, unknown>,
options?: QueryBuilderOptions
): QueryRequestInput;
export function queryBuilder(
type: string,
query: Record<string, unknown>,
options: QueryBuilderOptions = {}
): QueryRequestInput {
assert(`You need to pass a model name to the query builder`, type);
assert(`You need to pass a query hash to the query builder`, query);
assert(
`Model name passed to the query builder must be a dasherized string instead of ${type}`,
typeof type === 'string'
);
return {
op: 'query' as const,
data: {
type: normalizeModelName(type),
query,
options: options,
},
cacheOptions: { [SkipCache as symbol]: true },
};
}
type QueryRecordRequestInput<T extends string = string, RT = unknown> = ImmutableRequestInfo & {
op: 'queryRecord';
data: {
type: T;
query: Record<string, unknown>;
options: QueryBuilderOptions;
};
};
/**
This function builds a request config for a given type and query object.
When passed to `store.request`, this config will result in the same behavior as a `store.queryRecord` request.
Additionally, it takes the same options as `store.queryRecord`.
All `@ember-data/legacy-compat` builders exist to enable you to migrate your codebase to using the correct syntax for `store.request` while temporarily preserving legacy behaviors.
This is useful for quickly upgrading an entire app to a unified syntax while a longer incremental migration is made to shift off of adapters and serializers.
To that end, these builders are deprecated and will be removed in a future version of Ember Data.
@method queryRecord
@deprecated
@public
@static
@for @ember-data/legacy-compat/builders
@param {string} type the name of the resource
@param {object} query a query to be used by the adapter
@param {QueryBuilderOptions} [options] optional, may include `adapterOptions` hash which will be passed to adapter.query
@return {QueryRecordRequestInput} request config
*/
export function queryRecordBuilder<T extends Model>(
type: string,
query: Record<string, unknown>,
options?: QueryBuilderOptions
): QueryRecordRequestInput<string, T | null>;
export function queryRecordBuilder(
type: string,
query: Record<string, unknown>,
options?: QueryBuilderOptions
): QueryRecordRequestInput;
export function queryRecordBuilder(
type: string,
query: Record<string, unknown>,
options?: QueryBuilderOptions
): QueryRecordRequestInput {
assert(`You need to pass a model name to the queryRecord builder`, type);
assert(`You need to pass a query hash to the queryRecord builder`, query);
assert(
`Model name passed to the queryRecord builder must be a dasherized string instead of ${type}`,
typeof type === 'string'
);
return {
op: 'queryRecord',
data: {
type: normalizeModelName(type),
query,
options: options || {},
},
cacheOptions: { [SkipCache as symbol]: true },
};
}