-
Notifications
You must be signed in to change notification settings - Fork 2.2k
/
Copy pathquery.js
233 lines (208 loc) · 6.67 KB
/
query.js
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
/**
* @typedef {import('..').FirebaseFirestoreTypes.DocumentReference} DocumentReference
* @typedef {import('..').FirebaseFirestoreTypes.DocumentSnapshot} DocumentSnapshot
* @typedef {import('..').FirebaseFirestoreTypes.FieldPath} FieldPath
* @typedef {import('..').FirebaseFirestoreTypes.QueryCompositeFilterConstraint} QueryCompositeFilterConstraint
* @typedef {import('..').FirebaseFirestoreTypes.QuerySnapshot} QuerySnapshot
* @typedef {import('..').FirebaseFirestoreTypes.Query} Query
* @typedef {import('..').FirebaseFirestoreTypes.WhereFilterOp} WhereFilterOp
* @typedef {import('../FirestoreFilter')._Filter} _Filter
* @typedef {import('./query').IQueryConstraint} IQueryConstraint
* @typedef {import('./query').OrderByDirection} OrderByDirection
* @typedef {import('./query').QueryFieldFilterConstraint} QueryFieldFilterConstraint
* @typedef {import('./query').QueryLimitConstraint} QueryLimitConstraint
* @typedef {import('./query').QueryNonFilterConstraint} QueryNonFilterConstraint
* @typedef {import('./query').QueryOrderByConstraint} QueryOrderByConstraint
* @typedef {import('./query').QueryStartAtConstraint} QueryStartAtConstraint
*/
import { MODULAR_DEPRECATION_ARG } from '@react-native-firebase/app/lib/common';
import { _Filter, Filter } from '../FirestoreFilter';
/**
* @implements {IQueryConstraint}
*/
class QueryConstraint {
constructor(type, ...args) {
this.type = type;
this._args = args;
}
_apply(query) {
return query[this.type].call(query, ...this._args, MODULAR_DEPRECATION_ARG);
}
}
/**
* @param {Query} query
* @param {QueryCompositeFilterConstraint | QueryConstraint | undefined} queryConstraint
* @param {(QueryConstraint | QueryNonFilterConstraint)[]} additionalQueryConstraints
* @returns {Query}
*/
export function query(query, queryConstraint, ...additionalQueryConstraints) {
const queryConstraints = [queryConstraint, ...additionalQueryConstraints].filter(
constraint => constraint !== undefined,
);
let q = query;
for (const queryConstraint of queryConstraints) {
q = queryConstraint._apply(q);
}
return q;
}
/**
* @param {string | FieldPath} fieldPath
* @param {WhereFilterOp} opStr
* @param {unknown} value
* @returns {QueryFieldFilterConstraint}
*/
export function where(fieldPath, opStr, value) {
return new QueryConstraint('where', fieldPath, opStr, value);
}
/**
* @param {QueryFieldFilterConstraint[]} queries
* @returns {_Filter[]}
*/
function getFilterOps(queries) {
const ops = [];
for (const query of queries) {
if (query.type !== 'where') {
throw 'Not where'; // FIXME: Better error message
}
const args = query._args;
if (!args.length) {
throw 'No args'; // FIXME: Better error message
}
if (args[0] instanceof _Filter) {
ops.push(args[0]);
continue;
}
const [fieldPath, opStr, value] = args;
ops.push(Filter(fieldPath, opStr, value));
}
return ops;
}
/**
* @param {QueryFieldFilterConstraint[]} queries
* @returns {QueryCompositeFilterConstraint}
*/
export function or(...queries) {
const ops = getFilterOps(queries);
return new QueryConstraint('where', Filter.or(...ops));
}
/**
* @param {QueryFieldFilterConstraint[]} queries
* @returns {QueryCompositeFilterConstraint}
*/
export function and(...queries) {
const ops = getFilterOps(queries);
return new QueryConstraint('where', Filter.and(...ops));
}
/**
* @param {string | FieldPath} fieldPath
* @param {OrderByDirection} directionStr
* @returns {QueryOrderByConstraint}
*/
export function orderBy(fieldPath, directionStr) {
return new QueryConstraint('orderBy', fieldPath, directionStr);
}
/**
* @param {(unknown | DocumentSnapshot)} docOrFields
* @returns {QueryStartAtConstraint}
*/
export function startAt(...docOrFields) {
return new QueryConstraint('startAt', ...docOrFields);
}
/**
* @param {(unknown | DocumentSnapshot)} docOrFields
* @returns {QueryStartAtConstraint}
*/
export function startAfter(...docOrFields) {
return new QueryConstraint('startAfter', ...docOrFields);
}
/**
* Creates a QueryEndAtConstraint that modifies the result set to end at the provided fields relative to the order of the query.
* The order of the field values must match the order of the order by clauses of the query.
*
* @param {*} fieldValues
*/
// eslint-disable-next-line @typescript-eslint/no-unused-vars
export function endAt(fieldValues) {
throw new Error('endAt is not implemented');
}
/**
* Creates a QueryEndAtConstraint that modifies the result set to end before the provided fields relative to the order of the query.
* The order of the field values must match the order of the order by clauses of the query.
*
* @param {*} fieldValues
*/
// eslint-disable-next-line @typescript-eslint/no-unused-vars
export function endBefore(fieldValues) {
throw new Error('endBefore is not implemented');
}
/**
* @param {number} limit
* @returns {QueryLimitConstraint}
*/
export function limit(limit) {
return new QueryConstraint('limit', limit);
}
/**
* @param {number} limit
* @returns {QueryConstraint}
*/
export function limitToLast(limit) {
return new QueryConstraint('limitToLast', limit);
}
/**
* @param {DocumentReference} query
* @returns {Promise<DocumentSnapshot>}
*/
export function getDoc(reference) {
return reference.get.call(reference, { source: 'default' }, MODULAR_DEPRECATION_ARG);
}
/**
* @param {DocumentReference} query
* @returns {Promise<DocumentSnapshot>}
*/
export function getDocFromCache(reference) {
return reference.get.call(reference, { source: 'cache' }, MODULAR_DEPRECATION_ARG);
}
/**
* @param {DocumentReference} query
* @returns {Promise<DocumentSnapshot>}
*/
export function getDocFromServer(reference) {
return reference.get.call(reference, { source: 'server' }, MODULAR_DEPRECATION_ARG);
}
/**
* @param {Query} query
* @returns {Promise<QuerySnapshot>}
*/
export function getDocs(query) {
return query.get.call(query, { source: 'default' }, MODULAR_DEPRECATION_ARG);
}
/**
* @param {Query} query
* @returns {Promise<QuerySnapshot>}
*/
export function getDocsFromCache(query) {
return query.get.call(query, { source: 'cache' }, MODULAR_DEPRECATION_ARG);
}
/**
* @param {Query} query
* @returns {Promise<QuerySnapshot>}
*/
export function getDocsFromServer(query) {
return query.get.call(query, { source: 'server' }, MODULAR_DEPRECATION_ARG);
}
/**
* @param {DocumentReference} reference
* @returns {Promise<void>}
*/
export function deleteDoc(reference) {
return reference.delete.call(reference, MODULAR_DEPRECATION_ARG);
}
/**
* @param {Query} left
* @param {Query} right
* @returns boolean true if left equals right
*/
export function queryEqual(left, right) {
return left.isEqual.call(left, right, MODULAR_DEPRECATION_ARG);
}