@firecms/core 3.4.0-canary.0ef7442 → 3.4.0-canary.2575a08
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/dist/components/EntityCollectionView/EntityCollectionView.d.ts +3 -2
- package/dist/components/EntityCollectionView/EntityCollectionViewActions.d.ts +3 -1
- package/dist/components/EntityCollectionView/EntityCollectionViewStartActions.d.ts +3 -1
- package/dist/components/common/useDataSourceTableController.d.ts +4 -2
- package/dist/components/common/useTableSearchHelper.d.ts +3 -1
- package/dist/core/EntityEditView.d.ts +2 -0
- package/dist/core/EntityEditViewFormActions.d.ts +1 -1
- package/dist/form/EntityForm.d.ts +2 -0
- package/dist/form/EntityFormActions.d.ts +2 -0
- package/dist/hooks/data/delete.d.ts +1 -1
- package/dist/hooks/data/useCollectionFetch.d.ts +1 -1
- package/dist/hooks/data/useEntityFetch.d.ts +4 -1
- package/dist/i18n/__tests__/FireCMSi18nProvider.test.d.ts +1 -0
- package/dist/i18n/__tests__/nested_provider_lifecycle.test.d.ts +1 -0
- package/dist/index.es.js +853 -600
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +852 -599
- package/dist/index.umd.js.map +1 -1
- package/dist/types/collections.d.ts +7 -0
- package/dist/types/datasource.d.ts +8 -0
- package/dist/types/entity_actions.d.ts +6 -0
- package/dist/types/entity_callbacks.d.ts +21 -0
- package/dist/types/navigation.d.ts +34 -5
- package/dist/types/plugins.d.ts +13 -0
- package/dist/types/side_entity_controller.d.ts +3 -2
- package/dist/util/entity_cache.d.ts +11 -0
- package/dist/util/navigation_utils.d.ts +84 -2
- package/dist/util/parent_references_from_path.d.ts +15 -0
- package/dist/util/paths.d.ts +28 -0
- package/dist/util/permissions.d.ts +10 -4
- package/package.json +3 -3
- package/src/components/DeleteEntityDialog.tsx +2 -0
- package/src/components/EntityCollectionTable/EntityCollectionRowActions.tsx +2 -2
- package/src/components/EntityCollectionView/EntityCollectionBoardView.tsx +8 -0
- package/src/components/EntityCollectionView/EntityCollectionView.tsx +40 -15
- package/src/components/EntityCollectionView/EntityCollectionViewActions.tsx +6 -2
- package/src/components/EntityCollectionView/EntityCollectionViewStartActions.tsx +4 -0
- package/src/components/EntityCollectionView/useBoardDataController.tsx +7 -2
- package/src/components/EntityPreview.tsx +4 -1
- package/src/components/ReferenceTable/ReferenceSelectionTable.tsx +8 -2
- package/src/components/common/default_entity_actions.tsx +22 -2
- package/src/components/common/useDataSourceTableController.tsx +26 -8
- package/src/components/common/useTableSearchHelper.ts +5 -0
- package/src/core/EntityEditView.tsx +8 -12
- package/src/core/EntityEditViewFormActions.tsx +3 -2
- package/src/core/EntitySidePanel.tsx +6 -4
- package/src/form/EntityForm.tsx +22 -7
- package/src/form/EntityFormActions.tsx +2 -0
- package/src/hooks/data/delete.ts +8 -2
- package/src/hooks/data/save.ts +4 -1
- package/src/hooks/data/useCollectionFetch.tsx +9 -2
- package/src/hooks/data/useEntityFetch.tsx +19 -6
- package/src/hooks/useBuildNavigationController.tsx +23 -8
- package/src/hooks/useResolvedNavigationFrom.tsx +1 -1
- package/src/i18n/FireCMSi18nProvider.tsx +48 -4
- package/src/i18n/__tests__/FireCMSi18nProvider.test.tsx +91 -0
- package/src/i18n/__tests__/nested_provider_lifecycle.test.tsx +67 -0
- package/src/internal/useBuildDataSource.ts +13 -12
- package/src/internal/useBuildSideEntityController.tsx +13 -5
- package/src/preview/components/ReferencePreview.tsx +7 -3
- package/src/routes/FireCMSRoute.tsx +9 -4
- package/src/types/collections.ts +8 -0
- package/src/types/datasource.ts +8 -0
- package/src/types/entity_actions.tsx +6 -0
- package/src/types/entity_callbacks.ts +24 -0
- package/src/types/navigation.ts +35 -5
- package/src/types/plugins.tsx +13 -0
- package/src/types/side_entity_controller.tsx +3 -2
- package/src/util/entity_cache.ts +18 -0
- package/src/util/navigation_from_path.ts +6 -1
- package/src/util/navigation_utils.ts +204 -2
- package/src/util/parent_references_from_path.ts +32 -1
- package/src/util/paths.ts +40 -3
- package/src/util/permissions.ts +22 -10
|
@@ -56,6 +56,30 @@ export function decodeEntityId(encodedEntityId: string): string {
|
|
|
56
56
|
.replaceAll("%25", "%");
|
|
57
57
|
}
|
|
58
58
|
|
|
59
|
+
/**
|
|
60
|
+
* Segments of a subcollection sitting under the entity `entityId` of `parentPathSegments`.
|
|
61
|
+
*
|
|
62
|
+
* The parent entity id is kept whole however many slashes it contains, while the
|
|
63
|
+
* subcollection's own configured path is spread — a collection path never contains an
|
|
64
|
+
* entity id, so splitting that one is unambiguous.
|
|
65
|
+
*
|
|
66
|
+
* So `["test"] + "test/test" + "accommodation"` yields three segments,
|
|
67
|
+
* `["test", "test/test", "accommodation"]`, where splitting the flattened path
|
|
68
|
+
* `"test/test/test/accommodation"` would wrongly yield four.
|
|
69
|
+
*
|
|
70
|
+
* Returns undefined when the parent segments are unknown: the parent chain cannot be
|
|
71
|
+
* recovered from a flattened path, so there is nothing honest to build on.
|
|
72
|
+
*
|
|
73
|
+
* @group Hooks and utilities
|
|
74
|
+
*/
|
|
75
|
+
export function buildSubcollectionPathSegments(parentPathSegments: string[] | undefined,
|
|
76
|
+
entityId: string | undefined,
|
|
77
|
+
subcollectionPath: string): string[] | undefined {
|
|
78
|
+
if (!parentPathSegments || !entityId) return undefined;
|
|
79
|
+
const ownSegments = removeInitialAndTrailingSlashes(subcollectionPath).split("/");
|
|
80
|
+
return [...parentPathSegments, entityId, ...ownSegments];
|
|
81
|
+
}
|
|
82
|
+
|
|
59
83
|
export function getLastSegment(path: string) {
|
|
60
84
|
const cleanPath = removeInitialAndTrailingSlashes(path);
|
|
61
85
|
if (cleanPath.includes("/")) {
|
|
@@ -65,7 +89,171 @@ export function getLastSegment(path: string) {
|
|
|
65
89
|
return cleanPath;
|
|
66
90
|
}
|
|
67
91
|
|
|
68
|
-
|
|
92
|
+
/**
|
|
93
|
+
* The outcome of walking a segment chain against a collection tree.
|
|
94
|
+
* @group Hooks and utilities
|
|
95
|
+
*/
|
|
96
|
+
export type PathSegmentsWalkStep = {
|
|
97
|
+
collection: EntityCollection;
|
|
98
|
+
/** Resolved path of this collection, e.g. `"products/pid/locales"`. */
|
|
99
|
+
collectionPath: string;
|
|
100
|
+
/** `collectionPath` split at its real segment boundaries. */
|
|
101
|
+
collectionSegments: string[];
|
|
102
|
+
/** The entity addressed inside it, when the chain continues past the collection. */
|
|
103
|
+
entityId?: string;
|
|
104
|
+
};
|
|
105
|
+
|
|
106
|
+
export type PathSegmentsWalk = {
|
|
107
|
+
/** Segments with every collection id replaced by the collection's real `path`. */
|
|
108
|
+
resolved: string[];
|
|
109
|
+
/** The collection the chain ends in, if the whole chain matched. */
|
|
110
|
+
collection?: EntityCollection;
|
|
111
|
+
/** One entry per collection level traversed, outermost first. */
|
|
112
|
+
steps: PathSegmentsWalkStep[];
|
|
113
|
+
/** The first segment that could not be matched, if the walk stopped early. */
|
|
114
|
+
unmatched?: string;
|
|
115
|
+
};
|
|
116
|
+
|
|
117
|
+
/**
|
|
118
|
+
* Walk a segment chain against a collection tree, matching a collection by either its
|
|
119
|
+
* `path` or its `id` and treating exactly one segment as each entity id.
|
|
120
|
+
*
|
|
121
|
+
* This is the primitive the string-based helpers cannot have: working on the flattened
|
|
122
|
+
* path they must *guess* where an entity id ends by reading up to the next "/", which is
|
|
123
|
+
* wrong for any id that contains one. Here the boundaries are given.
|
|
124
|
+
*
|
|
125
|
+
* Stops at the first segment it cannot match and reports it, rather than throwing.
|
|
126
|
+
*
|
|
127
|
+
* @group Hooks and utilities
|
|
128
|
+
*/
|
|
129
|
+
export function walkPathSegments(pathSegments: string[], allCollections: EntityCollection[]): PathSegmentsWalk {
|
|
130
|
+
|
|
131
|
+
const resolved: string[] = [];
|
|
132
|
+
const steps: PathSegmentsWalkStep[] = [];
|
|
133
|
+
let currentCollections: EntityCollection[] | undefined = allCollections;
|
|
134
|
+
let index = 0;
|
|
135
|
+
|
|
136
|
+
while (index < pathSegments.length) {
|
|
137
|
+
|
|
138
|
+
const remaining = pathSegments.slice(index);
|
|
139
|
+
|
|
140
|
+
if (!currentCollections || currentCollections.length === 0) {
|
|
141
|
+
resolved.push(...remaining);
|
|
142
|
+
return {
|
|
143
|
+
resolved,
|
|
144
|
+
steps,
|
|
145
|
+
unmatched: remaining[0]
|
|
146
|
+
};
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
// A collection's own `path` may span several segments ("users/uid/experiences"), so
|
|
150
|
+
// candidates are matched segment by segment and the longest match wins.
|
|
151
|
+
let match: { collection: EntityCollection, length: number } | undefined;
|
|
152
|
+
for (const collection of currentCollections) {
|
|
153
|
+
for (const candidate of [collection.path, collection.id]) {
|
|
154
|
+
if (!candidate) continue;
|
|
155
|
+
const parts = removeInitialAndTrailingSlashes(candidate).split("/");
|
|
156
|
+
if (parts.length > remaining.length) continue;
|
|
157
|
+
if (parts.some((part, i) => part !== remaining[i])) continue;
|
|
158
|
+
if (!match || parts.length > match.length) match = { collection, length: parts.length };
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
if (!match) {
|
|
163
|
+
resolved.push(...remaining);
|
|
164
|
+
return {
|
|
165
|
+
resolved,
|
|
166
|
+
steps,
|
|
167
|
+
unmatched: remaining[0]
|
|
168
|
+
};
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
resolved.push(...removeInitialAndTrailingSlashes(match.collection.path).split("/"));
|
|
172
|
+
index += match.length;
|
|
173
|
+
|
|
174
|
+
const step: PathSegmentsWalkStep = {
|
|
175
|
+
collection: match.collection,
|
|
176
|
+
collectionPath: resolved.join("/"),
|
|
177
|
+
collectionSegments: [...resolved]
|
|
178
|
+
};
|
|
179
|
+
steps.push(step);
|
|
180
|
+
|
|
181
|
+
// The chain ends on a collection, which is the one being addressed.
|
|
182
|
+
if (index >= pathSegments.length) {
|
|
183
|
+
return {
|
|
184
|
+
resolved,
|
|
185
|
+
steps,
|
|
186
|
+
collection: match.collection
|
|
187
|
+
};
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
// Exactly one segment is the entity id, however many slashes it contains.
|
|
191
|
+
step.entityId = pathSegments[index];
|
|
192
|
+
resolved.push(pathSegments[index]);
|
|
193
|
+
index += 1;
|
|
194
|
+
|
|
195
|
+
// The chain ends on an entity, which lives in the collection just matched.
|
|
196
|
+
if (index >= pathSegments.length) {
|
|
197
|
+
return {
|
|
198
|
+
resolved,
|
|
199
|
+
steps,
|
|
200
|
+
collection: match.collection
|
|
201
|
+
};
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
currentCollections = match.collection.subcollections;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
return { resolved, steps };
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
/**
|
|
211
|
+
* Resolve collection aliases in a segment array: every collection id is replaced by the
|
|
212
|
+
* collection's real `path`, and every entity id is carried through untouched.
|
|
213
|
+
*
|
|
214
|
+
* The segment-wise counterpart of {@link resolveCollectionPathIds}, and the reason it
|
|
215
|
+
* exists: that one works on the flattened string, so an entity id containing "/" shifts
|
|
216
|
+
* the rest of the chain by a segment and resolution fails with
|
|
217
|
+
* "Collection definition not found for segment starting with …".
|
|
218
|
+
*
|
|
219
|
+
* Matching accepts either a collection's `path` or its `id`, so already-resolved segments
|
|
220
|
+
* pass through unchanged — the function is idempotent.
|
|
221
|
+
*
|
|
222
|
+
* Mirrors the string version when a chain cannot be matched: it warns and carries the
|
|
223
|
+
* remainder through unresolved, rather than throwing.
|
|
224
|
+
*
|
|
225
|
+
* @group Hooks and utilities
|
|
226
|
+
*/
|
|
227
|
+
export function resolveCollectionPathSegments(pathSegments: string[], allCollections: EntityCollection[]): string[] {
|
|
228
|
+
const walk = walkPathSegments(pathSegments, allCollections);
|
|
229
|
+
if (walk.unmatched !== undefined) {
|
|
230
|
+
console.warn(`resolveCollectionPathSegments: Collection definition not found for segment "${walk.unmatched}" in [${pathSegments.join(", ")}]. Carrying the remaining segments through unresolved.`);
|
|
231
|
+
}
|
|
232
|
+
return walk.resolved;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
/**
|
|
236
|
+
* Find the collection a segment chain addresses, whether it ends on the collection itself
|
|
237
|
+
* or on one of its entities.
|
|
238
|
+
*
|
|
239
|
+
* The segment-wise counterpart of {@link getCollectionByPathOrId}, which asserts an odd
|
|
240
|
+
* number of "/"-separated parts — an assertion a slash-bearing entity id fails, throwing
|
|
241
|
+
* where it should simply have resolved.
|
|
242
|
+
*
|
|
243
|
+
* @group Hooks and utilities
|
|
244
|
+
*/
|
|
245
|
+
export function getCollectionByPathSegments(pathSegments: string[], collections: EntityCollection[]): EntityCollection | undefined {
|
|
246
|
+
return walkPathSegments(pathSegments, collections).collection;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
export function resolveCollectionPathIds(path: string, allCollections: EntityCollection[], pathSegments?: string[]): string {
|
|
250
|
+
|
|
251
|
+
// When the caller knows the real segment boundaries there is nothing to parse: the
|
|
252
|
+
// ambiguity the string walk below has to guess its way through simply is not present.
|
|
253
|
+
if (pathSegments) {
|
|
254
|
+
return resolveCollectionPathSegments(pathSegments, allCollections).join("/");
|
|
255
|
+
}
|
|
256
|
+
|
|
69
257
|
let remainingPath = removeInitialAndTrailingSlashes(path);
|
|
70
258
|
if (!remainingPath) {
|
|
71
259
|
return "";
|
|
@@ -158,7 +346,14 @@ export function resolveCollectionPathIds(path: string, allCollections: EntityCol
|
|
|
158
346
|
* @param pathOrId
|
|
159
347
|
* @param collections
|
|
160
348
|
*/
|
|
161
|
-
export function getCollectionByPathOrId(pathOrId: string, collections: EntityCollection[]): EntityCollection | undefined {
|
|
349
|
+
export function getCollectionByPathOrId(pathOrId: string, collections: EntityCollection[], pathSegments?: string[]): EntityCollection | undefined {
|
|
350
|
+
|
|
351
|
+
// Given the real boundaries there is nothing to parse, and no parity to assert: a chain
|
|
352
|
+
// whose entity id contains "/" splits into an even number of parts below and would be
|
|
353
|
+
// rejected outright, even though it is perfectly valid.
|
|
354
|
+
if (pathSegments) {
|
|
355
|
+
return getCollectionByPathSegments(pathSegments, collections);
|
|
356
|
+
}
|
|
162
357
|
|
|
163
358
|
const subpaths = removeInitialAndTrailingSlashes(pathOrId).split("/");
|
|
164
359
|
if (subpaths.length % 2 === 0) {
|
|
@@ -249,6 +444,13 @@ export function navigateToEntity({
|
|
|
249
444
|
});
|
|
250
445
|
|
|
251
446
|
} else {
|
|
447
|
+
// A URL must be built from the ESCAPED chain. `fullIdPath` is that chain; `path` is
|
|
448
|
+
// the raw datasource one, and falling back to it is only safe while no id in it
|
|
449
|
+
// contains "/". When the segments show that it does, the resulting URL would address
|
|
450
|
+
// a different entity, so say so instead of navigating somewhere wrong in silence.
|
|
451
|
+
if (!fullIdPath && pathSegments?.some(segment => segment.includes("/"))) {
|
|
452
|
+
console.warn(`navigateToEntity: no "fullIdPath" was given and "${path}" contains an entity id with a "/", so no unambiguous URL can be built for it. The link will point at a different location. Pass "fullIdPath" — the escaped chain — alongside "path".`);
|
|
453
|
+
}
|
|
252
454
|
let to = navigation.buildUrlCollectionPath(entityId ? `${fullIdPath ?? path}/${encodeEntityId(entityId)}` : fullIdPath ?? path);
|
|
253
455
|
if (entityId && selectedTab) {
|
|
254
456
|
to += `/${selectedTab}`;
|
|
@@ -1,11 +1,26 @@
|
|
|
1
1
|
import { EntityCollection, EntityReference } from "../types";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
decodeEntityId,
|
|
4
|
+
getCollectionPathsCombinations,
|
|
5
|
+
removeInitialAndTrailingSlashes,
|
|
6
|
+
walkPathSegments
|
|
7
|
+
} from "./navigation_utils";
|
|
3
8
|
|
|
9
|
+
/**
|
|
10
|
+
* References to every parent entity in a path.
|
|
11
|
+
*
|
|
12
|
+
* NOTE on encoding: `path` is expected ESCAPED, because it comes from the URL — the entity
|
|
13
|
+
* ids in it are decoded on the way out. Pass `pathSegments` instead whenever the path at
|
|
14
|
+
* hand is a raw datasource path (`entity.path`), which is not escaped and whose ids may
|
|
15
|
+
* therefore contain a bare "/": splitting that would silently produce the wrong references.
|
|
16
|
+
*/
|
|
4
17
|
export function getParentReferencesFromPath(props: {
|
|
5
18
|
path: string,
|
|
6
19
|
collections: EntityCollection[] | undefined,
|
|
7
20
|
currentFullPath?: string,
|
|
8
21
|
currentPathSegments?: string[],
|
|
22
|
+
/** `path` split at its real segment boundaries, with RAW ids. Takes precedence. */
|
|
23
|
+
pathSegments?: string[],
|
|
9
24
|
}): EntityReference [] {
|
|
10
25
|
|
|
11
26
|
const {
|
|
@@ -13,8 +28,13 @@ export function getParentReferencesFromPath(props: {
|
|
|
13
28
|
collections = [],
|
|
14
29
|
currentFullPath,
|
|
15
30
|
currentPathSegments = [],
|
|
31
|
+
pathSegments,
|
|
16
32
|
} = props;
|
|
17
33
|
|
|
34
|
+
if (pathSegments) {
|
|
35
|
+
return getParentReferencesFromPathSegments(pathSegments, collections);
|
|
36
|
+
}
|
|
37
|
+
|
|
18
38
|
const subpaths = removeInitialAndTrailingSlashes(path).split("/");
|
|
19
39
|
const subpathCombinations = getCollectionPathsCombinations(subpaths);
|
|
20
40
|
|
|
@@ -64,3 +84,14 @@ export function getParentReferencesFromPath(props: {
|
|
|
64
84
|
}
|
|
65
85
|
return result;
|
|
66
86
|
}
|
|
87
|
+
|
|
88
|
+
/**
|
|
89
|
+
* The segment-wise counterpart: the boundaries are given, so an entity id keeps its
|
|
90
|
+
* slashes and nothing has to be decoded.
|
|
91
|
+
*/
|
|
92
|
+
export function getParentReferencesFromPathSegments(pathSegments: string[],
|
|
93
|
+
collections: EntityCollection[]): EntityReference[] {
|
|
94
|
+
return walkPathSegments(pathSegments, collections).steps
|
|
95
|
+
.filter(step => step.entityId !== undefined)
|
|
96
|
+
.map(step => new EntityReference(step.entityId!, step.collectionPath, undefined, step.collectionSegments));
|
|
97
|
+
}
|
package/src/util/paths.ts
CHANGED
|
@@ -18,10 +18,47 @@ export function segmentsToStrippedPath(paths: string[]) {
|
|
|
18
18
|
/**
|
|
19
19
|
* Extract the collection path routes
|
|
20
20
|
* `products/B44RG6APH/locales` => [`products`, `locales`]
|
|
21
|
+
*
|
|
22
|
+
* Finds the entity ids by position, which only works while no id contains "/" — with one,
|
|
23
|
+
* every following segment shifts and the wrong elements are kept. Use
|
|
24
|
+
* {@link collectionSegmentsFrom} when the real boundaries are known.
|
|
25
|
+
*
|
|
21
26
|
* @param path
|
|
22
27
|
*/
|
|
23
28
|
export function fullPathToCollectionSegments(path: string): string[] {
|
|
24
|
-
return path
|
|
25
|
-
|
|
26
|
-
|
|
29
|
+
return positionalCollectionSegments(path);
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* The collection chain of an already-segmented path:
|
|
34
|
+
* `['products', 'B44RG6APH', 'locales']` => [`products`, `locales`]
|
|
35
|
+
*
|
|
36
|
+
* The counterpart of {@link fullPathToCollectionSegments} for callers that know the real
|
|
37
|
+
* segment boundaries. Kept as a separate function rather than an extra parameter on that
|
|
38
|
+
* one: these helpers are small enough to be passed point-free, and `paths.map(fn)` would
|
|
39
|
+
* then hand the array index in as the new argument.
|
|
40
|
+
*/
|
|
41
|
+
export function collectionSegmentsFrom(pathSegments: string[]): string[] {
|
|
42
|
+
return keepCollectionPositions(pathSegments);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* The historical, positional reading of a flattened path:
|
|
47
|
+
* `products/B44RG6APH/locales` => [`products`, `locales`]
|
|
48
|
+
*
|
|
49
|
+
* This produces a **collection chain**, not a datasource `pathSegments` value, and must
|
|
50
|
+
* never be used as one — see `path_segments_no_fabrication.test.ts`. It is only correct
|
|
51
|
+
* while no entity id contains "/", which is why every caller prefers real segments when
|
|
52
|
+
* they are available, and why it is named for what it assumes.
|
|
53
|
+
*
|
|
54
|
+
* It is still the right reading for a path that came from a URL, where entity ids arrive
|
|
55
|
+
* escaped and so cannot contain a bare "/".
|
|
56
|
+
*/
|
|
57
|
+
export function positionalCollectionSegments(path: string): string[] {
|
|
58
|
+
return keepCollectionPositions(path.split("/"));
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
/** Keep the even positions of an alternating collection/entity-id chain. */
|
|
62
|
+
function keepCollectionPositions(segments: string[]): string[] {
|
|
63
|
+
return segments.filter((e, i) => i % 2 === 0);
|
|
27
64
|
}
|
package/src/util/permissions.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AuthController, Entity, EntityCollection, Permissions, User } from "../types";
|
|
2
|
-
import { fullPathToCollectionSegments } from "./paths";
|
|
2
|
+
import { collectionSegmentsFrom, fullPathToCollectionSegments } from "./paths";
|
|
3
3
|
|
|
4
4
|
const DEFAULT_PERMISSIONS = {
|
|
5
5
|
read: true,
|
|
@@ -8,11 +8,18 @@ const DEFAULT_PERMISSIONS = {
|
|
|
8
8
|
delete: true
|
|
9
9
|
};
|
|
10
10
|
|
|
11
|
+
/**
|
|
12
|
+
* `pathSegments` is `path` split at its real segment boundaries. It is forwarded so the
|
|
13
|
+
* collection chain handed to a permissions builder stays correct when an entity id contains
|
|
14
|
+
* "/" — splitting `path` positionally would keep the wrong elements. Optional everywhere:
|
|
15
|
+
* omitted, behaviour is exactly as before.
|
|
16
|
+
*/
|
|
11
17
|
export function resolvePermissions<M extends Record<string, any>, USER extends User>
|
|
12
18
|
(collection: EntityCollection<M>,
|
|
13
19
|
authController: AuthController<USER>,
|
|
14
20
|
path: string,
|
|
15
|
-
entity: Entity<M> | null
|
|
21
|
+
entity: Entity<M> | null,
|
|
22
|
+
pathSegments?: string[]): Permissions | undefined {
|
|
16
23
|
|
|
17
24
|
const permission = collection.permissions;
|
|
18
25
|
if (permission === undefined) {
|
|
@@ -20,14 +27,16 @@ export function resolvePermissions<M extends Record<string, any>, USER extends U
|
|
|
20
27
|
} else if (typeof permission === "object") {
|
|
21
28
|
return permission as Permissions;
|
|
22
29
|
} else if (typeof permission === "function") {
|
|
23
|
-
const
|
|
30
|
+
const collectionSegments = pathSegments
|
|
31
|
+
? collectionSegmentsFrom(pathSegments)
|
|
32
|
+
: fullPathToCollectionSegments(path);
|
|
24
33
|
return permission({
|
|
25
34
|
entity,
|
|
26
35
|
path,
|
|
27
36
|
user: authController.user,
|
|
28
37
|
authController,
|
|
29
38
|
collection,
|
|
30
|
-
pathSegments
|
|
39
|
+
pathSegments: collectionSegments
|
|
31
40
|
});
|
|
32
41
|
}
|
|
33
42
|
console.error("Permissions:", permission);
|
|
@@ -39,8 +48,9 @@ export function canEditEntity<M extends Record<string, any>, USER extends User>
|
|
|
39
48
|
collection: EntityCollection<M>,
|
|
40
49
|
authController: AuthController<USER>,
|
|
41
50
|
path: string,
|
|
42
|
-
entity: Entity<M> | null
|
|
43
|
-
|
|
51
|
+
entity: Entity<M> | null,
|
|
52
|
+
pathSegments?: string[]): boolean {
|
|
53
|
+
return resolvePermissions(collection, authController, path, entity, pathSegments)?.edit ?? DEFAULT_PERMISSIONS.edit;
|
|
44
54
|
}
|
|
45
55
|
|
|
46
56
|
export function canCreateEntity<M extends Record<string, any>, USER extends User>
|
|
@@ -48,9 +58,10 @@ export function canCreateEntity<M extends Record<string, any>, USER extends User
|
|
|
48
58
|
collection: EntityCollection<M>,
|
|
49
59
|
authController: AuthController<USER>,
|
|
50
60
|
path: string,
|
|
51
|
-
entity: Entity<M> | null
|
|
61
|
+
entity: Entity<M> | null,
|
|
62
|
+
pathSegments?: string[]): boolean {
|
|
52
63
|
if (collection.collectionGroup) return false;
|
|
53
|
-
return resolvePermissions(collection, authController, path, entity)?.create ?? DEFAULT_PERMISSIONS.create;
|
|
64
|
+
return resolvePermissions(collection, authController, path, entity, pathSegments)?.create ?? DEFAULT_PERMISSIONS.create;
|
|
54
65
|
}
|
|
55
66
|
|
|
56
67
|
export function canDeleteEntity<M extends Record<string, any>, USER extends User>
|
|
@@ -58,8 +69,9 @@ export function canDeleteEntity<M extends Record<string, any>, USER extends User
|
|
|
58
69
|
collection: EntityCollection<M>,
|
|
59
70
|
authController: AuthController<USER>,
|
|
60
71
|
path: string,
|
|
61
|
-
entity: Entity<M> | null
|
|
62
|
-
|
|
72
|
+
entity: Entity<M> | null,
|
|
73
|
+
pathSegments?: string[]): boolean {
|
|
74
|
+
return resolvePermissions(collection, authController, path, entity, pathSegments)?.delete ?? DEFAULT_PERMISSIONS.delete;
|
|
63
75
|
}
|
|
64
76
|
|
|
65
77
|
// export function resolveCollectionsPermissions(roles: Role[]): Record<string, Permissions> {
|