@uniformdev/canvas 19.79.0 → 19.79.1-alpha.7

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.esm.js CHANGED
@@ -476,6 +476,7 @@ var CanvasClient = class extends ApiClient {
476
476
  }
477
477
  super(options);
478
478
  this.edgeApiHost = (_a = options.edgeApiHost) != null ? _a : "https://uniform.global";
479
+ this.edgeApiRequestInit = options.disableSWR ? { headers: { "x-disable-swr": "true" } } : void 0;
479
480
  }
480
481
  /** Fetches lists of Canvas compositions, optionally by type */
481
482
  async getCompositionList(params = {}) {
@@ -491,7 +492,7 @@ var CanvasClient = class extends ApiClient {
491
492
  ...params.diagnostics ? { diagnostics: "true" } : {}
492
493
  };
493
494
  const edgeUrl = this.createUrl("/api/v1/compositions", edgeParams, this.edgeApiHost);
494
- return this.apiClient(edgeUrl);
495
+ return this.apiClient(edgeUrl, this.edgeApiRequestInit);
495
496
  }
496
497
  getCompositionByNodePath(options) {
497
498
  return this.getOneComposition(options);
@@ -531,7 +532,7 @@ var CanvasClient = class extends ApiClient {
531
532
  ...diagnostics ? { diagnostics: "true" } : {}
532
533
  };
533
534
  const edgeUrl = this.createUrl("/api/v1/composition", edgeParams, this.edgeApiHost);
534
- return this.apiClient(edgeUrl);
535
+ return this.apiClient(edgeUrl, this.edgeApiRequestInit);
535
536
  }
536
537
  /** Updates or creates a Canvas component definition */
537
538
  async updateComposition(body) {
@@ -634,13 +635,15 @@ var unstable_CompositionRelationshipClient = class extends ApiClient3 {
634
635
  super(options);
635
636
  this.getDefinitionsRelationships = async ({
636
637
  definitionIds,
637
- withCompositions
638
+ withCompositions,
639
+ entityType = "composition"
638
640
  }) => {
639
641
  const url = this.createUrl(COMPOSITION_RELATIONSHIP_URL, {
640
642
  type: "definition",
641
643
  projectId: this._options.projectId,
642
644
  definitionIds: definitionIds.join(","),
643
- withCompositions
645
+ withCompositions,
646
+ entityType
644
647
  });
645
648
  return this.apiClient(url);
646
649
  };
@@ -706,8 +709,15 @@ var _ContentClient = class _ContentClient extends ApiClient4 {
706
709
  getEntries(options) {
707
710
  const { projectId } = this.options;
708
711
  const { skipDataResolution, ...params } = options;
709
- const fetchUri = skipDataResolution ? this.createUrl(__privateGet(_ContentClient, _entriesUrl), { ...params, projectId }) : this.createUrl(__privateGet(_ContentClient, _entriesUrl), this.getEdgeOptions(params), this.edgeApiHost);
710
- return this.apiClient(fetchUri);
712
+ if (skipDataResolution) {
713
+ const url = this.createUrl(__privateGet(_ContentClient, _entriesUrl), { ...params, projectId });
714
+ return this.apiClient(url);
715
+ }
716
+ const edgeUrl = this.createUrl(__privateGet(_ContentClient, _entriesUrl), this.getEdgeOptions(params), this.edgeApiHost);
717
+ return this.apiClient(
718
+ edgeUrl,
719
+ this.options.disableSWR ? { headers: { "x-disable-swr": "true" } } : void 0
720
+ );
711
721
  }
712
722
  /** Fetches historical versions of an entry */
713
723
  async getEntryHistory(options) {
@@ -1000,25 +1010,9 @@ var EDGE_MIN_CACHE_TTL = 10;
1000
1010
  var EDGE_MAX_CACHE_TTL = 24 * 60 * 60;
1001
1011
  var EDGE_DEFAULT_CACHE_TTL = 30;
1002
1012
  var EDGE_CACHE_DISABLED = -1;
1003
-
1004
- // src/utils/entryConverter.ts
1005
- function convertEntryToPutEntry(entry) {
1006
- return {
1007
- entry: {
1008
- type: entry.entry.type,
1009
- _dataResources: entry.entry._dataResources,
1010
- _id: entry.entry._id,
1011
- _name: entry.entry._name,
1012
- _slug: entry.entry._slug,
1013
- fields: entry.entry.fields
1014
- },
1015
- state: entry.state,
1016
- projectId: entry.projectId
1017
- };
1018
- }
1019
- function getPropertiesValue(entity) {
1020
- return "parameters" in entity && entity.parameters ? entity.parameters : "fields" in entity && entity.fields ? entity.fields : void 0;
1021
- }
1013
+ var ASSET_PARAMETER_TYPE = "asset";
1014
+ var ASSETS_SOURCE_UNIFORM = "uniform-assets";
1015
+ var ASSETS_SOURCE_CUSTOM_URL = "custom-url";
1022
1016
 
1023
1017
  // src/utils/guards.ts
1024
1018
  function isRootEntryReference(root) {
@@ -1027,6 +1021,49 @@ function isRootEntryReference(root) {
1027
1021
  function isEntryData(entryData) {
1028
1022
  return Boolean(entryData && typeof entryData === "object" && "fields" in entryData);
1029
1023
  }
1024
+ function isAssetParamValue(value) {
1025
+ return Array.isArray(value) && (value.length > 0 ? isAssetParamValueItem(value[0]) : true);
1026
+ }
1027
+ function isAssetParamValueItem(item) {
1028
+ return Boolean(
1029
+ item instanceof Object && "_source" in item && "fields" in item && item.fields instanceof Object && "url" in item.fields && item.fields.url instanceof Object
1030
+ );
1031
+ }
1032
+
1033
+ // src/utils/properties.ts
1034
+ function getPropertiesValue(entity) {
1035
+ return "parameters" in entity && entity.parameters ? entity.parameters : "fields" in entity && entity.fields ? entity.fields : void 0;
1036
+ }
1037
+ function getPropertyValue(parameter) {
1038
+ return parameter ? parameter.value : parameter;
1039
+ }
1040
+ function flattenValues(data, options = {}) {
1041
+ if (!data) {
1042
+ return data;
1043
+ } else if (Array.isArray(data) && options.toSingle) {
1044
+ return data.length > 0 ? flattenSingleNodeValues(data[0]) : void 0;
1045
+ } else if (Array.isArray(data)) {
1046
+ return data.map((node) => flattenSingleNodeValues(node, options));
1047
+ } else {
1048
+ return flattenSingleNodeValues(data, options);
1049
+ }
1050
+ }
1051
+ function flattenSingleNodeValues(data, options = {}) {
1052
+ const { levels = 1 } = options;
1053
+ const properties = getPropertiesValue(data);
1054
+ return properties ? Object.fromEntries(
1055
+ Object.entries(properties).map(([id, parameter]) => {
1056
+ const value = getPropertyValue(parameter);
1057
+ if (levels > 0 && Array.isArray(value) && // In the future ASSET_PARAMETER_TYPE will be a nested data type
1058
+ (isNestedNodeType(parameter.type) || parameter.type === ASSET_PARAMETER_TYPE)) {
1059
+ const nestedOptions = { ...options, levels: levels - 1 };
1060
+ return [id, value.map((item) => flattenValues(item, nestedOptions))];
1061
+ } else {
1062
+ return [id, value];
1063
+ }
1064
+ })
1065
+ ) : properties;
1066
+ }
1030
1067
 
1031
1068
  // src/enhancement/walkNodeTree.ts
1032
1069
  function walkNodeTree(node, visitor, options) {
@@ -1250,7 +1287,7 @@ function walkNodeTree(node, visitor, options) {
1250
1287
  const propertyEntries = Object.entries(properties);
1251
1288
  for (let propIndex = propertyEntries.length - 1; propIndex >= 0; propIndex--) {
1252
1289
  const [propKey, propObject] = propertyEntries[propIndex];
1253
- if (propObject.type !== CANVAS_BLOCK_PARAM_TYPE)
1290
+ if (!isNestedNodeType(propObject.type))
1254
1291
  continue;
1255
1292
  const blocks = (_b = propObject.value) != null ? _b : [];
1256
1293
  for (let blockIndex = blocks.length - 1; blockIndex >= 0; blockIndex--) {
@@ -1276,6 +1313,9 @@ function walkNodeTree(node, visitor, options) {
1276
1313
  }
1277
1314
  } while (componentQueue.length > 0);
1278
1315
  }
1316
+ function isNestedNodeType(type) {
1317
+ return type === CANVAS_BLOCK_PARAM_TYPE;
1318
+ }
1279
1319
  function getBlockValue(component, parameterName) {
1280
1320
  var _a;
1281
1321
  const parameter = (_a = getPropertiesValue(component)) == null ? void 0 : _a[parameterName];
@@ -1567,6 +1607,31 @@ function getNounForLocation(parentLocation) {
1567
1607
  }
1568
1608
  return noun;
1569
1609
  }
1610
+ function getNounForNode(node) {
1611
+ let noun = "parameters";
1612
+ if (isEntryData(node)) {
1613
+ noun = "fields";
1614
+ }
1615
+ return noun;
1616
+ }
1617
+
1618
+ // src/enhancement/findInNodeTree.ts
1619
+ function findParameterInNodeTree(data, predicate) {
1620
+ const results = [];
1621
+ walkNodeTree(data, ({ node, ancestorsAndSelf }) => {
1622
+ const parameters = getPropertiesValue(node);
1623
+ if (parameters) {
1624
+ Object.entries(parameters).filter(([key, field]) => predicate(field, key, node)).forEach(([key, field]) => {
1625
+ results.push({
1626
+ key,
1627
+ pointer: (ancestorsAndSelf.length === 1 ? "" : getComponentJsonPointer(ancestorsAndSelf)) + `/${getNounForNode(node)}/${key}`,
1628
+ parameter: field
1629
+ });
1630
+ });
1631
+ }
1632
+ });
1633
+ return results;
1634
+ }
1570
1635
 
1571
1636
  // src/enhancement/localize.ts
1572
1637
  function extractLocales({ component }) {
@@ -1583,23 +1648,31 @@ function extractLocales({ component }) {
1583
1648
  });
1584
1649
  return variations;
1585
1650
  }
1586
- function localize({
1587
- composition,
1588
- locale
1589
- }) {
1590
- walkNodeTree(composition, ({ type, node, actions }) => {
1651
+ function localize(options) {
1652
+ const nodes = "nodes" in options ? options.nodes : options.composition;
1653
+ const locale = options.locale;
1654
+ walkNodeTree(nodes, ({ type, node, actions }) => {
1591
1655
  if (type !== "component") {
1592
- actions.stopProcessingDescendants();
1656
+ if (typeof locale === "string") {
1657
+ localizeProperties(node.fields, locale);
1658
+ }
1593
1659
  return;
1594
1660
  }
1661
+ const shouldRunPropertyLocalization = typeof locale === "string";
1595
1662
  if (node.type === CANVAS_LOCALIZATION_TYPE) {
1596
1663
  const locales = extractLocales({ component: node });
1597
- const resolvedLocale = typeof locale === "string" ? locale : locale({ component: node, locales });
1664
+ const resolvedLocale = typeof locale === "string" ? locale : locale == null ? void 0 : locale({ component: node, locales });
1598
1665
  let replaceComponent;
1599
1666
  if (resolvedLocale) {
1600
1667
  replaceComponent = locales[resolvedLocale];
1601
1668
  }
1602
1669
  if (replaceComponent == null ? void 0 : replaceComponent.length) {
1670
+ replaceComponent.forEach((component) => {
1671
+ removeLocaleProperty(component);
1672
+ if (shouldRunPropertyLocalization) {
1673
+ localizeProperties(getPropertiesValue(component), locale);
1674
+ }
1675
+ });
1603
1676
  const [first, ...rest] = replaceComponent;
1604
1677
  actions.replace(first);
1605
1678
  if (rest.length) {
@@ -1608,6 +1681,42 @@ function localize({
1608
1681
  } else {
1609
1682
  actions.remove();
1610
1683
  }
1684
+ } else if (shouldRunPropertyLocalization) {
1685
+ localizeProperties(getPropertiesValue(node), locale);
1686
+ }
1687
+ });
1688
+ }
1689
+ function removeLocaleProperty(component) {
1690
+ const properties = getPropertiesValue(component);
1691
+ const localeTagProperty = properties == null ? void 0 : properties[CANVAS_LOCALE_TAG_PARAM];
1692
+ if (localeTagProperty) {
1693
+ delete properties[CANVAS_LOCALE_TAG_PARAM];
1694
+ }
1695
+ if (properties && Object.keys(properties).length === 0) {
1696
+ if ("fields" in component) {
1697
+ delete component.fields;
1698
+ }
1699
+ if ("parameters" in component) {
1700
+ delete component.parameters;
1701
+ }
1702
+ }
1703
+ }
1704
+ function localizeProperties(properties, locale) {
1705
+ if (!properties) {
1706
+ return void 0;
1707
+ }
1708
+ Object.entries(properties).forEach(([key, property]) => {
1709
+ var _a;
1710
+ if (!locale) {
1711
+ delete property.locales;
1712
+ }
1713
+ const currentLocaleValue = locale ? (_a = property.locales) == null ? void 0 : _a[locale] : void 0;
1714
+ if (currentLocaleValue !== void 0) {
1715
+ property.value = currentLocaleValue;
1716
+ }
1717
+ delete property.locales;
1718
+ if (property.value === void 0) {
1719
+ delete properties[key];
1611
1720
  }
1612
1721
  });
1613
1722
  }
@@ -1757,6 +1866,39 @@ function walkComponentTree(component, visitor, initialContext) {
1757
1866
  } while (componentQueue.length > 0);
1758
1867
  }
1759
1868
 
1869
+ // src/LocaleClient.ts
1870
+ import { ApiClient as ApiClient7 } from "@uniformdev/context/api";
1871
+ var localesUrl = "/api/v1/locales";
1872
+ var LocaleClient = class extends ApiClient7 {
1873
+ constructor(options) {
1874
+ super(options);
1875
+ }
1876
+ /** Fetches all locales for a project */
1877
+ async get(options) {
1878
+ const { projectId } = this.options;
1879
+ const fetchUri = this.createUrl(localesUrl, { ...options, projectId });
1880
+ return await this.apiClient(fetchUri);
1881
+ }
1882
+ /** Updates or creates (based on id) a locale */
1883
+ async upsert(body) {
1884
+ const fetchUri = this.createUrl(localesUrl);
1885
+ await this.apiClient(fetchUri, {
1886
+ method: "PUT",
1887
+ body: JSON.stringify({ ...body, projectId: this.options.projectId }),
1888
+ expectNoContent: true
1889
+ });
1890
+ }
1891
+ /** Deletes a locale */
1892
+ async remove(body) {
1893
+ const fetchUri = this.createUrl(localesUrl);
1894
+ await this.apiClient(fetchUri, {
1895
+ method: "DELETE",
1896
+ body: JSON.stringify({ ...body, projectId: this.options.projectId }),
1897
+ expectNoContent: true
1898
+ });
1899
+ }
1900
+ };
1901
+
1760
1902
  // src/utils/hash.ts
1761
1903
  var generateHash = ({
1762
1904
  composition,
@@ -2114,9 +2256,9 @@ function subscribeToComposition({
2114
2256
  }
2115
2257
 
2116
2258
  // src/PromptClient.ts
2117
- import { ApiClient as ApiClient7 } from "@uniformdev/context/api";
2259
+ import { ApiClient as ApiClient8 } from "@uniformdev/context/api";
2118
2260
  var PromptsUrl = "/api/v1/prompts";
2119
- var PromptClient = class extends ApiClient7 {
2261
+ var PromptClient = class extends ApiClient8 {
2120
2262
  constructor(options) {
2121
2263
  super(options);
2122
2264
  }
@@ -2147,9 +2289,9 @@ var PromptClient = class extends ApiClient7 {
2147
2289
  };
2148
2290
 
2149
2291
  // src/RouteClient.ts
2150
- import { ApiClient as ApiClient8 } from "@uniformdev/context/api";
2292
+ import { ApiClient as ApiClient9 } from "@uniformdev/context/api";
2151
2293
  var ROUTE_URL = "/api/v1/route";
2152
- var RouteClient = class extends ApiClient8 {
2294
+ var RouteClient = class extends ApiClient9 {
2153
2295
  constructor(options) {
2154
2296
  var _a;
2155
2297
  if (!options.limitPolicy) {
@@ -2162,10 +2304,16 @@ var RouteClient = class extends ApiClient8 {
2162
2304
  async getRoute(options) {
2163
2305
  const { projectId } = this.options;
2164
2306
  const fetchUri = this.createUrl(ROUTE_URL, { ...options, projectId }, this.edgeApiHost);
2165
- return await this.apiClient(fetchUri);
2307
+ return await this.apiClient(
2308
+ fetchUri,
2309
+ this.options.disableSWR ? { headers: { "x-disable-swr": "true" } } : void 0
2310
+ );
2166
2311
  }
2167
2312
  };
2168
2313
 
2314
+ // src/types/locales.ts
2315
+ var LOCALE_DYNAMIC_INPUT_NAME = "locale";
2316
+
2169
2317
  // src/utils/createApiEnhancer.ts
2170
2318
  var createUniformApiEnhancer = ({ apiUrl }) => {
2171
2319
  return async (message) => {
@@ -2188,6 +2336,26 @@ var createUniformApiEnhancer = ({ apiUrl }) => {
2188
2336
  };
2189
2337
  };
2190
2338
 
2339
+ // src/utils/entryConverter.ts
2340
+ function convertEntryToPutEntry(entry) {
2341
+ return {
2342
+ entry: {
2343
+ type: entry.entry.type,
2344
+ _dataResources: entry.entry._dataResources,
2345
+ _id: entry.entry._id,
2346
+ _name: entry.entry._name,
2347
+ _slug: entry.entry._slug,
2348
+ _pattern: entry.entry._pattern,
2349
+ _overridability: entry.entry._overridability,
2350
+ _overrides: entry.entry._overrides,
2351
+ fields: entry.entry.fields,
2352
+ _locales: entry.entry._locales
2353
+ },
2354
+ state: entry.state,
2355
+ projectId: entry.projectId
2356
+ };
2357
+ }
2358
+
2191
2359
  // src/utils/getParameterAttributes.ts
2192
2360
  var ATTRIBUTE_COMPONENT_ID = "data-uniform-component-id";
2193
2361
  var ATTRIBUTE_PARAMETER_ID = "data-uniform-parameter-id";
@@ -2317,9 +2485,14 @@ function parseVariableExpression(serialized, onToken) {
2317
2485
  continue;
2318
2486
  }
2319
2487
  if (char === variableSuffix && state === "variable") {
2488
+ if (serialized[index - 1] === escapeCharacter) {
2489
+ bufferEndIndex++;
2490
+ continue;
2491
+ }
2320
2492
  state = "text";
2321
2493
  if (bufferEndIndex > bufferStartIndex) {
2322
- if (handleToken(serialized.substring(bufferStartIndex, bufferEndIndex), "variable") === false) {
2494
+ const unescapedVariableName = serialized.substring(bufferStartIndex, bufferEndIndex).replace(/\\([${}])/g, "$1");
2495
+ if (handleToken(unescapedVariableName, "variable") === false) {
2323
2496
  return tokenCount;
2324
2497
  }
2325
2498
  bufferStartIndex = bufferEndIndex + variableSuffix.length;
@@ -2379,7 +2552,7 @@ import { produce } from "immer";
2379
2552
 
2380
2553
  // src/utils/variables/createVariableReference.ts
2381
2554
  function createVariableReference(variableName) {
2382
- return `\${${variableName}}`;
2555
+ return `\${${variableName.replace(/([${}])/g, "\\$1")}}`;
2383
2556
  }
2384
2557
 
2385
2558
  // src/utils/variables/bindVariablesToObject.ts
@@ -2463,6 +2636,9 @@ function handleRichTextNodeBinding(object, options) {
2463
2636
  import { ApiClientError as ApiClientError2 } from "@uniformdev/context/api";
2464
2637
  var CanvasClientError = ApiClientError2;
2465
2638
  export {
2639
+ ASSETS_SOURCE_CUSTOM_URL,
2640
+ ASSETS_SOURCE_UNIFORM,
2641
+ ASSET_PARAMETER_TYPE,
2466
2642
  ATTRIBUTE_COMPONENT_ID,
2467
2643
  ATTRIBUTE_MULTILINE,
2468
2644
  ATTRIBUTE_PARAMETER_ID,
@@ -2506,6 +2682,8 @@ export {
2506
2682
  IN_CONTEXT_EDITOR_PLAYGROUND_QUERY_STRING_PARAM,
2507
2683
  IN_CONTEXT_EDITOR_QUERY_STRING_PARAM,
2508
2684
  IS_RENDERED_BY_UNIFORM_ATTRIBUTE,
2685
+ LOCALE_DYNAMIC_INPUT_NAME,
2686
+ LocaleClient,
2509
2687
  PLACEHOLDER_ID,
2510
2688
  PromptClient,
2511
2689
  RouteClient,
@@ -2526,21 +2704,29 @@ export {
2526
2704
  createVariableReference,
2527
2705
  enhance,
2528
2706
  extractLocales,
2707
+ findParameterInNodeTree,
2708
+ flattenValues,
2529
2709
  generateComponentPlaceholderId,
2530
2710
  generateHash,
2531
2711
  getBlockValue,
2532
2712
  getChannelName,
2533
2713
  getComponentJsonPointer,
2534
2714
  getComponentPath,
2715
+ getNounForLocation,
2716
+ getNounForNode,
2535
2717
  getParameterAttributes,
2536
2718
  getPropertiesValue,
2719
+ getPropertyValue,
2537
2720
  isAddComponentMessage,
2538
2721
  isAllowedReferrer,
2722
+ isAssetParamValue,
2723
+ isAssetParamValueItem,
2539
2724
  isComponentActionMessage,
2540
2725
  isComponentPlaceholderId,
2541
2726
  isDismissPlaceholderMessage,
2542
2727
  isEntryData,
2543
2728
  isMovingComponentMessage,
2729
+ isNestedNodeType,
2544
2730
  isOpenParameterEditorMessage,
2545
2731
  isReadyMessage,
2546
2732
  isReportRenderedCompositionsMessage,