@tinacms/graphql 0.0.0-e0ddb8c-20241004065742 → 0.0.0-e27c017-20250619233313

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/index.js CHANGED
@@ -17,14 +17,18 @@ var __copyProps = (to, from, except, desc) => {
17
17
  return to;
18
18
  };
19
19
  var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
20
+ // If the importer is in node compatibility mode or this is not an ESM
21
+ // file that has been converted to a CommonJS file using a Babel-
22
+ // compatible transform (i.e. "__esModule" has not been set), then set
23
+ // "default" to the CommonJS "module.exports" for node compatibility.
20
24
  isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
21
25
  mod
22
26
  ));
23
27
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
24
28
 
25
29
  // src/index.ts
26
- var src_exports = {};
27
- __export(src_exports, {
30
+ var index_exports = {};
31
+ __export(index_exports, {
28
32
  AuditFileSystemBridge: () => AuditFileSystemBridge,
29
33
  Database: () => Database,
30
34
  FilesystemBridge: () => FilesystemBridge,
@@ -58,7 +62,7 @@ __export(src_exports, {
58
62
  transformDocument: () => transformDocument,
59
63
  transformDocumentIntoPayload: () => transformDocumentIntoPayload
60
64
  });
61
- module.exports = __toCommonJS(src_exports);
65
+ module.exports = __toCommonJS(index_exports);
62
66
 
63
67
  // src/build.ts
64
68
  var import_graphql2 = require("graphql");
@@ -130,6 +134,15 @@ var SysFieldDefinition = {
130
134
  selectionSet: {
131
135
  kind: "SelectionSet",
132
136
  selections: [
137
+ // {
138
+ // kind: 'Field' as const,
139
+ // name: {
140
+ // kind: 'Name' as const,
141
+ // value: 'title',
142
+ // },
143
+ // arguments: [],
144
+ // directives: [],
145
+ // },
133
146
  {
134
147
  kind: "Field",
135
148
  name: {
@@ -148,6 +161,15 @@ var SysFieldDefinition = {
148
161
  arguments: [],
149
162
  directives: []
150
163
  },
164
+ {
165
+ kind: "Field",
166
+ name: {
167
+ kind: "Name",
168
+ value: "hasReferences"
169
+ },
170
+ arguments: [],
171
+ directives: []
172
+ },
151
173
  {
152
174
  kind: "Field",
153
175
  name: {
@@ -188,6 +210,10 @@ var SysFieldDefinition = {
188
210
  }
189
211
  };
190
212
  var astBuilder = {
213
+ /**
214
+ * `FormFieldBuilder` acts as a shortcut to building an entire `ObjectTypeDefinition`, we use this
215
+ * because all Tina field objects share a common set of fields ('name', 'label', 'component')
216
+ */
191
217
  FormFieldBuilder: ({
192
218
  name,
193
219
  additionalFields
@@ -411,6 +437,8 @@ var astBuilder = {
411
437
  kind: "Name",
412
438
  value: name
413
439
  },
440
+ // @ts-ignore FIXME; this is being handled properly but we're lying to
441
+ // ts and then fixing it in the `extractInlineTypes` function
414
442
  fields
415
443
  }),
416
444
  UnionTypeDefinition: ({
@@ -423,6 +451,8 @@ var astBuilder = {
423
451
  value: name
424
452
  },
425
453
  directives: [],
454
+ // @ts-ignore FIXME; this is being handled properly but we're lying to
455
+ // ts and then fixing it in the `extractInlineTypes` function
426
456
  types: types.map((name2) => ({
427
457
  kind: "NamedType",
428
458
  name: {
@@ -519,8 +549,11 @@ var astBuilder = {
519
549
  string: "String",
520
550
  boolean: "Boolean",
521
551
  number: "Float",
552
+ // FIXME - needs to be float or int
522
553
  datetime: "String",
554
+ // FIXME
523
555
  image: "String",
556
+ // FIXME
524
557
  text: "String"
525
558
  };
526
559
  return scalars[type];
@@ -1019,8 +1052,7 @@ var astBuilder = {
1019
1052
  }
1020
1053
  };
1021
1054
  var capitalize = (s) => {
1022
- if (typeof s !== "string")
1023
- return "";
1055
+ if (typeof s !== "string") return "";
1024
1056
  return s.charAt(0).toUpperCase() + s.slice(1);
1025
1057
  };
1026
1058
  var extractInlineTypes = (item) => {
@@ -1063,41 +1095,6 @@ function* walk(maybeNode, visited = /* @__PURE__ */ new WeakSet()) {
1063
1095
  yield maybeNode;
1064
1096
  visited.add(maybeNode);
1065
1097
  }
1066
- function addNamespaceToSchema(maybeNode, namespace = []) {
1067
- if (typeof maybeNode === "string") {
1068
- return maybeNode;
1069
- }
1070
- if (typeof maybeNode === "boolean") {
1071
- return maybeNode;
1072
- }
1073
- const newNode = maybeNode;
1074
- const keys = Object.keys(maybeNode);
1075
- Object.values(maybeNode).map((m, index) => {
1076
- const key = keys[index];
1077
- if (Array.isArray(m)) {
1078
- newNode[key] = m.map((element) => {
1079
- if (!element) {
1080
- return;
1081
- }
1082
- if (!element.hasOwnProperty("name")) {
1083
- return element;
1084
- }
1085
- const value = element.name || element.value;
1086
- return addNamespaceToSchema(element, [...namespace, value]);
1087
- });
1088
- } else {
1089
- if (!m) {
1090
- return;
1091
- }
1092
- if (!m.hasOwnProperty("name")) {
1093
- newNode[key] = m;
1094
- } else {
1095
- newNode[key] = addNamespaceToSchema(m, [...namespace, m.name]);
1096
- }
1097
- }
1098
- });
1099
- return { ...newNode, namespace };
1100
- }
1101
1098
  var generateNamespacedFieldName = (names, suffix = "") => {
1102
1099
  return (suffix ? [...names, suffix] : names).map(capitalize).join("");
1103
1100
  };
@@ -1257,6 +1254,11 @@ var scalarDefinitions = [
1257
1254
  required: true,
1258
1255
  type: astBuilder.TYPES.String
1259
1256
  }),
1257
+ astBuilder.FieldDefinition({
1258
+ name: "hasReferences",
1259
+ required: false,
1260
+ type: astBuilder.TYPES.Boolean
1261
+ }),
1260
1262
  astBuilder.FieldDefinition({
1261
1263
  name: "breadcrumbs",
1262
1264
  required: true,
@@ -1433,13 +1435,12 @@ var checkPasswordHash = async ({
1433
1435
  return true;
1434
1436
  };
1435
1437
  var mapUserFields = (collectable, prefix = []) => {
1436
- var _a, _b, _c, _d, _e;
1437
1438
  const results = [];
1438
- const passwordFields = ((_a = collectable.fields) == null ? void 0 : _a.filter((field) => field.type === "password")) || [];
1439
+ const passwordFields = collectable.fields?.filter((field) => field.type === "password") || [];
1439
1440
  if (passwordFields.length > 1) {
1440
1441
  throw new Error("Only one password field is allowed");
1441
1442
  }
1442
- const idFields = ((_b = collectable.fields) == null ? void 0 : _b.filter((field) => field.uid)) || [];
1443
+ const idFields = collectable.fields?.filter((field) => field.uid) || [];
1443
1444
  if (idFields.length > 1) {
1444
1445
  throw new Error("Only one uid field is allowed");
1445
1446
  }
@@ -1447,11 +1448,11 @@ var mapUserFields = (collectable, prefix = []) => {
1447
1448
  results.push({
1448
1449
  path: prefix,
1449
1450
  collectable,
1450
- idFieldName: (_c = idFields[0]) == null ? void 0 : _c.name,
1451
- passwordFieldName: (_d = passwordFields[0]) == null ? void 0 : _d.name
1451
+ idFieldName: idFields[0]?.name,
1452
+ passwordFieldName: passwordFields[0]?.name
1452
1453
  });
1453
1454
  }
1454
- (_e = collectable.fields) == null ? void 0 : _e.forEach((field) => {
1455
+ collectable.fields?.forEach((field) => {
1455
1456
  if (field.type === "object" && field.fields) {
1456
1457
  results.push(...mapUserFields(field, [...prefix, field.name]));
1457
1458
  }
@@ -1471,6 +1472,19 @@ var Builder = class {
1471
1472
  this.addToLookupMap = (lookup) => {
1472
1473
  this.lookupMap[lookup.type] = lookup;
1473
1474
  };
1475
+ /**
1476
+ * ```graphql
1477
+ * # ex.
1478
+ * {
1479
+ * getCollection(collection: $collection) {
1480
+ * name
1481
+ * documents {...}
1482
+ * }
1483
+ * }
1484
+ * ```
1485
+ *
1486
+ * @param collections
1487
+ */
1474
1488
  this.buildCollectionDefinition = async (collections) => {
1475
1489
  const name = "collection";
1476
1490
  const typeName = "Collection";
@@ -1541,6 +1555,19 @@ var Builder = class {
1541
1555
  required: true
1542
1556
  });
1543
1557
  };
1558
+ /**
1559
+ * ```graphql
1560
+ * # ex.
1561
+ * {
1562
+ * getCollections {
1563
+ * name
1564
+ * documents {...}
1565
+ * }
1566
+ * }
1567
+ * ```
1568
+ *
1569
+ * @param collections
1570
+ */
1544
1571
  this.buildMultiCollectionDefinition = async (collections) => {
1545
1572
  const name = "collections";
1546
1573
  const typeName = "Collection";
@@ -1551,6 +1578,17 @@ var Builder = class {
1551
1578
  required: true
1552
1579
  });
1553
1580
  };
1581
+ /**
1582
+ * ```graphql
1583
+ * # ex.
1584
+ * {
1585
+ * node(id: $id) {
1586
+ * id
1587
+ * data {...}
1588
+ * }
1589
+ * }
1590
+ * ```
1591
+ */
1554
1592
  this.multiNodeDocument = async () => {
1555
1593
  const name = "node";
1556
1594
  const args = [
@@ -1571,6 +1609,19 @@ var Builder = class {
1571
1609
  required: true
1572
1610
  });
1573
1611
  };
1612
+ /**
1613
+ * ```graphql
1614
+ * # ex.
1615
+ * {
1616
+ * getDocument(collection: $collection, relativePath: $relativePath) {
1617
+ * id
1618
+ * data {...}
1619
+ * }
1620
+ * }
1621
+ * ```
1622
+ *
1623
+ * @param collections
1624
+ */
1574
1625
  this.multiCollectionDocument = async (collections) => {
1575
1626
  const name = "document";
1576
1627
  const args = [
@@ -1596,6 +1647,19 @@ var Builder = class {
1596
1647
  required: true
1597
1648
  });
1598
1649
  };
1650
+ /**
1651
+ * ```graphql
1652
+ * # ex.
1653
+ * {
1654
+ * addPendingDocument(collection: $collection, relativePath: $relativePath, params: $params) {
1655
+ * id
1656
+ * data {...}
1657
+ * }
1658
+ * }
1659
+ * ```
1660
+ *
1661
+ * @param collections
1662
+ */
1599
1663
  this.addMultiCollectionDocumentMutation = async () => {
1600
1664
  return astBuilder.FieldDefinition({
1601
1665
  name: "addPendingDocument",
@@ -1620,6 +1684,19 @@ var Builder = class {
1620
1684
  type: astBuilder.TYPES.MultiCollectionDocument
1621
1685
  });
1622
1686
  };
1687
+ /**
1688
+ * ```graphql
1689
+ * # ex.
1690
+ * {
1691
+ * createDocument(relativePath: $relativePath, params: $params) {
1692
+ * id
1693
+ * data {...}
1694
+ * }
1695
+ * }
1696
+ * ```
1697
+ *
1698
+ * @param collections
1699
+ */
1623
1700
  this.buildCreateCollectionDocumentMutation = async (collections) => {
1624
1701
  return astBuilder.FieldDefinition({
1625
1702
  name: "createDocument",
@@ -1647,6 +1724,19 @@ var Builder = class {
1647
1724
  type: astBuilder.TYPES.MultiCollectionDocument
1648
1725
  });
1649
1726
  };
1727
+ /**
1728
+ * ```graphql
1729
+ * # ex.
1730
+ * {
1731
+ * updateDocument(relativePath: $relativePath, params: $params) {
1732
+ * id
1733
+ * data {...}
1734
+ * }
1735
+ * }
1736
+ * ```
1737
+ *
1738
+ * @param collections
1739
+ */
1650
1740
  this.buildUpdateCollectionDocumentMutation = async (collections) => {
1651
1741
  return astBuilder.FieldDefinition({
1652
1742
  name: "updateDocument",
@@ -1674,6 +1764,19 @@ var Builder = class {
1674
1764
  type: astBuilder.TYPES.MultiCollectionDocument
1675
1765
  });
1676
1766
  };
1767
+ /**
1768
+ * ```graphql
1769
+ * # ex.
1770
+ * {
1771
+ * deleteDocument(relativePath: $relativePath, params: $params) {
1772
+ * id
1773
+ * data {...}
1774
+ * }
1775
+ * }
1776
+ * ```
1777
+ *
1778
+ * @param collections
1779
+ */
1677
1780
  this.buildDeleteCollectionDocumentMutation = async (collections) => {
1678
1781
  return astBuilder.FieldDefinition({
1679
1782
  name: "deleteDocument",
@@ -1693,6 +1796,19 @@ var Builder = class {
1693
1796
  type: astBuilder.TYPES.MultiCollectionDocument
1694
1797
  });
1695
1798
  };
1799
+ /**
1800
+ * ```graphql
1801
+ * # ex.
1802
+ * {
1803
+ * createFolder(folderName: $folderName, params: $params) {
1804
+ * id
1805
+ * data {...}
1806
+ * }
1807
+ * }
1808
+ * ```
1809
+ *
1810
+ * @param collections
1811
+ */
1696
1812
  this.buildCreateCollectionFolderMutation = async () => {
1697
1813
  return astBuilder.FieldDefinition({
1698
1814
  name: "createFolder",
@@ -1712,6 +1828,19 @@ var Builder = class {
1712
1828
  type: astBuilder.TYPES.MultiCollectionDocument
1713
1829
  });
1714
1830
  };
1831
+ /**
1832
+ * ```graphql
1833
+ * # ex.
1834
+ * {
1835
+ * getPostDocument(relativePath: $relativePath) {
1836
+ * id
1837
+ * data {...}
1838
+ * }
1839
+ * }
1840
+ * ```
1841
+ *
1842
+ * @param collection
1843
+ */
1715
1844
  this.collectionDocument = async (collection) => {
1716
1845
  const name = NAMER.queryName([collection.name]);
1717
1846
  const type = await this._buildCollectionDocumentType(collection);
@@ -1772,6 +1901,20 @@ var Builder = class {
1772
1901
  const args = [];
1773
1902
  return astBuilder.FieldDefinition({ type, name, args, required: false });
1774
1903
  };
1904
+ /**
1905
+ * Turns a collection into a fragment that gets updated on build. This fragment does not resolve references
1906
+ * ```graphql
1907
+ * # ex.
1908
+ * fragment AuthorsParts on Authors {
1909
+ * name
1910
+ * avatar
1911
+ * ...
1912
+ * }
1913
+ * ```
1914
+ *
1915
+ * @public
1916
+ * @param collection a TinaCloud collection
1917
+ */
1775
1918
  this.collectionFragment = async (collection) => {
1776
1919
  const name = NAMER.dataTypeName(collection.namespace);
1777
1920
  const fragmentName = NAMER.fragmentName(collection.namespace);
@@ -1785,14 +1928,27 @@ var Builder = class {
1785
1928
  selections: filterSelections(selections)
1786
1929
  });
1787
1930
  };
1931
+ /**
1932
+ * Given a collection this function returns its selections set. For example for Post this would return
1933
+ *
1934
+ * "
1935
+ * body
1936
+ * title
1937
+ * ... on Author {
1938
+ * name
1939
+ * heroImg
1940
+ * }
1941
+ *
1942
+ * But in the AST format
1943
+ *
1944
+ * */
1788
1945
  this._getCollectionFragmentSelections = async (collection, depth) => {
1789
- var _a;
1790
1946
  const selections = [];
1791
1947
  selections.push({
1792
1948
  name: { kind: "Name", value: "__typename" },
1793
1949
  kind: "Field"
1794
1950
  });
1795
- if (((_a = collection.fields) == null ? void 0 : _a.length) > 0) {
1951
+ if (collection.fields?.length > 0) {
1796
1952
  await sequential(collection.fields, async (x) => {
1797
1953
  const field = await this._buildFieldNodeForFragments(x, depth);
1798
1954
  selections.push(field);
@@ -1807,7 +1963,6 @@ var Builder = class {
1807
1963
  return selections;
1808
1964
  };
1809
1965
  this._buildFieldNodeForFragments = async (field, depth) => {
1810
- var _a, _b;
1811
1966
  switch (field.type) {
1812
1967
  case "string":
1813
1968
  case "image":
@@ -1840,7 +1995,7 @@ var Builder = class {
1840
1995
  selections: filterSelections([passwordValue, passwordChangeRequired])
1841
1996
  });
1842
1997
  case "object":
1843
- if (((_a = field.fields) == null ? void 0 : _a.length) > 0) {
1998
+ if (field.fields?.length > 0) {
1844
1999
  const selections2 = [];
1845
2000
  await sequential(field.fields, async (item) => {
1846
2001
  const field2 = await this._buildFieldNodeForFragments(item, depth);
@@ -1853,7 +2008,7 @@ var Builder = class {
1853
2008
  ...filterSelections(selections2)
1854
2009
  ]
1855
2010
  });
1856
- } else if (((_b = field.templates) == null ? void 0 : _b.length) > 0) {
2011
+ } else if (field.templates?.length > 0) {
1857
2012
  const selections2 = [];
1858
2013
  await sequential(field.templates, async (tem) => {
1859
2014
  if (typeof tem === "object") {
@@ -1868,9 +2023,9 @@ var Builder = class {
1868
2023
  ]
1869
2024
  });
1870
2025
  }
2026
+ // TODO: Should we throw here?
1871
2027
  case "reference":
1872
- if (depth >= this.maxDepth)
1873
- return false;
2028
+ if (depth >= this.maxDepth) return false;
1874
2029
  if (!("collections" in field)) {
1875
2030
  return false;
1876
2031
  }
@@ -1902,6 +2057,7 @@ var Builder = class {
1902
2057
  name: field.name,
1903
2058
  selections: [
1904
2059
  ...selections,
2060
+ // This is ... on Document { id }
1905
2061
  {
1906
2062
  kind: "InlineFragment",
1907
2063
  typeCondition: {
@@ -1932,6 +2088,19 @@ var Builder = class {
1932
2088
  });
1933
2089
  }
1934
2090
  };
2091
+ /**
2092
+ * ```graphql
2093
+ * # ex.
2094
+ * mutation {
2095
+ * updatePostDocument(relativePath: $relativePath, params: $params) {
2096
+ * id
2097
+ * data {...}
2098
+ * }
2099
+ * }
2100
+ * ```
2101
+ *
2102
+ * @param collection
2103
+ */
1935
2104
  this.updateCollectionDocumentMutation = async (collection) => {
1936
2105
  return astBuilder.FieldDefinition({
1937
2106
  type: await this._buildCollectionDocumentType(collection),
@@ -1951,6 +2120,19 @@ var Builder = class {
1951
2120
  ]
1952
2121
  });
1953
2122
  };
2123
+ /**
2124
+ * ```graphql
2125
+ * # ex.
2126
+ * mutation {
2127
+ * createPostDocument(relativePath: $relativePath, params: $params) {
2128
+ * id
2129
+ * data {...}
2130
+ * }
2131
+ * }
2132
+ * ```
2133
+ *
2134
+ * @param collection
2135
+ */
1954
2136
  this.createCollectionDocumentMutation = async (collection) => {
1955
2137
  return astBuilder.FieldDefinition({
1956
2138
  type: await this._buildCollectionDocumentType(collection),
@@ -1970,6 +2152,22 @@ var Builder = class {
1970
2152
  ]
1971
2153
  });
1972
2154
  };
2155
+ /**
2156
+ * ```graphql
2157
+ * # ex.
2158
+ * {
2159
+ * getPostList(first: 10) {
2160
+ * edges {
2161
+ * node {
2162
+ * id
2163
+ * }
2164
+ * }
2165
+ * }
2166
+ * }
2167
+ * ```
2168
+ *
2169
+ * @param collection
2170
+ */
1973
2171
  this.collectionDocumentList = async (collection) => {
1974
2172
  const connectionName = NAMER.referenceConnectionType(collection.namespace);
1975
2173
  this.addToLookupMap({
@@ -1985,6 +2183,10 @@ var Builder = class {
1985
2183
  collection
1986
2184
  });
1987
2185
  };
2186
+ /**
2187
+ * GraphQL type definitions which remain unchanged regardless
2188
+ * of the supplied Tina schema. Ex. "node" interface
2189
+ */
1988
2190
  this.buildStaticDefinitions = () => staticDefinitions;
1989
2191
  this._buildCollectionDocumentType = async (collection, suffix = "", extraFields = [], extraInterfaces = []) => {
1990
2192
  const documentTypeName = NAMER.documentTypeName(collection.namespace);
@@ -2468,7 +2670,7 @@ var Builder = class {
2468
2670
  this.addToLookupMap({
2469
2671
  type: name,
2470
2672
  resolveType: "unionData",
2471
- collection: collection == null ? void 0 : collection.name,
2673
+ collection: collection?.name,
2472
2674
  typeMap
2473
2675
  });
2474
2676
  return astBuilder.UnionTypeDefinition({ name, types });
@@ -2489,6 +2691,7 @@ var Builder = class {
2489
2691
  name: NAMER.dataFilterTypeName(namespace),
2490
2692
  fields: await sequential(collections, async (collection2) => {
2491
2693
  return astBuilder.InputValueDefinition({
2694
+ // @ts-ignore
2492
2695
  name: collection2.name,
2493
2696
  type: NAMER.dataFilterTypeName(collection2.namespace)
2494
2697
  });
@@ -2677,8 +2880,8 @@ Visit https://tina.io/docs/errors/ui-not-supported/ for more information
2677
2880
  ]
2678
2881
  });
2679
2882
  };
2680
- var _a, _b, _c, _d;
2681
- this.maxDepth = (_d = (_c = (_b = (_a = config == null ? void 0 : config.tinaSchema.schema) == null ? void 0 : _a.config) == null ? void 0 : _b.client) == null ? void 0 : _c.referenceDepth) != null ? _d : 2;
2883
+ this.maxDepth = // @ts-ignore
2884
+ config?.tinaSchema.schema?.config?.client?.referenceDepth ?? 2;
2682
2885
  this.tinaSchema = config.tinaSchema;
2683
2886
  this.lookupMap = {};
2684
2887
  }
@@ -2689,8 +2892,7 @@ Visit https://tina.io/docs/errors/ui-not-supported/ for more information
2689
2892
  selections.push(field);
2690
2893
  });
2691
2894
  const filteredSelections = filterSelections(selections);
2692
- if (!filteredSelections.length)
2693
- return false;
2895
+ if (!filteredSelections.length) return false;
2694
2896
  return astBuilder.InlineFragmentDefinition({
2695
2897
  selections: filteredSelections,
2696
2898
  name: NAMER.dataTypeName(template.namespace)
@@ -2724,12 +2926,13 @@ var filterSelections = (arr) => {
2724
2926
  };
2725
2927
 
2726
2928
  // src/schema/createSchema.ts
2727
- var import_schema_tools2 = require("@tinacms/schema-tools");
2929
+ var import_schema_tools3 = require("@tinacms/schema-tools");
2728
2930
 
2729
2931
  // src/schema/validate.ts
2932
+ var import_schema_tools = require("@tinacms/schema-tools");
2730
2933
  var import_lodash2 = __toESM(require("lodash.clonedeep"));
2731
2934
  var yup2 = __toESM(require("yup"));
2732
- var import_schema_tools = require("@tinacms/schema-tools");
2935
+ var import_schema_tools2 = require("@tinacms/schema-tools");
2733
2936
  var FIELD_TYPES = [
2734
2937
  "string",
2735
2938
  "number",
@@ -2742,7 +2945,7 @@ var FIELD_TYPES = [
2742
2945
  "password"
2743
2946
  ];
2744
2947
  var validateSchema = async (schema) => {
2745
- const schema2 = addNamespaceToSchema(
2948
+ const schema2 = (0, import_schema_tools.addNamespaceToSchema)(
2746
2949
  (0, import_lodash2.default)(schema)
2747
2950
  );
2748
2951
  const collections = await sequential(
@@ -2751,7 +2954,7 @@ var validateSchema = async (schema) => {
2751
2954
  );
2752
2955
  validationCollectionsPathAndMatch(collections);
2753
2956
  if (schema2.config) {
2754
- const config = (0, import_schema_tools.validateTinaCloudSchemaConfig)(schema2.config);
2957
+ const config = (0, import_schema_tools2.validateTinaCloudSchemaConfig)(schema2.config);
2755
2958
  return {
2756
2959
  collections,
2757
2960
  config
@@ -2767,20 +2970,18 @@ var validationCollectionsPathAndMatch = (collections) => {
2767
2970
  return;
2768
2971
  }
2769
2972
  const noMatchCollections = collections.filter((x) => {
2770
- return typeof (x == null ? void 0 : x.match) === "undefined";
2973
+ return typeof x?.match === "undefined";
2771
2974
  }).map((x) => `${x.path}${x.format || "md"}`);
2772
2975
  if (noMatchCollections.length !== new Set(noMatchCollections).size) {
2773
2976
  throw new Error(
2977
+ // TODO: add a link to the docs
2774
2978
  "Two collections without match can not have the same `path`. Please make the `path` unique or add a matches property to the collection."
2775
2979
  );
2776
2980
  }
2777
2981
  const hasMatchAndPath = collections.filter((x) => {
2778
2982
  return typeof x.path !== "undefined" && typeof x.match !== "undefined";
2779
2983
  }).map(
2780
- (x) => {
2781
- var _a, _b;
2782
- return `${x.path}|${((_a = x == null ? void 0 : x.match) == null ? void 0 : _a.exclude) || ""}|${((_b = x == null ? void 0 : x.match) == null ? void 0 : _b.include) || ""}|${x.format || "md"}`;
2783
- }
2984
+ (x) => `${x.path}|${x?.match?.exclude || ""}|${x?.match?.include || ""}|${x.format || "md"}`
2784
2985
  );
2785
2986
  if (hasMatchAndPath.length !== new Set(hasMatchAndPath).size) {
2786
2987
  throw new Error(
@@ -2804,7 +3005,7 @@ var validationCollectionsPathAndMatch = (collections) => {
2804
3005
  );
2805
3006
  }
2806
3007
  const matches = collectionsArr.map(
2807
- (x) => typeof (x == null ? void 0 : x.match) === "object" ? JSON.stringify(x.match) : ""
3008
+ (x) => typeof x?.match === "object" ? JSON.stringify(x.match) : ""
2808
3009
  );
2809
3010
  if (matches.length === new Set(matches).size) {
2810
3011
  return;
@@ -2882,7 +3083,7 @@ var validateField = async (field) => {
2882
3083
  // package.json
2883
3084
  var package_default = {
2884
3085
  name: "@tinacms/graphql",
2885
- version: "1.5.4",
3086
+ version: "1.5.18",
2886
3087
  main: "dist/index.js",
2887
3088
  module: "dist/index.mjs",
2888
3089
  typings: "dist/index.d.ts",
@@ -2908,9 +3109,8 @@ var package_default = {
2908
3109
  types: "pnpm tsc",
2909
3110
  build: "tinacms-scripts build",
2910
3111
  docs: "pnpm typedoc",
2911
- serve: "pnpm nodemon dist/server.js",
2912
- test: "jest",
2913
- "test-watch": "jest --watch"
3112
+ test: "vitest run",
3113
+ "test-watch": "vitest"
2914
3114
  },
2915
3115
  dependencies: {
2916
3116
  "@iarna/toml": "^2.2.5",
@@ -2918,22 +3118,22 @@ var package_default = {
2918
3118
  "@tinacms/schema-tools": "workspace:*",
2919
3119
  "abstract-level": "^1.0.4",
2920
3120
  "date-fns": "^2.30.0",
2921
- "fast-glob": "^3.3.2",
2922
- "fs-extra": "^11.2.0",
3121
+ "fast-glob": "^3.3.3",
3122
+ "fs-extra": "^11.3.0",
2923
3123
  "glob-parent": "^6.0.2",
2924
3124
  graphql: "15.8.0",
2925
3125
  "gray-matter": "^4.0.3",
2926
- "isomorphic-git": "^1.27.1",
3126
+ "isomorphic-git": "^1.29.0",
2927
3127
  "js-sha1": "^0.6.0",
2928
3128
  "js-yaml": "^3.14.1",
2929
- "jsonpath-plus": "^6.0.1",
3129
+ "jsonpath-plus": "10.1.0",
2930
3130
  "lodash.clonedeep": "^4.5.0",
2931
3131
  "lodash.set": "^4.3.2",
2932
3132
  "lodash.uniqby": "^4.7.0",
2933
3133
  "many-level": "^2.0.0",
2934
3134
  micromatch: "4.0.8",
2935
3135
  "normalize-path": "^3.0.0",
2936
- "readable-stream": "^4.5.2",
3136
+ "readable-stream": "^4.7.0",
2937
3137
  scmp: "^2.1.0",
2938
3138
  yup: "^0.32.11"
2939
3139
  },
@@ -2951,24 +3151,22 @@ var package_default = {
2951
3151
  "@types/estree": "^0.0.50",
2952
3152
  "@types/express": "^4.17.21",
2953
3153
  "@types/fs-extra": "^9.0.13",
2954
- "@types/jest": "^26.0.24",
2955
3154
  "@types/js-yaml": "^3.12.10",
2956
3155
  "@types/lodash.camelcase": "^4.3.9",
2957
3156
  "@types/lodash.upperfirst": "^4.3.9",
2958
3157
  "@types/lru-cache": "^5.1.1",
2959
3158
  "@types/mdast": "^3.0.15",
2960
3159
  "@types/micromatch": "^4.0.9",
2961
- "@types/node": "^22.7.4",
3160
+ "@types/node": "^22.13.1",
2962
3161
  "@types/normalize-path": "^3.0.2",
2963
3162
  "@types/ws": "^7.4.7",
2964
3163
  "@types/yup": "^0.29.14",
2965
- jest: "^29.7.0",
2966
- "jest-diff": "^29.7.0",
2967
3164
  "jest-file-snapshot": "^0.5.0",
2968
- "jest-matcher-utils": "^29.7.0",
2969
3165
  "memory-level": "^1.0.0",
2970
- nodemon: "3.1.4",
2971
- typescript: "^5.6.2"
3166
+ typescript: "^5.7.3",
3167
+ vite: "^4.5.9",
3168
+ vitest: "^0.32.4",
3169
+ zod: "^3.24.2"
2972
3170
  }
2973
3171
  };
2974
3172
 
@@ -2983,7 +3181,7 @@ var createSchema = async ({
2983
3181
  if (flags && flags.length > 0) {
2984
3182
  meta["flags"] = flags;
2985
3183
  }
2986
- return new import_schema_tools2.TinaSchema({
3184
+ return new import_schema_tools3.TinaSchema({
2987
3185
  version: {
2988
3186
  fullVersion: package_default.version,
2989
3187
  major,
@@ -3039,6 +3237,7 @@ var _buildFragments = async (builder, tinaSchema) => {
3039
3237
  const fragDoc = {
3040
3238
  kind: "Document",
3041
3239
  definitions: (0, import_lodash3.default)(
3240
+ // @ts-ignore
3042
3241
  extractInlineTypes(fragmentDefinitionsFields),
3043
3242
  (node) => node.name.value
3044
3243
  )
@@ -3049,7 +3248,6 @@ var _buildQueries = async (builder, tinaSchema) => {
3049
3248
  const operationsDefinitions = [];
3050
3249
  const collections = tinaSchema.getCollections();
3051
3250
  await sequential(collections, async (collection) => {
3052
- var _a, _b, _c;
3053
3251
  const queryName = NAMER.queryName(collection.namespace);
3054
3252
  const queryListName = NAMER.generateQueryListName(collection.namespace);
3055
3253
  const queryFilterTypeName = NAMER.dataFilterTypeName(collection.namespace);
@@ -3062,8 +3260,9 @@ var _buildQueries = async (builder, tinaSchema) => {
3062
3260
  fragName,
3063
3261
  queryName: queryListName,
3064
3262
  filterType: queryFilterTypeName,
3263
+ // look for flag to see if the data layer is enabled
3065
3264
  dataLayer: Boolean(
3066
- (_c = (_b = (_a = tinaSchema.config) == null ? void 0 : _a.meta) == null ? void 0 : _b.flags) == null ? void 0 : _c.find((x) => x === "experimentalData")
3265
+ tinaSchema.config?.meta?.flags?.find((x) => x === "experimentalData")
3067
3266
  )
3068
3267
  })
3069
3268
  );
@@ -3071,6 +3270,7 @@ var _buildQueries = async (builder, tinaSchema) => {
3071
3270
  const queryDoc = {
3072
3271
  kind: "Document",
3073
3272
  definitions: (0, import_lodash3.default)(
3273
+ // @ts-ignore
3074
3274
  extractInlineTypes(operationsDefinitions),
3075
3275
  (node) => node.name.value
3076
3276
  )
@@ -3122,7 +3322,9 @@ var _buildSchema = async (builder, tinaSchema) => {
3122
3322
  await builder.buildCreateCollectionFolderMutation()
3123
3323
  );
3124
3324
  await sequential(collections, async (collection) => {
3125
- queryTypeDefinitionFields.push(await builder.collectionDocument(collection));
3325
+ queryTypeDefinitionFields.push(
3326
+ await builder.collectionDocument(collection)
3327
+ );
3126
3328
  if (collection.isAuthCollection) {
3127
3329
  queryTypeDefinitionFields.push(
3128
3330
  await builder.authenticationCollectionDocument(collection)
@@ -3159,6 +3361,7 @@ var _buildSchema = async (builder, tinaSchema) => {
3159
3361
  return {
3160
3362
  kind: "Document",
3161
3363
  definitions: (0, import_lodash3.default)(
3364
+ // @ts-ignore
3162
3365
  extractInlineTypes(definitions),
3163
3366
  (node) => node.name.value
3164
3367
  )
@@ -3171,395 +3374,156 @@ var import_graphql5 = require("graphql");
3171
3374
  // src/resolver/index.ts
3172
3375
  var import_path3 = __toESM(require("path"));
3173
3376
  var import_isValid = __toESM(require("date-fns/isValid/index.js"));
3377
+ var import_jsonpath_plus2 = require("jsonpath-plus");
3174
3378
 
3175
3379
  // src/mdx/index.ts
3176
3380
  var import_mdx = require("@tinacms/mdx");
3177
3381
 
3178
- // src/resolver/error.ts
3179
- var TinaGraphQLError = class extends Error {
3180
- constructor(message, extensions) {
3181
- super(message);
3182
- if (!this.name) {
3183
- Object.defineProperty(this, "name", { value: "TinaGraphQLError" });
3184
- }
3185
- this.extensions = { ...extensions };
3186
- }
3382
+ // src/resolver/index.ts
3383
+ var import_graphql3 = require("graphql");
3384
+
3385
+ // src/database/datalayer.ts
3386
+ var import_jsonpath_plus = require("jsonpath-plus");
3387
+ var import_js_sha1 = __toESM(require("js-sha1"));
3388
+
3389
+ // src/database/level.ts
3390
+ var ARRAY_ITEM_VALUE_SEPARATOR = ",";
3391
+ var INDEX_KEY_FIELD_SEPARATOR = "";
3392
+ var CONTENT_ROOT_PREFIX = "~";
3393
+ var SUBLEVEL_OPTIONS = {
3394
+ separator: INDEX_KEY_FIELD_SEPARATOR,
3395
+ valueEncoding: "json"
3187
3396
  };
3188
- var TinaFetchError = class extends Error {
3189
- constructor(message, args) {
3190
- super(message);
3191
- this.name = "TinaFetchError";
3192
- this.collection = args.collection;
3193
- this.stack = args.stack;
3194
- this.file = args.file;
3195
- this.originalError = args.originalError;
3397
+ var LevelProxyHandler = {
3398
+ get: function(target, property) {
3399
+ if (!target[property]) {
3400
+ throw new Error(`The property, ${property.toString()}, doesn't exist`);
3401
+ }
3402
+ if (typeof target[property] !== "function") {
3403
+ throw new Error(
3404
+ `The property, ${property.toString()}, is not a function`
3405
+ );
3406
+ }
3407
+ if (property === "get") {
3408
+ return async (...args) => {
3409
+ let result;
3410
+ try {
3411
+ result = await target[property].apply(target, args);
3412
+ } catch (e) {
3413
+ if (e.code !== "LEVEL_NOT_FOUND") {
3414
+ throw e;
3415
+ }
3416
+ }
3417
+ return result;
3418
+ };
3419
+ } else if (property === "sublevel") {
3420
+ return (...args) => {
3421
+ return new Proxy(
3422
+ // eslint-disable-next-line prefer-spread
3423
+ target[property].apply(target, args),
3424
+ LevelProxyHandler
3425
+ );
3426
+ };
3427
+ } else {
3428
+ return (...args) => target[property].apply(target, args);
3429
+ }
3196
3430
  }
3197
3431
  };
3198
- var TinaQueryError = class extends TinaFetchError {
3199
- constructor(args) {
3200
- super(
3201
- `Error querying file ${args.file} from collection ${args.collection}. ${auditMessage(args.includeAuditMessage)}`,
3202
- args
3203
- );
3432
+ var LevelProxy = class {
3433
+ constructor(level) {
3434
+ return new Proxy(level, LevelProxyHandler);
3204
3435
  }
3205
3436
  };
3206
- var TinaParseDocumentError = class extends TinaFetchError {
3207
- constructor(args) {
3208
- super(
3209
- `Error parsing file ${args.file} from collection ${args.collection}. ${auditMessage(args.includeAuditMessage)}`,
3210
- args
3437
+
3438
+ // src/database/datalayer.ts
3439
+ var import_path2 = __toESM(require("path"));
3440
+
3441
+ // src/database/util.ts
3442
+ var import_toml = __toESM(require("@iarna/toml"));
3443
+ var import_schema_tools4 = require("@tinacms/schema-tools");
3444
+ var import_gray_matter = __toESM(require("gray-matter"));
3445
+ var import_js_yaml = __toESM(require("js-yaml"));
3446
+ var import_path = __toESM(require("path"));
3447
+ var import_micromatch = __toESM(require("micromatch"));
3448
+
3449
+ // src/database/alias-utils.ts
3450
+ var replaceBlockAliases = (template, item) => {
3451
+ const output = { ...item };
3452
+ const templateKey = template.templateKey || "_template";
3453
+ const templateName = output[templateKey];
3454
+ const matchingTemplate = template.templates.find(
3455
+ (t) => t.nameOverride == templateName || t.name == templateName
3456
+ );
3457
+ if (!matchingTemplate) {
3458
+ throw new Error(
3459
+ `Block template "${templateName}" is not defined for field "${template.name}"`
3211
3460
  );
3212
3461
  }
3213
- toString() {
3214
- return super.toString() + "\n OriginalError: \n" + this.originalError.toString();
3462
+ output._template = matchingTemplate.name;
3463
+ if (templateKey != "_template") {
3464
+ delete output[templateKey];
3215
3465
  }
3466
+ return output;
3216
3467
  };
3217
- var auditMessage = (includeAuditMessage = true) => includeAuditMessage ? `Please run "tinacms audit" or add the --verbose option for more info` : "";
3218
- var handleFetchErrorError = (e, verbose) => {
3219
- if (e instanceof Error) {
3220
- if (e instanceof TinaFetchError) {
3221
- if (verbose) {
3222
- console.log(e.toString());
3223
- console.log(e);
3224
- console.log(e.stack);
3468
+ var replaceNameOverrides = (template, obj) => {
3469
+ if (template.list) {
3470
+ return obj.map((item) => {
3471
+ if (isBlockField(template)) {
3472
+ item = replaceBlockAliases(template, item);
3225
3473
  }
3226
- }
3474
+ return _replaceNameOverrides(
3475
+ getTemplateForData(template, item).fields,
3476
+ item
3477
+ );
3478
+ });
3227
3479
  } else {
3228
- console.error(e);
3480
+ return _replaceNameOverrides(getTemplateForData(template, obj).fields, obj);
3229
3481
  }
3230
- throw e;
3231
3482
  };
3232
-
3233
- // src/resolver/filter-utils.ts
3234
- var resolveReferences = async (filter, fields, resolver) => {
3235
- for (const fieldKey of Object.keys(filter)) {
3236
- const fieldDefinition = fields.find(
3237
- (f) => f.name === fieldKey
3483
+ function isBlockField(field) {
3484
+ return field && field.type === "object" && field.templates?.length > 0;
3485
+ }
3486
+ var _replaceNameOverrides = (fields, obj) => {
3487
+ const output = {};
3488
+ Object.keys(obj).forEach((key) => {
3489
+ const field = fields.find(
3490
+ (fieldWithMatchingAlias) => (fieldWithMatchingAlias?.nameOverride || fieldWithMatchingAlias?.name) === key
3238
3491
  );
3239
- if (fieldDefinition) {
3240
- if (fieldDefinition.type === "reference") {
3241
- const { edges, values } = await resolver(filter, fieldDefinition);
3242
- if (edges.length === 1) {
3243
- filter[fieldKey] = {
3244
- eq: values[0]
3245
- };
3246
- } else if (edges.length > 1) {
3247
- filter[fieldKey] = {
3248
- in: values
3249
- };
3250
- } else {
3251
- filter[fieldKey] = {
3252
- eq: "___null___"
3253
- };
3254
- }
3255
- } else if (fieldDefinition.type === "object") {
3256
- if (fieldDefinition.templates) {
3257
- for (const templateName of Object.keys(filter[fieldKey])) {
3258
- const template = fieldDefinition.templates.find(
3259
- (template2) => !(typeof template2 === "string") && template2.name === templateName
3260
- );
3261
- if (template) {
3262
- await resolveReferences(
3263
- filter[fieldKey][templateName],
3264
- template.fields,
3265
- resolver
3266
- );
3267
- } else {
3268
- throw new Error(`Template ${templateName} not found`);
3269
- }
3270
- }
3271
- } else {
3272
- await resolveReferences(
3273
- filter[fieldKey],
3274
- fieldDefinition.fields,
3275
- resolver
3276
- );
3277
- }
3492
+ output[field?.name || key] = field?.type == "object" ? replaceNameOverrides(field, obj[key]) : obj[key];
3493
+ });
3494
+ return output;
3495
+ };
3496
+ var getTemplateForData = (field, data) => {
3497
+ if (field.templates?.length) {
3498
+ const templateKey = "_template";
3499
+ if (data[templateKey]) {
3500
+ const result = field.templates.find(
3501
+ (template) => template.nameOverride === data[templateKey] || template.name === data[templateKey]
3502
+ );
3503
+ if (result) {
3504
+ return result;
3278
3505
  }
3279
- } else {
3280
- throw new Error(`Unable to find field ${fieldKey}`);
3506
+ throw new Error(
3507
+ `Template "${data[templateKey]}" is not defined for field "${field.name}"`
3508
+ );
3281
3509
  }
3510
+ throw new Error(
3511
+ `Missing required key "${templateKey}" on field "${field.name}"`
3512
+ );
3513
+ } else {
3514
+ return field;
3282
3515
  }
3283
3516
  };
3284
- var collectConditionsForChildFields = (filterNode, fields, pathExpression, collectCondition) => {
3285
- for (const childFieldName of Object.keys(filterNode)) {
3286
- const childField = fields.find((field) => field.name === childFieldName);
3287
- if (!childField) {
3288
- throw new Error(`Unable to find type for field ${childFieldName}`);
3289
- }
3290
- collectConditionsForField(
3291
- childFieldName,
3292
- childField,
3293
- filterNode[childFieldName],
3294
- pathExpression,
3295
- collectCondition
3296
- );
3297
- }
3298
- };
3299
- var collectConditionsForObjectField = (fieldName, field, filterNode, pathExpression, collectCondition) => {
3300
- if (field.list && field.templates) {
3301
- for (const [filterKey, childFilterNode] of Object.entries(filterNode)) {
3302
- const template = field.templates.find(
3303
- (template2) => !(typeof template2 === "string") && template2.name === filterKey
3304
- );
3305
- const jsonPath = `${fieldName}[?(@._template=="${filterKey}")]`;
3306
- const filterPath = pathExpression ? `${pathExpression}.${jsonPath}` : jsonPath;
3307
- collectConditionsForChildFields(
3308
- childFilterNode,
3309
- template.fields,
3310
- filterPath,
3311
- collectCondition
3312
- );
3313
- }
3314
- } else {
3315
- const jsonPath = `${fieldName}${field.list ? "[*]" : ""}`;
3316
- const filterPath = pathExpression ? `${pathExpression}.${jsonPath}` : `${jsonPath}`;
3317
- collectConditionsForChildFields(
3318
- filterNode,
3319
- field.fields,
3320
- filterPath,
3321
- collectCondition
3322
- );
3323
- }
3324
- };
3325
- var collectConditionsForField = (fieldName, field, filterNode, pathExpression, collectCondition) => {
3326
- if (field.type === "object") {
3327
- collectConditionsForObjectField(
3328
- fieldName,
3329
- field,
3330
- filterNode,
3331
- pathExpression,
3332
- collectCondition
3333
- );
3334
- } else {
3335
- collectCondition({
3336
- filterPath: pathExpression ? `${pathExpression}.${fieldName}` : fieldName,
3337
- filterExpression: {
3338
- _type: field.type,
3339
- _list: !!field.list,
3340
- ...filterNode
3341
- }
3342
- });
3343
- }
3344
- };
3345
-
3346
- // src/resolver/media-utils.ts
3347
- var resolveMediaCloudToRelative = (value, config = { useRelativeMedia: true }, schema) => {
3348
- if (config && value) {
3349
- if (config.useRelativeMedia === true) {
3350
- return value;
3351
- }
3352
- if (hasTinaMediaConfig(schema) === true) {
3353
- const assetsURL = `https://${config.assetsHost}/${config.clientId}`;
3354
- if (typeof value === "string" && value.includes(assetsURL)) {
3355
- const cleanMediaRoot = cleanUpSlashes(
3356
- schema.config.media.tina.mediaRoot
3357
- );
3358
- const strippedURL = value.replace(assetsURL, "");
3359
- return `${cleanMediaRoot}${strippedURL}`;
3360
- }
3361
- if (Array.isArray(value)) {
3362
- return value.map((v) => {
3363
- if (!v || typeof v !== "string")
3364
- return v;
3365
- const cleanMediaRoot = cleanUpSlashes(
3366
- schema.config.media.tina.mediaRoot
3367
- );
3368
- const strippedURL = v.replace(assetsURL, "");
3369
- return `${cleanMediaRoot}${strippedURL}`;
3370
- });
3371
- }
3372
- return value;
3373
- }
3374
- return value;
3375
- } else {
3376
- return value;
3377
- }
3378
- };
3379
- var resolveMediaRelativeToCloud = (value, config = { useRelativeMedia: true }, schema) => {
3380
- if (config && value) {
3381
- if (config.useRelativeMedia === true) {
3382
- return value;
3383
- }
3384
- if (hasTinaMediaConfig(schema) === true) {
3385
- const cleanMediaRoot = cleanUpSlashes(schema.config.media.tina.mediaRoot);
3386
- if (typeof value === "string") {
3387
- const strippedValue = value.replace(cleanMediaRoot, "");
3388
- return `https://${config.assetsHost}/${config.clientId}${strippedValue}`;
3389
- }
3390
- if (Array.isArray(value)) {
3391
- return value.map((v) => {
3392
- if (!v || typeof v !== "string")
3393
- return v;
3394
- const strippedValue = v.replace(cleanMediaRoot, "");
3395
- return `https://${config.assetsHost}/${config.clientId}${strippedValue}`;
3396
- });
3397
- }
3398
- }
3399
- return value;
3400
- } else {
3401
- return value;
3402
- }
3403
- };
3404
- var cleanUpSlashes = (path7) => {
3405
- if (path7) {
3406
- return `/${path7.replace(/^\/+|\/+$/gm, "")}`;
3407
- }
3408
- return "";
3409
- };
3410
- var hasTinaMediaConfig = (schema) => {
3411
- var _a, _b, _c, _d, _e, _f, _g, _h;
3412
- if (!((_b = (_a = schema.config) == null ? void 0 : _a.media) == null ? void 0 : _b.tina))
3413
- return false;
3414
- if (typeof ((_e = (_d = (_c = schema.config) == null ? void 0 : _c.media) == null ? void 0 : _d.tina) == null ? void 0 : _e.publicFolder) !== "string" && typeof ((_h = (_g = (_f = schema.config) == null ? void 0 : _f.media) == null ? void 0 : _g.tina) == null ? void 0 : _h.mediaRoot) !== "string")
3415
- return false;
3416
- return true;
3417
- };
3418
-
3419
- // src/resolver/index.ts
3420
- var import_graphql3 = require("graphql");
3421
-
3422
- // src/database/datalayer.ts
3423
- var import_jsonpath_plus = require("jsonpath-plus");
3424
- var import_js_sha1 = __toESM(require("js-sha1"));
3425
-
3426
- // src/database/level.ts
3427
- var ARRAY_ITEM_VALUE_SEPARATOR = ",";
3428
- var INDEX_KEY_FIELD_SEPARATOR = "";
3429
- var CONTENT_ROOT_PREFIX = "~";
3430
- var SUBLEVEL_OPTIONS = {
3431
- separator: INDEX_KEY_FIELD_SEPARATOR,
3432
- valueEncoding: "json"
3433
- };
3434
- var LevelProxyHandler = {
3435
- get: function(target, property) {
3436
- if (!target[property]) {
3437
- throw new Error(`The property, ${property.toString()}, doesn't exist`);
3438
- }
3439
- if (typeof target[property] !== "function") {
3440
- throw new Error(`The property, ${property.toString()}, is not a function`);
3441
- }
3442
- if (property === "get") {
3443
- return async (...args) => {
3444
- let result;
3445
- try {
3446
- result = await target[property].apply(target, args);
3447
- } catch (e) {
3448
- if (e.code !== "LEVEL_NOT_FOUND") {
3449
- throw e;
3450
- }
3451
- }
3452
- return result;
3453
- };
3454
- } else if (property === "sublevel") {
3455
- return (...args) => {
3456
- return new Proxy(
3457
- target[property].apply(target, args),
3458
- LevelProxyHandler
3459
- );
3460
- };
3461
- } else {
3462
- return (...args) => target[property].apply(target, args);
3463
- }
3464
- }
3465
- };
3466
- var LevelProxy = class {
3467
- constructor(level) {
3468
- return new Proxy(level, LevelProxyHandler);
3469
- }
3470
- };
3471
-
3472
- // src/database/datalayer.ts
3473
- var import_path2 = __toESM(require("path"));
3474
-
3475
- // src/database/util.ts
3476
- var import_toml = __toESM(require("@iarna/toml"));
3477
- var import_js_yaml = __toESM(require("js-yaml"));
3478
- var import_gray_matter = __toESM(require("gray-matter"));
3479
- var import_schema_tools3 = require("@tinacms/schema-tools");
3480
- var import_micromatch = __toESM(require("micromatch"));
3481
- var import_path = __toESM(require("path"));
3482
-
3483
- // src/database/alias-utils.ts
3484
- var replaceBlockAliases = (template, item) => {
3485
- const output = { ...item };
3486
- const templateKey = template.templateKey || "_template";
3487
- const templateName = output[templateKey];
3488
- const matchingTemplate = template.templates.find(
3489
- (t) => t.nameOverride == templateName || t.name == templateName
3490
- );
3491
- if (!matchingTemplate) {
3492
- throw new Error(
3493
- `Block template "${templateName}" is not defined for field "${template.name}"`
3494
- );
3495
- }
3496
- output._template = matchingTemplate.name;
3497
- if (templateKey != "_template") {
3498
- delete output[templateKey];
3499
- }
3500
- return output;
3501
- };
3502
- var replaceNameOverrides = (template, obj) => {
3503
- if (template.list) {
3504
- return obj.map((item) => {
3505
- if (isBlockField(template)) {
3506
- item = replaceBlockAliases(template, item);
3507
- }
3508
- return _replaceNameOverrides(
3509
- getTemplateForData(template, item).fields,
3510
- item
3511
- );
3512
- });
3513
- } else {
3514
- return _replaceNameOverrides(getTemplateForData(template, obj).fields, obj);
3515
- }
3516
- };
3517
- function isBlockField(field) {
3518
- var _a;
3519
- return field && field.type === "object" && ((_a = field.templates) == null ? void 0 : _a.length) > 0;
3520
- }
3521
- var _replaceNameOverrides = (fields, obj) => {
3522
- const output = {};
3523
- Object.keys(obj).forEach((key) => {
3524
- const field = fields.find(
3525
- (fieldWithMatchingAlias) => ((fieldWithMatchingAlias == null ? void 0 : fieldWithMatchingAlias.nameOverride) || (fieldWithMatchingAlias == null ? void 0 : fieldWithMatchingAlias.name)) === key
3526
- );
3527
- output[(field == null ? void 0 : field.name) || key] = (field == null ? void 0 : field.type) == "object" ? replaceNameOverrides(field, obj[key]) : obj[key];
3528
- });
3529
- return output;
3530
- };
3531
- var getTemplateForData = (field, data) => {
3532
- var _a;
3533
- if ((_a = field.templates) == null ? void 0 : _a.length) {
3534
- const templateKey = "_template";
3535
- if (data[templateKey]) {
3536
- const result = field.templates.find(
3537
- (template) => template.nameOverride === data[templateKey] || template.name === data[templateKey]
3538
- );
3539
- if (result) {
3540
- return result;
3541
- }
3542
- throw new Error(
3543
- `Template "${data[templateKey]}" is not defined for field "${field.name}"`
3544
- );
3545
- }
3546
- throw new Error(
3547
- `Missing required key "${templateKey}" on field "${field.name}"`
3548
- );
3549
- } else {
3550
- return field;
3551
- }
3552
- };
3553
- var applyBlockAliases = (template, item) => {
3554
- const output = { ...item };
3555
- const templateKey = template.templateKey || "_template";
3556
- const templateName = output._template;
3557
- const matchingTemplate = template.templates.find(
3558
- (t) => t.nameOverride == templateName || t.name == templateName
3559
- );
3560
- if (!matchingTemplate) {
3561
- throw new Error(
3562
- `Block template "${templateName}" is not defined for field "${template.name}"`
3517
+ var applyBlockAliases = (template, item) => {
3518
+ const output = { ...item };
3519
+ const templateKey = template.templateKey || "_template";
3520
+ const templateName = output._template;
3521
+ const matchingTemplate = template.templates.find(
3522
+ (t) => t.nameOverride == templateName || t.name == templateName
3523
+ );
3524
+ if (!matchingTemplate) {
3525
+ throw new Error(
3526
+ `Block template "${templateName}" is not defined for field "${template.name}"`
3563
3527
  );
3564
3528
  }
3565
3529
  output[templateKey] = matchingTemplate.nameOverride || matchingTemplate.name;
@@ -3588,8 +3552,8 @@ var _applyNameOverrides = (fields, obj) => {
3588
3552
  const output = {};
3589
3553
  Object.keys(obj).forEach((key) => {
3590
3554
  const field = fields.find((field2) => field2.name === key);
3591
- const outputKey = (field == null ? void 0 : field.nameOverride) || key;
3592
- output[outputKey] = (field == null ? void 0 : field.type) === "object" ? applyNameOverrides(field, obj[key]) : obj[key];
3555
+ const outputKey = field?.nameOverride || key;
3556
+ output[outputKey] = field?.type === "object" ? applyNameOverrides(field, obj[key]) : obj[key];
3593
3557
  });
3594
3558
  return output;
3595
3559
  };
@@ -3602,7 +3566,6 @@ var matterEngines = {
3602
3566
  }
3603
3567
  };
3604
3568
  var stringifyFile = (content, format, keepTemplateKey, markdownParseConfig) => {
3605
- var _a, _b;
3606
3569
  const {
3607
3570
  _relativePath,
3608
3571
  _keepTemplateKey,
@@ -3626,9 +3589,9 @@ var stringifyFile = (content, format, keepTemplateKey, markdownParseConfig) => {
3626
3589
  ${$_body}`,
3627
3590
  strippedContent,
3628
3591
  {
3629
- language: (_a = markdownParseConfig == null ? void 0 : markdownParseConfig.frontmatterFormat) != null ? _a : "yaml",
3592
+ language: markdownParseConfig?.frontmatterFormat ?? "yaml",
3630
3593
  engines: matterEngines,
3631
- delimiters: (_b = markdownParseConfig == null ? void 0 : markdownParseConfig.frontmatterDelimiters) != null ? _b : "---"
3594
+ delimiters: markdownParseConfig?.frontmatterDelimiters ?? "---"
3632
3595
  }
3633
3596
  );
3634
3597
  return ok;
@@ -3644,15 +3607,14 @@ ${$_body}`,
3644
3607
  }
3645
3608
  };
3646
3609
  var parseFile = (content, format, yupSchema, markdownParseConfig) => {
3647
- var _a, _b;
3648
3610
  try {
3649
3611
  switch (format) {
3650
3612
  case ".markdown":
3651
3613
  case ".mdx":
3652
3614
  case ".md":
3653
3615
  const contentJSON = (0, import_gray_matter.default)(content || "", {
3654
- language: (_a = markdownParseConfig == null ? void 0 : markdownParseConfig.frontmatterFormat) != null ? _a : "yaml",
3655
- delimiters: (_b = markdownParseConfig == null ? void 0 : markdownParseConfig.frontmatterDelimiters) != null ? _b : "---",
3616
+ language: markdownParseConfig?.frontmatterFormat ?? "yaml",
3617
+ delimiters: markdownParseConfig?.frontmatterDelimiters ?? "---",
3656
3618
  engines: matterEngines
3657
3619
  });
3658
3620
  const markdownData = {
@@ -3689,7 +3651,7 @@ var scanAllContent = async (tinaSchema, bridge, callback) => {
3689
3651
  const filesSeen = /* @__PURE__ */ new Map();
3690
3652
  const duplicateFiles = /* @__PURE__ */ new Set();
3691
3653
  await sequential(tinaSchema.getCollections(), async (collection) => {
3692
- const normalPath = (0, import_schema_tools3.normalizePath)(collection.path);
3654
+ const normalPath = (0, import_schema_tools4.normalizePath)(collection.path);
3693
3655
  const format = collection.format || "md";
3694
3656
  const documentPaths = await bridge.glob(normalPath, format);
3695
3657
  const matches = tinaSchema.getMatches({ collection });
@@ -3751,7 +3713,7 @@ var transformDocument = (filepath, contentObject, tinaSchema) => {
3751
3713
  ),
3752
3714
  template: void 0
3753
3715
  } : tinaSchema.getCollectionAndTemplateByFullPath(filepath, templateName);
3754
- const field = template == null ? void 0 : template.fields.find((field2) => {
3716
+ const field = template?.fields.find((field2) => {
3755
3717
  if (field2.type === "string" || field2.type === "rich-text") {
3756
3718
  if (field2.isBody) {
3757
3719
  return true;
@@ -3771,7 +3733,7 @@ var transformDocument = (filepath, contentObject, tinaSchema) => {
3771
3733
  ...data,
3772
3734
  _collection: collection.name,
3773
3735
  _keepTemplateKey: !!collection.templates,
3774
- _template: (template == null ? void 0 : template.namespace) ? lastItem(template == null ? void 0 : template.namespace) : void 0,
3736
+ _template: template?.namespace ? lastItem(template?.namespace) : void 0,
3775
3737
  _relativePath: filepath.replace(collection.path, "").replace(/^\/|\/$/g, ""),
3776
3738
  _id: filepath
3777
3739
  };
@@ -3780,10 +3742,10 @@ function hasOwnProperty(obj, prop) {
3780
3742
  return obj.hasOwnProperty(prop);
3781
3743
  }
3782
3744
  var getTemplateForFile = (templateInfo, data) => {
3783
- if ((templateInfo == null ? void 0 : templateInfo.type) === "object") {
3745
+ if (templateInfo?.type === "object") {
3784
3746
  return templateInfo.template;
3785
3747
  }
3786
- if ((templateInfo == null ? void 0 : templateInfo.type) === "union") {
3748
+ if (templateInfo?.type === "union") {
3787
3749
  if (hasOwnProperty(data, "_template")) {
3788
3750
  const template = templateInfo.templates.find(
3789
3751
  (t) => lastItem(t.namespace) === data._template
@@ -3801,14 +3763,14 @@ var getTemplateForFile = (templateInfo, data) => {
3801
3763
  throw new Error(`Unable to determine template`);
3802
3764
  };
3803
3765
  var loadAndParseWithAliases = async (bridge, filepath, collection, templateInfo) => {
3804
- const dataString = await bridge.get((0, import_schema_tools3.normalizePath)(filepath));
3766
+ const dataString = await bridge.get((0, import_schema_tools4.normalizePath)(filepath));
3805
3767
  const data = parseFile(
3806
3768
  dataString,
3807
3769
  import_path.default.extname(filepath),
3808
3770
  (yup3) => yup3.object({}),
3809
3771
  {
3810
- frontmatterDelimiters: collection == null ? void 0 : collection.frontmatterDelimiters,
3811
- frontmatterFormat: collection == null ? void 0 : collection.frontmatterFormat
3772
+ frontmatterDelimiters: collection?.frontmatterDelimiters,
3773
+ frontmatterFormat: collection?.frontmatterFormat
3812
3774
  }
3813
3775
  );
3814
3776
  const template = getTemplateForFile(templateInfo, data);
@@ -3823,6 +3785,9 @@ var loadAndParseWithAliases = async (bridge, filepath, collection, templateInfo)
3823
3785
 
3824
3786
  // src/database/datalayer.ts
3825
3787
  var DEFAULT_COLLECTION_SORT_KEY = "__filepath__";
3788
+ var REFS_COLLECTIONS_SORT_KEY = "__refs__";
3789
+ var REFS_REFERENCE_FIELD = "__tina_ref__";
3790
+ var REFS_PATH_FIELD = "__tina_ref_path__";
3826
3791
  var DEFAULT_NUMERIC_LPAD = 4;
3827
3792
  var applyPadding = (input, pad) => {
3828
3793
  if (pad) {
@@ -4280,7 +4245,7 @@ var FolderTreeBuilder = class {
4280
4245
  return this._tree;
4281
4246
  }
4282
4247
  update(documentPath, collectionPath) {
4283
- let folderPath = import_path2.default.dirname((0, import_schema_tools3.normalizePath)(documentPath));
4248
+ let folderPath = import_path2.default.dirname((0, import_schema_tools4.normalizePath)(documentPath));
4284
4249
  if (folderPath === ".") {
4285
4250
  folderPath = "";
4286
4251
  }
@@ -4293,7 +4258,7 @@ var FolderTreeBuilder = class {
4293
4258
  if (!this._tree[current2]) {
4294
4259
  this._tree[current2] = /* @__PURE__ */ new Set();
4295
4260
  }
4296
- this._tree[current2].add((0, import_schema_tools3.normalizePath)(import_path2.default.join(current2, part)));
4261
+ this._tree[current2].add((0, import_schema_tools4.normalizePath)(import_path2.default.join(current2, part)));
4297
4262
  parent.push(part);
4298
4263
  });
4299
4264
  const current = parent.join("/");
@@ -4332,6 +4297,7 @@ var makeFolderOpsForCollection = (folderTree, collection, indexDefinitions, opTy
4332
4297
  result.push({
4333
4298
  type: opType,
4334
4299
  key: `${collection.path}/${subFolderKey}.${collection.format}`,
4300
+ // replace the root with the collection path
4335
4301
  sublevel: indexSublevel,
4336
4302
  value: {}
4337
4303
  });
@@ -4347,80 +4313,367 @@ var makeFolderOpsForCollection = (folderTree, collection, indexDefinitions, opTy
4347
4313
  });
4348
4314
  }
4349
4315
  }
4350
- folderSortingIdx++;
4351
- }
4352
- if (folderName !== FOLDER_ROOT) {
4353
- result.push({
4354
- type: "put",
4355
- key: `${collection.path}/${parentFolderKey}.${collection.format}`,
4356
- value: {
4357
- __collection: collection.name,
4358
- __folderBasename: import_path2.default.basename(folderName),
4359
- __folderPath: folderName
4360
- },
4361
- sublevel: level.sublevel(
4362
- CONTENT_ROOT_PREFIX,
4363
- SUBLEVEL_OPTIONS
4364
- )
4365
- });
4316
+ folderSortingIdx++;
4317
+ }
4318
+ if (folderName !== FOLDER_ROOT) {
4319
+ result.push({
4320
+ type: "put",
4321
+ key: `${collection.path}/${parentFolderKey}.${collection.format}`,
4322
+ value: {
4323
+ __collection: collection.name,
4324
+ __folderBasename: import_path2.default.basename(folderName),
4325
+ __folderPath: folderName
4326
+ },
4327
+ sublevel: level.sublevel(
4328
+ CONTENT_ROOT_PREFIX,
4329
+ SUBLEVEL_OPTIONS
4330
+ )
4331
+ });
4332
+ }
4333
+ }
4334
+ return result;
4335
+ };
4336
+ var makeIndexOpsForDocument = (filepath, collection, indexDefinitions, data, opType, level, escapeStr = stringEscaper) => {
4337
+ const result = [];
4338
+ if (collection) {
4339
+ const collectionSublevel = level.sublevel(collection, SUBLEVEL_OPTIONS);
4340
+ for (const [sort, definition] of Object.entries(indexDefinitions)) {
4341
+ const indexedValue = makeKeyForField(definition, data, escapeStr);
4342
+ const indexSublevel = collectionSublevel.sublevel(sort, SUBLEVEL_OPTIONS);
4343
+ if (sort === DEFAULT_COLLECTION_SORT_KEY) {
4344
+ result.push({
4345
+ type: opType,
4346
+ key: filepath,
4347
+ sublevel: indexSublevel,
4348
+ value: opType === "put" ? {} : void 0
4349
+ });
4350
+ } else {
4351
+ if (indexedValue) {
4352
+ result.push({
4353
+ type: opType,
4354
+ key: `${indexedValue}${INDEX_KEY_FIELD_SEPARATOR}${filepath}`,
4355
+ sublevel: indexSublevel,
4356
+ value: opType === "put" ? {} : void 0
4357
+ });
4358
+ }
4359
+ }
4360
+ }
4361
+ }
4362
+ return result;
4363
+ };
4364
+ var makeRefOpsForDocument = (filepath, collection, references, data, opType, level) => {
4365
+ const result = [];
4366
+ if (collection) {
4367
+ for (const [c, referencePaths] of Object.entries(references || {})) {
4368
+ if (!referencePaths.length) {
4369
+ continue;
4370
+ }
4371
+ const collectionSublevel = level.sublevel(c, SUBLEVEL_OPTIONS);
4372
+ const refSublevel = collectionSublevel.sublevel(
4373
+ REFS_COLLECTIONS_SORT_KEY,
4374
+ SUBLEVEL_OPTIONS
4375
+ );
4376
+ const references2 = {};
4377
+ for (const path7 of referencePaths) {
4378
+ const ref = (0, import_jsonpath_plus.JSONPath)({ path: path7, json: data });
4379
+ if (!ref) {
4380
+ continue;
4381
+ }
4382
+ if (Array.isArray(ref)) {
4383
+ for (const r of ref) {
4384
+ if (!r) {
4385
+ continue;
4386
+ }
4387
+ if (references2[r]) {
4388
+ references2[r].push(path7);
4389
+ } else {
4390
+ references2[r] = [path7];
4391
+ }
4392
+ }
4393
+ } else {
4394
+ if (references2[ref]) {
4395
+ references2[ref].push(path7);
4396
+ } else {
4397
+ references2[ref] = [path7];
4398
+ }
4399
+ }
4400
+ }
4401
+ for (const ref of Object.keys(references2)) {
4402
+ for (const path7 of references2[ref]) {
4403
+ result.push({
4404
+ type: opType,
4405
+ key: `${ref}${INDEX_KEY_FIELD_SEPARATOR}${path7}${INDEX_KEY_FIELD_SEPARATOR}${filepath}`,
4406
+ sublevel: refSublevel,
4407
+ value: opType === "put" ? {} : void 0
4408
+ });
4409
+ }
4410
+ }
4411
+ }
4412
+ }
4413
+ return result;
4414
+ };
4415
+ var makeStringEscaper = (regex, replacement) => {
4416
+ return (input) => {
4417
+ if (Array.isArray(input)) {
4418
+ return input.map(
4419
+ (val) => val.replace(regex, replacement)
4420
+ );
4421
+ } else {
4422
+ if (typeof input === "string") {
4423
+ return input.replace(regex, replacement);
4424
+ } else {
4425
+ return input;
4426
+ }
4427
+ }
4428
+ };
4429
+ };
4430
+ var stringEscaper = makeStringEscaper(
4431
+ new RegExp(INDEX_KEY_FIELD_SEPARATOR, "gm"),
4432
+ encodeURIComponent(INDEX_KEY_FIELD_SEPARATOR)
4433
+ );
4434
+
4435
+ // src/resolver/error.ts
4436
+ var TinaGraphQLError = class extends Error {
4437
+ constructor(message, extensions) {
4438
+ super(message);
4439
+ if (!this.name) {
4440
+ Object.defineProperty(this, "name", { value: "TinaGraphQLError" });
4441
+ }
4442
+ this.extensions = { ...extensions };
4443
+ }
4444
+ };
4445
+ var TinaFetchError = class extends Error {
4446
+ constructor(message, args) {
4447
+ super(message);
4448
+ this.name = "TinaFetchError";
4449
+ this.collection = args.collection;
4450
+ this.stack = args.stack;
4451
+ this.file = args.file;
4452
+ this.originalError = args.originalError;
4453
+ }
4454
+ };
4455
+ var TinaQueryError = class extends TinaFetchError {
4456
+ constructor(args) {
4457
+ super(
4458
+ `Error querying file ${args.file} from collection ${args.collection}. ${auditMessage(args.includeAuditMessage)}`,
4459
+ args
4460
+ );
4461
+ }
4462
+ };
4463
+ var TinaParseDocumentError = class extends TinaFetchError {
4464
+ constructor(args) {
4465
+ super(
4466
+ `Error parsing file ${args.file} from collection ${args.collection}. ${auditMessage(args.includeAuditMessage)}`,
4467
+ args
4468
+ );
4469
+ }
4470
+ toString() {
4471
+ return super.toString() + "\n OriginalError: \n" + this.originalError.toString();
4472
+ }
4473
+ };
4474
+ var auditMessage = (includeAuditMessage = true) => includeAuditMessage ? `Please run "tinacms audit" or add the --verbose option for more info` : "";
4475
+ var handleFetchErrorError = (e, verbose) => {
4476
+ if (e instanceof Error) {
4477
+ if (e instanceof TinaFetchError) {
4478
+ if (verbose) {
4479
+ console.log(e.toString());
4480
+ console.log(e);
4481
+ console.log(e.stack);
4482
+ }
4483
+ }
4484
+ } else {
4485
+ console.error(e);
4486
+ }
4487
+ throw e;
4488
+ };
4489
+
4490
+ // src/resolver/filter-utils.ts
4491
+ var resolveReferences = async (filter, fields, resolver) => {
4492
+ for (const fieldKey of Object.keys(filter)) {
4493
+ const fieldDefinition = fields.find(
4494
+ (f) => f.name === fieldKey
4495
+ );
4496
+ if (fieldDefinition) {
4497
+ if (fieldDefinition.type === "reference") {
4498
+ const { edges, values } = await resolver(filter, fieldDefinition);
4499
+ if (edges.length === 1) {
4500
+ filter[fieldKey] = {
4501
+ eq: values[0]
4502
+ };
4503
+ } else if (edges.length > 1) {
4504
+ filter[fieldKey] = {
4505
+ in: values
4506
+ };
4507
+ } else {
4508
+ filter[fieldKey] = {
4509
+ eq: "___null___"
4510
+ };
4511
+ }
4512
+ } else if (fieldDefinition.type === "object") {
4513
+ if (fieldDefinition.templates) {
4514
+ for (const templateName of Object.keys(filter[fieldKey])) {
4515
+ const template = fieldDefinition.templates.find(
4516
+ (template2) => !(typeof template2 === "string") && template2.name === templateName
4517
+ );
4518
+ if (template) {
4519
+ await resolveReferences(
4520
+ filter[fieldKey][templateName],
4521
+ template.fields,
4522
+ resolver
4523
+ );
4524
+ } else {
4525
+ throw new Error(`Template ${templateName} not found`);
4526
+ }
4527
+ }
4528
+ } else {
4529
+ await resolveReferences(
4530
+ filter[fieldKey],
4531
+ fieldDefinition.fields,
4532
+ resolver
4533
+ );
4534
+ }
4535
+ }
4536
+ } else {
4537
+ throw new Error(`Unable to find field ${fieldKey}`);
4538
+ }
4539
+ }
4540
+ };
4541
+ var collectConditionsForChildFields = (filterNode, fields, pathExpression, collectCondition) => {
4542
+ for (const childFieldName of Object.keys(filterNode)) {
4543
+ const childField = fields.find((field) => field.name === childFieldName);
4544
+ if (!childField) {
4545
+ throw new Error(`Unable to find type for field ${childFieldName}`);
4546
+ }
4547
+ collectConditionsForField(
4548
+ childFieldName,
4549
+ childField,
4550
+ filterNode[childFieldName],
4551
+ pathExpression,
4552
+ collectCondition
4553
+ );
4554
+ }
4555
+ };
4556
+ var collectConditionsForObjectField = (fieldName, field, filterNode, pathExpression, collectCondition) => {
4557
+ if (field.list && field.templates) {
4558
+ for (const [filterKey, childFilterNode] of Object.entries(filterNode)) {
4559
+ const template = field.templates.find(
4560
+ (template2) => !(typeof template2 === "string") && template2.name === filterKey
4561
+ );
4562
+ const jsonPath = `${fieldName}[?(@._template=="${filterKey}")]`;
4563
+ const filterPath = pathExpression ? `${pathExpression}.${jsonPath}` : jsonPath;
4564
+ collectConditionsForChildFields(
4565
+ childFilterNode,
4566
+ template.fields,
4567
+ filterPath,
4568
+ collectCondition
4569
+ );
4570
+ }
4571
+ } else {
4572
+ const jsonPath = `${fieldName}${field.list ? "[*]" : ""}`;
4573
+ const filterPath = pathExpression ? `${pathExpression}.${jsonPath}` : `${jsonPath}`;
4574
+ collectConditionsForChildFields(
4575
+ filterNode,
4576
+ field.fields,
4577
+ filterPath,
4578
+ collectCondition
4579
+ );
4580
+ }
4581
+ };
4582
+ var collectConditionsForField = (fieldName, field, filterNode, pathExpression, collectCondition) => {
4583
+ if (field.type === "object") {
4584
+ collectConditionsForObjectField(
4585
+ fieldName,
4586
+ field,
4587
+ filterNode,
4588
+ pathExpression,
4589
+ collectCondition
4590
+ );
4591
+ } else {
4592
+ collectCondition({
4593
+ filterPath: pathExpression ? `${pathExpression}.${fieldName}` : fieldName,
4594
+ filterExpression: {
4595
+ _type: field.type,
4596
+ _list: !!field.list,
4597
+ ...filterNode
4598
+ }
4599
+ });
4600
+ }
4601
+ };
4602
+
4603
+ // src/resolver/media-utils.ts
4604
+ var resolveMediaCloudToRelative = (value, config = { useRelativeMedia: true }, schema) => {
4605
+ if (config && value) {
4606
+ if (config.useRelativeMedia === true) {
4607
+ return value;
4608
+ }
4609
+ if (hasTinaMediaConfig(schema) === true) {
4610
+ const assetsURL = `https://${config.assetsHost}/${config.clientId}`;
4611
+ if (typeof value === "string" && value.includes(assetsURL)) {
4612
+ const cleanMediaRoot = cleanUpSlashes(
4613
+ schema.config.media.tina.mediaRoot
4614
+ );
4615
+ const strippedURL = value.replace(assetsURL, "");
4616
+ return `${cleanMediaRoot}${strippedURL}`;
4617
+ }
4618
+ if (Array.isArray(value)) {
4619
+ return value.map((v) => {
4620
+ if (!v || typeof v !== "string") return v;
4621
+ const cleanMediaRoot = cleanUpSlashes(
4622
+ schema.config.media.tina.mediaRoot
4623
+ );
4624
+ const strippedURL = v.replace(assetsURL, "");
4625
+ return `${cleanMediaRoot}${strippedURL}`;
4626
+ });
4627
+ }
4628
+ return value;
4366
4629
  }
4630
+ return value;
4631
+ } else {
4632
+ return value;
4367
4633
  }
4368
- return result;
4369
4634
  };
4370
- var makeIndexOpsForDocument = (filepath, collection, indexDefinitions, data, opType, level, escapeStr = stringEscaper) => {
4371
- const result = [];
4372
- if (collection) {
4373
- const collectionSublevel = level.sublevel(collection, SUBLEVEL_OPTIONS);
4374
- for (const [sort, definition] of Object.entries(indexDefinitions)) {
4375
- const indexedValue = makeKeyForField(definition, data, escapeStr);
4376
- const indexSublevel = collectionSublevel.sublevel(sort, SUBLEVEL_OPTIONS);
4377
- if (sort === DEFAULT_COLLECTION_SORT_KEY) {
4378
- result.push({
4379
- type: opType,
4380
- key: filepath,
4381
- sublevel: indexSublevel,
4382
- value: opType === "put" ? {} : void 0
4635
+ var resolveMediaRelativeToCloud = (value, config = { useRelativeMedia: true }, schema) => {
4636
+ if (config && value) {
4637
+ if (config.useRelativeMedia === true) {
4638
+ return value;
4639
+ }
4640
+ if (hasTinaMediaConfig(schema) === true) {
4641
+ const cleanMediaRoot = cleanUpSlashes(schema.config.media.tina.mediaRoot);
4642
+ if (typeof value === "string") {
4643
+ const strippedValue = value.replace(cleanMediaRoot, "");
4644
+ return `https://${config.assetsHost}/${config.clientId}${strippedValue}`;
4645
+ }
4646
+ if (Array.isArray(value)) {
4647
+ return value.map((v) => {
4648
+ if (!v || typeof v !== "string") return v;
4649
+ const strippedValue = v.replace(cleanMediaRoot, "");
4650
+ return `https://${config.assetsHost}/${config.clientId}${strippedValue}`;
4383
4651
  });
4384
- } else {
4385
- if (indexedValue) {
4386
- result.push({
4387
- type: opType,
4388
- key: `${indexedValue}${INDEX_KEY_FIELD_SEPARATOR}${filepath}`,
4389
- sublevel: indexSublevel,
4390
- value: opType === "put" ? {} : void 0
4391
- });
4392
- }
4393
4652
  }
4394
4653
  }
4654
+ return value;
4655
+ } else {
4656
+ return value;
4395
4657
  }
4396
- return result;
4397
4658
  };
4398
- var makeStringEscaper = (regex, replacement) => {
4399
- return (input) => {
4400
- if (Array.isArray(input)) {
4401
- return input.map(
4402
- (val) => val.replace(regex, replacement)
4403
- );
4404
- } else {
4405
- if (typeof input === "string") {
4406
- return input.replace(regex, replacement);
4407
- } else {
4408
- return input;
4409
- }
4410
- }
4411
- };
4659
+ var cleanUpSlashes = (path7) => {
4660
+ if (path7) {
4661
+ return `/${path7.replace(/^\/+|\/+$/gm, "")}`;
4662
+ }
4663
+ return "";
4664
+ };
4665
+ var hasTinaMediaConfig = (schema) => {
4666
+ if (!schema.config?.media?.tina) return false;
4667
+ if (typeof schema.config?.media?.tina?.publicFolder !== "string" && typeof schema.config?.media?.tina?.mediaRoot !== "string")
4668
+ return false;
4669
+ return true;
4412
4670
  };
4413
- var stringEscaper = makeStringEscaper(
4414
- new RegExp(INDEX_KEY_FIELD_SEPARATOR, "gm"),
4415
- encodeURIComponent(INDEX_KEY_FIELD_SEPARATOR)
4416
- );
4417
4671
 
4418
4672
  // src/resolver/index.ts
4419
4673
  var createResolver = (args) => {
4420
4674
  return new Resolver(args);
4421
4675
  };
4422
4676
  var resolveFieldData = async ({ namespace, ...field }, rawData, accumulator, tinaSchema, config, isAudit) => {
4423
- var _a, _b;
4424
4677
  if (!rawData) {
4425
4678
  return void 0;
4426
4679
  }
@@ -4447,7 +4700,8 @@ var resolveFieldData = async ({ namespace, ...field }, rawData, accumulator, tin
4447
4700
  case "password":
4448
4701
  accumulator[field.name] = {
4449
4702
  value: void 0,
4450
- passwordChangeRequired: (_a = value["passwordChangeRequired"]) != null ? _a : false
4703
+ // never resolve the password hash
4704
+ passwordChangeRequired: value["passwordChangeRequired"] ?? false
4451
4705
  };
4452
4706
  break;
4453
4707
  case "image":
@@ -4463,11 +4717,11 @@ var resolveFieldData = async ({ namespace, ...field }, rawData, accumulator, tin
4463
4717
  field,
4464
4718
  (value2) => resolveMediaRelativeToCloud(value2, config, tinaSchema.schema)
4465
4719
  );
4466
- if (((_b = tree == null ? void 0 : tree.children[0]) == null ? void 0 : _b.type) === "invalid_markdown") {
4720
+ if (tree?.children[0]?.type === "invalid_markdown") {
4467
4721
  if (isAudit) {
4468
- const invalidNode = tree == null ? void 0 : tree.children[0];
4722
+ const invalidNode = tree?.children[0];
4469
4723
  throw new import_graphql3.GraphQLError(
4470
- `${invalidNode == null ? void 0 : invalidNode.message}${invalidNode.position ? ` at line ${invalidNode.position.start.line}, column ${invalidNode.position.start.column}` : ""}`
4724
+ `${invalidNode?.message}${invalidNode.position ? ` at line ${invalidNode.position.start.line}, column ${invalidNode.position.start.column}` : ""}`
4471
4725
  );
4472
4726
  }
4473
4727
  }
@@ -4541,7 +4795,7 @@ var resolveFieldData = async ({ namespace, ...field }, rawData, accumulator, tin
4541
4795
  }
4542
4796
  return accumulator;
4543
4797
  };
4544
- var transformDocumentIntoPayload = async (fullPath, rawData, tinaSchema, config, isAudit) => {
4798
+ var transformDocumentIntoPayload = async (fullPath, rawData, tinaSchema, config, isAudit, hasReferences) => {
4545
4799
  const collection = tinaSchema.getCollection(rawData._collection);
4546
4800
  try {
4547
4801
  const template = tinaSchema.getTemplateForData({
@@ -4580,11 +4834,11 @@ var transformDocumentIntoPayload = async (fullPath, rawData, tinaSchema, config,
4580
4834
  });
4581
4835
  }
4582
4836
  const titleField = template.fields.find((x) => {
4583
- if (x.type === "string" && (x == null ? void 0 : x.isTitle)) {
4837
+ if (x.type === "string" && x?.isTitle) {
4584
4838
  return true;
4585
4839
  }
4586
4840
  });
4587
- const titleFieldName = titleField == null ? void 0 : titleField.name;
4841
+ const titleFieldName = titleField?.name;
4588
4842
  const title = data[titleFieldName || " "] || null;
4589
4843
  return {
4590
4844
  __typename: collection.fields ? NAMER.documentTypeName(collection.namespace) : NAMER.documentTypeName(template.namespace),
@@ -4595,6 +4849,7 @@ var transformDocumentIntoPayload = async (fullPath, rawData, tinaSchema, config,
4595
4849
  basename,
4596
4850
  filename,
4597
4851
  extension,
4852
+ hasReferences,
4598
4853
  path: fullPath,
4599
4854
  relativePath,
4600
4855
  breadcrumbs,
@@ -4614,6 +4869,34 @@ var transformDocumentIntoPayload = async (fullPath, rawData, tinaSchema, config,
4614
4869
  throw e;
4615
4870
  }
4616
4871
  };
4872
+ var updateObjectWithJsonPath = (obj, path7, oldValue, newValue) => {
4873
+ let updated = false;
4874
+ if (!path7.includes(".") && !path7.includes("[")) {
4875
+ if (path7 in obj && obj[path7] === oldValue) {
4876
+ obj[path7] = newValue;
4877
+ updated = true;
4878
+ }
4879
+ return { object: obj, updated };
4880
+ }
4881
+ const parentPath = path7.replace(/\.[^.\[\]]+$/, "");
4882
+ const keyToUpdate = path7.match(/[^.\[\]]+$/)[0];
4883
+ const parents = (0, import_jsonpath_plus2.JSONPath)({
4884
+ path: parentPath,
4885
+ json: obj,
4886
+ resultType: "value"
4887
+ });
4888
+ if (parents.length > 0) {
4889
+ parents.forEach((parent) => {
4890
+ if (parent && typeof parent === "object" && keyToUpdate in parent) {
4891
+ if (parent[keyToUpdate] === oldValue) {
4892
+ parent[keyToUpdate] = newValue;
4893
+ updated = true;
4894
+ }
4895
+ }
4896
+ });
4897
+ }
4898
+ return { object: obj, updated };
4899
+ };
4617
4900
  var Resolver = class {
4618
4901
  constructor(init) {
4619
4902
  this.init = init;
@@ -4621,6 +4904,7 @@ var Resolver = class {
4621
4904
  const collection = this.tinaSchema.getCollection(collectionName);
4622
4905
  const extraFields = {};
4623
4906
  return {
4907
+ // return the collection and hasDocuments to resolve documents at a lower level
4624
4908
  documents: { collection, hasDocuments },
4625
4909
  ...collection,
4626
4910
  ...extraFields
@@ -4628,7 +4912,9 @@ var Resolver = class {
4628
4912
  };
4629
4913
  this.getRaw = async (fullPath) => {
4630
4914
  if (typeof fullPath !== "string") {
4631
- throw new Error(`fullPath must be of type string for getDocument request`);
4915
+ throw new Error(
4916
+ `fullPath must be of type string for getDocument request`
4917
+ );
4632
4918
  }
4633
4919
  return this.database.get(fullPath);
4634
4920
  };
@@ -4655,22 +4941,28 @@ var Resolver = class {
4655
4941
  );
4656
4942
  }
4657
4943
  };
4658
- this.getDocument = async (fullPath) => {
4944
+ this.getDocument = async (fullPath, opts = {}) => {
4659
4945
  if (typeof fullPath !== "string") {
4660
- throw new Error(`fullPath must be of type string for getDocument request`);
4946
+ throw new Error(
4947
+ `fullPath must be of type string for getDocument request`
4948
+ );
4661
4949
  }
4662
4950
  const rawData = await this.getRaw(fullPath);
4951
+ const hasReferences = opts?.checkReferences ? await this.hasReferences(fullPath, opts.collection) : void 0;
4663
4952
  return transformDocumentIntoPayload(
4664
4953
  fullPath,
4665
4954
  rawData,
4666
4955
  this.tinaSchema,
4667
4956
  this.config,
4668
- this.isAudit
4957
+ this.isAudit,
4958
+ hasReferences
4669
4959
  );
4670
4960
  };
4671
4961
  this.deleteDocument = async (fullPath) => {
4672
4962
  if (typeof fullPath !== "string") {
4673
- throw new Error(`fullPath must be of type string for getDocument request`);
4963
+ throw new Error(
4964
+ `fullPath must be of type string for getDocument request`
4965
+ );
4674
4966
  }
4675
4967
  await this.database.delete(fullPath);
4676
4968
  };
@@ -4696,16 +4988,18 @@ var Resolver = class {
4696
4988
  return this.buildFieldMutations(
4697
4989
  item,
4698
4990
  objectTemplate,
4699
- idField && existingData && (existingData == null ? void 0 : existingData.find(
4991
+ idField && existingData && existingData?.find(
4700
4992
  (d) => d[idField.name] === item[idField.name]
4701
- ))
4993
+ )
4702
4994
  );
4703
4995
  }
4704
4996
  )
4705
4997
  );
4706
4998
  } else {
4707
4999
  return this.buildFieldMutations(
5000
+ // @ts-ignore FIXME Argument of type 'string | object' is not assignable to parameter of type '{ [fieldName: string]: string | object | (string | object)[]; }'
4708
5001
  fieldValue,
5002
+ //@ts-ignore
4709
5003
  objectTemplate,
4710
5004
  existingData
4711
5005
  );
@@ -4717,6 +5011,7 @@ var Resolver = class {
4717
5011
  fieldValue.map(async (item) => {
4718
5012
  if (typeof item === "string") {
4719
5013
  throw new Error(
5014
+ //@ts-ignore
4720
5015
  `Expected object for template value for field ${field.name}`
4721
5016
  );
4722
5017
  }
@@ -4725,16 +5020,19 @@ var Resolver = class {
4725
5020
  });
4726
5021
  const [templateName] = Object.entries(item)[0];
4727
5022
  const template = templates.find(
5023
+ //@ts-ignore
4728
5024
  (template2) => template2.name === templateName
4729
5025
  );
4730
5026
  if (!template) {
4731
5027
  throw new Error(`Expected to find template ${templateName}`);
4732
5028
  }
4733
5029
  return {
5030
+ // @ts-ignore FIXME Argument of type 'unknown' is not assignable to parameter of type '{ [fieldName: string]: string | { [key: string]: unknown; } | (string | { [key: string]: unknown; })[]; }'
4734
5031
  ...await this.buildFieldMutations(
4735
5032
  item[template.name],
4736
5033
  template
4737
5034
  ),
5035
+ //@ts-ignore
4738
5036
  _template: template.name
4739
5037
  };
4740
5038
  })
@@ -4742,6 +5040,7 @@ var Resolver = class {
4742
5040
  } else {
4743
5041
  if (typeof fieldValue === "string") {
4744
5042
  throw new Error(
5043
+ //@ts-ignore
4745
5044
  `Expected object for template value for field ${field.name}`
4746
5045
  );
4747
5046
  }
@@ -4750,16 +5049,19 @@ var Resolver = class {
4750
5049
  });
4751
5050
  const [templateName] = Object.entries(fieldValue)[0];
4752
5051
  const template = templates.find(
5052
+ //@ts-ignore
4753
5053
  (template2) => template2.name === templateName
4754
5054
  );
4755
5055
  if (!template) {
4756
5056
  throw new Error(`Expected to find template ${templateName}`);
4757
5057
  }
4758
5058
  return {
5059
+ // @ts-ignore FIXME Argument of type 'unknown' is not assignable to parameter of type '{ [fieldName: string]: string | { [key: string]: unknown; } | (string | { [key: string]: unknown; })[]; }'
4759
5060
  ...await this.buildFieldMutations(
4760
5061
  fieldValue[template.name],
4761
5062
  template
4762
5063
  ),
5064
+ //@ts-ignore
4763
5065
  _template: template.name
4764
5066
  };
4765
5067
  }
@@ -4799,6 +5101,7 @@ var Resolver = class {
4799
5101
  return this.getDocument(realPath);
4800
5102
  }
4801
5103
  const params = await this.buildObjectMutations(
5104
+ // @ts-ignore
4802
5105
  args.params[collection.name],
4803
5106
  collection
4804
5107
  );
@@ -4813,7 +5116,7 @@ var Resolver = class {
4813
5116
  isCollectionSpecific
4814
5117
  }) => {
4815
5118
  const doc = await this.getDocument(realPath);
4816
- const oldDoc = this.resolveLegacyValues((doc == null ? void 0 : doc._rawData) || {}, collection);
5119
+ const oldDoc = this.resolveLegacyValues(doc?._rawData || {}, collection);
4817
5120
  if (isAddPendingDocument === true) {
4818
5121
  const templateInfo = this.tinaSchema.getTemplatesForCollectable(collection);
4819
5122
  const params2 = this.buildParams(args);
@@ -4823,7 +5126,7 @@ var Resolver = class {
4823
5126
  const values = await this.buildFieldMutations(
4824
5127
  params2,
4825
5128
  templateInfo.template,
4826
- doc == null ? void 0 : doc._rawData
5129
+ doc?._rawData
4827
5130
  );
4828
5131
  await this.database.put(
4829
5132
  realPath,
@@ -4844,9 +5147,10 @@ var Resolver = class {
4844
5147
  const values = {
4845
5148
  ...oldDoc,
4846
5149
  ...await this.buildFieldMutations(
5150
+ // @ts-ignore FIXME: failing on unknown, which we don't need to know because it's recursive
4847
5151
  templateParams,
4848
5152
  template,
4849
- doc == null ? void 0 : doc._rawData
5153
+ doc?._rawData
4850
5154
  ),
4851
5155
  _template: lastItem(template.namespace)
4852
5156
  };
@@ -4857,17 +5161,25 @@ var Resolver = class {
4857
5161
  return this.getDocument(realPath);
4858
5162
  }
4859
5163
  const params = await this.buildObjectMutations(
5164
+ //@ts-ignore
4860
5165
  isCollectionSpecific ? args.params : args.params[collection.name],
4861
5166
  collection,
4862
- doc == null ? void 0 : doc._rawData
5167
+ doc?._rawData
5168
+ );
5169
+ await this.database.put(
5170
+ realPath,
5171
+ { ...oldDoc, ...params },
5172
+ collection.name
4863
5173
  );
4864
- await this.database.put(realPath, { ...oldDoc, ...params }, collection.name);
4865
5174
  return this.getDocument(realPath);
4866
5175
  };
5176
+ /**
5177
+ * Returns top-level fields which are not defined in the collection, so their
5178
+ * values are not eliminated from Tina when new values are saved
5179
+ */
4867
5180
  this.resolveLegacyValues = (oldDoc, collection) => {
4868
5181
  const legacyValues = {};
4869
5182
  Object.entries(oldDoc).forEach(([key, value]) => {
4870
- var _a;
4871
5183
  const reservedKeys = [
4872
5184
  "$_body",
4873
5185
  "_collection",
@@ -4880,7 +5192,7 @@ var Resolver = class {
4880
5192
  return;
4881
5193
  }
4882
5194
  if (oldDoc._template && collection.templates) {
4883
- const template = (_a = collection.templates) == null ? void 0 : _a.find(
5195
+ const template = collection.templates?.find(
4884
5196
  ({ name }) => name === oldDoc._template
4885
5197
  );
4886
5198
  if (template) {
@@ -4927,7 +5239,7 @@ var Resolver = class {
4927
5239
  (yup3) => yup3.object({ relativePath: yup3.string().required() })
4928
5240
  );
4929
5241
  const collection = await this.tinaSchema.getCollection(collectionLookup);
4930
- let realPath = import_path3.default.join(collection == null ? void 0 : collection.path, args.relativePath);
5242
+ let realPath = import_path3.default.join(collection?.path, args.relativePath);
4931
5243
  if (isFolderCreation) {
4932
5244
  realPath = `${realPath}/.gitkeep.${collection.format || "md"}`;
4933
5245
  }
@@ -4969,6 +5281,40 @@ var Resolver = class {
4969
5281
  if (isDeletion) {
4970
5282
  const doc = await this.getDocument(realPath);
4971
5283
  await this.deleteDocument(realPath);
5284
+ if (await this.hasReferences(realPath, collection)) {
5285
+ const collRefs = await this.findReferences(realPath, collection);
5286
+ for (const [collection2, docsWithRefs] of Object.entries(collRefs)) {
5287
+ for (const [pathToDocWithRef, referencePaths] of Object.entries(
5288
+ docsWithRefs
5289
+ )) {
5290
+ let refDoc = await this.getRaw(pathToDocWithRef);
5291
+ let hasUpdate = false;
5292
+ for (const path7 of referencePaths) {
5293
+ const { object: object2, updated } = updateObjectWithJsonPath(
5294
+ refDoc,
5295
+ path7,
5296
+ realPath,
5297
+ null
5298
+ );
5299
+ refDoc = object2;
5300
+ hasUpdate = updated || hasUpdate;
5301
+ }
5302
+ if (hasUpdate) {
5303
+ const collectionWithRef = this.tinaSchema.getCollectionByFullPath(pathToDocWithRef);
5304
+ if (!collectionWithRef) {
5305
+ throw new Error(
5306
+ `Unable to find collection for ${pathToDocWithRef}`
5307
+ );
5308
+ }
5309
+ await this.database.put(
5310
+ pathToDocWithRef,
5311
+ refDoc,
5312
+ collectionWithRef.name
5313
+ );
5314
+ }
5315
+ }
5316
+ }
5317
+ }
4972
5318
  return doc;
4973
5319
  }
4974
5320
  if (isUpdateName) {
@@ -4977,20 +5323,57 @@ var Resolver = class {
4977
5323
  (yup3) => yup3.object({ params: yup3.object().required() })
4978
5324
  );
4979
5325
  assertShape(
4980
- args == null ? void 0 : args.params,
5326
+ args?.params,
4981
5327
  (yup3) => yup3.object({ relativePath: yup3.string().required() })
4982
5328
  );
4983
5329
  const doc = await this.getDocument(realPath);
4984
5330
  const newRealPath = import_path3.default.join(
4985
- collection == null ? void 0 : collection.path,
5331
+ collection?.path,
4986
5332
  args.params.relativePath
4987
5333
  );
5334
+ if (newRealPath === realPath) {
5335
+ return doc;
5336
+ }
4988
5337
  await this.database.put(newRealPath, doc._rawData, collection.name);
4989
5338
  await this.deleteDocument(realPath);
5339
+ const collRefs = await this.findReferences(realPath, collection);
5340
+ for (const [collection2, docsWithRefs] of Object.entries(collRefs)) {
5341
+ for (const [pathToDocWithRef, referencePaths] of Object.entries(
5342
+ docsWithRefs
5343
+ )) {
5344
+ let docWithRef = await this.getRaw(pathToDocWithRef);
5345
+ let hasUpdate = false;
5346
+ for (const path7 of referencePaths) {
5347
+ const { object: object2, updated } = updateObjectWithJsonPath(
5348
+ docWithRef,
5349
+ path7,
5350
+ realPath,
5351
+ newRealPath
5352
+ );
5353
+ docWithRef = object2;
5354
+ hasUpdate = updated || hasUpdate;
5355
+ }
5356
+ if (hasUpdate) {
5357
+ const collectionWithRef = this.tinaSchema.getCollectionByFullPath(pathToDocWithRef);
5358
+ if (!collectionWithRef) {
5359
+ throw new Error(
5360
+ `Unable to find collection for ${pathToDocWithRef}`
5361
+ );
5362
+ }
5363
+ await this.database.put(
5364
+ pathToDocWithRef,
5365
+ docWithRef,
5366
+ collectionWithRef.name
5367
+ );
5368
+ }
5369
+ }
5370
+ }
4990
5371
  return this.getDocument(newRealPath);
4991
5372
  }
4992
5373
  if (alreadyExists === false) {
4993
- throw new Error(`Unable to update document, ${realPath} does not exist`);
5374
+ throw new Error(
5375
+ `Unable to update document, ${realPath} does not exist`
5376
+ );
4994
5377
  }
4995
5378
  return this.updateResolveDocument({
4996
5379
  collection,
@@ -5000,7 +5383,10 @@ var Resolver = class {
5000
5383
  isCollectionSpecific
5001
5384
  });
5002
5385
  } else {
5003
- return this.getDocument(realPath);
5386
+ return this.getDocument(realPath, {
5387
+ collection,
5388
+ checkReferences: true
5389
+ });
5004
5390
  }
5005
5391
  };
5006
5392
  this.resolveCollectionConnections = async ({ ids }) => {
@@ -5037,6 +5423,7 @@ var Resolver = class {
5037
5423
  },
5038
5424
  collection: referencedCollection,
5039
5425
  hydrator: (path7) => path7
5426
+ // just return the path
5040
5427
  }
5041
5428
  );
5042
5429
  const { edges } = resolvedCollectionConnection;
@@ -5104,8 +5491,83 @@ var Resolver = class {
5104
5491
  }
5105
5492
  };
5106
5493
  };
5494
+ /**
5495
+ * Checks if a document has references to it
5496
+ * @param id The id of the document to check for references
5497
+ * @param c The collection to check for references
5498
+ * @returns true if the document has references, false otherwise
5499
+ */
5500
+ this.hasReferences = async (id, c) => {
5501
+ let count = 0;
5502
+ await this.database.query(
5503
+ {
5504
+ collection: c.name,
5505
+ filterChain: makeFilterChain({
5506
+ conditions: [
5507
+ {
5508
+ filterPath: REFS_REFERENCE_FIELD,
5509
+ filterExpression: {
5510
+ _type: "string",
5511
+ _list: false,
5512
+ eq: id
5513
+ }
5514
+ }
5515
+ ]
5516
+ }),
5517
+ sort: REFS_COLLECTIONS_SORT_KEY
5518
+ },
5519
+ (refId) => {
5520
+ count++;
5521
+ return refId;
5522
+ }
5523
+ );
5524
+ if (count) {
5525
+ return true;
5526
+ }
5527
+ return false;
5528
+ };
5529
+ /**
5530
+ * Finds references to a document
5531
+ * @param id the id of the document to find references to
5532
+ * @param c the collection to find references in
5533
+ * @returns a map of references to the document
5534
+ */
5535
+ this.findReferences = async (id, c) => {
5536
+ const references = {};
5537
+ await this.database.query(
5538
+ {
5539
+ collection: c.name,
5540
+ filterChain: makeFilterChain({
5541
+ conditions: [
5542
+ {
5543
+ filterPath: REFS_REFERENCE_FIELD,
5544
+ filterExpression: {
5545
+ _type: "string",
5546
+ _list: false,
5547
+ eq: id
5548
+ }
5549
+ }
5550
+ ]
5551
+ }),
5552
+ sort: REFS_COLLECTIONS_SORT_KEY
5553
+ },
5554
+ (refId, rawItem) => {
5555
+ if (!references[c.name]) {
5556
+ references[c.name] = {};
5557
+ }
5558
+ if (!references[c.name][refId]) {
5559
+ references[c.name][refId] = [];
5560
+ }
5561
+ const referencePath = rawItem?.[REFS_PATH_FIELD];
5562
+ if (referencePath) {
5563
+ references[c.name][refId].push(referencePath);
5564
+ }
5565
+ return refId;
5566
+ }
5567
+ );
5568
+ return references;
5569
+ };
5107
5570
  this.buildFieldMutations = async (fieldParams, template, existingData) => {
5108
- var _a;
5109
5571
  const accum = {};
5110
5572
  for (const passwordField of template.fields.filter(
5111
5573
  (f) => f.type === "password"
@@ -5148,7 +5610,7 @@ var Resolver = class {
5148
5610
  accum[fieldName] = await this.buildObjectMutations(
5149
5611
  fieldValue,
5150
5612
  field,
5151
- existingData == null ? void 0 : existingData[fieldName]
5613
+ existingData?.[fieldName]
5152
5614
  );
5153
5615
  break;
5154
5616
  case "password":
@@ -5167,12 +5629,12 @@ var Resolver = class {
5167
5629
  } else {
5168
5630
  accum[fieldName] = {
5169
5631
  ...fieldValue,
5170
- value: (_a = existingData == null ? void 0 : existingData[fieldName]) == null ? void 0 : _a["value"]
5632
+ value: existingData?.[fieldName]?.["value"]
5171
5633
  };
5172
5634
  }
5173
5635
  break;
5174
5636
  case "rich-text":
5175
- accum[fieldName] = (0, import_mdx.stringifyMDX)(
5637
+ accum[fieldName] = (0, import_mdx.serializeMDX)(
5176
5638
  fieldValue,
5177
5639
  field,
5178
5640
  (fieldValue2) => resolveMediaCloudToRelative(
@@ -5191,6 +5653,27 @@ var Resolver = class {
5191
5653
  }
5192
5654
  return accum;
5193
5655
  };
5656
+ /**
5657
+ * A mutation looks nearly identical between updateDocument:
5658
+ * ```graphql
5659
+ * updateDocument(collection: $collection,relativePath: $path, params: {
5660
+ * post: {
5661
+ * title: "Hello, World"
5662
+ * }
5663
+ * })`
5664
+ * ```
5665
+ * and `updatePostDocument`:
5666
+ * ```graphql
5667
+ * updatePostDocument(relativePath: $path, params: {
5668
+ * title: "Hello, World"
5669
+ * })
5670
+ * ```
5671
+ * The problem here is that we don't know whether the payload came from `updateDocument`
5672
+ * or `updatePostDocument` (we could, but for now it's easier not to pipe those details through),
5673
+ * But we do know that when given a `args.collection` value, we can assume that
5674
+ * this was a `updateDocument` request, and thus - should grab the data
5675
+ * from the corresponding field name in the key
5676
+ */
5194
5677
  this.buildParams = (args) => {
5195
5678
  try {
5196
5679
  assertShape(
@@ -5281,9 +5764,8 @@ var resolve = async ({
5281
5764
  isAudit,
5282
5765
  ctxUser
5283
5766
  }) => {
5284
- var _a;
5285
5767
  try {
5286
- const verboseValue = verbose != null ? verbose : true;
5768
+ const verboseValue = verbose ?? true;
5287
5769
  const graphQLSchemaAst = await database.getGraphQLSchema();
5288
5770
  if (!graphQLSchemaAst) {
5289
5771
  throw new import_graphql5.GraphQLError("GraphQL schema not found");
@@ -5291,8 +5773,11 @@ var resolve = async ({
5291
5773
  const graphQLSchema = (0, import_graphql5.buildASTSchema)(graphQLSchemaAst);
5292
5774
  const tinaConfig = await database.getTinaSchema();
5293
5775
  const tinaSchema = await createSchema({
5776
+ // TODO: please update all the types to import from @tinacms/schema-tools
5777
+ // @ts-ignore
5294
5778
  schema: tinaConfig,
5295
- flags: (_a = tinaConfig == null ? void 0 : tinaConfig.meta) == null ? void 0 : _a.flags
5779
+ // @ts-ignore
5780
+ flags: tinaConfig?.meta?.flags
5296
5781
  });
5297
5782
  const resolver = createResolver({
5298
5783
  config,
@@ -5308,8 +5793,7 @@ var resolve = async ({
5308
5793
  database
5309
5794
  },
5310
5795
  typeResolver: async (source, _args, info) => {
5311
- if (source.__typename)
5312
- return source.__typename;
5796
+ if (source.__typename) return source.__typename;
5313
5797
  const namedType = (0, import_graphql5.getNamedType)(info.returnType).toString();
5314
5798
  const lookup = await database.getLookup(namedType);
5315
5799
  if (lookup.resolveType === "unionData") {
@@ -5318,7 +5802,6 @@ var resolve = async ({
5318
5802
  throw new Error(`Unable to find lookup key for ${namedType}`);
5319
5803
  },
5320
5804
  fieldResolver: async (source = {}, _args = {}, _context, info) => {
5321
- var _a2, _b, _c, _d;
5322
5805
  try {
5323
5806
  const args = JSON.parse(JSON.stringify(_args));
5324
5807
  const returnType = (0, import_graphql5.getNamedType)(info.returnType).toString();
@@ -5335,8 +5818,7 @@ var resolve = async ({
5335
5818
  );
5336
5819
  const hasDocuments2 = collectionNode2.selectionSet.selections.find(
5337
5820
  (x) => {
5338
- var _a3;
5339
- return ((_a3 = x == null ? void 0 : x.name) == null ? void 0 : _a3.value) === "documents";
5821
+ return x?.name?.value === "documents";
5340
5822
  }
5341
5823
  );
5342
5824
  return tinaSchema.getCollections().map((collection) => {
@@ -5352,8 +5834,7 @@ var resolve = async ({
5352
5834
  );
5353
5835
  const hasDocuments = collectionNode.selectionSet.selections.find(
5354
5836
  (x) => {
5355
- var _a3;
5356
- return ((_a3 = x == null ? void 0 : x.name) == null ? void 0 : _a3.value) === "documents";
5837
+ return x?.name?.value === "documents";
5357
5838
  }
5358
5839
  );
5359
5840
  return resolver.resolveCollection(
@@ -5372,7 +5853,7 @@ var resolve = async ({
5372
5853
  }
5373
5854
  }
5374
5855
  if (info.fieldName === "authenticate" || info.fieldName === "authorize") {
5375
- const sub = args.sub || (ctxUser == null ? void 0 : ctxUser.sub);
5856
+ const sub = args.sub || ctxUser?.sub;
5376
5857
  const collection = tinaSchema.getCollections().find((c) => c.isAuthCollection);
5377
5858
  if (!collection) {
5378
5859
  throw new Error("Auth collection not found");
@@ -5420,7 +5901,7 @@ var resolve = async ({
5420
5901
  return user;
5421
5902
  }
5422
5903
  if (info.fieldName === "updatePassword") {
5423
- if (!(ctxUser == null ? void 0 : ctxUser.sub)) {
5904
+ if (!ctxUser?.sub) {
5424
5905
  throw new Error("Not authorized");
5425
5906
  }
5426
5907
  if (!args.password) {
@@ -5461,11 +5942,13 @@ var resolve = async ({
5461
5942
  (0, import_lodash4.default)(
5462
5943
  params,
5463
5944
  userField.path.slice(1),
5945
+ // remove _rawData from users path
5464
5946
  users.map((u) => {
5465
5947
  if (user[idFieldName] === u[idFieldName]) {
5466
5948
  return user;
5467
5949
  }
5468
5950
  return {
5951
+ // don't overwrite other users' passwords
5469
5952
  ...u,
5470
5953
  [passwordFieldName]: {
5471
5954
  ...u[passwordFieldName],
@@ -5488,6 +5971,9 @@ var resolve = async ({
5488
5971
  }
5489
5972
  const isCreation = lookup[info.fieldName] === "create";
5490
5973
  switch (lookup.resolveType) {
5974
+ /**
5975
+ * `node(id: $id)`
5976
+ */
5491
5977
  case "nodeDocument":
5492
5978
  assertShape(
5493
5979
  args,
@@ -5498,7 +5984,7 @@ var resolve = async ({
5498
5984
  if (typeof value === "string" && value !== "") {
5499
5985
  return resolver.getDocument(value);
5500
5986
  }
5501
- if ((args == null ? void 0 : args.collection) && info.fieldName === "addPendingDocument") {
5987
+ if (args?.collection && info.fieldName === "addPendingDocument") {
5502
5988
  return resolver.resolveDocument({
5503
5989
  args: { ...args, params: {} },
5504
5990
  collection: args.collection,
@@ -5519,15 +6005,19 @@ var resolve = async ({
5519
6005
  collection: args.collection,
5520
6006
  isMutation,
5521
6007
  isCreation,
6008
+ // Right now this is the only case for deletion
5522
6009
  isDeletion: info.fieldName === "deleteDocument",
5523
6010
  isFolderCreation: info.fieldName === "createFolder",
5524
- isUpdateName: Boolean((_a2 = args == null ? void 0 : args.params) == null ? void 0 : _a2.relativePath),
6011
+ isUpdateName: Boolean(args?.params?.relativePath),
5525
6012
  isAddPendingDocument: false,
5526
6013
  isCollectionSpecific: false
5527
6014
  });
5528
6015
  return result;
5529
6016
  }
5530
6017
  return value;
6018
+ /**
6019
+ * eg `getMovieDocument.data.actors`
6020
+ */
5531
6021
  case "multiCollectionDocumentList":
5532
6022
  if (Array.isArray(value)) {
5533
6023
  return {
@@ -5537,9 +6027,17 @@ var resolve = async ({
5537
6027
  })
5538
6028
  };
5539
6029
  }
5540
- if (info.fieldName === "documents" && (value == null ? void 0 : value.collection) && (value == null ? void 0 : value.hasDocuments)) {
6030
+ if (info.fieldName === "documents" && value?.collection && value?.hasDocuments) {
5541
6031
  let filter = args.filter;
5542
- if (typeof (args == null ? void 0 : args.filter) !== "undefined" && (args == null ? void 0 : args.filter) !== null && typeof ((_b = value == null ? void 0 : value.collection) == null ? void 0 : _b.name) === "string" && Object.keys(args.filter).includes((_c = value == null ? void 0 : value.collection) == null ? void 0 : _c.name) && typeof args.filter[(_d = value == null ? void 0 : value.collection) == null ? void 0 : _d.name] !== "undefined") {
6032
+ if (
6033
+ // 1. Make sure that the filter exists
6034
+ typeof args?.filter !== "undefined" && args?.filter !== null && // 2. Make sure that the collection name exists
6035
+ // @ts-ignore
6036
+ typeof value?.collection?.name === "string" && // 3. Make sure that the collection name is in the filter and is not undefined
6037
+ // @ts-ignore
6038
+ Object.keys(args.filter).includes(value?.collection?.name) && // @ts-ignore
6039
+ typeof args.filter[value?.collection?.name] !== "undefined"
6040
+ ) {
5543
6041
  filter = args.filter[value.collection.name];
5544
6042
  }
5545
6043
  return resolver.resolveCollectionConnection({
@@ -5547,12 +6045,20 @@ var resolve = async ({
5547
6045
  ...args,
5548
6046
  filter
5549
6047
  },
6048
+ // @ts-ignore
5550
6049
  collection: value.collection
5551
6050
  });
5552
6051
  }
5553
6052
  throw new Error(
5554
6053
  `Expected an array for result of ${info.fieldName} at ${info.path}`
5555
6054
  );
6055
+ /**
6056
+ * Collections-specific getter
6057
+ * eg. `getPostDocument`/`createPostDocument`/`updatePostDocument`
6058
+ *
6059
+ * if coming from a query result
6060
+ * the field will be `node`
6061
+ */
5556
6062
  case "collectionDocument": {
5557
6063
  if (value) {
5558
6064
  return value;
@@ -5567,11 +6073,32 @@ var resolve = async ({
5567
6073
  });
5568
6074
  return result;
5569
6075
  }
6076
+ /**
6077
+ * Collections-specific list getter
6078
+ * eg. `getPageList`
6079
+ */
5570
6080
  case "collectionDocumentList":
5571
6081
  return resolver.resolveCollectionConnection({
5572
6082
  args,
5573
6083
  collection: tinaSchema.getCollection(lookup.collection)
5574
6084
  });
6085
+ /**
6086
+ * A polymorphic data set, it can be from a document's data
6087
+ * of any nested object which can be one of many shapes
6088
+ *
6089
+ * ```graphql
6090
+ * getPostDocument(relativePath: $relativePath) {
6091
+ * data {...} <- this part
6092
+ * }
6093
+ * ```
6094
+ * ```graphql
6095
+ * getBlockDocument(relativePath: $relativePath) {
6096
+ * data {
6097
+ * blocks {...} <- or this part
6098
+ * }
6099
+ * }
6100
+ * ```
6101
+ */
5575
6102
  case "unionData":
5576
6103
  if (!value) {
5577
6104
  if (args.relativePath) {
@@ -5636,8 +6163,7 @@ var TinaLevelClient = class extends import_many_level.ManyLevelGuest {
5636
6163
  this.port = port || 9e3;
5637
6164
  }
5638
6165
  openConnection() {
5639
- if (this._connected)
5640
- return;
6166
+ if (this._connected) return;
5641
6167
  const socket = (0, import_net.connect)(this.port);
5642
6168
  (0, import_readable_stream.pipeline)(socket, this.createRpcStream(), socket, () => {
5643
6169
  this._connected = false;
@@ -5647,15 +6173,15 @@ var TinaLevelClient = class extends import_many_level.ManyLevelGuest {
5647
6173
  };
5648
6174
 
5649
6175
  // src/database/index.ts
5650
- var import_node_path = __toESM(require("path"));
6176
+ var import_node_path = __toESM(require("node:path"));
5651
6177
  var import_graphql6 = require("graphql");
5652
6178
  var import_micromatch2 = __toESM(require("micromatch"));
5653
6179
  var import_js_sha12 = __toESM(require("js-sha1"));
5654
6180
  var import_lodash5 = __toESM(require("lodash.set"));
5655
6181
  var createLocalDatabase = (config) => {
5656
- const level = new TinaLevelClient(config == null ? void 0 : config.port);
6182
+ const level = new TinaLevelClient(config?.port);
5657
6183
  level.openConnection();
5658
- const fsBridge = new FilesystemBridge((config == null ? void 0 : config.rootPath) || process.cwd());
6184
+ const fsBridge = new FilesystemBridge(config?.rootPath || process.cwd());
5659
6185
  return new Database({
5660
6186
  bridge: fsBridge,
5661
6187
  ...config || {},
@@ -5728,7 +6254,7 @@ var Database = class {
5728
6254
  );
5729
6255
  }
5730
6256
  const metadata = await metadataLevel.get(`metadata_${key}`);
5731
- return metadata == null ? void 0 : metadata.value;
6257
+ return metadata?.value;
5732
6258
  };
5733
6259
  this.setMetadata = async (key, value) => {
5734
6260
  await this.initLevel();
@@ -5750,14 +6276,14 @@ var Database = class {
5750
6276
  let level = this.contentLevel;
5751
6277
  if (this.appLevel) {
5752
6278
  collection = await this.collectionForPath(filepath);
5753
- if (collection == null ? void 0 : collection.isDetached) {
6279
+ if (collection?.isDetached) {
5754
6280
  level = this.appLevel.sublevel(collection.name, SUBLEVEL_OPTIONS);
5755
6281
  }
5756
6282
  }
5757
6283
  const contentObject = await level.sublevel(
5758
6284
  CONTENT_ROOT_PREFIX,
5759
6285
  SUBLEVEL_OPTIONS
5760
- ).get((0, import_schema_tools3.normalizePath)(filepath));
6286
+ ).get((0, import_schema_tools4.normalizePath)(filepath));
5761
6287
  if (!contentObject) {
5762
6288
  throw new NotFoundError(`Unable to find record ${filepath}`);
5763
6289
  }
@@ -5781,9 +6307,10 @@ var Database = class {
5781
6307
  collection
5782
6308
  );
5783
6309
  const indexDefinitions = await this.getIndexDefinitions(this.contentLevel);
5784
- const collectionIndexDefinitions = indexDefinitions == null ? void 0 : indexDefinitions[collection.name];
5785
- const normalizedPath = (0, import_schema_tools3.normalizePath)(filepath);
5786
- if (!(collection == null ? void 0 : collection.isDetached)) {
6310
+ const collectionIndexDefinitions = indexDefinitions?.[collection.name];
6311
+ const collectionReferences = (await this.getCollectionReferences())?.[collection.name];
6312
+ const normalizedPath = (0, import_schema_tools4.normalizePath)(filepath);
6313
+ if (!collection?.isDetached) {
5787
6314
  if (this.bridge) {
5788
6315
  await this.bridge.put(normalizedPath, stringifiedFile);
5789
6316
  }
@@ -5801,7 +6328,7 @@ var Database = class {
5801
6328
  }
5802
6329
  }
5803
6330
  let level = this.contentLevel;
5804
- if (collection == null ? void 0 : collection.isDetached) {
6331
+ if (collection?.isDetached) {
5805
6332
  level = this.appLevel.sublevel(collection.name, SUBLEVEL_OPTIONS);
5806
6333
  }
5807
6334
  const folderTreeBuilder = new FolderTreeBuilder();
@@ -5810,17 +6337,26 @@ var Database = class {
5810
6337
  let delOps = [];
5811
6338
  if (!isGitKeep(normalizedPath, collection)) {
5812
6339
  putOps = [
6340
+ ...makeRefOpsForDocument(
6341
+ normalizedPath,
6342
+ collection?.name,
6343
+ collectionReferences,
6344
+ dataFields,
6345
+ "put",
6346
+ level
6347
+ ),
5813
6348
  ...makeIndexOpsForDocument(
5814
6349
  normalizedPath,
5815
- collection == null ? void 0 : collection.name,
6350
+ collection?.name,
5816
6351
  collectionIndexDefinitions,
5817
6352
  dataFields,
5818
6353
  "put",
5819
6354
  level
5820
6355
  ),
6356
+ // folder indices
5821
6357
  ...makeIndexOpsForDocument(
5822
6358
  normalizedPath,
5823
- `${collection == null ? void 0 : collection.name}_${folderKey}`,
6359
+ `${collection?.name}_${folderKey}`,
5824
6360
  collectionIndexDefinitions,
5825
6361
  dataFields,
5826
6362
  "put",
@@ -5832,17 +6368,26 @@ var Database = class {
5832
6368
  SUBLEVEL_OPTIONS
5833
6369
  ).get(normalizedPath);
5834
6370
  delOps = existingItem ? [
6371
+ ...makeRefOpsForDocument(
6372
+ normalizedPath,
6373
+ collection?.name,
6374
+ collectionReferences,
6375
+ existingItem,
6376
+ "del",
6377
+ level
6378
+ ),
5835
6379
  ...makeIndexOpsForDocument(
5836
6380
  normalizedPath,
5837
- collection == null ? void 0 : collection.name,
6381
+ collection?.name,
5838
6382
  collectionIndexDefinitions,
5839
6383
  existingItem,
5840
6384
  "del",
5841
6385
  level
5842
6386
  ),
6387
+ // folder indices
5843
6388
  ...makeIndexOpsForDocument(
5844
6389
  normalizedPath,
5845
- `${collection == null ? void 0 : collection.name}_${folderKey}`,
6390
+ `${collection?.name}_${folderKey}`,
5846
6391
  collectionIndexDefinitions,
5847
6392
  existingItem,
5848
6393
  "del",
@@ -5866,7 +6411,6 @@ var Database = class {
5866
6411
  await level.batch(ops);
5867
6412
  };
5868
6413
  this.put = async (filepath, data, collectionName) => {
5869
- var _a, _b;
5870
6414
  await this.initLevel();
5871
6415
  try {
5872
6416
  if (SYSTEM_FILES.includes(filepath)) {
@@ -5877,15 +6421,16 @@ var Database = class {
5877
6421
  const indexDefinitions = await this.getIndexDefinitions(
5878
6422
  this.contentLevel
5879
6423
  );
5880
- collectionIndexDefinitions = indexDefinitions == null ? void 0 : indexDefinitions[collectionName];
6424
+ collectionIndexDefinitions = indexDefinitions?.[collectionName];
5881
6425
  }
5882
- const normalizedPath = (0, import_schema_tools3.normalizePath)(filepath);
6426
+ const collectionReferences = (await this.getCollectionReferences())?.[collectionName];
6427
+ const normalizedPath = (0, import_schema_tools4.normalizePath)(filepath);
5883
6428
  const dataFields = await this.formatBodyOnPayload(filepath, data);
5884
6429
  const collection = await this.collectionForPath(filepath);
5885
6430
  if (!collection) {
5886
6431
  throw new import_graphql6.GraphQLError(`Unable to find collection for ${filepath}.`);
5887
6432
  }
5888
- if (((_a = collection.match) == null ? void 0 : _a.exclude) || ((_b = collection.match) == null ? void 0 : _b.include)) {
6433
+ if (collection.match?.exclude || collection.match?.include) {
5889
6434
  const matches = this.tinaSchema.getMatches({ collection });
5890
6435
  const match = import_micromatch2.default.isMatch(filepath, matches);
5891
6436
  if (!match) {
@@ -5899,7 +6444,7 @@ var Database = class {
5899
6444
  const stringifiedFile = filepath.endsWith(
5900
6445
  `.gitkeep.${collection.format || "md"}`
5901
6446
  ) ? "" : await this.stringifyFile(filepath, dataFields, collection);
5902
- if (!(collection == null ? void 0 : collection.isDetached)) {
6447
+ if (!collection?.isDetached) {
5903
6448
  if (this.bridge) {
5904
6449
  await this.bridge.put(normalizedPath, stringifiedFile);
5905
6450
  }
@@ -5921,11 +6466,19 @@ var Database = class {
5921
6466
  filepath,
5922
6467
  collection.path || ""
5923
6468
  );
5924
- const level = (collection == null ? void 0 : collection.isDetached) ? this.appLevel.sublevel(collection == null ? void 0 : collection.name, SUBLEVEL_OPTIONS) : this.contentLevel;
6469
+ const level = collection?.isDetached ? this.appLevel.sublevel(collection?.name, SUBLEVEL_OPTIONS) : this.contentLevel;
5925
6470
  let putOps = [];
5926
6471
  let delOps = [];
5927
6472
  if (!isGitKeep(normalizedPath, collection)) {
5928
6473
  putOps = [
6474
+ ...makeRefOpsForDocument(
6475
+ normalizedPath,
6476
+ collectionName,
6477
+ collectionReferences,
6478
+ dataFields,
6479
+ "put",
6480
+ level
6481
+ ),
5929
6482
  ...makeIndexOpsForDocument(
5930
6483
  normalizedPath,
5931
6484
  collectionName,
@@ -5934,9 +6487,10 @@ var Database = class {
5934
6487
  "put",
5935
6488
  level
5936
6489
  ),
6490
+ // folder indices
5937
6491
  ...makeIndexOpsForDocument(
5938
6492
  normalizedPath,
5939
- `${collection == null ? void 0 : collection.name}_${folderKey}`,
6493
+ `${collection?.name}_${folderKey}`,
5940
6494
  collectionIndexDefinitions,
5941
6495
  dataFields,
5942
6496
  "put",
@@ -5948,6 +6502,14 @@ var Database = class {
5948
6502
  SUBLEVEL_OPTIONS
5949
6503
  ).get(normalizedPath);
5950
6504
  delOps = existingItem ? [
6505
+ ...makeRefOpsForDocument(
6506
+ normalizedPath,
6507
+ collectionName,
6508
+ collectionReferences,
6509
+ existingItem,
6510
+ "del",
6511
+ level
6512
+ ),
5951
6513
  ...makeIndexOpsForDocument(
5952
6514
  normalizedPath,
5953
6515
  collectionName,
@@ -5956,9 +6518,10 @@ var Database = class {
5956
6518
  "del",
5957
6519
  level
5958
6520
  ),
6521
+ // folder indices
5959
6522
  ...makeIndexOpsForDocument(
5960
6523
  normalizedPath,
5961
- `${collection == null ? void 0 : collection.name}_${folderKey}`,
6524
+ `${collection?.name}_${folderKey}`,
5962
6525
  collectionIndexDefinitions,
5963
6526
  existingItem,
5964
6527
  "del",
@@ -6033,9 +6596,10 @@ var Database = class {
6033
6596
  aliasedData,
6034
6597
  extension,
6035
6598
  writeTemplateKey,
6599
+ //templateInfo.type === 'union',
6036
6600
  {
6037
- frontmatterFormat: collection == null ? void 0 : collection.frontmatterFormat,
6038
- frontmatterDelimiters: collection == null ? void 0 : collection.frontmatterDelimiters
6601
+ frontmatterFormat: collection?.frontmatterFormat,
6602
+ frontmatterDelimiters: collection?.frontmatterDelimiters
6039
6603
  }
6040
6604
  );
6041
6605
  };
@@ -6050,7 +6614,7 @@ var Database = class {
6050
6614
  };
6051
6615
  this.getLookup = async (returnType) => {
6052
6616
  await this.initLevel();
6053
- const lookupPath = (0, import_schema_tools3.normalizePath)(
6617
+ const lookupPath = (0, import_schema_tools4.normalizePath)(
6054
6618
  import_node_path.default.join(this.getGeneratedFolder(), `_lookup.json`)
6055
6619
  );
6056
6620
  if (!this._lookup) {
@@ -6063,7 +6627,7 @@ var Database = class {
6063
6627
  };
6064
6628
  this.getGraphQLSchema = async () => {
6065
6629
  await this.initLevel();
6066
- const graphqlPath = (0, import_schema_tools3.normalizePath)(
6630
+ const graphqlPath = (0, import_schema_tools4.normalizePath)(
6067
6631
  import_node_path.default.join(this.getGeneratedFolder(), `_graphql.json`)
6068
6632
  );
6069
6633
  return await this.contentLevel.sublevel(
@@ -6071,11 +6635,12 @@ var Database = class {
6071
6635
  SUBLEVEL_OPTIONS
6072
6636
  ).get(graphqlPath);
6073
6637
  };
6638
+ //TODO - is there a reason why the database fetches some config with "bridge.get", and some with "store.get"?
6074
6639
  this.getGraphQLSchemaFromBridge = async () => {
6075
6640
  if (!this.bridge) {
6076
6641
  throw new Error(`No bridge configured`);
6077
6642
  }
6078
- const graphqlPath = (0, import_schema_tools3.normalizePath)(
6643
+ const graphqlPath = (0, import_schema_tools4.normalizePath)(
6079
6644
  import_node_path.default.join(this.getGeneratedFolder(), `_graphql.json`)
6080
6645
  );
6081
6646
  const _graphql = await this.bridge.get(graphqlPath);
@@ -6083,7 +6648,7 @@ var Database = class {
6083
6648
  };
6084
6649
  this.getTinaSchema = async (level) => {
6085
6650
  await this.initLevel();
6086
- const schemaPath = (0, import_schema_tools3.normalizePath)(
6651
+ const schemaPath = (0, import_schema_tools4.normalizePath)(
6087
6652
  import_node_path.default.join(this.getGeneratedFolder(), `_schema.json`)
6088
6653
  );
6089
6654
  return await (level || this.contentLevel).sublevel(
@@ -6099,7 +6664,7 @@ var Database = class {
6099
6664
  const schema = existingSchema || await this.getTinaSchema(level || this.contentLevel);
6100
6665
  if (!schema) {
6101
6666
  throw new Error(
6102
- `Unable to get schema from level db: ${(0, import_schema_tools3.normalizePath)(
6667
+ `Unable to get schema from level db: ${(0, import_schema_tools4.normalizePath)(
6103
6668
  import_node_path.default.join(this.getGeneratedFolder(), `_schema.json`)
6104
6669
  )}`
6105
6670
  );
@@ -6107,6 +6672,22 @@ var Database = class {
6107
6672
  this.tinaSchema = await createSchema({ schema });
6108
6673
  return this.tinaSchema;
6109
6674
  };
6675
+ this.getCollectionReferences = async (level) => {
6676
+ if (this.collectionReferences) {
6677
+ return this.collectionReferences;
6678
+ }
6679
+ const result = {};
6680
+ const schema = await this.getSchema(level || this.contentLevel);
6681
+ const collections = schema.getCollections();
6682
+ for (const collection of collections) {
6683
+ const collectionReferences = this.tinaSchema.findReferencesFromCollection(
6684
+ collection.name
6685
+ );
6686
+ result[collection.name] = collectionReferences;
6687
+ }
6688
+ this.collectionReferences = result;
6689
+ return result;
6690
+ };
6110
6691
  this.getIndexDefinitions = async (level) => {
6111
6692
  if (!this.collectionIndexDefinitions) {
6112
6693
  await new Promise(async (resolve2, reject) => {
@@ -6116,10 +6697,53 @@ var Database = class {
6116
6697
  const collections = schema.getCollections();
6117
6698
  for (const collection of collections) {
6118
6699
  const indexDefinitions = {
6119
- [DEFAULT_COLLECTION_SORT_KEY]: { fields: [] }
6700
+ [DEFAULT_COLLECTION_SORT_KEY]: { fields: [] },
6701
+ // provide a default sort key which is the file sort
6702
+ // pseudo-index for the collection's references
6703
+ [REFS_COLLECTIONS_SORT_KEY]: {
6704
+ fields: [
6705
+ {
6706
+ name: REFS_REFERENCE_FIELD,
6707
+ type: "string",
6708
+ list: false
6709
+ },
6710
+ {
6711
+ name: REFS_PATH_FIELD,
6712
+ type: "string",
6713
+ list: false
6714
+ }
6715
+ ]
6716
+ }
6120
6717
  };
6121
- if (collection.fields) {
6122
- for (const field of collection.fields) {
6718
+ let fields = [];
6719
+ if (collection.templates) {
6720
+ const templateFieldMap = {};
6721
+ const conflictedFields = /* @__PURE__ */ new Set();
6722
+ for (const template of collection.templates) {
6723
+ for (const field of template.fields) {
6724
+ if (!templateFieldMap[field.name]) {
6725
+ templateFieldMap[field.name] = field;
6726
+ } else {
6727
+ if (templateFieldMap[field.name].type !== field.type) {
6728
+ console.warn(
6729
+ `Field ${field.name} has conflicting types in templates - skipping index`
6730
+ );
6731
+ conflictedFields.add(field.name);
6732
+ }
6733
+ }
6734
+ }
6735
+ }
6736
+ for (const conflictedField in conflictedFields) {
6737
+ delete templateFieldMap[conflictedField];
6738
+ }
6739
+ for (const field of Object.values(templateFieldMap)) {
6740
+ fields.push(field);
6741
+ }
6742
+ } else if (collection.fields) {
6743
+ fields = collection.fields;
6744
+ }
6745
+ if (fields) {
6746
+ for (const field of fields) {
6123
6747
  if (field.indexed !== void 0 && field.indexed === false || field.type === "object") {
6124
6748
  continue;
6125
6749
  }
@@ -6144,8 +6768,8 @@ var Database = class {
6144
6768
  );
6145
6769
  return {
6146
6770
  name: indexField.name,
6147
- type: field == null ? void 0 : field.type,
6148
- list: !!(field == null ? void 0 : field.list)
6771
+ type: field?.type,
6772
+ list: !!field?.list
6149
6773
  };
6150
6774
  })
6151
6775
  };
@@ -6171,7 +6795,6 @@ var Database = class {
6171
6795
  return true;
6172
6796
  };
6173
6797
  this.query = async (queryOptions, hydrator) => {
6174
- var _a;
6175
6798
  await this.initLevel();
6176
6799
  const {
6177
6800
  first,
@@ -6199,14 +6822,14 @@ var Database = class {
6199
6822
  const allIndexDefinitions = await this.getIndexDefinitions(
6200
6823
  this.contentLevel
6201
6824
  );
6202
- const indexDefinitions = allIndexDefinitions == null ? void 0 : allIndexDefinitions[collection.name];
6825
+ const indexDefinitions = allIndexDefinitions?.[collection.name];
6203
6826
  if (!indexDefinitions) {
6204
6827
  throw new Error(`No indexDefinitions for collection ${collection.name}`);
6205
6828
  }
6206
6829
  const filterChain = coerceFilterChainOperands(rawFilterChain);
6207
- const indexDefinition = sort && (indexDefinitions == null ? void 0 : indexDefinitions[sort]);
6830
+ const indexDefinition = sort && indexDefinitions?.[sort];
6208
6831
  const filterSuffixes = indexDefinition && makeFilterSuffixes(filterChain, indexDefinition);
6209
- const level = (collection == null ? void 0 : collection.isDetached) ? this.appLevel.sublevel(collection == null ? void 0 : collection.name, SUBLEVEL_OPTIONS) : this.contentLevel;
6832
+ const level = collection?.isDetached ? this.appLevel.sublevel(collection?.name, SUBLEVEL_OPTIONS) : this.contentLevel;
6210
6833
  const rootLevel = level.sublevel(
6211
6834
  CONTENT_ROOT_PREFIX,
6212
6835
  SUBLEVEL_OPTIONS
@@ -6216,17 +6839,17 @@ var Database = class {
6216
6839
  SUBLEVEL_OPTIONS
6217
6840
  ).sublevel(sort, SUBLEVEL_OPTIONS) : rootLevel;
6218
6841
  if (!query.gt && !query.gte) {
6219
- query.gte = (filterSuffixes == null ? void 0 : filterSuffixes.left) ? filterSuffixes.left : "";
6842
+ query.gte = filterSuffixes?.left ? filterSuffixes.left : "";
6220
6843
  }
6221
6844
  if (!query.lt && !query.lte) {
6222
- query.lte = (filterSuffixes == null ? void 0 : filterSuffixes.right) ? `${filterSuffixes.right}\uFFFF` : "\uFFFF";
6845
+ query.lte = filterSuffixes?.right ? `${filterSuffixes.right}\uFFFF` : "\uFFFF";
6223
6846
  }
6224
6847
  let edges = [];
6225
6848
  let startKey = "";
6226
6849
  let endKey = "";
6227
6850
  let hasPreviousPage = false;
6228
6851
  let hasNextPage = false;
6229
- const fieldsPattern = ((_a = indexDefinition == null ? void 0 : indexDefinition.fields) == null ? void 0 : _a.length) ? `${indexDefinition.fields.map((p) => `(?<${p.name}>.+)${INDEX_KEY_FIELD_SEPARATOR}`).join("")}` : "";
6852
+ const fieldsPattern = indexDefinition?.fields?.length ? `${indexDefinition.fields.map((p) => `(?<${p.name}>.+)${INDEX_KEY_FIELD_SEPARATOR}`).join("")}` : "";
6230
6853
  const valuesRegex = indexDefinition ? new RegExp(`^${fieldsPattern}(?<_filepath_>.+)`) : new RegExp(`^(?<_filepath_>.+)`);
6231
6854
  const itemFilter = makeFilter({ filterChain });
6232
6855
  const iterator = sublevel.iterator(query);
@@ -6268,29 +6891,36 @@ var Database = class {
6268
6891
  }
6269
6892
  startKey = startKey || key || "";
6270
6893
  endKey = key || "";
6271
- edges = [...edges, { cursor: key, path: filepath }];
6894
+ edges = [...edges, { cursor: key, path: filepath, value: itemRecord }];
6272
6895
  }
6273
6896
  return {
6274
- edges: await sequential(edges, async (edge) => {
6275
- try {
6276
- const node = await hydrator(edge.path);
6277
- return {
6278
- node,
6279
- cursor: btoa(edge.cursor)
6280
- };
6281
- } catch (error) {
6282
- console.log(error);
6283
- if (error instanceof Error && (!edge.path.includes(".tina/__generated__/_graphql.json") || !edge.path.includes("tina/__generated__/_graphql.json"))) {
6284
- throw new TinaQueryError({
6285
- originalError: error,
6286
- file: edge.path,
6287
- collection: collection.name,
6288
- stack: error.stack
6289
- });
6897
+ edges: await sequential(
6898
+ edges,
6899
+ async ({
6900
+ cursor,
6901
+ path: path7,
6902
+ value
6903
+ }) => {
6904
+ try {
6905
+ const node = await hydrator(path7, value);
6906
+ return {
6907
+ node,
6908
+ cursor: btoa(cursor)
6909
+ };
6910
+ } catch (error) {
6911
+ console.log(error);
6912
+ if (error instanceof Error && (!path7.includes(".tina/__generated__/_graphql.json") || !path7.includes("tina/__generated__/_graphql.json"))) {
6913
+ throw new TinaQueryError({
6914
+ originalError: error,
6915
+ file: path7,
6916
+ collection: collection.name,
6917
+ stack: error.stack
6918
+ });
6919
+ }
6920
+ throw error;
6290
6921
  }
6291
- throw error;
6292
6922
  }
6293
- }),
6923
+ ),
6294
6924
  pageInfo: {
6295
6925
  hasPreviousPage,
6296
6926
  hasNextPage,
@@ -6315,7 +6945,7 @@ var Database = class {
6315
6945
  try {
6316
6946
  lookup = lookupFromLockFile || JSON.parse(
6317
6947
  await this.bridge.get(
6318
- (0, import_schema_tools3.normalizePath)(
6948
+ (0, import_schema_tools4.normalizePath)(
6319
6949
  import_node_path.default.join(this.getGeneratedFolder(), "_lookup.json")
6320
6950
  )
6321
6951
  )
@@ -6340,15 +6970,15 @@ var Database = class {
6340
6970
  }
6341
6971
  const contentRootLevel = nextLevel.sublevel(CONTENT_ROOT_PREFIX, SUBLEVEL_OPTIONS);
6342
6972
  await contentRootLevel.put(
6343
- (0, import_schema_tools3.normalizePath)(import_node_path.default.join(this.getGeneratedFolder(), "_graphql.json")),
6973
+ (0, import_schema_tools4.normalizePath)(import_node_path.default.join(this.getGeneratedFolder(), "_graphql.json")),
6344
6974
  graphQLSchema
6345
6975
  );
6346
6976
  await contentRootLevel.put(
6347
- (0, import_schema_tools3.normalizePath)(import_node_path.default.join(this.getGeneratedFolder(), "_schema.json")),
6977
+ (0, import_schema_tools4.normalizePath)(import_node_path.default.join(this.getGeneratedFolder(), "_schema.json")),
6348
6978
  tinaSchema.schema
6349
6979
  );
6350
6980
  await contentRootLevel.put(
6351
- (0, import_schema_tools3.normalizePath)(import_node_path.default.join(this.getGeneratedFolder(), "_lookup.json")),
6981
+ (0, import_schema_tools4.normalizePath)(import_node_path.default.join(this.getGeneratedFolder(), "_lookup.json")),
6352
6982
  lookup
6353
6983
  );
6354
6984
  const result = await this._indexAllContent(
@@ -6414,13 +7044,14 @@ var Database = class {
6414
7044
  documentPaths,
6415
7045
  async (collection, documentPaths2) => {
6416
7046
  if (collection && !collection.isDetached) {
6417
- await _indexContent(
6418
- this,
6419
- this.contentLevel,
6420
- documentPaths2,
7047
+ await _indexContent({
7048
+ database: this,
7049
+ level: this.contentLevel,
7050
+ documentPaths: documentPaths2,
6421
7051
  enqueueOps,
6422
- collection
6423
- );
7052
+ collection,
7053
+ isPartialReindex: true
7054
+ });
6424
7055
  }
6425
7056
  }
6426
7057
  );
@@ -6436,17 +7067,18 @@ var Database = class {
6436
7067
  throw new Error(`No collection found for path: ${filepath}`);
6437
7068
  }
6438
7069
  const indexDefinitions = await this.getIndexDefinitions(this.contentLevel);
6439
- const collectionIndexDefinitions = indexDefinitions == null ? void 0 : indexDefinitions[collection.name];
7070
+ const collectionReferences = (await this.getCollectionReferences())?.[collection.name];
7071
+ const collectionIndexDefinitions = indexDefinitions?.[collection.name];
6440
7072
  let level = this.contentLevel;
6441
- if (collection == null ? void 0 : collection.isDetached) {
6442
- level = this.appLevel.sublevel(collection == null ? void 0 : collection.name, SUBLEVEL_OPTIONS);
7073
+ if (collection?.isDetached) {
7074
+ level = this.appLevel.sublevel(collection?.name, SUBLEVEL_OPTIONS);
6443
7075
  }
6444
- const itemKey = (0, import_schema_tools3.normalizePath)(filepath);
7076
+ const normalizedPath = (0, import_schema_tools4.normalizePath)(filepath);
6445
7077
  const rootSublevel = level.sublevel(
6446
7078
  CONTENT_ROOT_PREFIX,
6447
7079
  SUBLEVEL_OPTIONS
6448
7080
  );
6449
- const item = await rootSublevel.get(itemKey);
7081
+ const item = await rootSublevel.get(normalizedPath);
6450
7082
  if (item) {
6451
7083
  const folderTreeBuilder = new FolderTreeBuilder();
6452
7084
  const folderKey = folderTreeBuilder.update(
@@ -6454,16 +7086,25 @@ var Database = class {
6454
7086
  collection.path || ""
6455
7087
  );
6456
7088
  await this.contentLevel.batch([
7089
+ ...makeRefOpsForDocument(
7090
+ normalizedPath,
7091
+ collection.name,
7092
+ collectionReferences,
7093
+ item,
7094
+ "del",
7095
+ level
7096
+ ),
6457
7097
  ...makeIndexOpsForDocument(
6458
- filepath,
7098
+ normalizedPath,
6459
7099
  collection.name,
6460
7100
  collectionIndexDefinitions,
6461
7101
  item,
6462
7102
  "del",
6463
7103
  level
6464
7104
  ),
7105
+ // folder indices
6465
7106
  ...makeIndexOpsForDocument(
6466
- filepath,
7107
+ normalizedPath,
6467
7108
  `${collection.name}_${folderKey}`,
6468
7109
  collectionIndexDefinitions,
6469
7110
  item,
@@ -6472,17 +7113,17 @@ var Database = class {
6472
7113
  ),
6473
7114
  {
6474
7115
  type: "del",
6475
- key: itemKey,
7116
+ key: normalizedPath,
6476
7117
  sublevel: rootSublevel
6477
7118
  }
6478
7119
  ]);
6479
7120
  }
6480
- if (!(collection == null ? void 0 : collection.isDetached)) {
7121
+ if (!collection?.isDetached) {
6481
7122
  if (this.bridge) {
6482
- await this.bridge.delete((0, import_schema_tools3.normalizePath)(filepath));
7123
+ await this.bridge.delete(normalizedPath);
6483
7124
  }
6484
7125
  try {
6485
- await this.onDelete((0, import_schema_tools3.normalizePath)(filepath));
7126
+ await this.onDelete(normalizedPath);
6486
7127
  } catch (e) {
6487
7128
  throw new import_graphql6.GraphQLError(
6488
7129
  `Error running onDelete hook for ${filepath}: ${e}`,
@@ -6517,20 +7158,26 @@ var Database = class {
6517
7158
  );
6518
7159
  const doc = await level2.keys({ limit: 1 }).next();
6519
7160
  if (!doc) {
6520
- await _indexContent(
6521
- this,
6522
- level2,
6523
- contentPaths,
7161
+ await _indexContent({
7162
+ database: this,
7163
+ level: level2,
7164
+ documentPaths: contentPaths,
6524
7165
  enqueueOps,
6525
7166
  collection,
6526
- userFields.map((field) => [
7167
+ passwordFields: userFields.map((field) => [
6527
7168
  ...field.path,
6528
7169
  field.passwordFieldName
6529
7170
  ])
6530
- );
7171
+ });
6531
7172
  }
6532
7173
  } else {
6533
- await _indexContent(this, level, contentPaths, enqueueOps, collection);
7174
+ await _indexContent({
7175
+ database: this,
7176
+ level,
7177
+ documentPaths: contentPaths,
7178
+ enqueueOps,
7179
+ collection
7180
+ });
6534
7181
  }
6535
7182
  }
6536
7183
  );
@@ -6566,7 +7213,7 @@ var Database = class {
6566
7213
  );
6567
7214
  }
6568
7215
  const metadata = await metadataLevel.get("metadata");
6569
- return metadata == null ? void 0 : metadata.version;
7216
+ return metadata?.version;
6570
7217
  }
6571
7218
  async initLevel() {
6572
7219
  if (this.contentLevel) {
@@ -6616,6 +7263,9 @@ var Database = class {
6616
7263
  info: templateInfo
6617
7264
  };
6618
7265
  }
7266
+ /**
7267
+ * Clears the internal cache of the tinaSchema and the lookup file. This allows the state to be reset
7268
+ */
6619
7269
  clearCache() {
6620
7270
  this.tinaSchema = null;
6621
7271
  this._lookup = null;
@@ -6649,7 +7299,7 @@ var hashPasswordVisitor = async (node, path7) => {
6649
7299
  };
6650
7300
  var visitNodes = async (node, path7, callback) => {
6651
7301
  const [currentLevel, ...remainingLevels] = path7;
6652
- if (!(remainingLevels == null ? void 0 : remainingLevels.length)) {
7302
+ if (!remainingLevels?.length) {
6653
7303
  return callback(node, path7);
6654
7304
  }
6655
7305
  if (Array.isArray(node[currentLevel])) {
@@ -6665,18 +7315,27 @@ var hashPasswordValues = async (data, passwordFields) => Promise.all(
6665
7315
  async (passwordField) => visitNodes(data, passwordField, hashPasswordVisitor)
6666
7316
  )
6667
7317
  );
6668
- var isGitKeep = (filepath, collection) => filepath.endsWith(`.gitkeep.${(collection == null ? void 0 : collection.format) || "md"}`);
6669
- var _indexContent = async (database, level, documentPaths, enqueueOps, collection, passwordFields) => {
7318
+ var isGitKeep = (filepath, collection) => filepath.endsWith(`.gitkeep.${collection?.format || "md"}`);
7319
+ var _indexContent = async ({
7320
+ database,
7321
+ level,
7322
+ documentPaths,
7323
+ enqueueOps,
7324
+ collection,
7325
+ passwordFields,
7326
+ isPartialReindex
7327
+ }) => {
6670
7328
  let collectionIndexDefinitions;
6671
7329
  let collectionPath;
6672
7330
  if (collection) {
6673
7331
  const indexDefinitions = await database.getIndexDefinitions(level);
6674
- collectionIndexDefinitions = indexDefinitions == null ? void 0 : indexDefinitions[collection.name];
7332
+ collectionIndexDefinitions = indexDefinitions?.[collection.name];
6675
7333
  if (!collectionIndexDefinitions) {
6676
7334
  throw new Error(`No indexDefinitions for collection ${collection.name}`);
6677
7335
  }
6678
7336
  collectionPath = collection.path;
6679
7337
  }
7338
+ const collectionReferences = (await database.getCollectionReferences())?.[collection?.name];
6680
7339
  const tinaSchema = await database.getSchema();
6681
7340
  let templateInfo = null;
6682
7341
  if (collection) {
@@ -6694,27 +7353,77 @@ var _indexContent = async (database, level, documentPaths, enqueueOps, collectio
6694
7353
  if (!aliasedData) {
6695
7354
  return;
6696
7355
  }
6697
- if (passwordFields == null ? void 0 : passwordFields.length) {
7356
+ if (passwordFields?.length) {
6698
7357
  await hashPasswordValues(aliasedData, passwordFields);
6699
7358
  }
6700
- const normalizedPath = (0, import_schema_tools3.normalizePath)(filepath);
7359
+ const normalizedPath = (0, import_schema_tools4.normalizePath)(filepath);
7360
+ const rootSublevel = level.sublevel(
7361
+ CONTENT_ROOT_PREFIX,
7362
+ SUBLEVEL_OPTIONS
7363
+ );
6701
7364
  const folderKey = folderTreeBuilder.update(
6702
7365
  normalizedPath,
6703
7366
  collectionPath || ""
6704
7367
  );
7368
+ if (isPartialReindex) {
7369
+ const item = await rootSublevel.get(normalizedPath);
7370
+ if (item) {
7371
+ await database.contentLevel.batch([
7372
+ ...makeRefOpsForDocument(
7373
+ normalizedPath,
7374
+ collection?.name,
7375
+ collectionReferences,
7376
+ item,
7377
+ "del",
7378
+ level
7379
+ ),
7380
+ ...makeIndexOpsForDocument(
7381
+ normalizedPath,
7382
+ collection.name,
7383
+ collectionIndexDefinitions,
7384
+ item,
7385
+ "del",
7386
+ level
7387
+ ),
7388
+ // folder indices
7389
+ ...makeIndexOpsForDocument(
7390
+ normalizedPath,
7391
+ `${collection.name}_${folderKey}`,
7392
+ collectionIndexDefinitions,
7393
+ item,
7394
+ "del",
7395
+ level
7396
+ ),
7397
+ {
7398
+ type: "del",
7399
+ key: normalizedPath,
7400
+ sublevel: rootSublevel
7401
+ }
7402
+ ]);
7403
+ }
7404
+ }
6705
7405
  if (!isGitKeep(filepath, collection)) {
6706
7406
  await enqueueOps([
7407
+ ...makeRefOpsForDocument(
7408
+ normalizedPath,
7409
+ collection?.name,
7410
+ collectionReferences,
7411
+ aliasedData,
7412
+ "put",
7413
+ level
7414
+ ),
6707
7415
  ...makeIndexOpsForDocument(
6708
7416
  normalizedPath,
6709
- collection == null ? void 0 : collection.name,
7417
+ collection?.name,
6710
7418
  collectionIndexDefinitions,
6711
7419
  aliasedData,
6712
7420
  "put",
6713
7421
  level
6714
7422
  ),
7423
+ // folder indexes
6715
7424
  ...makeIndexOpsForDocument(
6716
7425
  normalizedPath,
6717
- `${collection == null ? void 0 : collection.name}_${folderKey}`,
7426
+ `${collection?.name}_${folderKey}`,
6718
7427
  collectionIndexDefinitions,
6719
7428
  aliasedData,
6720
7429
  "put",
@@ -6735,7 +7444,7 @@ var _indexContent = async (database, level, documentPaths, enqueueOps, collectio
6735
7444
  throw new TinaFetchError(`Unable to seed ${filepath}`, {
6736
7445
  originalError: error,
6737
7446
  file: filepath,
6738
- collection: collection == null ? void 0 : collection.name,
7447
+ collection: collection?.name,
6739
7448
  stack: error.stack
6740
7449
  });
6741
7450
  }
@@ -6761,11 +7470,12 @@ var _deleteIndexContent = async (database, documentPaths, enqueueOps, collection
6761
7470
  const indexDefinitions = await database.getIndexDefinitions(
6762
7471
  database.contentLevel
6763
7472
  );
6764
- collectionIndexDefinitions = indexDefinitions == null ? void 0 : indexDefinitions[collection.name];
7473
+ collectionIndexDefinitions = indexDefinitions?.[collection.name];
6765
7474
  if (!collectionIndexDefinitions) {
6766
7475
  throw new Error(`No indexDefinitions for collection ${collection.name}`);
6767
7476
  }
6768
7477
  }
7478
+ const collectionReferences = (await database.getCollectionReferences())?.[collection?.name];
6769
7479
  const tinaSchema = await database.getSchema();
6770
7480
  let templateInfo = null;
6771
7481
  if (collection) {
@@ -6777,18 +7487,26 @@ var _deleteIndexContent = async (database, documentPaths, enqueueOps, collection
6777
7487
  );
6778
7488
  const folderTreeBuilder = new FolderTreeBuilder();
6779
7489
  await sequential(documentPaths, async (filepath) => {
6780
- const itemKey = (0, import_schema_tools3.normalizePath)(filepath);
7490
+ const itemKey = (0, import_schema_tools4.normalizePath)(filepath);
6781
7491
  const item = await rootLevel.get(itemKey);
6782
7492
  if (item) {
6783
7493
  const folderKey = folderTreeBuilder.update(
6784
7494
  itemKey,
6785
- (collection == null ? void 0 : collection.path) || ""
7495
+ collection?.path || ""
6786
7496
  );
6787
7497
  const aliasedData = templateInfo ? replaceNameOverrides(
6788
7498
  getTemplateForFile(templateInfo, item),
6789
7499
  item
6790
7500
  ) : item;
6791
7501
  await enqueueOps([
7502
+ ...makeRefOpsForDocument(
7503
+ itemKey,
7504
+ collection?.name,
7505
+ collectionReferences,
7506
+ aliasedData,
7507
+ "del",
7508
+ database.contentLevel
7509
+ ),
6792
7510
  ...makeIndexOpsForDocument(
6793
7511
  itemKey,
6794
7512
  collection.name,
@@ -6797,9 +7515,10 @@ var _deleteIndexContent = async (database, documentPaths, enqueueOps, collection
6797
7515
  "del",
6798
7516
  database.contentLevel
6799
7517
  ),
7518
+ // folder indexes
6800
7519
  ...makeIndexOpsForDocument(
6801
7520
  itemKey,
6802
- `${collection == null ? void 0 : collection.name}_${folderKey}`,
7521
+ `${collection?.name}_${folderKey}`,
6803
7522
  collectionIndexDefinitions,
6804
7523
  aliasedData,
6805
7524
  "del",
@@ -6863,14 +7582,14 @@ var getChangedFiles = async ({
6863
7582
  const rootDir = await findGitRoot(dir);
6864
7583
  let pathPrefix = "";
6865
7584
  if (rootDir !== dir) {
6866
- pathPrefix = (0, import_schema_tools3.normalizePath)(dir.substring(rootDir.length + 1));
7585
+ pathPrefix = (0, import_schema_tools4.normalizePath)(dir.substring(rootDir.length + 1));
6867
7586
  }
6868
7587
  await import_isomorphic_git.default.walk({
6869
7588
  fs: fs4,
6870
7589
  dir: rootDir,
6871
7590
  trees: [import_isomorphic_git.default.TREE({ ref: from }), import_isomorphic_git.default.TREE({ ref: to })],
6872
7591
  map: async function(filename, [A, B]) {
6873
- const relativePath = (0, import_schema_tools3.normalizePath)(filename).substring(pathPrefix.length);
7592
+ const relativePath = (0, import_schema_tools4.normalizePath)(filename).substring(pathPrefix.length);
6874
7593
  let matches = false;
6875
7594
  for (const [key, matcher] of Object.entries(pathFilter)) {
6876
7595
  if (relativePath.startsWith(key)) {
@@ -6884,12 +7603,12 @@ var getChangedFiles = async ({
6884
7603
  }
6885
7604
  }
6886
7605
  }
6887
- if (await (B == null ? void 0 : B.type()) === "tree") {
7606
+ if (await B?.type() === "tree") {
6888
7607
  return;
6889
7608
  }
6890
7609
  if (matches) {
6891
- const oidA = await (A == null ? void 0 : A.oid());
6892
- const oidB = await (B == null ? void 0 : B.oid());
7610
+ const oidA = await A?.oid();
7611
+ const oidB = await B?.oid();
6893
7612
  if (oidA !== oidB) {
6894
7613
  if (oidA === void 0) {
6895
7614
  results.added.push(relativePath);
@@ -6917,8 +7636,8 @@ var import_path5 = __toESM(require("path"));
6917
7636
  var import_normalize_path = __toESM(require("normalize-path"));
6918
7637
  var FilesystemBridge = class {
6919
7638
  constructor(rootPath, outputPath) {
6920
- this.rootPath = rootPath || "";
6921
- this.outputPath = outputPath || rootPath;
7639
+ this.rootPath = import_path5.default.resolve(rootPath);
7640
+ this.outputPath = outputPath ? import_path5.default.resolve(outputPath) : this.rootPath;
6922
7641
  }
6923
7642
  async glob(pattern, extension) {
6924
7643
  const basePath = import_path5.default.join(this.outputPath, ...pattern.split("/"));
@@ -6930,19 +7649,19 @@ var FilesystemBridge = class {
6930
7649
  }
6931
7650
  );
6932
7651
  const posixRootPath = (0, import_normalize_path.default)(this.outputPath);
6933
- return items.map((item) => {
6934
- return item.replace(posixRootPath, "").replace(/^\/|\/$/g, "");
6935
- });
7652
+ return items.map(
7653
+ (item) => item.substring(posixRootPath.length).replace(/^\/|\/$/g, "")
7654
+ );
6936
7655
  }
6937
7656
  async delete(filepath) {
6938
7657
  await import_fs_extra2.default.remove(import_path5.default.join(this.outputPath, filepath));
6939
7658
  }
6940
7659
  async get(filepath) {
6941
- return import_fs_extra2.default.readFileSync(import_path5.default.join(this.outputPath, filepath)).toString();
7660
+ return (await import_fs_extra2.default.readFile(import_path5.default.join(this.outputPath, filepath))).toString();
6942
7661
  }
6943
7662
  async put(filepath, data, basePathOverride) {
6944
7663
  const basePath = basePathOverride || this.outputPath;
6945
- await import_fs_extra2.default.outputFileSync(import_path5.default.join(basePath, filepath), data);
7664
+ await import_fs_extra2.default.outputFile(import_path5.default.join(basePath, filepath), data);
6946
7665
  }
6947
7666
  };
6948
7667
  var AuditFileSystemBridge = class extends FilesystemBridge {
@@ -7012,17 +7731,26 @@ var IsomorphicBridge = class {
7012
7731
  getAuthor() {
7013
7732
  return {
7014
7733
  ...this.author,
7015
- timestamp: Math.round(new Date().getTime() / 1e3),
7734
+ timestamp: Math.round((/* @__PURE__ */ new Date()).getTime() / 1e3),
7016
7735
  timezoneOffset: 0
7017
7736
  };
7018
7737
  }
7019
7738
  getCommitter() {
7020
7739
  return {
7021
7740
  ...this.committer,
7022
- timestamp: Math.round(new Date().getTime() / 1e3),
7741
+ timestamp: Math.round((/* @__PURE__ */ new Date()).getTime() / 1e3),
7023
7742
  timezoneOffset: 0
7024
7743
  };
7025
7744
  }
7745
+ /**
7746
+ * Recursively populate paths matching `pattern` for the given `entry`
7747
+ *
7748
+ * @param pattern - pattern to filter paths by
7749
+ * @param entry - TreeEntry to start building list from
7750
+ * @param path - base path
7751
+ * @param results
7752
+ * @private
7753
+ */
7026
7754
  async listEntries({
7027
7755
  pattern,
7028
7756
  entry,
@@ -7055,6 +7783,15 @@ var IsomorphicBridge = class {
7055
7783
  });
7056
7784
  }
7057
7785
  }
7786
+ /**
7787
+ * For the specified path, returns an object with an array containing the parts of the path (pathParts)
7788
+ * and an array containing the WalkerEntry objects for the path parts (pathEntries). Any null elements in the
7789
+ * pathEntries are placeholders for non-existent entries.
7790
+ *
7791
+ * @param path - path being resolved
7792
+ * @param ref - ref to resolve path entries for
7793
+ * @private
7794
+ */
7058
7795
  async resolvePathEntries(path7, ref) {
7059
7796
  let pathParts = path7.split("/");
7060
7797
  const result = await import_isomorphic_git2.default.walk({
@@ -7085,6 +7822,17 @@ var IsomorphicBridge = class {
7085
7822
  }
7086
7823
  return { pathParts, pathEntries };
7087
7824
  }
7825
+ /**
7826
+ * Updates tree entry and associated parent tree entries
7827
+ *
7828
+ * @param existingOid - the existing OID
7829
+ * @param updatedOid - the updated OID
7830
+ * @param path - the path of the entry being updated
7831
+ * @param type - the type of the entry being updated (blob or tree)
7832
+ * @param pathEntries - parent path entries
7833
+ * @param pathParts - parent path parts
7834
+ * @private
7835
+ */
7088
7836
  async updateTreeHierarchy(existingOid, updatedOid, path7, type, pathEntries, pathParts) {
7089
7837
  const lastIdx = pathEntries.length - 1;
7090
7838
  const parentEntry = pathEntries[lastIdx];
@@ -7140,6 +7888,13 @@ var IsomorphicBridge = class {
7140
7888
  );
7141
7889
  }
7142
7890
  }
7891
+ /**
7892
+ * Creates a commit for the specified tree and updates the specified ref to point to the commit
7893
+ *
7894
+ * @param treeSha - sha of the new tree
7895
+ * @param ref - the ref that should be updated
7896
+ * @private
7897
+ */
7143
7898
  async commitTree(treeSha, ref) {
7144
7899
  const commitSha = await import_isomorphic_git2.default.writeCommit({
7145
7900
  ...this.isomorphicConfig,
@@ -7152,6 +7907,7 @@ var IsomorphicBridge = class {
7152
7907
  })
7153
7908
  ],
7154
7909
  message: this.commitMessage,
7910
+ // TODO these should be configurable
7155
7911
  author: this.getAuthor(),
7156
7912
  committer: this.getCommitter()
7157
7913
  }
@@ -7390,5 +8146,5 @@ var buildSchema = async (config, flags) => {
7390
8146
  transformDocument,
7391
8147
  transformDocumentIntoPayload
7392
8148
  });
7393
- //! Replaces _.flattenDeep()
7394
8149
  //! Replaces _.get()
8150
+ //! Replaces _.flattenDeep()