diff --git a/packages/firestore/__tests__/firestore.test.ts b/packages/firestore/__tests__/firestore.test.ts index 4dee5772d4..b408478d35 100644 --- a/packages/firestore/__tests__/firestore.test.ts +++ b/packages/firestore/__tests__/firestore.test.ts @@ -77,6 +77,8 @@ import firestore, { deleteAllPersistentCacheIndexes, disablePersistentCacheIndexAutoCreation, enablePersistentCacheIndexAutoCreation, + onSnapshotsInSync, + documentId, } from '../lib'; const COLLECTION = 'firestore'; @@ -736,6 +738,14 @@ describe('Firestore', function () { it('`sum` is properly exposed to end user', function () { expect(sum).toBeDefined(); }); + + it('`onSnapshotsInSync` is properly exposed to end user', function () { + expect(onSnapshotsInSync).toBeDefined(); + }); + + it('`documentId` is properly exposed to end user', function () { + expect(documentId).toBeDefined(); + }); }); describe('test `console.warn` is called for RNFB v8 API & not called for v9 API', function () { diff --git a/packages/firestore/lib/modular/FieldPath.d.ts b/packages/firestore/lib/modular/FieldPath.d.ts index f00fe5d5e3..b8d2038e5f 100644 --- a/packages/firestore/lib/modular/FieldPath.d.ts +++ b/packages/firestore/lib/modular/FieldPath.d.ts @@ -11,3 +11,10 @@ export declare class FieldPath { isEqual(other: FieldPath): boolean; } + +/** + * Returns a special sentinel FieldPath to refer to the ID of a document + * It can be used in queries to sort or filter by the document ID + */ + +export declare function documentId(): FieldPath; diff --git a/packages/firestore/lib/modular/FieldPath.js b/packages/firestore/lib/modular/FieldPath.js index 93792b6454..6497be2c59 100644 --- a/packages/firestore/lib/modular/FieldPath.js +++ b/packages/firestore/lib/modular/FieldPath.js @@ -1,3 +1,7 @@ import FirestoreFieldPath from '../FirestoreFieldPath'; export const FieldPath = FirestoreFieldPath; + +export function documentId() { + return FieldPath.documentId(); +} diff --git a/packages/firestore/lib/modular/VectorValue.d.ts b/packages/firestore/lib/modular/VectorValue.d.ts new file mode 100644 index 0000000000..e69de29bb2 diff --git a/packages/firestore/lib/modular/index.d.ts b/packages/firestore/lib/modular/index.d.ts index f0679ca42d..0dff797a08 100644 --- a/packages/firestore/lib/modular/index.d.ts +++ b/packages/firestore/lib/modular/index.d.ts @@ -185,11 +185,11 @@ export function doc( * a document. * @returns The `DocumentReference` instance. */ -export function doc( - reference: CollectionReference, +export declare function doc( + reference: CollectionReference, path?: string, ...pathSegments: string[] -): DocumentReference; +): DocumentReference; /** * Gets a `DocumentReference` instance that refers to a document within @@ -203,11 +203,11 @@ export function doc( * a document. * @returns The `DocumentReference` instance. */ -export function doc( - reference: DocumentReference, +export declare function doc( + reference: DocumentReference, path: string, ...pathSegments: string[] -): DocumentReference; +): DocumentReference; export function doc( parent: Firestore | CollectionReference | DocumentReference, @@ -231,7 +231,7 @@ export function collection( firestore: Firestore, path: string, ...pathSegments: string[] -): CollectionReference; +): CollectionReference; /** * Gets a `CollectionReference` instance that refers to a subcollection of @@ -245,11 +245,29 @@ export function collection( * to a collection. * @returns The `CollectionReference` instance. */ -export function collection( - reference: CollectionReference, +export declare function collection( + reference: CollectionReference, path: string, ...pathSegments: string[] -): CollectionReference; +): CollectionReference; + +/** + * Gets a `CollectionReference` instance that refers to a subcollection of + * `reference` at the specified relative path. + * + * @param reference - A reference to a document. + * @param path - A slash-separated path to a collection. + * @param pathSegments - Additional path segments to apply relative to the first + * argument. + * @throws If the final path has an even number of segments and does not point + * to a collection. + * @returns The `CollectionReference` instance. + */ +export declare function collection( + reference: DocumentReference, + path: string, + ...pathSegments: string[] +): CollectionReference; /** * Gets a `CollectionReference` instance that refers to a subcollection of @@ -302,7 +320,10 @@ export declare function refEqual * will be included. Cannot contain a slash. * @returns The created `Query`. */ -export function collectionGroup(firestore: Firestore, collectionId: string): Query; +export function collectionGroup( + firestore: Firestore, + collectionId: string, +): Query; /** * Writes to the document referred to by this `DocumentReference`. If the @@ -383,10 +404,10 @@ export function updateDoc( * newly created document after it has been written to the backend (Note that it * won't resolve while you're offline). */ -export function addDoc( - reference: CollectionReference, - data: WithFieldValue, -): Promise>; +export declare function addDoc( + reference: CollectionReference, + data: WithFieldValue, +): Promise>; /** * Re-enables use of the network for this {@link Firestore} instance after a prior @@ -701,7 +722,7 @@ export function loadBundle( * @param name - The name of the query. * @returns A named Query. */ -export function namedQuery(firestore: Firestore, name: string): Query; +export function namedQuery(firestore: Firestore, name: string): Promise; /** * Creates a write batch, used for performing multiple writes as a single diff --git a/packages/firestore/lib/modular/query.d.ts b/packages/firestore/lib/modular/query.d.ts index ffd857038b..876710d83f 100644 --- a/packages/firestore/lib/modular/query.d.ts +++ b/packages/firestore/lib/modular/query.d.ts @@ -100,11 +100,11 @@ export type QueryNonFilterConstraint = * @throws if any of the provided query constraints cannot be combined with the * existing or new constraints. */ -export function query( - query: Query, +export declare function query( + query: Query, compositeFilter: QueryCompositeFilterConstraint, ...queryConstraints: QueryNonFilterConstraint[] -): Query; +): Query; /** * Creates a new immutable instance of {@link Query} that is extended to also @@ -116,7 +116,10 @@ export function query( * @throws if any of the provided query constraints cannot be combined with the * existing or new constraints. */ -export function query(query: Query, ...queryConstraints: IQueryConstraint[]): Query; +export declare function query( + query: Query, + ...queryConstraints: QueryConstraint[] +): Query; export function query( query: Query, @@ -285,7 +288,9 @@ export declare function getDocFromServer( * * @returns A `Promise` that will be resolved with the results of the query. */ -export function getDocs(query: Query): Promise>; +export declare function getDocs( + query: Query, +): Promise>; /** * Executes the query and returns the results as a `QuerySnapshot` from cache. @@ -294,7 +299,9 @@ export function getDocs(query: Query): Promise>; * * @returns A `Promise` that will be resolved with the results of the query. */ -export function getDocsFromCache(query: Query): Promise>; +export declare function getDocsFromCache( + query: Query, +): Promise>; /** * Executes the query and returns the results as a `QuerySnapshot` from the @@ -302,7 +309,9 @@ export function getDocsFromCache(query: Query): Promise>; * * @returns A `Promise` that will be resolved with the results of the query. */ -export function getDocsFromServer(query: Query): Promise>; +export declare function getDocsFromServer( + query: Query, +): Promise>; /** * Deletes the document referred to by the specified `DocumentReference`. @@ -311,53 +320,29 @@ export function getDocsFromServer(query: Query): Promise> * @returns A Promise resolved once the document has been successfully * deleted from the backend (note that it won't resolve while you're offline). */ -export function deleteDoc(reference: DocumentReference): Promise; +export declare function deleteDoc( + reference: DocumentReference, +): Promise; /** - * Creates a `QueryConstraint` with the specified ending point. + * 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. * - * Using `startAt()`, `startAfter()`, `endBefore()`, `endAt()` and `equalTo()` - * allows you to choose arbitrary starting and ending points for your queries. - * - * The ending point is inclusive, so children with exactly the specified value - * will be included in the query. The optional key argument can be used to - * further limit the range of the query. If it is specified, then children that - * have exactly the specified value must also have a key name less than or equal - * to the specified key. - * - * You can read more about `endAt()` in - * {@link https://firebase.google.com/docs/database/web/lists-of-data#filtering_data | Filtering data}. - * - * @param value - The value to end at. The argument type depends on which - * `orderBy*()` function was used in this query. Specify a value that matches - * the `orderBy*()` type. When used in combination with `orderByKey()`, the - * value must be a string. - * @param key - The child key to end at, among the children with the previously - * specified priority. This argument is only allowed if ordering by child, - * value, or priority. + * @param fieldValues */ -export function endAt(value: number | string | boolean | null, key?: string): QueryConstraint; +export declare function endAt(...fieldValues: unknown[]): QueryEndAtConstraint; + +export function endAt( + snapshot: DocumentSnapshot, +): QueryEndAtConstraint; /** - * Creates a `QueryConstraint` with the specified ending point (exclusive). - * - * Using `startAt()`, `startAfter()`, `endBefore()`, `endAt()` and `equalTo()` - * allows you to choose arbitrary starting and ending points for your queries. - * - * The ending point is exclusive. If only a value is provided, children - * with a value less than the specified value will be included in the query. - * If a key is specified, then children must have a value less than or equal - * to the specified value and a key name less than the specified key. + * 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 value - The value to end before. The argument type depends on which - * `orderBy*()` function was used in this query. Specify a value that matches - * the `orderBy*()` type. When used in combination with `orderByKey()`, the - * value must be a string. - * @param key - The child key to end before, among the children with the - * previously specified priority. This argument is only allowed if ordering by - * child, value, or priority. + * @param fieldValues */ -export function endBefore(value: number | string | boolean | null, key?: string): QueryConstraint; +export declare function endBefore(...fieldValues: unknown[]): QueryEndAtConstraint; /** * Creates a new `QueryConstraint` that is limited to return only the last diff --git a/packages/firestore/lib/modular/query.js b/packages/firestore/lib/modular/query.js index deeb1ceed4..ea4a9ea769 100644 --- a/packages/firestore/lib/modular/query.js +++ b/packages/firestore/lib/modular/query.js @@ -130,27 +130,25 @@ export function startAfter(...docOrFields) { } /** - * @param {number | string | boolean | null} value - * @param {string?} key - * @returns {QueryConstraint} + * 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 */ -export function endAt(value, key) { - if (!key) { - return new QueryConstraint('endAt', value); - } - return new QueryConstraint('endAt', value, key); + +export function endAt(...fieldValues) { + return new QueryConstraint('endAt', ...fieldValues); } /** - * @param {number | string | boolean | null} value - * @param {string?} key - * @returns {QueryConstraint} + * 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 */ -export function endBefore(value, key) { - if (!key) { - return new QueryConstraint('endBefore', value); - } - return new QueryConstraint('endBefore', value, key); + +export function endBefore(...fieldValues) { + return new QueryConstraint('endBefore', ...fieldValues); } /** diff --git a/packages/firestore/lib/modular/snapshot.d.ts b/packages/firestore/lib/modular/snapshot.d.ts index 38384a5252..ebf9279e75 100644 --- a/packages/firestore/lib/modular/snapshot.d.ts +++ b/packages/firestore/lib/modular/snapshot.d.ts @@ -117,10 +117,10 @@ export function onSnapshot( * @returns An unsubscribe function that can be called to cancel * the snapshot listener. */ -export function onSnapshot( - query: Query, +export declare function onSnapshot( + query: Query, observer: { - next?: (snapshot: QuerySnapshot) => void; + next?: (snapshot: QuerySnapshot) => void; error?: (error: FirestoreError) => void; complete?: () => void; }, @@ -140,11 +140,11 @@ export function onSnapshot( * @returns An unsubscribe function that can be called to cancel * the snapshot listener. */ -export function onSnapshot( - query: Query, +export declare function onSnapshot( + query: Query, options: SnapshotListenOptions, observer: { - next?: (snapshot: QuerySnapshot) => void; + next?: (snapshot: QuerySnapshot) => void; error?: (error: FirestoreError) => void; complete?: () => void; }, @@ -168,9 +168,9 @@ export function onSnapshot( * @returns An unsubscribe function that can be called to cancel * the snapshot listener. */ -export function onSnapshot( - query: Query, - onNext: (snapshot: QuerySnapshot) => void, +export declare function onSnapshot( + query: Query, + onNext: (snapshot: QuerySnapshot) => void, onError?: (error: FirestoreError) => void, onCompletion?: () => void, ): Unsubscribe; @@ -194,10 +194,10 @@ export function onSnapshot( * @returns An unsubscribe function that can be called to cancel * the snapshot listener. */ -export function onSnapshot( - query: Query, +export declare function onSnapshot( + query: Query, options: SnapshotListenOptions, - onNext: (snapshot: QuerySnapshot) => void, + onNext: (snapshot: QuerySnapshot) => void, onError?: (error: FirestoreError) => void, onCompletion?: () => void, ): Unsubscribe; @@ -227,3 +227,30 @@ export declare function queryEqual, right: Query, ): boolean; + +/** + * Attaches a listener for a snapshots-in-sync event. + * The snapshots-in-sync event indicates that all listeners affected by a given change have fired, even if + * a single server-generated change affects multiple listeners. + * + * @param firestore + * @param observer + */ +export declare function onSnapshotsInSync( + firestore: Firestore, + observer: { + next?: (value: void) => void; + error?: (error: FirestoreError) => void; + complete?: () => void; + }, +): Unsubscribe; + +/** + * Attaches a listener for a snapshots-in-sync event. + * The snapshots-in-sync event indicates that all listeners affected by a given change have fired, even if + * a single server-generated change affects multiple listeners. + * + * @param firestore + * @param onSync + */ +export declare function onSnapshotsInSync(firestore: Firestore, onSync: () => void): Unsubscribe; diff --git a/packages/firestore/lib/modular/snapshot.js b/packages/firestore/lib/modular/snapshot.js index 946f1c819d..0247f4095d 100644 --- a/packages/firestore/lib/modular/snapshot.js +++ b/packages/firestore/lib/modular/snapshot.js @@ -18,3 +18,16 @@ export function onSnapshot(reference, ...args) { export function snapshotEqual(left, right) { return left.isEqual.call(left, right, MODULAR_DEPRECATION_ARG); } + +/** + * Attaches a listener for a snapshots-in-sync event. + * The snapshots-in-sync event indicates that all listeners affected by a given change have fired, even if + * a single server-generated change affects multiple listeners. + * + * @param {*} firestore + * @param {...any} args + */ +// eslint-disable-next-line @typescript-eslint/no-unused-vars +export function onSnapshotsInSync(firestore, ...args) { + throw new Error('onSnapshotsInSync() is not implemented'); +}