@dereekb/firebase 8.5.3 → 8.7.0
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/CHANGELOG.md +12 -0
- package/package.json +5 -5
- package/src/lib/common/firestore/collection/collection.d.ts +15 -1
- package/src/lib/common/firestore/collection/collection.js +56 -1
- package/src/lib/common/firestore/collection/collection.js.map +1 -1
- package/test/CHANGELOG.md +12 -0
- package/test/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
# [8.7.0](https://github.com/dereekb/dbx-components/compare/v8.6.1-dev...v8.7.0) (2022-06-23)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
## [8.6.1](https://github.com/dereekb/dbx-components/compare/v8.6.0-dev...v8.6.1) (2022-06-23)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
# [8.6.0](https://github.com/dereekb/dbx-components/compare/v8.5.3-dev...v8.6.0) (2022-06-22)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
5
17
|
## [8.5.3](https://github.com/dereekb/dbx-components/compare/v8.5.2-dev...v8.5.3) (2022-06-22)
|
|
6
18
|
|
|
7
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dereekb/firebase",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.7.0",
|
|
4
4
|
"devDependencies": {
|
|
5
5
|
"@firebase/rules-unit-testing": "^2.0.0"
|
|
6
6
|
},
|
|
@@ -23,16 +23,16 @@
|
|
|
23
23
|
"rxfire": "^6.0.3",
|
|
24
24
|
"rxjs": "^7.0.0",
|
|
25
25
|
"firebase": "^9.8.0",
|
|
26
|
-
"@dereekb/util": "8.
|
|
26
|
+
"@dereekb/util": "8.7.0",
|
|
27
27
|
"make-error": "^1.3.0",
|
|
28
28
|
"ts-essentials": "^9.1.2",
|
|
29
29
|
"extra-set": "^2.2.11",
|
|
30
|
-
"@dereekb/rxjs": "8.
|
|
30
|
+
"@dereekb/rxjs": "8.7.0",
|
|
31
31
|
"ms": "^3.0.0-canary.1",
|
|
32
|
-
"@dereekb/model": "8.
|
|
32
|
+
"@dereekb/model": "8.7.0",
|
|
33
33
|
"class-transformer": "^0.5.1",
|
|
34
34
|
"class-validator": "^0.13.2",
|
|
35
|
-
"@dereekb/date": "8.
|
|
35
|
+
"@dereekb/date": "8.7.0",
|
|
36
36
|
"date-fns": "^2.28.0",
|
|
37
37
|
"date-fns-tz": "^1.3.0",
|
|
38
38
|
"rrule": "2.7.0",
|
|
@@ -4,7 +4,7 @@ import { FirestoreItemPageIterationBaseConfig, FirestoreItemPageIterationFactory
|
|
|
4
4
|
import { FirestoreQueryFactory } from '../query/query';
|
|
5
5
|
import { FirestoreDrivers } from '../driver/driver';
|
|
6
6
|
import { FirestoreCollectionQueryFactory } from './collection.query';
|
|
7
|
-
import { ArrayOrValue, ModelKey, ModelTypeString } from '@dereekb/util';
|
|
7
|
+
import { ArrayOrValue, Maybe, ModelKey, ModelTypeString } from '@dereekb/util';
|
|
8
8
|
/**
|
|
9
9
|
* The camelCase model name/type.
|
|
10
10
|
*/
|
|
@@ -126,6 +126,13 @@ export declare type FirestoreModelId = string;
|
|
|
126
126
|
* @returns
|
|
127
127
|
*/
|
|
128
128
|
export declare function firestoreModelId(input: FirestoreModelId | FirestoreModelKey | DocumentReferenceRef<unknown> | FirestoreModelKeyRef | FirestoreModelIdRef): FirestoreModelId;
|
|
129
|
+
/**
|
|
130
|
+
* Returns the array of ids within a FirestoreModelKey.
|
|
131
|
+
*
|
|
132
|
+
* @param input
|
|
133
|
+
* @returns
|
|
134
|
+
*/
|
|
135
|
+
export declare function firestoreModelIdsFromKey(input: FirestoreModelKey | DocumentReferenceRef<unknown> | FirestoreModelKeyRef): FirestoreModelId[];
|
|
129
136
|
/**
|
|
130
137
|
* Firestore Model Id Regex
|
|
131
138
|
*
|
|
@@ -217,6 +224,13 @@ export declare function firestoreModelKeyPath(...parts: FirestoreModelKeyPart[])
|
|
|
217
224
|
* @returns
|
|
218
225
|
*/
|
|
219
226
|
export declare function childFirestoreModelKeyPath(parent: FirestoreModelKeyPart, children: ArrayOrValue<FirestoreModelKeyPart>): FirestoreModelKey[];
|
|
227
|
+
export declare type FirestoreModelCollectionAndIdPairObject = Record<FirestoreCollectionName, FirestoreModelId>;
|
|
228
|
+
export declare function firestoreModelKeyPairObject(input: FirestoreModelKey | DocumentReferenceRef<unknown> | FirestoreModelKeyRef): Maybe<FirestoreModelCollectionAndIdPairObject>;
|
|
229
|
+
export interface FirestoreModelCollectionAndIdPair extends FirestoreModelIdRef, FirestoreCollectionNameRef {
|
|
230
|
+
}
|
|
231
|
+
export declare function firestoreModelKeyPartPairs<T = unknown>(input: ReadFirestoreModelKeyInput<T>): Maybe<FirestoreModelCollectionAndIdPair[]>;
|
|
232
|
+
export declare type ReadFirestoreModelKeyInput<T = unknown> = FirestoreModelKey | FirestoreModelKeyRef | DocumentReferenceRef<T>;
|
|
233
|
+
export declare function readFirestoreModelKey<T = unknown>(input: ReadFirestoreModelKeyInput<T>): Maybe<FirestoreModelKey>;
|
|
220
234
|
/**
|
|
221
235
|
* Reference to a FirestoreModelKey
|
|
222
236
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.makeFirestoreCollection = exports.childFirestoreModelKeyPath = exports.firestoreModelKeyPath = exports.firestoreModelKeys = exports.firestoreModelKey = exports.firestoreModelKeyPart = exports.isFirestoreModelKey = exports.FIRESTORE_MODEL_KEY_REGEX_STRICT = exports.FIRESTORE_MODEL_KEY_REGEX = exports.isFirestoreModelId = exports.FIRESTORE_MODEL_ID_REGEX = exports.firestoreModelId = exports.firestoreModelType = exports.firestoreModelIdentity = void 0;
|
|
3
|
+
exports.makeFirestoreCollection = exports.readFirestoreModelKey = exports.firestoreModelKeyPartPairs = exports.firestoreModelKeyPairObject = exports.childFirestoreModelKeyPath = exports.firestoreModelKeyPath = exports.firestoreModelKeys = exports.firestoreModelKey = exports.firestoreModelKeyPart = exports.isFirestoreModelKey = exports.FIRESTORE_MODEL_KEY_REGEX_STRICT = exports.FIRESTORE_MODEL_KEY_REGEX = exports.isFirestoreModelId = exports.FIRESTORE_MODEL_ID_REGEX = exports.firestoreModelIdsFromKey = exports.firestoreModelId = exports.firestoreModelType = exports.firestoreModelIdentity = void 0;
|
|
4
4
|
const document_1 = require("../accessor/document");
|
|
5
5
|
const iterator_1 = require("../query/iterator");
|
|
6
6
|
const query_1 = require("../query/query");
|
|
@@ -76,6 +76,18 @@ function firestoreModelId(input) {
|
|
|
76
76
|
}
|
|
77
77
|
}
|
|
78
78
|
exports.firestoreModelId = firestoreModelId;
|
|
79
|
+
/**
|
|
80
|
+
* Returns the array of ids within a FirestoreModelKey.
|
|
81
|
+
*
|
|
82
|
+
* @param input
|
|
83
|
+
* @returns
|
|
84
|
+
*/
|
|
85
|
+
function firestoreModelIdsFromKey(input) {
|
|
86
|
+
var _a;
|
|
87
|
+
const parts = firestoreModelKeyPartPairs(input);
|
|
88
|
+
return (_a = parts === null || parts === void 0 ? void 0 : parts.map((x) => x.id)) !== null && _a !== void 0 ? _a : [];
|
|
89
|
+
}
|
|
90
|
+
exports.firestoreModelIdsFromKey = firestoreModelIdsFromKey;
|
|
79
91
|
/**
|
|
80
92
|
* Firestore Model Id Regex
|
|
81
93
|
*
|
|
@@ -164,6 +176,49 @@ function childFirestoreModelKeyPath(parent, children) {
|
|
|
164
176
|
}
|
|
165
177
|
}
|
|
166
178
|
exports.childFirestoreModelKeyPath = childFirestoreModelKeyPath;
|
|
179
|
+
function firestoreModelKeyPairObject(input) {
|
|
180
|
+
const pairs = firestoreModelKeyPartPairs(input);
|
|
181
|
+
let object;
|
|
182
|
+
if (pairs) {
|
|
183
|
+
object = (0, util_1.arrayToObject)(pairs, (x) => x.collectionName, (x) => x.id);
|
|
184
|
+
}
|
|
185
|
+
return object;
|
|
186
|
+
}
|
|
187
|
+
exports.firestoreModelKeyPairObject = firestoreModelKeyPairObject;
|
|
188
|
+
function firestoreModelKeyPartPairs(input) {
|
|
189
|
+
const key = readFirestoreModelKey(input);
|
|
190
|
+
let pairs;
|
|
191
|
+
if (key) {
|
|
192
|
+
const pieces = key === null || key === void 0 ? void 0 : key.split('/');
|
|
193
|
+
pairs = [];
|
|
194
|
+
if (pieces.length % 2 === 1) {
|
|
195
|
+
throw new Error('input key source was a collection ref or unavailable.');
|
|
196
|
+
}
|
|
197
|
+
for (let i = 0; i < pieces.length; i += 2) {
|
|
198
|
+
const collectionName = pieces[i];
|
|
199
|
+
const id = pieces[i + 1];
|
|
200
|
+
pairs.push({ id, collectionName });
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
return pairs;
|
|
204
|
+
}
|
|
205
|
+
exports.firestoreModelKeyPartPairs = firestoreModelKeyPartPairs;
|
|
206
|
+
function readFirestoreModelKey(input) {
|
|
207
|
+
let key;
|
|
208
|
+
if (typeof input === 'object') {
|
|
209
|
+
if (input.key) {
|
|
210
|
+
key = input.key;
|
|
211
|
+
}
|
|
212
|
+
else if (input.documentRef != null) {
|
|
213
|
+
key = input.documentRef.path;
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
else {
|
|
217
|
+
key = input;
|
|
218
|
+
}
|
|
219
|
+
return key;
|
|
220
|
+
}
|
|
221
|
+
exports.readFirestoreModelKey = readFirestoreModelKey;
|
|
167
222
|
/**
|
|
168
223
|
* Creates a new FirestoreCollection from the input config.
|
|
169
224
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"collection.js","sourceRoot":"","sources":["../../../../../../../../packages/firebase/src/lib/common/firestore/collection/collection.ts"],"names":[],"mappings":";;;AACA,mDAc8B;AAC9B,gDAA0L;AAC1L,0CAA8E;AAE9E,yDAAsG;AACtG,
|
|
1
|
+
{"version":3,"file":"collection.js","sourceRoot":"","sources":["../../../../../../../../packages/firebase/src/lib/common/firestore/collection/collection.ts"],"names":[],"mappings":"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"}
|
package/test/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
# [8.7.0](https://github.com/dereekb/dbx-components/compare/v8.6.1-dev...v8.7.0) (2022-06-23)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
## [8.6.1](https://github.com/dereekb/dbx-components/compare/v8.6.0-dev...v8.6.1) (2022-06-23)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
# [8.6.0](https://github.com/dereekb/dbx-components/compare/v8.5.3-dev...v8.6.0) (2022-06-22)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
5
17
|
## [8.5.3](https://github.com/dereekb/dbx-components/compare/v8.5.2-dev...v8.5.3) (2022-06-22)
|
|
6
18
|
|
|
7
19
|
|
package/test/package.json
CHANGED
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dereekb/firebase/test",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.7.0",
|
|
4
4
|
"main": "./src/index.js",
|
|
5
5
|
"typings": "./src/index.d.ts",
|
|
6
6
|
"dependencies": {},
|
|
7
7
|
"peerDependencies": {
|
|
8
|
-
"@dereekb/util/test": "8.
|
|
9
|
-
"@dereekb/util": "8.
|
|
8
|
+
"@dereekb/util/test": "8.7.0",
|
|
9
|
+
"@dereekb/util": "8.7.0",
|
|
10
10
|
"make-error": "^1.3.0",
|
|
11
11
|
"ts-essentials": "^9.1.2",
|
|
12
12
|
"extra-set": "^2.2.11",
|
|
13
|
-
"@dereekb/firebase": "8.
|
|
13
|
+
"@dereekb/firebase": "8.7.0",
|
|
14
14
|
"rxfire": "^6.0.3",
|
|
15
15
|
"rxjs": "^7.0.0",
|
|
16
16
|
"firebase": "^9.8.0",
|
|
17
|
-
"@dereekb/rxjs": "8.
|
|
17
|
+
"@dereekb/rxjs": "8.7.0",
|
|
18
18
|
"ms": "^3.0.0-canary.1",
|
|
19
|
-
"@dereekb/model": "8.
|
|
19
|
+
"@dereekb/model": "8.7.0",
|
|
20
20
|
"class-transformer": "^0.5.1",
|
|
21
21
|
"class-validator": "^0.13.2",
|
|
22
|
-
"@dereekb/date": "8.
|
|
22
|
+
"@dereekb/date": "8.7.0",
|
|
23
23
|
"date-fns": "^2.28.0",
|
|
24
24
|
"date-fns-tz": "^1.3.0",
|
|
25
25
|
"rrule": "2.7.0",
|