@firecms/core 3.4.0-canary.f6a889a → 3.4.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.
Files changed (123) hide show
  1. package/dist/components/EntityCollectionTable/internal/CollectionTableToolbar.d.ts +6 -1
  2. package/dist/components/EntityCollectionTable/internal/popup_field/PopupFormField.d.ts +3 -1
  3. package/dist/components/EntityCollectionView/EntityCollectionBoardView.d.ts +3 -1
  4. package/dist/components/EntityCollectionView/EntityCollectionView.d.ts +8 -0
  5. package/dist/components/EntityCollectionView/EntityCollectionViewActions.d.ts +3 -1
  6. package/dist/components/EntityCollectionView/EntityCollectionViewStartActions.d.ts +3 -1
  7. package/dist/components/EntityCollectionView/useBoardDataController.d.ts +3 -1
  8. package/dist/components/ErrorBoundary.d.ts +1 -3
  9. package/dist/components/ReferenceTable/ReferenceSelectionTable.d.ts +10 -1
  10. package/dist/components/SelectableTable/filters/filter_text_input.d.ts +30 -0
  11. package/dist/components/SelectableTable/filters/filter_text_input.test.d.ts +1 -0
  12. package/dist/components/common/table_url_params.d.ts +24 -0
  13. package/dist/components/common/useDataSourceTableController.d.ts +9 -1
  14. package/dist/components/common/useTableSearchHelper.d.ts +9 -1
  15. package/dist/core/EntityEditView.d.ts +9 -1
  16. package/dist/core/EntityEditViewFormActions.d.ts +1 -1
  17. package/dist/form/EntityForm.d.ts +8 -1
  18. package/dist/form/EntityFormActions.d.ts +2 -0
  19. package/dist/hooks/data/delete.d.ts +1 -1
  20. package/dist/hooks/data/save.d.ts +1 -1
  21. package/dist/hooks/data/useCollectionFetch.d.ts +7 -1
  22. package/dist/hooks/data/useEntityFetch.d.ts +9 -1
  23. package/dist/i18n/__tests__/FireCMSi18nProvider.test.d.ts +1 -0
  24. package/dist/i18n/__tests__/nested_provider_lifecycle.test.d.ts +1 -0
  25. package/dist/index.es.js +1753 -1170
  26. package/dist/index.es.js.map +1 -1
  27. package/dist/index.umd.js +1751 -1168
  28. package/dist/index.umd.js.map +1 -1
  29. package/dist/types/collections.d.ts +14 -0
  30. package/dist/types/datasource.d.ts +67 -4
  31. package/dist/types/entities.d.ts +21 -1
  32. package/dist/types/entity_actions.d.ts +6 -0
  33. package/dist/types/entity_callbacks.d.ts +21 -0
  34. package/dist/types/navigation.d.ts +34 -5
  35. package/dist/types/plugins.d.ts +13 -0
  36. package/dist/types/properties.d.ts +17 -1
  37. package/dist/types/side_entity_controller.d.ts +7 -0
  38. package/dist/types/translations.d.ts +6 -0
  39. package/dist/util/__tests__/collections.test.d.ts +1 -0
  40. package/dist/util/__tests__/urls.test.d.ts +1 -0
  41. package/dist/util/collections.d.ts +1 -1
  42. package/dist/util/entity_cache.d.ts +11 -0
  43. package/dist/util/index.d.ts +1 -0
  44. package/dist/util/navigation_from_path.d.ts +7 -0
  45. package/dist/util/navigation_utils.d.ts +87 -3
  46. package/dist/util/parent_references_from_path.d.ts +16 -0
  47. package/dist/util/paths.d.ts +28 -0
  48. package/dist/util/permissions.d.ts +10 -4
  49. package/dist/util/urls.d.ts +22 -0
  50. package/package.json +4 -4
  51. package/src/components/DeleteEntityDialog.tsx +2 -0
  52. package/src/components/EntityCollectionTable/EntityCollectionRowActions.tsx +2 -2
  53. package/src/components/EntityCollectionTable/EntityCollectionTable.tsx +1 -0
  54. package/src/components/EntityCollectionTable/internal/CollectionTableToolbar.tsx +7 -0
  55. package/src/components/EntityCollectionTable/internal/popup_field/PopupFormField.tsx +5 -1
  56. package/src/components/EntityCollectionView/EntityCollectionBoardView.tsx +12 -0
  57. package/src/components/EntityCollectionView/EntityCollectionView.tsx +66 -15
  58. package/src/components/EntityCollectionView/EntityCollectionViewActions.tsx +6 -2
  59. package/src/components/EntityCollectionView/EntityCollectionViewStartActions.tsx +4 -0
  60. package/src/components/EntityCollectionView/useBoardDataController.tsx +17 -1
  61. package/src/components/EntityPreview.tsx +4 -1
  62. package/src/components/ErrorBoundary.tsx +12 -18
  63. package/src/components/ReferenceTable/ReferenceSelectionTable.tsx +19 -2
  64. package/src/components/SelectableTable/filters/StringNumberFilterField.tsx +33 -7
  65. package/src/components/SelectableTable/filters/filter_text_input.test.ts +184 -0
  66. package/src/components/SelectableTable/filters/filter_text_input.ts +71 -0
  67. package/src/components/common/default_entity_actions.tsx +22 -2
  68. package/src/components/common/table_url_params.ts +172 -0
  69. package/src/components/common/useDataSourceTableController.tsx +86 -179
  70. package/src/components/common/useTableSearchHelper.ts +26 -2
  71. package/src/contexts/SnackbarProvider.tsx +14 -1
  72. package/src/core/EntityEditView.tsx +20 -3
  73. package/src/core/EntityEditViewFormActions.tsx +3 -2
  74. package/src/core/EntitySidePanel.tsx +8 -4
  75. package/src/form/EntityForm.tsx +31 -10
  76. package/src/form/EntityFormActions.tsx +2 -0
  77. package/src/hooks/data/delete.ts +8 -0
  78. package/src/hooks/data/save.ts +6 -1
  79. package/src/hooks/data/useCollectionFetch.tsx +21 -1
  80. package/src/hooks/data/useEntityFetch.tsx +35 -4
  81. package/src/hooks/useBuildNavigationController.tsx +23 -8
  82. package/src/hooks/useResolvedNavigationFrom.tsx +3 -1
  83. package/src/hooks/useValidateAuthenticator.tsx +4 -0
  84. package/src/i18n/FireCMSi18nProvider.tsx +48 -4
  85. package/src/i18n/__tests__/FireCMSi18nProvider.test.tsx +91 -0
  86. package/src/i18n/__tests__/nested_provider_lifecycle.test.tsx +67 -0
  87. package/src/internal/useBuildDataSource.ts +37 -15
  88. package/src/internal/useBuildSideEntityController.tsx +19 -5
  89. package/src/locales/de.ts +5 -0
  90. package/src/locales/en.ts +5 -0
  91. package/src/locales/es.ts +5 -0
  92. package/src/locales/fr.ts +5 -0
  93. package/src/locales/hi.ts +5 -0
  94. package/src/locales/it.ts +5 -0
  95. package/src/locales/pl.ts +5 -0
  96. package/src/locales/pt.ts +5 -0
  97. package/src/preview/components/ReferencePreview.tsx +7 -3
  98. package/src/preview/components/StorageThumbnail.tsx +24 -2
  99. package/src/routes/FireCMSRoute.tsx +11 -3
  100. package/src/types/collections.ts +16 -0
  101. package/src/types/datasource.ts +67 -4
  102. package/src/types/entities.ts +24 -1
  103. package/src/types/entity_actions.tsx +6 -0
  104. package/src/types/entity_callbacks.ts +24 -0
  105. package/src/types/navigation.ts +35 -5
  106. package/src/types/plugins.tsx +13 -0
  107. package/src/types/properties.ts +17 -0
  108. package/src/types/side_entity_controller.tsx +7 -0
  109. package/src/types/translations.ts +6 -0
  110. package/src/util/__tests__/collections.test.ts +32 -0
  111. package/src/util/__tests__/urls.test.ts +131 -0
  112. package/src/util/collections.ts +1 -1
  113. package/src/util/entities.ts +3 -1
  114. package/src/util/entity_cache.ts +18 -0
  115. package/src/util/index.ts +1 -0
  116. package/src/util/navigation_from_path.ts +25 -2
  117. package/src/util/navigation_utils.ts +208 -2
  118. package/src/util/parent_references_from_path.ts +42 -3
  119. package/src/util/paths.ts +40 -3
  120. package/src/util/permissions.ts +22 -10
  121. package/src/util/previews.ts +8 -1
  122. package/src/util/resolutions.ts +8 -0
  123. package/src/util/urls.ts +52 -0
@@ -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
- export function resolveCollectionPathIds(path: string, allCollections: EntityCollection[]): string {
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) {
@@ -212,6 +407,7 @@ export function navigateToEntity({
212
407
  copy,
213
408
  path,
214
409
  fullIdPath,
410
+ pathSegments,
215
411
  selectedTab,
216
412
  sideEntityController,
217
413
  onClose,
@@ -226,6 +422,8 @@ export function navigateToEntity({
226
422
  copy?: boolean;
227
423
  path: string;
228
424
  fullIdPath?: string;
425
+ /** `path` split at its real segment boundaries. */
426
+ pathSegments?: string[];
229
427
  sideEntityController: SideEntityController;
230
428
  onClose?: () => void;
231
429
  navigation: NavigationController
@@ -237,6 +435,7 @@ export function navigateToEntity({
237
435
  entityId,
238
436
  path,
239
437
  fullIdPath,
438
+ pathSegments,
240
439
  copy,
241
440
  selectedTab,
242
441
  collection,
@@ -245,6 +444,13 @@ export function navigateToEntity({
245
444
  });
246
445
 
247
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
+ }
248
454
  let to = navigation.buildUrlCollectionPath(entityId ? `${fullIdPath ?? path}/${encodeEntityId(entityId)}` : fullIdPath ?? path);
249
455
  if (entityId && selectedTab) {
250
456
  to += `/${selectedTab}`;
@@ -1,18 +1,40 @@
1
1
  import { EntityCollection, EntityReference } from "../types";
2
- import { decodeEntityId, getCollectionPathsCombinations, removeInitialAndTrailingSlashes } from "./navigation_utils";
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,
21
+ currentPathSegments?: string[],
22
+ /** `path` split at its real segment boundaries, with RAW ids. Takes precedence. */
23
+ pathSegments?: string[],
8
24
  }): EntityReference [] {
9
25
 
10
26
  const {
11
27
  path,
12
28
  collections = [],
13
29
  currentFullPath,
30
+ currentPathSegments = [],
31
+ pathSegments,
14
32
  } = props;
15
33
 
34
+ if (pathSegments) {
35
+ return getParentReferencesFromPathSegments(pathSegments, collections);
36
+ }
37
+
16
38
  const subpaths = removeInitialAndTrailingSlashes(path).split("/");
17
39
  const subpathCombinations = getCollectionPathsCombinations(subpaths);
18
40
 
@@ -27,6 +49,9 @@ export function getParentReferencesFromPath(props: {
27
49
  const collectionPath = currentFullPath && currentFullPath.length > 0
28
50
  ? (currentFullPath + "/" + collection.path)
29
51
  : collection.path;
52
+ // A collection's own path may span several segments, and those are
53
+ // unambiguous, so they are spread rather than kept whole.
54
+ const collectionSegments = [...currentPathSegments, ...collection.path.split("/")];
30
55
 
31
56
  const restOfThePath = removeInitialAndTrailingSlashes(removeInitialAndTrailingSlashes(path).replace(subpathCombination, ""));
32
57
  const nextSegments = restOfThePath.length > 0 ? restOfThePath.split("/") : [];
@@ -35,7 +60,9 @@ export function getParentReferencesFromPath(props: {
35
60
  // datasource-facing, so they carry the raw id.
36
61
  const entityId = decodeEntityId(nextSegments[0]);
37
62
  const fullPath = collectionPath + "/" + entityId;
38
- result.push(new EntityReference(entityId, collectionPath));
63
+ // The id is ONE segment however many slashes it contains.
64
+ const entitySegments = [...collectionSegments, entityId];
65
+ result.push(new EntityReference(entityId, collectionPath, undefined, collectionSegments));
39
66
  if (nextSegments.length > 1) {
40
67
  const newPath = nextSegments.slice(1).join("/");
41
68
  if (!collection) {
@@ -45,7 +72,8 @@ export function getParentReferencesFromPath(props: {
45
72
  result.push(...getParentReferencesFromPath({
46
73
  path: newPath,
47
74
  collections: collection.subcollections,
48
- currentFullPath: fullPath
75
+ currentFullPath: fullPath,
76
+ currentPathSegments: entitySegments
49
77
  }));
50
78
  }
51
79
  }
@@ -56,3 +84,14 @@ export function getParentReferencesFromPath(props: {
56
84
  }
57
85
  return result;
58
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
- .split("/")
26
- .filter((e, i) => i % 2 === 0);
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
  }
@@ -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): Permissions | undefined {
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 pathSegments = fullPathToCollectionSegments(path);
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): boolean {
43
- return resolvePermissions(collection, authController, path, entity)?.edit ?? DEFAULT_PERMISSIONS.edit;
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): boolean {
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): boolean {
62
- return resolvePermissions(collection, authController, path, entity)?.delete ?? DEFAULT_PERMISSIONS.delete;
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> {
@@ -1,4 +1,4 @@
1
- import { AuthController, EntityCollection, Property, PropertyConfig, ResolvedEntityCollection } from "../types";
1
+ import { AuthController, EntityCollection, Property, PropertyConfig, ResolvedEntityCollection, ResolvedProperties } from "../types";
2
2
  import { isReferenceProperty } from "./property_utils";
3
3
  import { isPropertyBuilder } from "./entities";
4
4
  import { getFieldConfig } from "../core";
@@ -44,6 +44,13 @@ export function getEntityTitlePropertyKey<M extends Record<string, any>>(collect
44
44
 
45
45
  export function getEntityImagePreviewPropertyKey<M extends object>(collection: ResolvedEntityCollection<M>): string | undefined {
46
46
 
47
+ if (collection.imageProperty) {
48
+ const imagePropertyKey = collection.imageProperty as keyof ResolvedProperties<M>;
49
+ if (collection.properties[imagePropertyKey]) {
50
+ return collection.imageProperty as string;
51
+ }
52
+ }
53
+
47
54
  // find first storage property of type image
48
55
  for (const key in collection.properties) {
49
56
  const property = collection.properties[key];
@@ -305,7 +305,15 @@ export function resolveArrayProperty<T extends any[], M>({
305
305
  ignoreMissingFields,
306
306
  ...props
307
307
  });
308
+ // `of` describes the shape of any element of the array, not one
309
+ // specific element, so there is no index to qualify the key with.
310
+ // We pass the array's own key, mirroring what the `oneOf` branch
311
+ // below does for `oneOf.properties`. Without this, a property
312
+ // builder used as `of` (or nested inside it) would be invoked with
313
+ // `propertyKey: undefined`, while the per-index resolutions above
314
+ // receive `${propertyKey}.${index}`.
308
315
  const ofProperty = resolveProperty({
316
+ propertyKey,
309
317
  propertyOrBuilder: of,
310
318
  ignoreMissingFields,
311
319
  ...props
@@ -0,0 +1,52 @@
1
+ import type { PreviewType } from "../types";
2
+
3
+ const ABSOLUTE_HTTP_URL_REGEX = /^https?:\/\//i;
4
+
5
+ const IMAGE_EXTENSIONS = ["jpg", "jpeg", "png", "gif", "webp", "avif", "bmp", "svg", "ico", "tif", "tiff", "heic", "heif"];
6
+ const VIDEO_EXTENSIONS = ["mp4", "webm", "ogv", "mov", "m4v", "avi", "mkv", "mpeg", "mpg", "3gp"];
7
+ const AUDIO_EXTENSIONS = ["mp3", "wav", "ogg", "oga", "m4a", "aac", "flac", "weba", "opus", "mid", "midi"];
8
+
9
+ /**
10
+ * Is the given value an absolute `http(s)` URL, as opposed to a relative
11
+ * storage path such as `images/my_image.png`?
12
+ *
13
+ * Values saved in the datasource for storage properties can be either, e.g.
14
+ * when the property is configured with `storeUrl: true`, or when the value was
15
+ * written directly pointing to an externally hosted file.
16
+ */
17
+ export function isAbsoluteHttpUrl(value?: string | null): boolean {
18
+ if (!value) return false;
19
+ return ABSOLUTE_HTTP_URL_REGEX.test(value);
20
+ }
21
+
22
+ /**
23
+ * Extract the lowercase file extension of a URL or path, ignoring any query
24
+ * string or hash fragment. Returns `undefined` when there is no extension.
25
+ */
26
+ export function getFileExtensionFromUrl(urlOrPath?: string | null): string | undefined {
27
+ if (!urlOrPath) return undefined;
28
+ // Query strings and hash fragments are not part of the file name, and they
29
+ // are common in download URLs, e.g. `?alt=media&token=...`
30
+ const withoutQuery = urlOrPath.split(/[?#]/)[0];
31
+ const lastSegment = withoutQuery.split("/").pop();
32
+ if (!lastSegment) return undefined;
33
+ const lastDot = lastSegment.lastIndexOf(".");
34
+ // No dot, a leading dot (a dotfile), or a trailing dot means no extension
35
+ if (lastDot <= 0 || lastDot === lastSegment.length - 1) return undefined;
36
+ return lastSegment.substring(lastDot + 1).toLowerCase();
37
+ }
38
+
39
+ /**
40
+ * Best effort guess of the preview type of a URL or path, based on its file
41
+ * extension. Used when no storage metadata (and therefore no content type) is
42
+ * available, e.g. for externally hosted files.
43
+ * Returns `undefined` when the extension is missing or not recognised.
44
+ */
45
+ export function getPreviewTypeFromUrl(urlOrPath?: string | null): PreviewType | undefined {
46
+ const extension = getFileExtensionFromUrl(urlOrPath);
47
+ if (!extension) return undefined;
48
+ if (IMAGE_EXTENSIONS.includes(extension)) return "image";
49
+ if (VIDEO_EXTENSIONS.includes(extension)) return "video";
50
+ if (AUDIO_EXTENSIONS.includes(extension)) return "audio";
51
+ return undefined;
52
+ }