@angular/fire 7.6.1 → 16.0.0-canary.4172abd
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/analytics/analytics.module.d.ts +2 -2
- package/analytics/is-analytics-supported-factory.d.ts +4 -0
- package/analytics/screen-tracking.service.d.ts +3 -3
- package/app-check/app-check.d.ts +0 -6
- package/app-check/app-check.module.d.ts +3 -4
- package/app-check/public_api.d.ts +2 -1
- package/auth/auth.module.d.ts +2 -2
- package/auth-guard/auth-guard.d.ts +6 -6
- package/compat/analytics/analytics.d.ts +1 -3
- package/compat/analytics/analytics.module.d.ts +1 -1
- package/compat/analytics/screen-tracking.service.d.ts +1 -1
- package/compat/analytics/user-tracking.service.d.ts +1 -1
- package/compat/auth/auth.d.ts +4 -4
- package/compat/auth-guard/auth-guard.d.ts +8 -6
- package/compat/database/database.d.ts +4 -4
- package/compat/database/interfaces.d.ts +14 -14
- package/compat/database/list/audit-trail.d.ts +1 -1
- package/compat/database/list/create-reference.d.ts +1 -1
- package/compat/database/list/data-operation.d.ts +1 -1
- package/compat/database/list/state-changes.d.ts +1 -1
- package/compat/database/object/create-reference.d.ts +1 -1
- package/compat/database/observable/fromRef.d.ts +1 -1
- package/compat/database/utils.d.ts +1 -1
- package/compat/firebase.app.module.d.ts +1 -1
- package/compat/firestore/collection/collection.d.ts +2 -2
- package/compat/firestore/collection-group/collection-group.d.ts +2 -2
- package/compat/firestore/document/document.d.ts +4 -4
- package/compat/firestore/firestore.d.ts +7 -7
- package/compat/firestore/interfaces.d.ts +19 -19
- package/compat/functions/functions.d.ts +3 -3
- package/compat/messaging/messaging.d.ts +2 -2
- package/compat/performance/performance.d.ts +2 -2
- package/compat/proxy.d.ts +8 -8
- package/compat/remote-config/interfaces.d.ts +1 -1
- package/compat/remote-config/remote-config.d.ts +15 -49
- package/compat/storage/interfaces.d.ts +8 -8
- package/compat/storage/observable/fromTask.d.ts +1 -2
- package/compat/storage/pipes/storageUrl.pipe.d.ts +1 -1
- package/compat/storage/ref.d.ts +1 -1
- package/compat/storage/storage.d.ts +3 -3
- package/compat/storage/task.d.ts +1 -1
- package/core.d.ts +8 -12
- package/database/database.module.d.ts +2 -2
- package/{esm2015/analytics/analytics.js → esm2022/analytics/analytics.mjs} +1 -1
- package/esm2022/analytics/analytics.module.mjs +94 -0
- package/esm2022/analytics/is-analytics-supported-factory.mjs +16 -0
- package/esm2022/analytics/overrides.mjs +3 -0
- package/esm2022/analytics/screen-tracking.service.mjs +148 -0
- package/esm2022/analytics/user-tracking.service.mjs +44 -0
- package/{esm2015/app/app.js → esm2022/app/app.mjs} +1 -1
- package/esm2022/app/app.module.mjs +85 -0
- package/esm2022/app-check/app-check.mjs +10 -0
- package/esm2022/app-check/app-check.module.mjs +78 -0
- package/esm2022/app-check/public_api.mjs +5 -0
- package/{esm2015/auth/auth.js → esm2022/auth/auth.mjs} +1 -1
- package/esm2022/auth/auth.module.mjs +71 -0
- package/esm2022/auth-guard/auth-guard.mjs +53 -0
- package/{esm2015/auth-guard/auth-guard.module.js → esm2022/auth-guard/auth-guard.module.mjs} +7 -7
- package/esm2022/compat/analytics/analytics.mjs +160 -0
- package/esm2022/compat/analytics/analytics.module.mjs +35 -0
- package/esm2022/compat/analytics/screen-tracking.service.mjs +49 -0
- package/esm2022/compat/analytics/user-tracking.service.mjs +53 -0
- package/esm2022/compat/auth/auth.mjs +161 -0
- package/{esm2015/compat/auth/auth.module.js → esm2022/compat/auth/auth.module.mjs} +7 -7
- package/{esm2015/compat/auth/public_api.js → esm2022/compat/auth/public_api.mjs} +1 -1
- package/esm2022/compat/auth-guard/auth-guard.mjs +53 -0
- package/{esm2015/compat/auth-guard/auth-guard.module.js → esm2022/compat/auth-guard/auth-guard.module.mjs} +7 -7
- package/{esm2015/compat/cache.js → esm2022/compat/cache.mjs} +4 -3
- package/esm2022/compat/database/database.mjs +119 -0
- package/{esm2015/compat/database/database.module.js → esm2022/compat/database/database.module.mjs} +7 -7
- package/esm2022/compat/database/interfaces.mjs +2 -0
- package/{esm2015/compat/database/list/audit-trail.js → esm2022/compat/database/list/audit-trail.mjs} +3 -3
- package/esm2022/compat/database/list/changes.mjs +85 -0
- package/esm2022/compat/database/list/create-reference.mjs +44 -0
- package/{esm2015/compat/database/list/data-operation.js → esm2022/compat/database/list/data-operation.mjs} +1 -1
- package/{esm2015/compat/database/list/snapshot-changes.js → esm2022/compat/database/list/snapshot-changes.mjs} +1 -1
- package/{esm2015/compat/database/list/state-changes.js → esm2022/compat/database/list/state-changes.mjs} +2 -2
- package/{esm2015/compat/database/object/create-reference.js → esm2022/compat/database/object/create-reference.mjs} +2 -2
- package/{esm2015/compat/database/object/snapshot-changes.js → esm2022/compat/database/object/snapshot-changes.mjs} +1 -1
- package/esm2022/compat/database/observable/fromRef.mjs +48 -0
- package/{esm2015/compat/database/utils.js → esm2022/compat/database/utils.mjs} +1 -1
- package/{esm2015/compat/firebase.app.js → esm2022/compat/firebase.app.mjs} +1 -1
- package/esm2022/compat/firebase.app.module.mjs +71 -0
- package/esm2022/compat/firestore/collection/changes.mjs +108 -0
- package/esm2022/compat/firestore/collection/collection.mjs +123 -0
- package/esm2022/compat/firestore/collection-group/collection-group.mjs +86 -0
- package/esm2022/compat/firestore/document/document.mjs +87 -0
- package/esm2022/compat/firestore/firestore.mjs +257 -0
- package/{esm2015/compat/firestore/firestore.module.js → esm2022/compat/firestore/firestore.module.mjs} +7 -7
- package/esm2022/compat/firestore/interfaces.mjs +2 -0
- package/esm2022/compat/firestore/observable/fromRef.mjs +40 -0
- package/esm2022/compat/functions/functions.mjs +69 -0
- package/{esm2015/compat/functions/functions.module.js → esm2022/compat/functions/functions.module.mjs} +7 -7
- package/{esm2015/compat/functions/public_api.js → esm2022/compat/functions/public_api.mjs} +1 -1
- package/esm2022/compat/messaging/messaging.mjs +81 -0
- package/{esm2015/compat/messaging/messaging.module.js → esm2022/compat/messaging/messaging.module.mjs} +7 -7
- package/esm2022/compat/performance/performance.mjs +105 -0
- package/esm2022/compat/performance/performance.module.mjs +27 -0
- package/esm2022/compat/performance/performance.service.mjs +28 -0
- package/esm2022/compat/proxy.mjs +58 -0
- package/esm2022/compat/remote-config/remote-config.mjs +206 -0
- package/{esm2015/compat/remote-config/remote-config.module.js → esm2022/compat/remote-config/remote-config.module.mjs} +7 -7
- package/esm2022/compat/storage/observable/fromTask.mjs +36 -0
- package/esm2022/compat/storage/pipes/storageUrl.pipe.mjs +58 -0
- package/{esm2015/compat/storage/ref.js → esm2022/compat/storage/ref.mjs} +3 -3
- package/esm2022/compat/storage/storage.mjs +95 -0
- package/esm2022/compat/storage/storage.module.mjs +22 -0
- package/{esm2015/compat/storage/task.js → esm2022/compat/storage/task.mjs} +2 -2
- package/esm2022/core.mjs +43 -0
- package/{esm2015/database/database.js → esm2022/database/database.mjs} +1 -1
- package/esm2022/database/database.module.mjs +74 -0
- package/{esm2015/firestore/firestore.js → esm2022/firestore/firestore.mjs} +1 -1
- package/esm2022/firestore/firestore.module.mjs +74 -0
- package/{esm2015/firestore/lite/lite.js → esm2022/firestore/lite/lite.mjs} +1 -1
- package/esm2022/firestore/lite/lite.module.mjs +73 -0
- package/esm2022/firestore/rxfire.mjs +15 -0
- package/{esm2015/functions/functions.js → esm2022/functions/functions.mjs} +1 -1
- package/esm2022/functions/functions.module.mjs +74 -0
- package/esm2022/messaging/is-messaging-supported-factory.mjs +16 -0
- package/{esm2015/messaging/messaging.js → esm2022/messaging/messaging.mjs} +1 -1
- package/esm2022/messaging/messaging.module.mjs +86 -0
- package/esm2022/messaging/overrides.mjs +3 -0
- package/{esm2015/performance/performance.js → esm2022/performance/performance.mjs} +1 -1
- package/esm2022/performance/performance.module.mjs +81 -0
- package/esm2022/remote-config/is-remote-config-supported-factory.mjs +16 -0
- package/esm2022/remote-config/overrides.mjs +3 -0
- package/{esm2015/remote-config/remote-config.js → esm2022/remote-config/remote-config.mjs} +1 -1
- package/esm2022/remote-config/remote-config.module.mjs +86 -0
- package/{esm2015/storage/storage.js → esm2022/storage/storage.mjs} +1 -1
- package/esm2022/storage/storage.module.mjs +74 -0
- package/esm2022/zones.mjs +194 -0
- package/{fesm2015/angular-fire-analytics.js → fesm2022/angular-fire-analytics.mjs} +64 -40
- package/fesm2022/angular-fire-analytics.mjs.map +1 -0
- package/{fesm2015/angular-fire-app-check.js → fesm2022/angular-fire-app-check.mjs} +16 -24
- package/fesm2022/angular-fire-app-check.mjs.map +1 -0
- package/{fesm2015/angular-fire-app.js → fesm2022/angular-fire-app.mjs} +10 -9
- package/fesm2022/angular-fire-app.mjs.map +1 -0
- package/{fesm2015/angular-fire-auth-guard.js → fesm2022/angular-fire-auth-guard.mjs} +31 -27
- package/fesm2022/angular-fire-auth-guard.mjs.map +1 -0
- package/{fesm2015/angular-fire-auth.js → fesm2022/angular-fire-auth.mjs} +10 -11
- package/fesm2022/angular-fire-auth.mjs.map +1 -0
- package/{fesm2015/angular-fire-compat-analytics.js → fesm2022/angular-fire-compat-analytics.mjs} +43 -41
- package/fesm2022/angular-fire-compat-analytics.mjs.map +1 -0
- package/{fesm2015/angular-fire-compat-auth-guard.js → fesm2022/angular-fire-compat-auth-guard.mjs} +30 -26
- package/fesm2022/angular-fire-compat-auth-guard.mjs.map +1 -0
- package/{fesm2015/angular-fire-compat-auth.js → fesm2022/angular-fire-compat-auth.mjs} +38 -16
- package/fesm2022/angular-fire-compat-auth.mjs.map +1 -0
- package/{fesm2015/angular-fire-compat-database.js → fesm2022/angular-fire-compat-database.mjs} +138 -132
- package/fesm2022/angular-fire-compat-database.mjs.map +1 -0
- package/{fesm2015/angular-fire-compat-firestore.js → fesm2022/angular-fire-compat-firestore.mjs} +119 -98
- package/fesm2022/angular-fire-compat-firestore.mjs.map +1 -0
- package/{fesm2015/angular-fire-compat-functions.js → fesm2022/angular-fire-compat-functions.mjs} +13 -12
- package/fesm2022/angular-fire-compat-functions.mjs.map +1 -0
- package/{fesm2015/angular-fire-compat-messaging.js → fesm2022/angular-fire-compat-messaging.mjs} +25 -19
- package/fesm2022/angular-fire-compat-messaging.mjs.map +1 -0
- package/{fesm2015/angular-fire-compat-performance.js → fesm2022/angular-fire-compat-performance.mjs} +29 -34
- package/fesm2022/angular-fire-compat-performance.mjs.map +1 -0
- package/{fesm2015/angular-fire-compat-remote-config.js → fesm2022/angular-fire-compat-remote-config.mjs} +35 -22
- package/fesm2022/angular-fire-compat-remote-config.mjs.map +1 -0
- package/{fesm2015/angular-fire-compat-storage.js → fesm2022/angular-fire-compat-storage.mjs} +30 -23
- package/fesm2022/angular-fire-compat-storage.mjs.map +1 -0
- package/{fesm2015/angular-fire-compat.js → fesm2022/angular-fire-compat.mjs} +25 -25
- package/fesm2022/angular-fire-compat.mjs.map +1 -0
- package/{fesm2015/angular-fire-database.js → fesm2022/angular-fire-database.mjs} +11 -12
- package/fesm2022/angular-fire-database.mjs.map +1 -0
- package/{fesm2015/angular-fire-firestore-lite.js → fesm2022/angular-fire-firestore-lite.mjs} +11 -12
- package/fesm2022/angular-fire-firestore-lite.mjs.map +1 -0
- package/{fesm2015/angular-fire-firestore.js → fesm2022/angular-fire-firestore.mjs} +15 -14
- package/fesm2022/angular-fire-firestore.mjs.map +1 -0
- package/{fesm2015/angular-fire-functions.js → fesm2022/angular-fire-functions.mjs} +12 -13
- package/fesm2022/angular-fire-functions.mjs.map +1 -0
- package/{fesm2015/angular-fire-messaging.js → fesm2022/angular-fire-messaging.mjs} +33 -19
- package/fesm2022/angular-fire-messaging.mjs.map +1 -0
- package/{fesm2015/angular-fire-performance.js → fesm2022/angular-fire-performance.mjs} +11 -11
- package/fesm2022/angular-fire-performance.mjs.map +1 -0
- package/{fesm2015/angular-fire-remote-config.js → fesm2022/angular-fire-remote-config.mjs} +34 -20
- package/fesm2022/angular-fire-remote-config.mjs.map +1 -0
- package/{fesm2015/angular-fire-storage.js → fesm2022/angular-fire-storage.mjs} +10 -11
- package/fesm2022/angular-fire-storage.mjs.map +1 -0
- package/{fesm2015/angular-fire.js → fesm2022/angular-fire.mjs} +33 -58
- package/fesm2022/angular-fire.mjs.map +1 -0
- package/firestore/firestore.module.d.ts +2 -2
- package/firestore/lite/lite.module.d.ts +2 -2
- package/firestore/rxfire.d.ts +3 -1
- package/functions/functions.module.d.ts +2 -2
- package/messaging/is-messaging-supported-factory.d.ts +4 -0
- package/messaging/messaging.module.d.ts +2 -2
- package/package.json +158 -7
- package/performance/performance.module.d.ts +2 -2
- package/publish.sh +1 -0
- package/remote-config/is-remote-config-supported-factory.d.ts +4 -0
- package/remote-config/remote-config.module.d.ts +2 -2
- package/schematics/add/index.js +2 -2
- package/schematics/common.js +9 -5
- package/schematics/deploy/actions.js +69 -69
- package/schematics/deploy/builder.js +7 -7
- package/schematics/firebaseTools.js +9 -5
- package/schematics/setup/index.js +27 -27
- package/schematics/setup/prompts.js +22 -18
- package/schematics/update/index.js +1 -1
- package/schematics/update/v7/index.js +7 -7
- package/schematics/utils.js +34 -34
- package/storage/storage.module.d.ts +2 -2
- package/README.md +0 -216
- package/analytics/package.json +0 -11
- package/app/package.json +0 -11
- package/app-check/package.json +0 -11
- package/auth/package.json +0 -11
- package/auth-guard/package.json +0 -11
- package/bundles/angular-fire-analytics.umd.js +0 -673
- package/bundles/angular-fire-analytics.umd.js.map +0 -1
- package/bundles/angular-fire-app-check.umd.js +0 -465
- package/bundles/angular-fire-app-check.umd.js.map +0 -1
- package/bundles/angular-fire-app.umd.js +0 -477
- package/bundles/angular-fire-app.umd.js.map +0 -1
- package/bundles/angular-fire-auth-guard.umd.js +0 -109
- package/bundles/angular-fire-auth-guard.umd.js.map +0 -1
- package/bundles/angular-fire-auth.umd.js +0 -557
- package/bundles/angular-fire-auth.umd.js.map +0 -1
- package/bundles/angular-fire-compat-analytics.umd.js +0 -672
- package/bundles/angular-fire-compat-analytics.umd.js.map +0 -1
- package/bundles/angular-fire-compat-auth-guard.umd.js +0 -112
- package/bundles/angular-fire-compat-auth-guard.umd.js.map +0 -1
- package/bundles/angular-fire-compat-auth.umd.js +0 -559
- package/bundles/angular-fire-compat-auth.umd.js.map +0 -1
- package/bundles/angular-fire-compat-database.umd.js +0 -799
- package/bundles/angular-fire-compat-database.umd.js.map +0 -1
- package/bundles/angular-fire-compat-firestore.umd.js +0 -1073
- package/bundles/angular-fire-compat-firestore.umd.js.map +0 -1
- package/bundles/angular-fire-compat-functions.umd.js +0 -443
- package/bundles/angular-fire-compat-functions.umd.js.map +0 -1
- package/bundles/angular-fire-compat-messaging.umd.js +0 -465
- package/bundles/angular-fire-compat-messaging.umd.js.map +0 -1
- package/bundles/angular-fire-compat-performance.umd.js +0 -212
- package/bundles/angular-fire-compat-performance.umd.js.map +0 -1
- package/bundles/angular-fire-compat-remote-config.umd.js +0 -605
- package/bundles/angular-fire-compat-remote-config.umd.js.map +0 -1
- package/bundles/angular-fire-compat-storage.umd.js +0 -598
- package/bundles/angular-fire-compat-storage.umd.js.map +0 -1
- package/bundles/angular-fire-compat.umd.js +0 -535
- package/bundles/angular-fire-compat.umd.js.map +0 -1
- package/bundles/angular-fire-database.umd.js +0 -557
- package/bundles/angular-fire-database.umd.js.map +0 -1
- package/bundles/angular-fire-firestore-lite.umd.js +0 -531
- package/bundles/angular-fire-firestore-lite.umd.js.map +0 -1
- package/bundles/angular-fire-firestore.umd.js +0 -565
- package/bundles/angular-fire-firestore.umd.js.map +0 -1
- package/bundles/angular-fire-functions.umd.js +0 -461
- package/bundles/angular-fire-functions.umd.js.map +0 -1
- package/bundles/angular-fire-messaging.umd.js +0 -473
- package/bundles/angular-fire-messaging.umd.js.map +0 -1
- package/bundles/angular-fire-performance.umd.js +0 -473
- package/bundles/angular-fire-performance.umd.js.map +0 -1
- package/bundles/angular-fire-remote-config.umd.js +0 -499
- package/bundles/angular-fire-remote-config.umd.js.map +0 -1
- package/bundles/angular-fire-storage.umd.js +0 -485
- package/bundles/angular-fire-storage.umd.js.map +0 -1
- package/bundles/angular-fire.umd.js +0 -308
- package/bundles/angular-fire.umd.js.map +0 -1
- package/compat/analytics/package.json +0 -11
- package/compat/auth/package.json +0 -11
- package/compat/auth-guard/package.json +0 -11
- package/compat/database/package.json +0 -11
- package/compat/firestore/package.json +0 -11
- package/compat/functions/package.json +0 -11
- package/compat/messaging/package.json +0 -11
- package/compat/package.json +0 -11
- package/compat/performance/package.json +0 -11
- package/compat/remote-config/package.json +0 -11
- package/compat/storage/package.json +0 -11
- package/database/package.json +0 -11
- package/docs/analytics.md +0 -67
- package/docs/app-check.md +0 -53
- package/docs/auth.md +0 -165
- package/docs/compat/analytics/getting-started.md +0 -137
- package/docs/compat/auth/getting-started.md +0 -162
- package/docs/compat/auth/router-guards.md +0 -104
- package/docs/compat/emulators/emulators.md +0 -134
- package/docs/compat/firestore/collections.md +0 -326
- package/docs/compat/firestore/documents.md +0 -115
- package/docs/compat/firestore/offline-data.md +0 -39
- package/docs/compat/firestore/querying-collections.md +0 -204
- package/docs/compat/functions/functions.md +0 -166
- package/docs/compat/messaging/messaging.md +0 -232
- package/docs/compat/performance/getting-started.md +0 -132
- package/docs/compat/remote-config/getting-started.md +0 -134
- package/docs/compat/rtdb/lists.md +0 -257
- package/docs/compat/rtdb/objects.md +0 -182
- package/docs/compat/rtdb/querying-lists.md +0 -155
- package/docs/compat/storage/storage.md +0 -257
- package/docs/compat.md +0 -70
- package/docs/database.md +0 -175
- package/docs/deploy/getting-started.md +0 -204
- package/docs/firebase.json +0 -16
- package/docs/firestore.md +0 -148
- package/docs/functions.md +0 -52
- package/docs/images/analytics-illo_1x.png +0 -0
- package/docs/images/auth-illo_1x.png +0 -0
- package/docs/images/cloud-messaging-illo_1x.png +0 -0
- package/docs/images/database-illo_1x.png +0 -0
- package/docs/images/firestore-illo_1x.png +0 -0
- package/docs/images/functions-illo_1x.png +0 -0
- package/docs/images/hosting-illo_1x.png +0 -0
- package/docs/images/performance-illo_1x.png +0 -0
- package/docs/images/reCAPTCHA-logo@1x.png +0 -0
- package/docs/images/remote-config-illo_1x.png +0 -0
- package/docs/images/storage-illo_1x.png +0 -0
- package/docs/install-and-setup.md +0 -114
- package/docs/install-angular-cli-windows10.md +0 -82
- package/docs/messaging.md +0 -25
- package/docs/performance.md +0 -57
- package/docs/remote-config.md +0 -53
- package/docs/storage.md +0 -90
- package/docs/universal/cloud-functions.md +0 -75
- package/docs/universal/getting-started.md +0 -153
- package/docs/universal/prerendering.md +0 -72
- package/docs/version-4-upgrade.md +0 -119
- package/docs/version-5-upgrade.md +0 -82
- package/docs/version-6-upgrade.md +0 -16
- package/docs/version-7-upgrade.md +0 -298
- package/esm2015/analytics/analytics.module.js +0 -93
- package/esm2015/analytics/overrides.js +0 -3
- package/esm2015/analytics/screen-tracking.service.js +0 -139
- package/esm2015/analytics/user-tracking.service.js +0 -43
- package/esm2015/app/app.module.js +0 -84
- package/esm2015/app-check/app-check.js +0 -16
- package/esm2015/app-check/app-check.module.js +0 -81
- package/esm2015/app-check/public_api.js +0 -4
- package/esm2015/auth/auth.module.js +0 -71
- package/esm2015/auth-guard/auth-guard.js +0 -49
- package/esm2015/compat/analytics/analytics.js +0 -163
- package/esm2015/compat/analytics/analytics.module.js +0 -32
- package/esm2015/compat/analytics/screen-tracking.service.js +0 -49
- package/esm2015/compat/analytics/user-tracking.service.js +0 -52
- package/esm2015/compat/auth/auth.js +0 -139
- package/esm2015/compat/auth-guard/auth-guard.js +0 -49
- package/esm2015/compat/database/database.js +0 -117
- package/esm2015/compat/database/interfaces.js +0 -2
- package/esm2015/compat/database/list/changes.js +0 -85
- package/esm2015/compat/database/list/create-reference.js +0 -41
- package/esm2015/compat/database/observable/fromRef.js +0 -47
- package/esm2015/compat/firebase.app.module.js +0 -69
- package/esm2015/compat/firestore/collection/changes.js +0 -107
- package/esm2015/compat/firestore/collection/collection.js +0 -117
- package/esm2015/compat/firestore/collection-group/collection-group.js +0 -81
- package/esm2015/compat/firestore/document/document.js +0 -82
- package/esm2015/compat/firestore/firestore.js +0 -254
- package/esm2015/compat/firestore/interfaces.js +0 -2
- package/esm2015/compat/firestore/observable/fromRef.js +0 -39
- package/esm2015/compat/functions/functions.js +0 -68
- package/esm2015/compat/messaging/messaging.js +0 -75
- package/esm2015/compat/performance/performance.js +0 -110
- package/esm2015/compat/performance/performance.module.js +0 -28
- package/esm2015/compat/performance/performance.service.js +0 -27
- package/esm2015/compat/proxy.js +0 -61
- package/esm2015/compat/remote-config/remote-config.js +0 -193
- package/esm2015/compat/storage/observable/fromTask.js +0 -34
- package/esm2015/compat/storage/pipes/storageUrl.pipe.js +0 -54
- package/esm2015/compat/storage/storage.js +0 -94
- package/esm2015/compat/storage/storage.module.js +0 -22
- package/esm2015/core.js +0 -79
- package/esm2015/database/database.module.js +0 -74
- package/esm2015/firestore/firestore.module.js +0 -74
- package/esm2015/firestore/lite/lite.module.js +0 -74
- package/esm2015/firestore/rxfire.js +0 -13
- package/esm2015/functions/functions.module.js +0 -74
- package/esm2015/messaging/messaging.module.js +0 -85
- package/esm2015/messaging/overrides.js +0 -3
- package/esm2015/performance/performance.module.js +0 -81
- package/esm2015/remote-config/overrides.js +0 -3
- package/esm2015/remote-config/remote-config.module.js +0 -85
- package/esm2015/storage/storage.module.js +0 -74
- package/esm2015/zones.js +0 -183
- package/fesm2015/angular-fire-analytics.js.map +0 -1
- package/fesm2015/angular-fire-app-check.js.map +0 -1
- package/fesm2015/angular-fire-app.js.map +0 -1
- package/fesm2015/angular-fire-auth-guard.js.map +0 -1
- package/fesm2015/angular-fire-auth.js.map +0 -1
- package/fesm2015/angular-fire-compat-analytics.js.map +0 -1
- package/fesm2015/angular-fire-compat-auth-guard.js.map +0 -1
- package/fesm2015/angular-fire-compat-auth.js.map +0 -1
- package/fesm2015/angular-fire-compat-database.js.map +0 -1
- package/fesm2015/angular-fire-compat-firestore.js.map +0 -1
- package/fesm2015/angular-fire-compat-functions.js.map +0 -1
- package/fesm2015/angular-fire-compat-messaging.js.map +0 -1
- package/fesm2015/angular-fire-compat-performance.js.map +0 -1
- package/fesm2015/angular-fire-compat-remote-config.js.map +0 -1
- package/fesm2015/angular-fire-compat-storage.js.map +0 -1
- package/fesm2015/angular-fire-compat.js.map +0 -1
- package/fesm2015/angular-fire-database.js.map +0 -1
- package/fesm2015/angular-fire-firestore-lite.js.map +0 -1
- package/fesm2015/angular-fire-firestore.js.map +0 -1
- package/fesm2015/angular-fire-functions.js.map +0 -1
- package/fesm2015/angular-fire-messaging.js.map +0 -1
- package/fesm2015/angular-fire-performance.js.map +0 -1
- package/fesm2015/angular-fire-remote-config.js.map +0 -1
- package/fesm2015/angular-fire-storage.js.map +0 -1
- package/fesm2015/angular-fire.js.map +0 -1
- package/firestore/lite/package.json +0 -11
- package/firestore/package.json +0 -11
- package/firestore-protos.js +0 -4
- package/functions/package.json +0 -11
- package/messaging/package.json +0 -11
- package/performance/package.json +0 -11
- package/remote-config/package.json +0 -11
- package/schematics/add/schema.json +0 -16
- package/schematics/builders.json +0 -10
- package/schematics/collection.json +0 -15
- package/schematics/deploy/schema.json +0 -119
- package/schematics/migration.json +0 -15
- package/schematics/setup/schema.json +0 -16
- package/storage/package.json +0 -11
- /package/analytics/{angular-fire-analytics.d.ts → index.d.ts} +0 -0
- /package/app/{angular-fire-app.d.ts → index.d.ts} +0 -0
- /package/app-check/{angular-fire-app-check.d.ts → index.d.ts} +0 -0
- /package/auth/{angular-fire-auth.d.ts → index.d.ts} +0 -0
- /package/auth-guard/{angular-fire-auth-guard.d.ts → index.d.ts} +0 -0
- /package/compat/analytics/{angular-fire-compat-analytics.d.ts → index.d.ts} +0 -0
- /package/compat/auth/{angular-fire-compat-auth.d.ts → index.d.ts} +0 -0
- /package/compat/auth-guard/{angular-fire-compat-auth-guard.d.ts → index.d.ts} +0 -0
- /package/compat/database/{angular-fire-compat-database.d.ts → index.d.ts} +0 -0
- /package/compat/firestore/{angular-fire-compat-firestore.d.ts → index.d.ts} +0 -0
- /package/compat/functions/{angular-fire-compat-functions.d.ts → index.d.ts} +0 -0
- /package/compat/{angular-fire-compat.d.ts → index.d.ts} +0 -0
- /package/compat/messaging/{angular-fire-compat-messaging.d.ts → index.d.ts} +0 -0
- /package/compat/performance/{angular-fire-compat-performance.d.ts → index.d.ts} +0 -0
- /package/compat/remote-config/{angular-fire-compat-remote-config.d.ts → index.d.ts} +0 -0
- /package/compat/storage/{angular-fire-compat-storage.d.ts → index.d.ts} +0 -0
- /package/database/{angular-fire-database.d.ts → index.d.ts} +0 -0
- /package/{esm2015/analytics/angular-fire-analytics.js → esm2022/analytics/angular-fire-analytics.mjs} +0 -0
- /package/{esm2015/analytics/firebase.js → esm2022/analytics/firebase.mjs} +0 -0
- /package/{esm2015/analytics/public_api.js → esm2022/analytics/public_api.mjs} +0 -0
- /package/{esm2015/angular-fire.js → esm2022/angular-fire.mjs} +0 -0
- /package/{esm2015/app/angular-fire-app.js → esm2022/app/angular-fire-app.mjs} +0 -0
- /package/{esm2015/app/firebase.js → esm2022/app/firebase.mjs} +0 -0
- /package/{esm2015/app/public_api.js → esm2022/app/public_api.mjs} +0 -0
- /package/{esm2015/app-check/angular-fire-app-check.js → esm2022/app-check/angular-fire-app-check.mjs} +0 -0
- /package/{esm2015/app-check/firebase.js → esm2022/app-check/firebase.mjs} +0 -0
- /package/{esm2015/auth/angular-fire-auth.js → esm2022/auth/angular-fire-auth.mjs} +0 -0
- /package/{esm2015/auth/firebase.js → esm2022/auth/firebase.mjs} +0 -0
- /package/{esm2015/auth/public_api.js → esm2022/auth/public_api.mjs} +0 -0
- /package/{esm2015/auth/rxfire.js → esm2022/auth/rxfire.mjs} +0 -0
- /package/{esm2015/auth-guard/angular-fire-auth-guard.js → esm2022/auth-guard/angular-fire-auth-guard.mjs} +0 -0
- /package/{esm2015/auth-guard/public_api.js → esm2022/auth-guard/public_api.mjs} +0 -0
- /package/{esm2015/compat/analytics/angular-fire-compat-analytics.js → esm2022/compat/analytics/angular-fire-compat-analytics.mjs} +0 -0
- /package/{esm2015/compat/analytics/base.js → esm2022/compat/analytics/base.mjs} +0 -0
- /package/{esm2015/compat/analytics/public_api.js → esm2022/compat/analytics/public_api.mjs} +0 -0
- /package/{esm2015/compat/angular-fire-compat.js → esm2022/compat/angular-fire-compat.mjs} +0 -0
- /package/{esm2015/compat/auth/angular-fire-compat-auth.js → esm2022/compat/auth/angular-fire-compat-auth.mjs} +0 -0
- /package/{esm2015/compat/auth/base.js → esm2022/compat/auth/base.mjs} +0 -0
- /package/{esm2015/compat/auth-guard/angular-fire-compat-auth-guard.js → esm2022/compat/auth-guard/angular-fire-compat-auth-guard.mjs} +0 -0
- /package/{esm2015/compat/auth-guard/public_api.js → esm2022/compat/auth-guard/public_api.mjs} +0 -0
- /package/{esm2015/compat/database/angular-fire-compat-database.js → esm2022/compat/database/angular-fire-compat-database.mjs} +0 -0
- /package/{esm2015/compat/database/list/remove.js → esm2022/compat/database/list/remove.mjs} +0 -0
- /package/{esm2015/compat/database/list/utils.js → esm2022/compat/database/list/utils.mjs} +0 -0
- /package/{esm2015/compat/database/public_api.js → esm2022/compat/database/public_api.mjs} +0 -0
- /package/{esm2015/compat/firestore/angular-fire-compat-firestore.js → esm2022/compat/firestore/angular-fire-compat-firestore.mjs} +0 -0
- /package/{esm2015/compat/firestore/public_api.js → esm2022/compat/firestore/public_api.mjs} +0 -0
- /package/{esm2015/compat/functions/angular-fire-compat-functions.js → esm2022/compat/functions/angular-fire-compat-functions.mjs} +0 -0
- /package/{esm2015/compat/functions/base.js → esm2022/compat/functions/base.mjs} +0 -0
- /package/{esm2015/compat/messaging/angular-fire-compat-messaging.js → esm2022/compat/messaging/angular-fire-compat-messaging.mjs} +0 -0
- /package/{esm2015/compat/messaging/base.js → esm2022/compat/messaging/base.mjs} +0 -0
- /package/{esm2015/compat/messaging/public_api.js → esm2022/compat/messaging/public_api.mjs} +0 -0
- /package/{esm2015/compat/performance/angular-fire-compat-performance.js → esm2022/compat/performance/angular-fire-compat-performance.mjs} +0 -0
- /package/{esm2015/compat/performance/base.js → esm2022/compat/performance/base.mjs} +0 -0
- /package/{esm2015/compat/performance/public_api.js → esm2022/compat/performance/public_api.mjs} +0 -0
- /package/{esm2015/compat/public_api.js → esm2022/compat/public_api.mjs} +0 -0
- /package/{esm2015/compat/remote-config/angular-fire-compat-remote-config.js → esm2022/compat/remote-config/angular-fire-compat-remote-config.mjs} +0 -0
- /package/{esm2015/compat/remote-config/base.js → esm2022/compat/remote-config/base.mjs} +0 -0
- /package/{esm2015/compat/remote-config/interfaces.js → esm2022/compat/remote-config/interfaces.mjs} +0 -0
- /package/{esm2015/compat/remote-config/public_api.js → esm2022/compat/remote-config/public_api.mjs} +0 -0
- /package/{esm2015/compat/storage/angular-fire-compat-storage.js → esm2022/compat/storage/angular-fire-compat-storage.mjs} +0 -0
- /package/{esm2015/compat/storage/interfaces.js → esm2022/compat/storage/interfaces.mjs} +0 -0
- /package/{esm2015/compat/storage/public_api.js → esm2022/compat/storage/public_api.mjs} +0 -0
- /package/{esm2015/database/angular-fire-database.js → esm2022/database/angular-fire-database.mjs} +0 -0
- /package/{esm2015/database/firebase.js → esm2022/database/firebase.mjs} +0 -0
- /package/{esm2015/database/public_api.js → esm2022/database/public_api.mjs} +0 -0
- /package/{esm2015/database/rxfire.js → esm2022/database/rxfire.mjs} +0 -0
- /package/{esm2015/firestore/angular-fire-firestore.js → esm2022/firestore/angular-fire-firestore.mjs} +0 -0
- /package/{esm2015/firestore/firebase.js → esm2022/firestore/firebase.mjs} +0 -0
- /package/{esm2015/firestore/lite/angular-fire-firestore-lite.js → esm2022/firestore/lite/angular-fire-firestore-lite.mjs} +0 -0
- /package/{esm2015/firestore/lite/firebase.js → esm2022/firestore/lite/firebase.mjs} +0 -0
- /package/{esm2015/firestore/lite/public_api.js → esm2022/firestore/lite/public_api.mjs} +0 -0
- /package/{esm2015/firestore/lite/rxfire.js → esm2022/firestore/lite/rxfire.mjs} +0 -0
- /package/{esm2015/firestore/public_api.js → esm2022/firestore/public_api.mjs} +0 -0
- /package/{esm2015/functions/angular-fire-functions.js → esm2022/functions/angular-fire-functions.mjs} +0 -0
- /package/{esm2015/functions/firebase.js → esm2022/functions/firebase.mjs} +0 -0
- /package/{esm2015/functions/public_api.js → esm2022/functions/public_api.mjs} +0 -0
- /package/{esm2015/functions/rxfire.js → esm2022/functions/rxfire.mjs} +0 -0
- /package/{esm2015/messaging/angular-fire-messaging.js → esm2022/messaging/angular-fire-messaging.mjs} +0 -0
- /package/{esm2015/messaging/firebase.js → esm2022/messaging/firebase.mjs} +0 -0
- /package/{esm2015/messaging/public_api.js → esm2022/messaging/public_api.mjs} +0 -0
- /package/{esm2015/performance/angular-fire-performance.js → esm2022/performance/angular-fire-performance.mjs} +0 -0
- /package/{esm2015/performance/firebase.js → esm2022/performance/firebase.mjs} +0 -0
- /package/{esm2015/performance/public_api.js → esm2022/performance/public_api.mjs} +0 -0
- /package/{esm2015/performance/rxfire.js → esm2022/performance/rxfire.mjs} +0 -0
- /package/{esm2015/public_api.js → esm2022/public_api.mjs} +0 -0
- /package/{esm2015/remote-config/angular-fire-remote-config.js → esm2022/remote-config/angular-fire-remote-config.mjs} +0 -0
- /package/{esm2015/remote-config/firebase.js → esm2022/remote-config/firebase.mjs} +0 -0
- /package/{esm2015/remote-config/public_api.js → esm2022/remote-config/public_api.mjs} +0 -0
- /package/{esm2015/remote-config/rxfire.js → esm2022/remote-config/rxfire.mjs} +0 -0
- /package/{esm2015/storage/angular-fire-storage.js → esm2022/storage/angular-fire-storage.mjs} +0 -0
- /package/{esm2015/storage/firebase.js → esm2022/storage/firebase.mjs} +0 -0
- /package/{esm2015/storage/public_api.js → esm2022/storage/public_api.mjs} +0 -0
- /package/{esm2015/storage/rxfire.js → esm2022/storage/rxfire.mjs} +0 -0
- /package/firestore/{angular-fire-firestore.d.ts → index.d.ts} +0 -0
- /package/firestore/lite/{angular-fire-firestore-lite.d.ts → index.d.ts} +0 -0
- /package/functions/{angular-fire-functions.d.ts → index.d.ts} +0 -0
- /package/{angular-fire.d.ts → index.d.ts} +0 -0
- /package/messaging/{angular-fire-messaging.d.ts → index.d.ts} +0 -0
- /package/performance/{angular-fire-performance.d.ts → index.d.ts} +0 -0
- /package/remote-config/{angular-fire-remote-config.d.ts → index.d.ts} +0 -0
- /package/storage/{angular-fire-storage.d.ts → index.d.ts} +0 -0
|
@@ -1,799 +0,0 @@
|
|
|
1
|
-
(function (global, factory) {
|
|
2
|
-
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/core'), require('rxjs'), require('rxjs/operators'), require('@angular/fire'), require('@angular/fire/compat'), require('firebase/compat/auth'), require('firebase/compat/database'), require('@angular/fire/compat/auth'), require('@angular/fire/app-check'), require('firebase/compat/app')) :
|
|
3
|
-
typeof define === 'function' && define.amd ? define('@angular/fire/compat/database', ['exports', '@angular/core', 'rxjs', 'rxjs/operators', '@angular/fire', '@angular/fire/compat', 'firebase/compat/auth', 'firebase/compat/database', '@angular/fire/compat/auth', '@angular/fire/app-check', 'firebase/compat/app'], factory) :
|
|
4
|
-
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory((global.angular = global.angular || {}, global.angular.fire = global.angular.fire || {}, global.angular.fire.compat = global.angular.fire.compat || {}, global.angular.fire.compat.database = {}), global.ng.core, global.rxjs, global.rxjs.operators, global.angular.fire, global.angular.fire.compat, null, null, global.angular.fire.compat.auth, global.angular.fire['app-check'], global.firebase));
|
|
5
|
-
}(this, (function (exports, i0, rxjs, operators, i1, compat, auth, database, i2, i3, firebase) { 'use strict';
|
|
6
|
-
|
|
7
|
-
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
8
|
-
|
|
9
|
-
function _interopNamespace(e) {
|
|
10
|
-
if (e && e.__esModule) return e;
|
|
11
|
-
var n = Object.create(null);
|
|
12
|
-
if (e) {
|
|
13
|
-
Object.keys(e).forEach(function (k) {
|
|
14
|
-
if (k !== 'default') {
|
|
15
|
-
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
16
|
-
Object.defineProperty(n, k, d.get ? d : {
|
|
17
|
-
enumerable: true,
|
|
18
|
-
get: function () {
|
|
19
|
-
return e[k];
|
|
20
|
-
}
|
|
21
|
-
});
|
|
22
|
-
}
|
|
23
|
-
});
|
|
24
|
-
}
|
|
25
|
-
n['default'] = e;
|
|
26
|
-
return Object.freeze(n);
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
var i0__namespace = /*#__PURE__*/_interopNamespace(i0);
|
|
30
|
-
var i1__namespace = /*#__PURE__*/_interopNamespace(i1);
|
|
31
|
-
var i2__namespace = /*#__PURE__*/_interopNamespace(i2);
|
|
32
|
-
var i3__namespace = /*#__PURE__*/_interopNamespace(i3);
|
|
33
|
-
var firebase__default = /*#__PURE__*/_interopDefaultLegacy(firebase);
|
|
34
|
-
|
|
35
|
-
/*! *****************************************************************************
|
|
36
|
-
Copyright (c) Microsoft Corporation.
|
|
37
|
-
|
|
38
|
-
Permission to use, copy, modify, and/or distribute this software for any
|
|
39
|
-
purpose with or without fee is hereby granted.
|
|
40
|
-
|
|
41
|
-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
42
|
-
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
43
|
-
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
44
|
-
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
45
|
-
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
46
|
-
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
47
|
-
PERFORMANCE OF THIS SOFTWARE.
|
|
48
|
-
***************************************************************************** */
|
|
49
|
-
/* global Reflect, Promise */
|
|
50
|
-
var extendStatics = function (d, b) {
|
|
51
|
-
extendStatics = Object.setPrototypeOf ||
|
|
52
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
53
|
-
function (d, b) { for (var p in b)
|
|
54
|
-
if (Object.prototype.hasOwnProperty.call(b, p))
|
|
55
|
-
d[p] = b[p]; };
|
|
56
|
-
return extendStatics(d, b);
|
|
57
|
-
};
|
|
58
|
-
function __extends(d, b) {
|
|
59
|
-
if (typeof b !== "function" && b !== null)
|
|
60
|
-
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
61
|
-
extendStatics(d, b);
|
|
62
|
-
function __() { this.constructor = d; }
|
|
63
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
64
|
-
}
|
|
65
|
-
var __assign = function () {
|
|
66
|
-
__assign = Object.assign || function __assign(t) {
|
|
67
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
68
|
-
s = arguments[i];
|
|
69
|
-
for (var p in s)
|
|
70
|
-
if (Object.prototype.hasOwnProperty.call(s, p))
|
|
71
|
-
t[p] = s[p];
|
|
72
|
-
}
|
|
73
|
-
return t;
|
|
74
|
-
};
|
|
75
|
-
return __assign.apply(this, arguments);
|
|
76
|
-
};
|
|
77
|
-
function __rest(s, e) {
|
|
78
|
-
var t = {};
|
|
79
|
-
for (var p in s)
|
|
80
|
-
if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
81
|
-
t[p] = s[p];
|
|
82
|
-
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
83
|
-
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
84
|
-
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
85
|
-
t[p[i]] = s[p[i]];
|
|
86
|
-
}
|
|
87
|
-
return t;
|
|
88
|
-
}
|
|
89
|
-
function __decorate(decorators, target, key, desc) {
|
|
90
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
91
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
92
|
-
r = Reflect.decorate(decorators, target, key, desc);
|
|
93
|
-
else
|
|
94
|
-
for (var i = decorators.length - 1; i >= 0; i--)
|
|
95
|
-
if (d = decorators[i])
|
|
96
|
-
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
97
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
98
|
-
}
|
|
99
|
-
function __param(paramIndex, decorator) {
|
|
100
|
-
return function (target, key) { decorator(target, key, paramIndex); };
|
|
101
|
-
}
|
|
102
|
-
function __metadata(metadataKey, metadataValue) {
|
|
103
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
|
|
104
|
-
return Reflect.metadata(metadataKey, metadataValue);
|
|
105
|
-
}
|
|
106
|
-
function __awaiter(thisArg, _arguments, P, generator) {
|
|
107
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
108
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
109
|
-
function fulfilled(value) { try {
|
|
110
|
-
step(generator.next(value));
|
|
111
|
-
}
|
|
112
|
-
catch (e) {
|
|
113
|
-
reject(e);
|
|
114
|
-
} }
|
|
115
|
-
function rejected(value) { try {
|
|
116
|
-
step(generator["throw"](value));
|
|
117
|
-
}
|
|
118
|
-
catch (e) {
|
|
119
|
-
reject(e);
|
|
120
|
-
} }
|
|
121
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
122
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
123
|
-
});
|
|
124
|
-
}
|
|
125
|
-
function __generator(thisArg, body) {
|
|
126
|
-
var _ = { label: 0, sent: function () { if (t[0] & 1)
|
|
127
|
-
throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
128
|
-
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function () { return this; }), g;
|
|
129
|
-
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
130
|
-
function step(op) {
|
|
131
|
-
if (f)
|
|
132
|
-
throw new TypeError("Generator is already executing.");
|
|
133
|
-
while (_)
|
|
134
|
-
try {
|
|
135
|
-
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done)
|
|
136
|
-
return t;
|
|
137
|
-
if (y = 0, t)
|
|
138
|
-
op = [op[0] & 2, t.value];
|
|
139
|
-
switch (op[0]) {
|
|
140
|
-
case 0:
|
|
141
|
-
case 1:
|
|
142
|
-
t = op;
|
|
143
|
-
break;
|
|
144
|
-
case 4:
|
|
145
|
-
_.label++;
|
|
146
|
-
return { value: op[1], done: false };
|
|
147
|
-
case 5:
|
|
148
|
-
_.label++;
|
|
149
|
-
y = op[1];
|
|
150
|
-
op = [0];
|
|
151
|
-
continue;
|
|
152
|
-
case 7:
|
|
153
|
-
op = _.ops.pop();
|
|
154
|
-
_.trys.pop();
|
|
155
|
-
continue;
|
|
156
|
-
default:
|
|
157
|
-
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) {
|
|
158
|
-
_ = 0;
|
|
159
|
-
continue;
|
|
160
|
-
}
|
|
161
|
-
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) {
|
|
162
|
-
_.label = op[1];
|
|
163
|
-
break;
|
|
164
|
-
}
|
|
165
|
-
if (op[0] === 6 && _.label < t[1]) {
|
|
166
|
-
_.label = t[1];
|
|
167
|
-
t = op;
|
|
168
|
-
break;
|
|
169
|
-
}
|
|
170
|
-
if (t && _.label < t[2]) {
|
|
171
|
-
_.label = t[2];
|
|
172
|
-
_.ops.push(op);
|
|
173
|
-
break;
|
|
174
|
-
}
|
|
175
|
-
if (t[2])
|
|
176
|
-
_.ops.pop();
|
|
177
|
-
_.trys.pop();
|
|
178
|
-
continue;
|
|
179
|
-
}
|
|
180
|
-
op = body.call(thisArg, _);
|
|
181
|
-
}
|
|
182
|
-
catch (e) {
|
|
183
|
-
op = [6, e];
|
|
184
|
-
y = 0;
|
|
185
|
-
}
|
|
186
|
-
finally {
|
|
187
|
-
f = t = 0;
|
|
188
|
-
}
|
|
189
|
-
if (op[0] & 5)
|
|
190
|
-
throw op[1];
|
|
191
|
-
return { value: op[0] ? op[1] : void 0, done: true };
|
|
192
|
-
}
|
|
193
|
-
}
|
|
194
|
-
var __createBinding = Object.create ? (function (o, m, k, k2) {
|
|
195
|
-
if (k2 === undefined)
|
|
196
|
-
k2 = k;
|
|
197
|
-
Object.defineProperty(o, k2, { enumerable: true, get: function () { return m[k]; } });
|
|
198
|
-
}) : (function (o, m, k, k2) {
|
|
199
|
-
if (k2 === undefined)
|
|
200
|
-
k2 = k;
|
|
201
|
-
o[k2] = m[k];
|
|
202
|
-
});
|
|
203
|
-
function __exportStar(m, o) {
|
|
204
|
-
for (var p in m)
|
|
205
|
-
if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p))
|
|
206
|
-
__createBinding(o, m, p);
|
|
207
|
-
}
|
|
208
|
-
function __values(o) {
|
|
209
|
-
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
|
|
210
|
-
if (m)
|
|
211
|
-
return m.call(o);
|
|
212
|
-
if (o && typeof o.length === "number")
|
|
213
|
-
return {
|
|
214
|
-
next: function () {
|
|
215
|
-
if (o && i >= o.length)
|
|
216
|
-
o = void 0;
|
|
217
|
-
return { value: o && o[i++], done: !o };
|
|
218
|
-
}
|
|
219
|
-
};
|
|
220
|
-
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
|
|
221
|
-
}
|
|
222
|
-
function __read(o, n) {
|
|
223
|
-
var m = typeof Symbol === "function" && o[Symbol.iterator];
|
|
224
|
-
if (!m)
|
|
225
|
-
return o;
|
|
226
|
-
var i = m.call(o), r, ar = [], e;
|
|
227
|
-
try {
|
|
228
|
-
while ((n === void 0 || n-- > 0) && !(r = i.next()).done)
|
|
229
|
-
ar.push(r.value);
|
|
230
|
-
}
|
|
231
|
-
catch (error) {
|
|
232
|
-
e = { error: error };
|
|
233
|
-
}
|
|
234
|
-
finally {
|
|
235
|
-
try {
|
|
236
|
-
if (r && !r.done && (m = i["return"]))
|
|
237
|
-
m.call(i);
|
|
238
|
-
}
|
|
239
|
-
finally {
|
|
240
|
-
if (e)
|
|
241
|
-
throw e.error;
|
|
242
|
-
}
|
|
243
|
-
}
|
|
244
|
-
return ar;
|
|
245
|
-
}
|
|
246
|
-
/** @deprecated */
|
|
247
|
-
function __spread() {
|
|
248
|
-
for (var ar = [], i = 0; i < arguments.length; i++)
|
|
249
|
-
ar = ar.concat(__read(arguments[i]));
|
|
250
|
-
return ar;
|
|
251
|
-
}
|
|
252
|
-
/** @deprecated */
|
|
253
|
-
function __spreadArrays() {
|
|
254
|
-
for (var s = 0, i = 0, il = arguments.length; i < il; i++)
|
|
255
|
-
s += arguments[i].length;
|
|
256
|
-
for (var r = Array(s), k = 0, i = 0; i < il; i++)
|
|
257
|
-
for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
|
|
258
|
-
r[k] = a[j];
|
|
259
|
-
return r;
|
|
260
|
-
}
|
|
261
|
-
function __spreadArray(to, from) {
|
|
262
|
-
for (var i = 0, il = from.length, j = to.length; i < il; i++, j++)
|
|
263
|
-
to[j] = from[i];
|
|
264
|
-
return to;
|
|
265
|
-
}
|
|
266
|
-
function __await(v) {
|
|
267
|
-
return this instanceof __await ? (this.v = v, this) : new __await(v);
|
|
268
|
-
}
|
|
269
|
-
function __asyncGenerator(thisArg, _arguments, generator) {
|
|
270
|
-
if (!Symbol.asyncIterator)
|
|
271
|
-
throw new TypeError("Symbol.asyncIterator is not defined.");
|
|
272
|
-
var g = generator.apply(thisArg, _arguments || []), i, q = [];
|
|
273
|
-
return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i;
|
|
274
|
-
function verb(n) { if (g[n])
|
|
275
|
-
i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }
|
|
276
|
-
function resume(n, v) { try {
|
|
277
|
-
step(g[n](v));
|
|
278
|
-
}
|
|
279
|
-
catch (e) {
|
|
280
|
-
settle(q[0][3], e);
|
|
281
|
-
} }
|
|
282
|
-
function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }
|
|
283
|
-
function fulfill(value) { resume("next", value); }
|
|
284
|
-
function reject(value) { resume("throw", value); }
|
|
285
|
-
function settle(f, v) { if (f(v), q.shift(), q.length)
|
|
286
|
-
resume(q[0][0], q[0][1]); }
|
|
287
|
-
}
|
|
288
|
-
function __asyncDelegator(o) {
|
|
289
|
-
var i, p;
|
|
290
|
-
return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i;
|
|
291
|
-
function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; }
|
|
292
|
-
}
|
|
293
|
-
function __asyncValues(o) {
|
|
294
|
-
if (!Symbol.asyncIterator)
|
|
295
|
-
throw new TypeError("Symbol.asyncIterator is not defined.");
|
|
296
|
-
var m = o[Symbol.asyncIterator], i;
|
|
297
|
-
return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
|
|
298
|
-
function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
|
|
299
|
-
function settle(resolve, reject, d, v) { Promise.resolve(v).then(function (v) { resolve({ value: v, done: d }); }, reject); }
|
|
300
|
-
}
|
|
301
|
-
function __makeTemplateObject(cooked, raw) {
|
|
302
|
-
if (Object.defineProperty) {
|
|
303
|
-
Object.defineProperty(cooked, "raw", { value: raw });
|
|
304
|
-
}
|
|
305
|
-
else {
|
|
306
|
-
cooked.raw = raw;
|
|
307
|
-
}
|
|
308
|
-
return cooked;
|
|
309
|
-
}
|
|
310
|
-
;
|
|
311
|
-
var __setModuleDefault = Object.create ? (function (o, v) {
|
|
312
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
313
|
-
}) : function (o, v) {
|
|
314
|
-
o["default"] = v;
|
|
315
|
-
};
|
|
316
|
-
function __importStar(mod) {
|
|
317
|
-
if (mod && mod.__esModule)
|
|
318
|
-
return mod;
|
|
319
|
-
var result = {};
|
|
320
|
-
if (mod != null)
|
|
321
|
-
for (var k in mod)
|
|
322
|
-
if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k))
|
|
323
|
-
__createBinding(result, mod, k);
|
|
324
|
-
__setModuleDefault(result, mod);
|
|
325
|
-
return result;
|
|
326
|
-
}
|
|
327
|
-
function __importDefault(mod) {
|
|
328
|
-
return (mod && mod.__esModule) ? mod : { default: mod };
|
|
329
|
-
}
|
|
330
|
-
function __classPrivateFieldGet(receiver, state, kind, f) {
|
|
331
|
-
if (kind === "a" && !f)
|
|
332
|
-
throw new TypeError("Private accessor was defined without a getter");
|
|
333
|
-
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver))
|
|
334
|
-
throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
|
335
|
-
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
|
336
|
-
}
|
|
337
|
-
function __classPrivateFieldSet(receiver, state, value, kind, f) {
|
|
338
|
-
if (kind === "m")
|
|
339
|
-
throw new TypeError("Private method is not writable");
|
|
340
|
-
if (kind === "a" && !f)
|
|
341
|
-
throw new TypeError("Private accessor was defined without a setter");
|
|
342
|
-
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver))
|
|
343
|
-
throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
|
344
|
-
return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
|
|
345
|
-
}
|
|
346
|
-
|
|
347
|
-
function isString(value) {
|
|
348
|
-
return typeof value === 'string';
|
|
349
|
-
}
|
|
350
|
-
function isFirebaseDataSnapshot(value) {
|
|
351
|
-
return typeof value.exportVal === 'function';
|
|
352
|
-
}
|
|
353
|
-
function isNil(obj) {
|
|
354
|
-
return obj === undefined || obj === null;
|
|
355
|
-
}
|
|
356
|
-
function isFirebaseRef(value) {
|
|
357
|
-
return typeof value.set === 'function';
|
|
358
|
-
}
|
|
359
|
-
/**
|
|
360
|
-
* Returns a database reference given a Firebase App and an
|
|
361
|
-
* absolute or relative path.
|
|
362
|
-
* @param database - Firebase Database
|
|
363
|
-
* @param pathRef - Database path, relative or absolute
|
|
364
|
-
*/
|
|
365
|
-
function getRef(database, pathRef) {
|
|
366
|
-
// if a db ref was passed in, just return it
|
|
367
|
-
return isFirebaseRef(pathRef) ? pathRef
|
|
368
|
-
: database.ref(pathRef);
|
|
369
|
-
}
|
|
370
|
-
function checkOperationCases(item, cases) {
|
|
371
|
-
if (isString(item)) {
|
|
372
|
-
return cases.stringCase();
|
|
373
|
-
}
|
|
374
|
-
else if (isFirebaseRef(item)) {
|
|
375
|
-
return cases.firebaseCase();
|
|
376
|
-
}
|
|
377
|
-
else if (isFirebaseDataSnapshot(item)) {
|
|
378
|
-
return cases.snapshotCase();
|
|
379
|
-
}
|
|
380
|
-
throw new Error("Expects a string, snapshot, or reference. Got: " + typeof item);
|
|
381
|
-
}
|
|
382
|
-
|
|
383
|
-
/**
|
|
384
|
-
* Create an observable from a Database Reference or Database Query.
|
|
385
|
-
* @param ref Database Reference
|
|
386
|
-
* @param event Listen event type ('value', 'added', 'changed', 'removed', 'moved')
|
|
387
|
-
* @param listenType 'on' or 'once'
|
|
388
|
-
* @param scheduler - Rxjs scheduler
|
|
389
|
-
*/
|
|
390
|
-
function fromRef(ref, event, listenType, scheduler) {
|
|
391
|
-
if (listenType === void 0) { listenType = 'on'; }
|
|
392
|
-
if (scheduler === void 0) { scheduler = rxjs.asyncScheduler; }
|
|
393
|
-
return new rxjs.Observable(function (subscriber) {
|
|
394
|
-
var fn = null;
|
|
395
|
-
fn = ref[listenType](event, function (snapshot, prevKey) {
|
|
396
|
-
scheduler.schedule(function () {
|
|
397
|
-
subscriber.next({ snapshot: snapshot, prevKey: prevKey });
|
|
398
|
-
});
|
|
399
|
-
if (listenType === 'once') {
|
|
400
|
-
scheduler.schedule(function () { return subscriber.complete(); });
|
|
401
|
-
}
|
|
402
|
-
}, function (err) {
|
|
403
|
-
scheduler.schedule(function () { return subscriber.error(err); });
|
|
404
|
-
});
|
|
405
|
-
if (listenType === 'on') {
|
|
406
|
-
return {
|
|
407
|
-
unsubscribe: function () {
|
|
408
|
-
if (fn != null) {
|
|
409
|
-
ref.off(event, fn);
|
|
410
|
-
}
|
|
411
|
-
}
|
|
412
|
-
};
|
|
413
|
-
}
|
|
414
|
-
else {
|
|
415
|
-
return {
|
|
416
|
-
unsubscribe: function () {
|
|
417
|
-
}
|
|
418
|
-
};
|
|
419
|
-
}
|
|
420
|
-
}).pipe(operators.map(function (payload) {
|
|
421
|
-
var snapshot = payload.snapshot, prevKey = payload.prevKey;
|
|
422
|
-
var key = null;
|
|
423
|
-
if (snapshot.exists()) {
|
|
424
|
-
key = snapshot.key;
|
|
425
|
-
}
|
|
426
|
-
return { type: event, payload: snapshot, prevKey: prevKey, key: key };
|
|
427
|
-
}), operators.share());
|
|
428
|
-
}
|
|
429
|
-
|
|
430
|
-
function listChanges(ref, events, scheduler) {
|
|
431
|
-
return fromRef(ref, 'value', 'once', scheduler).pipe(operators.switchMap(function (snapshotAction) {
|
|
432
|
-
var childEvent$ = [rxjs.of(snapshotAction)];
|
|
433
|
-
events.forEach(function (event) { return childEvent$.push(fromRef(ref, event, 'on', scheduler)); });
|
|
434
|
-
return rxjs.merge.apply(void 0, __spreadArray([], __read(childEvent$))).pipe(operators.scan(buildView, []));
|
|
435
|
-
}), operators.distinctUntilChanged());
|
|
436
|
-
}
|
|
437
|
-
function positionFor(changes, key) {
|
|
438
|
-
var len = changes.length;
|
|
439
|
-
for (var i = 0; i < len; i++) {
|
|
440
|
-
if (changes[i].payload.key === key) {
|
|
441
|
-
return i;
|
|
442
|
-
}
|
|
443
|
-
}
|
|
444
|
-
return -1;
|
|
445
|
-
}
|
|
446
|
-
function positionAfter(changes, prevKey) {
|
|
447
|
-
if (isNil(prevKey)) {
|
|
448
|
-
return 0;
|
|
449
|
-
}
|
|
450
|
-
else {
|
|
451
|
-
var i = positionFor(changes, prevKey);
|
|
452
|
-
if (i === -1) {
|
|
453
|
-
return changes.length;
|
|
454
|
-
}
|
|
455
|
-
else {
|
|
456
|
-
return i + 1;
|
|
457
|
-
}
|
|
458
|
-
}
|
|
459
|
-
}
|
|
460
|
-
function buildView(current, action) {
|
|
461
|
-
var payload = action.payload, prevKey = action.prevKey, key = action.key;
|
|
462
|
-
var currentKeyPosition = positionFor(current, key);
|
|
463
|
-
var afterPreviousKeyPosition = positionAfter(current, prevKey);
|
|
464
|
-
switch (action.type) {
|
|
465
|
-
case 'value':
|
|
466
|
-
if (action.payload && action.payload.exists()) {
|
|
467
|
-
var prevKey_1 = null;
|
|
468
|
-
action.payload.forEach(function (payload) {
|
|
469
|
-
var action = { payload: payload, type: 'value', prevKey: prevKey_1, key: payload.key };
|
|
470
|
-
prevKey_1 = payload.key;
|
|
471
|
-
current = __spreadArray(__spreadArray([], __read(current)), [action]);
|
|
472
|
-
return false;
|
|
473
|
-
});
|
|
474
|
-
}
|
|
475
|
-
return current;
|
|
476
|
-
case 'child_added':
|
|
477
|
-
if (currentKeyPosition > -1) {
|
|
478
|
-
// check that the previouskey is what we expect, else reorder
|
|
479
|
-
var previous = current[currentKeyPosition - 1];
|
|
480
|
-
if ((previous && previous.key || null) !== prevKey) {
|
|
481
|
-
current = current.filter(function (x) { return x.payload.key !== payload.key; });
|
|
482
|
-
current.splice(afterPreviousKeyPosition, 0, action);
|
|
483
|
-
}
|
|
484
|
-
}
|
|
485
|
-
else if (prevKey == null) {
|
|
486
|
-
return __spreadArray([action], __read(current));
|
|
487
|
-
}
|
|
488
|
-
else {
|
|
489
|
-
current = current.slice();
|
|
490
|
-
current.splice(afterPreviousKeyPosition, 0, action);
|
|
491
|
-
}
|
|
492
|
-
return current;
|
|
493
|
-
case 'child_removed':
|
|
494
|
-
return current.filter(function (x) { return x.payload.key !== payload.key; });
|
|
495
|
-
case 'child_changed':
|
|
496
|
-
return current.map(function (x) { return x.payload.key === key ? action : x; });
|
|
497
|
-
case 'child_moved':
|
|
498
|
-
if (currentKeyPosition > -1) {
|
|
499
|
-
var data = current.splice(currentKeyPosition, 1)[0];
|
|
500
|
-
current = current.slice();
|
|
501
|
-
current.splice(afterPreviousKeyPosition, 0, data);
|
|
502
|
-
return current;
|
|
503
|
-
}
|
|
504
|
-
return current;
|
|
505
|
-
// default will also remove null results
|
|
506
|
-
default:
|
|
507
|
-
return current;
|
|
508
|
-
}
|
|
509
|
-
}
|
|
510
|
-
|
|
511
|
-
function validateEventsArray(events) {
|
|
512
|
-
if (isNil(events) || events.length === 0) {
|
|
513
|
-
events = ['child_added', 'child_removed', 'child_changed', 'child_moved'];
|
|
514
|
-
}
|
|
515
|
-
return events;
|
|
516
|
-
}
|
|
517
|
-
|
|
518
|
-
function snapshotChanges(query, events, scheduler) {
|
|
519
|
-
events = validateEventsArray(events);
|
|
520
|
-
return listChanges(query, events, scheduler);
|
|
521
|
-
}
|
|
522
|
-
|
|
523
|
-
function stateChanges(query, events, scheduler) {
|
|
524
|
-
events = validateEventsArray(events);
|
|
525
|
-
var childEvent$ = events.map(function (event) { return fromRef(query, event, 'on', scheduler); });
|
|
526
|
-
return rxjs.merge.apply(void 0, __spreadArray([], __read(childEvent$)));
|
|
527
|
-
}
|
|
528
|
-
|
|
529
|
-
function auditTrail(query, events, scheduler) {
|
|
530
|
-
var auditTrail$ = stateChanges(query, events)
|
|
531
|
-
.pipe(operators.scan(function (current, action) { return __spreadArray(__spreadArray([], __read(current)), [action]); }, []));
|
|
532
|
-
return waitForLoaded(query, auditTrail$, scheduler);
|
|
533
|
-
}
|
|
534
|
-
function loadedData(query, scheduler) {
|
|
535
|
-
// Create an observable of loaded values to retrieve the
|
|
536
|
-
// known dataset. This will allow us to know what key to
|
|
537
|
-
// emit the "whole" array at when listening for child events.
|
|
538
|
-
return fromRef(query, 'value', 'on', scheduler)
|
|
539
|
-
.pipe(operators.map(function (data) {
|
|
540
|
-
// Store the last key in the data set
|
|
541
|
-
var lastKeyToLoad;
|
|
542
|
-
// Loop through loaded dataset to find the last key
|
|
543
|
-
data.payload.forEach(function (child) {
|
|
544
|
-
lastKeyToLoad = child.key;
|
|
545
|
-
return false;
|
|
546
|
-
});
|
|
547
|
-
// return data set and the current last key loaded
|
|
548
|
-
return { data: data, lastKeyToLoad: lastKeyToLoad };
|
|
549
|
-
}));
|
|
550
|
-
}
|
|
551
|
-
function waitForLoaded(query, action$, scheduler) {
|
|
552
|
-
var loaded$ = loadedData(query, scheduler);
|
|
553
|
-
return loaded$
|
|
554
|
-
.pipe(operators.withLatestFrom(action$),
|
|
555
|
-
// Get the latest values from the "loaded" and "child" datasets
|
|
556
|
-
// We can use both datasets to form an array of the latest values.
|
|
557
|
-
operators.map(function (_a) {
|
|
558
|
-
var _b = __read(_a, 2), loaded = _b[0], actions = _b[1];
|
|
559
|
-
// Store the last key in the data set
|
|
560
|
-
var lastKeyToLoad = loaded.lastKeyToLoad;
|
|
561
|
-
// Store all child keys loaded at this point
|
|
562
|
-
var loadedKeys = actions.map(function (snap) { return snap.key; });
|
|
563
|
-
return { actions: actions, lastKeyToLoad: lastKeyToLoad, loadedKeys: loadedKeys };
|
|
564
|
-
}),
|
|
565
|
-
// This is the magical part, only emit when the last load key
|
|
566
|
-
// in the dataset has been loaded by a child event. At this point
|
|
567
|
-
// we can assume the dataset is "whole".
|
|
568
|
-
operators.skipWhile(function (meta) { return meta.loadedKeys.indexOf(meta.lastKeyToLoad) === -1; }),
|
|
569
|
-
// Pluck off the meta data because the user only cares
|
|
570
|
-
// to iterate through the snapshots
|
|
571
|
-
operators.map(function (meta) { return meta.actions; }));
|
|
572
|
-
}
|
|
573
|
-
|
|
574
|
-
function createDataOperationMethod(ref, operation) {
|
|
575
|
-
return function dataOperation(item, value) {
|
|
576
|
-
return checkOperationCases(item, {
|
|
577
|
-
stringCase: function () { return ref.child(item)[operation](value); },
|
|
578
|
-
firebaseCase: function () { return item[operation](value); },
|
|
579
|
-
snapshotCase: function () { return item.ref[operation](value); }
|
|
580
|
-
});
|
|
581
|
-
};
|
|
582
|
-
}
|
|
583
|
-
|
|
584
|
-
// TODO(davideast): Find out why TS thinks this returns firebase.Primise
|
|
585
|
-
// instead of Promise.
|
|
586
|
-
function createRemoveMethod(ref) {
|
|
587
|
-
return function remove(item) {
|
|
588
|
-
if (!item) {
|
|
589
|
-
return ref.remove();
|
|
590
|
-
}
|
|
591
|
-
return checkOperationCases(item, {
|
|
592
|
-
stringCase: function () { return ref.child(item).remove(); },
|
|
593
|
-
firebaseCase: function () { return item.remove(); },
|
|
594
|
-
snapshotCase: function () { return item.ref.remove(); }
|
|
595
|
-
});
|
|
596
|
-
};
|
|
597
|
-
}
|
|
598
|
-
|
|
599
|
-
function createListReference(query, afDatabase) {
|
|
600
|
-
var outsideAngularScheduler = afDatabase.schedulers.outsideAngular;
|
|
601
|
-
var refInZone = afDatabase.schedulers.ngZone.run(function () { return query.ref; });
|
|
602
|
-
return {
|
|
603
|
-
query: query,
|
|
604
|
-
update: createDataOperationMethod(refInZone, 'update'),
|
|
605
|
-
set: createDataOperationMethod(refInZone, 'set'),
|
|
606
|
-
push: function (data) { return refInZone.push(data); },
|
|
607
|
-
remove: createRemoveMethod(refInZone),
|
|
608
|
-
snapshotChanges: function (events) {
|
|
609
|
-
return snapshotChanges(query, events, outsideAngularScheduler).pipe(i1.keepUnstableUntilFirst);
|
|
610
|
-
},
|
|
611
|
-
stateChanges: function (events) {
|
|
612
|
-
return stateChanges(query, events, outsideAngularScheduler).pipe(i1.keepUnstableUntilFirst);
|
|
613
|
-
},
|
|
614
|
-
auditTrail: function (events) {
|
|
615
|
-
return auditTrail(query, events, outsideAngularScheduler).pipe(i1.keepUnstableUntilFirst);
|
|
616
|
-
},
|
|
617
|
-
valueChanges: function (events, options) {
|
|
618
|
-
var snapshotChanges$ = snapshotChanges(query, events, outsideAngularScheduler);
|
|
619
|
-
return snapshotChanges$.pipe(operators.map(function (actions) { return actions.map(function (a) {
|
|
620
|
-
var _a;
|
|
621
|
-
if (options && options.idField) {
|
|
622
|
-
return Object.assign(Object.assign({}, a.payload.val()), (_a = {},
|
|
623
|
-
_a[options.idField] = a.key,
|
|
624
|
-
_a));
|
|
625
|
-
}
|
|
626
|
-
else {
|
|
627
|
-
return a.payload.val();
|
|
628
|
-
}
|
|
629
|
-
}); }), i1.keepUnstableUntilFirst);
|
|
630
|
-
}
|
|
631
|
-
};
|
|
632
|
-
}
|
|
633
|
-
|
|
634
|
-
function createObjectSnapshotChanges(query, scheduler) {
|
|
635
|
-
return function snapshotChanges() {
|
|
636
|
-
return fromRef(query, 'value', 'on', scheduler);
|
|
637
|
-
};
|
|
638
|
-
}
|
|
639
|
-
|
|
640
|
-
function createObjectReference(query, afDatabase) {
|
|
641
|
-
return {
|
|
642
|
-
query: query,
|
|
643
|
-
snapshotChanges: function () {
|
|
644
|
-
return createObjectSnapshotChanges(query, afDatabase.schedulers.outsideAngular)().pipe(i1.keepUnstableUntilFirst);
|
|
645
|
-
},
|
|
646
|
-
update: function (data) { return query.ref.update(data); },
|
|
647
|
-
set: function (data) { return query.ref.set(data); },
|
|
648
|
-
remove: function () { return query.ref.remove(); },
|
|
649
|
-
valueChanges: function () {
|
|
650
|
-
var snapshotChanges$ = createObjectSnapshotChanges(query, afDatabase.schedulers.outsideAngular)();
|
|
651
|
-
return snapshotChanges$.pipe(i1.keepUnstableUntilFirst, operators.map(function (action) { return action.payload.exists() ? action.payload.val() : null; }));
|
|
652
|
-
},
|
|
653
|
-
};
|
|
654
|
-
}
|
|
655
|
-
|
|
656
|
-
var URL = new i0.InjectionToken('angularfire2.realtimeDatabaseURL');
|
|
657
|
-
var USE_EMULATOR = new i0.InjectionToken('angularfire2.database.use-emulator');
|
|
658
|
-
var AngularFireDatabase = /** @class */ (function () {
|
|
659
|
-
function AngularFireDatabase(options, name, databaseURL,
|
|
660
|
-
// tslint:disable-next-line:ban-types
|
|
661
|
-
platformId, zone, schedulers, _useEmulator, // tuple isn't working here
|
|
662
|
-
auth, useAuthEmulator, authSettings, // can't use firebase.auth.AuthSettings here
|
|
663
|
-
tenantId, languageCode, useDeviceLanguage, persistence, _appCheckInstances) {
|
|
664
|
-
this.schedulers = schedulers;
|
|
665
|
-
var useEmulator = _useEmulator;
|
|
666
|
-
var app = compat.ɵfirebaseAppFactory(options, zone, name);
|
|
667
|
-
if (auth) {
|
|
668
|
-
i2.ɵauthFactory(app, zone, useAuthEmulator, tenantId, languageCode, useDeviceLanguage, authSettings, persistence);
|
|
669
|
-
}
|
|
670
|
-
this.database = compat.ɵcacheInstance(app.name + ".database." + databaseURL, 'AngularFireDatabase', app.name, function () {
|
|
671
|
-
var database = zone.runOutsideAngular(function () { return app.database(databaseURL || undefined); });
|
|
672
|
-
if (useEmulator) {
|
|
673
|
-
database.useEmulator.apply(database, __spreadArray([], __read(useEmulator)));
|
|
674
|
-
}
|
|
675
|
-
return database;
|
|
676
|
-
}, [useEmulator]);
|
|
677
|
-
}
|
|
678
|
-
AngularFireDatabase.prototype.list = function (pathOrRef, queryFn) {
|
|
679
|
-
var _this = this;
|
|
680
|
-
var ref = this.schedulers.ngZone.runOutsideAngular(function () { return getRef(_this.database, pathOrRef); });
|
|
681
|
-
var query = ref;
|
|
682
|
-
if (queryFn) {
|
|
683
|
-
query = queryFn(ref);
|
|
684
|
-
}
|
|
685
|
-
return createListReference(query, this);
|
|
686
|
-
};
|
|
687
|
-
AngularFireDatabase.prototype.object = function (pathOrRef) {
|
|
688
|
-
var _this = this;
|
|
689
|
-
var ref = this.schedulers.ngZone.runOutsideAngular(function () { return getRef(_this.database, pathOrRef); });
|
|
690
|
-
return createObjectReference(ref, this);
|
|
691
|
-
};
|
|
692
|
-
AngularFireDatabase.prototype.createPushId = function () {
|
|
693
|
-
var _this = this;
|
|
694
|
-
var ref = this.schedulers.ngZone.runOutsideAngular(function () { return _this.database.ref(); });
|
|
695
|
-
return ref.push().key;
|
|
696
|
-
};
|
|
697
|
-
return AngularFireDatabase;
|
|
698
|
-
}());
|
|
699
|
-
AngularFireDatabase.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.1.3", ngImport: i0__namespace, type: AngularFireDatabase, deps: [{ token: compat.FIREBASE_OPTIONS }, { token: compat.FIREBASE_APP_NAME, optional: true }, { token: URL, optional: true }, { token: i0.PLATFORM_ID }, { token: i0__namespace.NgZone }, { token: i1__namespace.ɵAngularFireSchedulers }, { token: USE_EMULATOR, optional: true }, { token: i2__namespace.AngularFireAuth, optional: true }, { token: i2.USE_EMULATOR, optional: true }, { token: i2.SETTINGS, optional: true }, { token: i2.TENANT_ID, optional: true }, { token: i2.LANGUAGE_CODE, optional: true }, { token: i2.USE_DEVICE_LANGUAGE, optional: true }, { token: i2.PERSISTENCE, optional: true }, { token: i3__namespace.AppCheckInstances, optional: true }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
|
700
|
-
AngularFireDatabase.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.1.3", ngImport: i0__namespace, type: AngularFireDatabase, providedIn: 'any' });
|
|
701
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.1.3", ngImport: i0__namespace, type: AngularFireDatabase, decorators: [{
|
|
702
|
-
type: i0.Injectable,
|
|
703
|
-
args: [{
|
|
704
|
-
providedIn: 'any'
|
|
705
|
-
}]
|
|
706
|
-
}], ctorParameters: function () {
|
|
707
|
-
return [{ type: undefined, decorators: [{
|
|
708
|
-
type: i0.Inject,
|
|
709
|
-
args: [compat.FIREBASE_OPTIONS]
|
|
710
|
-
}] }, { type: undefined, decorators: [{
|
|
711
|
-
type: i0.Optional
|
|
712
|
-
}, {
|
|
713
|
-
type: i0.Inject,
|
|
714
|
-
args: [compat.FIREBASE_APP_NAME]
|
|
715
|
-
}] }, { type: undefined, decorators: [{
|
|
716
|
-
type: i0.Optional
|
|
717
|
-
}, {
|
|
718
|
-
type: i0.Inject,
|
|
719
|
-
args: [URL]
|
|
720
|
-
}] }, { type: Object, decorators: [{
|
|
721
|
-
type: i0.Inject,
|
|
722
|
-
args: [i0.PLATFORM_ID]
|
|
723
|
-
}] }, { type: i0__namespace.NgZone }, { type: i1__namespace.ɵAngularFireSchedulers }, { type: undefined, decorators: [{
|
|
724
|
-
type: i0.Optional
|
|
725
|
-
}, {
|
|
726
|
-
type: i0.Inject,
|
|
727
|
-
args: [USE_EMULATOR]
|
|
728
|
-
}] }, { type: i2__namespace.AngularFireAuth, decorators: [{
|
|
729
|
-
type: i0.Optional
|
|
730
|
-
}] }, { type: undefined, decorators: [{
|
|
731
|
-
type: i0.Optional
|
|
732
|
-
}, {
|
|
733
|
-
type: i0.Inject,
|
|
734
|
-
args: [i2.USE_EMULATOR]
|
|
735
|
-
}] }, { type: undefined, decorators: [{
|
|
736
|
-
type: i0.Optional
|
|
737
|
-
}, {
|
|
738
|
-
type: i0.Inject,
|
|
739
|
-
args: [i2.SETTINGS]
|
|
740
|
-
}] }, { type: undefined, decorators: [{
|
|
741
|
-
type: i0.Optional
|
|
742
|
-
}, {
|
|
743
|
-
type: i0.Inject,
|
|
744
|
-
args: [i2.TENANT_ID]
|
|
745
|
-
}] }, { type: undefined, decorators: [{
|
|
746
|
-
type: i0.Optional
|
|
747
|
-
}, {
|
|
748
|
-
type: i0.Inject,
|
|
749
|
-
args: [i2.LANGUAGE_CODE]
|
|
750
|
-
}] }, { type: undefined, decorators: [{
|
|
751
|
-
type: i0.Optional
|
|
752
|
-
}, {
|
|
753
|
-
type: i0.Inject,
|
|
754
|
-
args: [i2.USE_DEVICE_LANGUAGE]
|
|
755
|
-
}] }, { type: undefined, decorators: [{
|
|
756
|
-
type: i0.Optional
|
|
757
|
-
}, {
|
|
758
|
-
type: i0.Inject,
|
|
759
|
-
args: [i2.PERSISTENCE]
|
|
760
|
-
}] }, { type: i3__namespace.AppCheckInstances, decorators: [{
|
|
761
|
-
type: i0.Optional
|
|
762
|
-
}] }];
|
|
763
|
-
} });
|
|
764
|
-
|
|
765
|
-
var AngularFireDatabaseModule = /** @class */ (function () {
|
|
766
|
-
function AngularFireDatabaseModule() {
|
|
767
|
-
firebase__default['default'].registerVersion('angularfire', i1.VERSION.full, 'rtdb-compat');
|
|
768
|
-
}
|
|
769
|
-
return AngularFireDatabaseModule;
|
|
770
|
-
}());
|
|
771
|
-
AngularFireDatabaseModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.1.3", ngImport: i0__namespace, type: AngularFireDatabaseModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
|
|
772
|
-
AngularFireDatabaseModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.1.3", ngImport: i0__namespace, type: AngularFireDatabaseModule });
|
|
773
|
-
AngularFireDatabaseModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.1.3", ngImport: i0__namespace, type: AngularFireDatabaseModule, providers: [AngularFireDatabase] });
|
|
774
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.1.3", ngImport: i0__namespace, type: AngularFireDatabaseModule, decorators: [{
|
|
775
|
-
type: i0.NgModule,
|
|
776
|
-
args: [{
|
|
777
|
-
providers: [AngularFireDatabase]
|
|
778
|
-
}]
|
|
779
|
-
}], ctorParameters: function () { return []; } });
|
|
780
|
-
|
|
781
|
-
/**
|
|
782
|
-
* Generated bundle index. Do not edit.
|
|
783
|
-
*/
|
|
784
|
-
|
|
785
|
-
exports.AngularFireDatabase = AngularFireDatabase;
|
|
786
|
-
exports.AngularFireDatabaseModule = AngularFireDatabaseModule;
|
|
787
|
-
exports.URL = URL;
|
|
788
|
-
exports.USE_EMULATOR = USE_EMULATOR;
|
|
789
|
-
exports.auditTrail = auditTrail;
|
|
790
|
-
exports.createListReference = createListReference;
|
|
791
|
-
exports.fromRef = fromRef;
|
|
792
|
-
exports.listChanges = listChanges;
|
|
793
|
-
exports.snapshotChanges = snapshotChanges;
|
|
794
|
-
exports.stateChanges = stateChanges;
|
|
795
|
-
|
|
796
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
797
|
-
|
|
798
|
-
})));
|
|
799
|
-
//# sourceMappingURL=angular-fire-compat-database.umd.js.map
|