Unofficial Capacitor plugin for Firebase Cloud Firestore.1
| Plugin Version | Capacitor Version | Status |
|---|---|---|
| 8.x.x | >=8.x.x | Active support |
| 7.x.x | 7.x.x | Deprecated |
| 6.x.x | 6.x.x | Deprecated |
npm install @capgo/capacitor-firebase-firestore
npx cap syncAdd Firebase to your project if you haven't already (Android / iOS / Web).
If needed, you can define the following project variable in your app’s variables.gradle file to change the default version of the dependency:
$firebaseFirestoreVersionversion ofcom.google.firebase:firebase-firestore(default:26.0.2)
This can be useful if you encounter dependency conflicts with other plugins in your project.
No configuration required for this plugin.
A working example can be found here: robingenz/capacitor-firebase-plugin-demo
The following starter templates are available:
import { FirebaseFirestore } from '@capgo/capacitor-firebase-firestore';
const addDocument = async () => {
await FirebaseFirestore.addDocument({
reference: 'users',
data: {
first: 'Alan',
last: 'Turing',
born: 1912
},
});
};
const setDocument = async () => {
await FirebaseFirestore.setDocument({
reference: 'users/Aorq09lkt1ynbR7xhTUx',
data: {
first: 'Alan',
last: 'Turing',
born: 1912
},
merge: true,
});
};
const getDocument = async () => {
const { snapshot } = await FirebaseFirestore.getDocument({
reference: 'users/Aorq09lkt1ynbR7xhTUx',
});
return snapshot;
};
const updateDocument = async () => {
await FirebaseFirestore.updateDocument({
reference: 'users/Aorq09lkt1ynbR7xhTUx',
data: {
first: 'Alan',
last: 'Turing',
born: 1912
},
});
};
const deleteDocument = async () => {
await FirebaseFirestore.deleteDocument({
reference: 'users/Aorq09lkt1ynbR7xhTUx',
});
};
const writeBatch = async () => {
await FirebaseFirestore.writeBatch({
operations: [
{
type: 'set',
reference: 'users/Aorq09lkt1ynbR7xhTUx',
data: {
first: 'Alan',
last: 'Turing',
born: 1912
},
options: { merge: true },
},
{
type: 'update',
reference: 'users/Aorq09lkt1ynbR7xhTUx',
data: {
first: 'Alan',
last: 'Turing',
born: 1912
},
},
{
type: 'delete',
reference: 'users/Aorq09lkt1ynbR7xhTUx',
},
],
});
};
const getCollection = async () => {
const { snapshots } = await FirebaseFirestore.getCollection({
reference: 'users',
compositeFilter: {
type: 'and',
queryConstraints: [
{
type: 'where',
fieldPath: 'born',
opStr: '==',
value: 1912,
},
],
},
queryConstraints: [
{
type: 'orderBy',
fieldPath: 'born',
directionStr: 'desc',
},
{
type: 'limit',
limit: 10,
},
],
});
return snapshots;
};
const getCollectionGroup = async () => {
const { snapshots } = await FirebaseFirestore.getCollectionGroup({
reference: 'users',
compositeFilter: {
type: 'and',
queryConstraints: [
{
type: 'where',
fieldPath: 'born',
opStr: '==',
value: 1912,
},
],
},
queryConstraints: [
{
type: 'orderBy',
fieldPath: 'born',
directionStr: 'desc',
},
{
type: 'limit',
limit: 10,
},
],
});
return snapshots;
};
const enableNetwork = async () => {
await FirebaseFirestore.enableNetwork();
};
const disableNetwork = async () => {
await FirebaseFirestore.disableNetwork();
};
const useEmulator = async () => {
await FirebaseFirestore.useEmulator({
host: '10.0.2.2',
port: 9001,
});
};
const addDocumentSnapshotListener = async () => {
const callbackId = await FirebaseFirestore.addDocumentSnapshotListener(
{
reference: 'users/Aorq09lkt1ynbR7xhTUx',
},
(event, error) => {
if (error) {
console.error(error);
} else {
console.log(event);
}
}
);
return callbackId;
};
const addCollectionSnapshotListener = async () => {
const callbackId = await FirebaseFirestore.addCollectionSnapshotListener(
{
reference: 'users',
compositeFilter: {
type: 'and',
queryConstraints: [
{
type: 'where',
fieldPath: 'born',
opStr: '==',
value: 1912,
},
],
},
queryConstraints: [
{
type: 'orderBy',
fieldPath: 'born',
directionStr: 'desc',
},
{
type: 'limit',
limit: 10,
},
],
},
(event, error) => {
if (error) {
console.error(error);
} else {
console.log(event);
}
}
);
return callbackId;
};
const addCollectionGroupSnapshotListener = async () => {
const callbackId = await FirebaseFirestore.addCollectionGroupSnapshotListener(
{
reference: 'users',
compositeFilter: {
type: 'and',
queryConstraints: [
{
type: 'where',
fieldPath: 'born',
opStr: '==',
value: 1912,
},
],
},
queryConstraints: [
{
type: 'orderBy',
fieldPath: 'born',
directionStr: 'desc',
},
{
type: 'limit',
limit: 10,
},
],
},
(event, error) => {
if (error) {
console.error(error);
} else {
console.log(event);
}
}
);
return callbackId;
};
const removeSnapshotListener = async (callbackId: string) => {
await FirebaseFirestore.removeSnapshotListener({
callbackId,
});
};
const removeAllListeners = async () => {
await FirebaseFirestore.removeAllListeners();
};addDocument(...)setDocument(...)getDocument(...)updateDocument(...)deleteDocument(...)writeBatch(...)getCollection(...)getCollectionGroup(...)getCountFromServer(...)clearPersistence()enableNetwork()disableNetwork()useEmulator(...)addDocumentSnapshotListener(...)addCollectionSnapshotListener(...)addCollectionGroupSnapshotListener(...)removeSnapshotListener(...)removeAllListeners()getPluginVersion()- Interfaces
- Type Aliases
addDocument(options: AddDocumentOptions) => Promise<AddDocumentResult>Adds a new document to a collection with the given data.
| Param | Type |
|---|---|
options |
AddDocumentOptions |
Returns: Promise<AddDocumentResult>
Since: 5.2.0
setDocument(options: SetDocumentOptions) => Promise<void>Writes to the document referred to by the specified reference. If the document does not yet exist, it will be created.
| Param | Type |
|---|---|
options |
SetDocumentOptions |
Since: 5.2.0
getDocument<T extends DocumentData = DocumentData>(options: GetDocumentOptions) => Promise<GetDocumentResult<T>>Reads the document referred to by the specified reference.
| Param | Type |
|---|---|
options |
GetDocumentOptions |
Returns: Promise<GetDocumentResult<T>>
Since: 5.2.0
updateDocument(options: UpdateDocumentOptions) => Promise<void>Updates fields in the document referred to by the specified reference.
| Param | Type |
|---|---|
options |
UpdateDocumentOptions |
Since: 5.2.0
deleteDocument(options: DeleteDocumentOptions) => Promise<void>Deletes the document referred to by the specified reference.
| Param | Type |
|---|---|
options |
DeleteDocumentOptions |
Since: 5.2.0
writeBatch(options: WriteBatchOptions) => Promise<void>Execute multiple write operations as a single batch.
| Param | Type |
|---|---|
options |
WriteBatchOptions |
Since: 6.1.0
getCollection<T extends DocumentData = DocumentData>(options: GetCollectionOptions) => Promise<GetCollectionResult<T>>Reads the collection referenced by the specified reference.
| Param | Type |
|---|---|
options |
GetCollectionOptions |
Returns: Promise<GetCollectionResult<T>>
Since: 5.2.0
getCollectionGroup<T extends DocumentData = DocumentData>(options: GetCollectionGroupOptions) => Promise<GetCollectionGroupResult<T>>Reads the collection group referenced by the specified reference.
| Param | Type |
|---|---|
options |
GetCollectionGroupOptions |
Returns: Promise<GetCollectionGroupResult<T>>
getCountFromServer(options: GetCountFromServerOptions) => Promise<GetCountFromServerResult>Fetches the number of documents in a collection.
| Param | Type |
|---|---|
options |
GetCountFromServerOptions |
Returns: Promise<GetCountFromServerResult>
Since: 6.4.0
clearPersistence() => Promise<void>Clears the persistent storage. This includes pending writes and cached documents.
Must be called after the app is shutdown or when the app is first initialized.
Since: 5.2.0
enableNetwork() => Promise<void>Re-enables use of the network.
Since: 5.2.0
disableNetwork() => Promise<void>Disables use of the network.
Since: 5.2.0
useEmulator(options: UseEmulatorOptions) => Promise<void>Instrument your app to talk to the Firestore emulator.
| Param | Type |
|---|---|
options |
UseEmulatorOptions |
Since: 6.1.0
addDocumentSnapshotListener<T extends DocumentData = DocumentData>(options: AddDocumentSnapshotListenerOptions, callback: AddDocumentSnapshotListenerCallback<T>) => Promise<CallbackId>Adds a listener for document snapshot events.
| Param | Type |
|---|---|
options |
AddDocumentSnapshotListenerOptions |
callback |
AddDocumentSnapshotListenerCallback<T> |
Returns: Promise<string>
Since: 5.2.0
addCollectionSnapshotListener<T extends DocumentData = DocumentData>(options: AddCollectionSnapshotListenerOptions, callback: AddCollectionSnapshotListenerCallback<T>) => Promise<CallbackId>Adds a listener for collection snapshot events.
| Param | Type |
|---|---|
options |
AddCollectionSnapshotListenerOptions |
callback |
AddCollectionSnapshotListenerCallback<T> |
Returns: Promise<string>
Since: 5.2.0
addCollectionGroupSnapshotListener<T extends DocumentData = DocumentData>(options: AddCollectionGroupSnapshotListenerOptions, callback: AddCollectionGroupSnapshotListenerCallback<T>) => Promise<CallbackId>Adds a listener for collection group snapshot events.
| Param | Type |
|---|---|
options |
AddCollectionGroupSnapshotListenerOptions |
callback |
AddCollectionGroupSnapshotListenerCallback<T> |
Returns: Promise<string>
Since: 6.1.0
removeSnapshotListener(options: RemoveSnapshotListenerOptions) => Promise<void>Remove a listener for document or collection snapshot events.
| Param | Type |
|---|---|
options |
RemoveSnapshotListenerOptions |
Since: 5.2.0
removeAllListeners() => Promise<void>Remove all listeners for this plugin.
Since: 5.2.0
getPluginVersion() => Promise<GetPluginVersionResult>Get the version of this plugin.
Returns: Promise<GetPluginVersionResult>
Since: 8.0.1
| Prop | Type | Description | Since |
|---|---|---|---|
reference |
DocumentReference |
The reference of the newly added document. | 5.2.0 |
| Prop | Type | Description | Since |
|---|---|---|---|
id |
string |
The document's identifier within its collection. | 5.2.0 |
path |
string |
The path of the document. | 5.2.0 |
| Prop | Type | Description | Since |
|---|---|---|---|
reference |
string |
The reference as a string, with path components separated by a forward slash (/). |
5.2.0 |
data |
DocumentData |
An object containing the data for the new document. | 5.2.0 |
| Prop | Type | Description | Default | Since |
|---|---|---|---|---|
reference |
string |
The reference as a string, with path components separated by a forward slash (/). |
5.2.0 | |
data |
DocumentData |
An object containing the data for the new document. | 5.2.0 | |
merge |
boolean |
Whether to merge the provided data with an existing document. | false |
5.2.0 |
| Prop | Type | Description | Since |
|---|---|---|---|
snapshot |
DocumentSnapshot<T> |
The current document contents. | 5.2.0 |
| Prop | Type | Description | Since |
|---|---|---|---|
id |
string |
The document's identifier within its collection. | 5.2.0 |
path |
string |
The path of the document. | 5.2.0 |
data |
T | null |
An object containing the data for the document. Returns null if the document doesn't exist. |
5.2.0 |
metadata |
SnapshotMetadata |
Metadata about the snapshot, concerning its source and if it has local modifications. | 6.2.0 |
| Prop | Type | Description | Since |
|---|---|---|---|
fromCache |
boolean |
True if the snapshot was created from cached data. | 6.2.0 |
hasPendingWrites |
boolean |
True if the snapshot was created from pending write data. | 6.2.0 |
| Prop | Type | Description | Since |
|---|---|---|---|
reference |
string |
The reference as a string, with path components separated by a forward slash (/). |
5.2.0 |
| Prop | Type | Description | Since |
|---|---|---|---|
reference |
string |
The reference as a string, with path components separated by a forward slash (/). |
5.2.0 |
data |
DocumentData |
An object containing the data for the new document. | 5.2.0 |
| Prop | Type | Description | Since |
|---|---|---|---|
reference |
string |
The reference as a string, with path components separated by a forward slash (/). |
5.2.0 |
| Prop | Type | Description | Since |
|---|---|---|---|
operations |
WriteBatchOperation[] |
The operations to execute in the batch. | 6.1.0 |
| Prop | Type | Description | Since |
|---|---|---|---|
type |
'set' | 'update' | 'delete' |
The type of operation. | 6.1.0 |
reference |
string |
The reference as a string, with path components separated by a forward slash (/). |
6.1.0 |
data |
DocumentData |
An object containing the data for the new document. | 6.1.0 |
options |
SetOptions |
An object to configure the set behavior. | 7.3.0 |
| Prop | Type | Description | Default | Since |
|---|---|---|---|---|
merge |
boolean |
Whether a merge should be performed or the document should be overwritten. | false |
7.3.0 |
| Prop | Type | Description | Since |
|---|---|---|---|
snapshots |
DocumentSnapshot<T>[] |
The documents in the collection. | 5.2.0 |
| Prop | Type | Description | Since |
|---|---|---|---|
reference |
string |
The reference as a string, with path components separated by a forward slash (/). |
5.2.0 |
compositeFilter |
QueryCompositeFilterConstraint |
The filter to apply. | 5.2.0 |
queryConstraints |
QueryNonFilterConstraint[] |
Narrow or order the set of documents to retrieve, but do not explicitly filter for document fields. | 5.2.0 |
| Prop | Type | Description | Since |
|---|---|---|---|
type |
'and' | 'or' |
The type of the constraint. | 5.2.0 |
queryConstraints |
QueryFilterConstraint[] |
The filters to apply. | 5.2.0 |
| Prop | Type | Description | Since |
|---|---|---|---|
type |
'where' |
The type of the constraint. | 5.2.0 |
fieldPath |
string |
The path to compare. | 5.2.0 |
opStr |
QueryOperator |
The operation string to apply. | 5.2.0 |
value |
any |
The value for comparison. | 5.2.0 |
| Prop | Type | Description | Since |
|---|---|---|---|
type |
'orderBy' |
The type of the constraint. | 5.2.0 |
fieldPath |
string |
The path to compare. | 5.2.0 |
directionStr |
OrderByDirection |
The direction to sort by. | 5.2.0 |
| Prop | Type | Description | Since |
|---|---|---|---|
type |
'limit' | 'limitToLast' |
The type of the constraint. | 5.2.0 |
limit |
number |
The maximum number of items to return. | 5.2.0 |
| Prop | Type | Description | Since |
|---|---|---|---|
type |
'startAt' | 'startAfter' |
The type of the constraint. | 5.2.0 |
reference |
string |
The reference to start at or after as a string, with path components separated by a forward slash (/). Attention: This requires an additional document read. |
5.2.0 |
| Prop | Type | Description | Since |
|---|---|---|---|
type |
'endAt' | 'endBefore' |
The type of the constraint. | 5.2.0 |
reference |
string |
The reference as to end at or before as a string, with path components separated by a forward slash (/). Attention: This requires an additional document read. |
5.2.0 |
| Prop | Type | Description | Since |
|---|---|---|---|
snapshots |
DocumentSnapshot<T>[] |
The documents in the collection. | 5.2.0 |
| Prop | Type | Description | Since |
|---|---|---|---|
reference |
string |
The reference as a string, with path components separated by a forward slash (/). |
5.2.0 |
compositeFilter |
QueryCompositeFilterConstraint |
The filter to apply. | 5.2.0 |
queryConstraints |
QueryNonFilterConstraint[] |
Narrow or order the set of documents to retrieve, but do not explicitly filter for document fields. | 5.2.0 |
| Prop | Type | Description | Since |
|---|---|---|---|
count |
number |
The number of documents in the collection. | 6.4.0 |
| Prop | Type | Description | Since |
|---|---|---|---|
reference |
string |
The reference as a string, with path components separated by a forward slash (/). |
6.4.0 |
| Prop | Type | Description | Default | Since |
|---|---|---|---|---|
host |
string |
The emulator host without any port or scheme. Note when using a Android Emulator device: 10.0.2.2 is the special IP address to connect to the 'localhost' of the host computer. | 6.1.0 | |
port |
number |
The emulator port. | 8080 |
6.1.0 |
| Prop | Type | Description | Since |
|---|---|---|---|
reference |
string |
The reference as a string, with path components separated by a forward slash (/). |
5.2.0 |
| Prop | Type | Description | Since |
|---|---|---|---|
reference |
string |
The reference as a string, with path components separated by a forward slash (/). |
5.2.0 |
compositeFilter |
QueryCompositeFilterConstraint |
The filter to apply. | 5.2.0 |
queryConstraints |
QueryNonFilterConstraint[] |
Narrow or order the set of documents to retrieve, but do not explicitly filter for document fields. | 5.2.0 |
| Prop | Type | Description | Since |
|---|---|---|---|
reference |
string |
The reference as a string, with path components separated by a forward slash (/). |
6.1.0 |
compositeFilter |
QueryCompositeFilterConstraint |
The filter to apply. | 6.1.0 |
queryConstraints |
QueryNonFilterConstraint[] |
Narrow or order the set of documents to retrieve, but do not explicitly filter for document fields. | 6.1.0 |
| Prop | Type | Since |
|---|---|---|
callbackId |
CallbackId |
5.2.0 |
| Prop | Type | Description | Since |
|---|---|---|---|
version |
string |
The semantic version of this plugin. | 8.0.1 |
QueryFieldFilterConstraint | QueryCompositeFilterConstraint
'<' | '<=' | '==' | '>=' | '>' | '!=' | 'array-contains' | 'array-contains-any' | 'in' | 'not-in'
QueryOrderByConstraint | QueryLimitConstraint | QueryStartAtConstraint | QueryEndAtConstraint
'desc' | 'asc'
(event: AddDocumentSnapshotListenerCallbackEvent<T> | null, error: any): void
string
(event: AddCollectionSnapshotListenerCallbackEvent<T> | null, error: any): void
(event: AddCollectionGroupSnapshotListenerCallbackEvent<T> | null, error: any): void
This plugin currently has the following limitations:
- The
Timestampdata type is not yet supported (see https://github.com/cap-go/capacitor-firebase/issues/474). Use anumberor astringinstead. - The
FieldValuedata type is not yet supported (see https://github.com/cap-go/capacitor-firebase/issues/443).
See CHANGELOG.md.
See LICENSE.
Footnotes
-
This project is not affiliated with, endorsed by, sponsored by, or approved by Google LLC or any of their affiliates or subsidiaries. ↩