@player-ui/async-node-plugin 0.16.0--canary.866.36538 → 0.16.0--canary.891.38194

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.
@@ -1513,412 +1513,6 @@ var AsyncNodePlugin = function() {
1513
1513
  });
1514
1514
  return batchTxn;
1515
1515
  };
1516
- var pointerToBinding = function pointerToBinding(pointer) {
1517
- if (!pointer || pointer === "/") return "";
1518
- var absolute = pointer.startsWith("/");
1519
- var raw = absolute ? pointer.slice(1) : pointer;
1520
- var segments = raw.split("/").map(decodeSegment);
1521
- var out = "";
1522
- for(var i = 0; i < segments.length; i++){
1523
- var seg = segments[i];
1524
- if (NUMERIC_SEGMENT.test(seg)) {
1525
- out += "[".concat(seg, "]");
1526
- } else {
1527
- out += i === 0 ? seg : ".".concat(seg);
1528
- }
1529
- }
1530
- return out;
1531
- };
1532
- var bindingToSegments = function bindingToSegments(binding) {
1533
- if (!binding) return [];
1534
- var segments = [];
1535
- var parts = binding.split(".");
1536
- var _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = undefined;
1537
- try {
1538
- for(var _iterator = parts[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true){
1539
- var part = _step.value;
1540
- var match = part.match(/^([^[]+)((?:\[\d+\])*)$/);
1541
- if (!match) {
1542
- segments.push(part);
1543
- continue;
1544
- }
1545
- var _match = _sliced_to_array(match, 3), name = _match[1], arrays = _match[2];
1546
- if (name) segments.push(name);
1547
- if (arrays) {
1548
- var _segments;
1549
- var _arrays_match;
1550
- var arrayMatches = (_arrays_match = arrays.match(/\[\d+\]/g)) !== null && _arrays_match !== void 0 ? _arrays_match : [];
1551
- (_segments = segments).push.apply(_segments, _to_consumable_array(arrayMatches));
1552
- }
1553
- }
1554
- } catch (err) {
1555
- _didIteratorError = true;
1556
- _iteratorError = err;
1557
- } finally{
1558
- try {
1559
- if (!_iteratorNormalCompletion && _iterator.return != null) {
1560
- _iterator.return();
1561
- }
1562
- } finally{
1563
- if (_didIteratorError) {
1564
- throw _iteratorError;
1565
- }
1566
- }
1567
- }
1568
- return segments;
1569
- };
1570
- var interpolatePointers = function interpolatePointers(input) {
1571
- return input.replace(/\$\{([^}]+)\}/g, function(_, pointer) {
1572
- return "{{".concat(pointerToBinding(pointer), "}}");
1573
- });
1574
- };
1575
- var translateFunctionCall = function translateFunctionCall(call, logger) {
1576
- if (call.call === "formatString") {
1577
- var _call_args;
1578
- var value = (_call_args = call.args) === null || _call_args === void 0 ? void 0 : _call_args.value;
1579
- if (typeof value === "string") return interpolatePointers(value);
1580
- logger === null || logger === void 0 ? void 0 : logger.warn("[a2ui] formatString received non-string 'value' arg; emitting expression form");
1581
- }
1582
- var argList = renderArgList(call.args);
1583
- if (call.call === "formatString") {
1584
- return "@[formatString(".concat(argList, ")]@");
1585
- }
1586
- return "@[".concat(call.call, "(").concat(argList, ")]@");
1587
- };
1588
- var renderArgList = function renderArgList(args) {
1589
- if (!args) return "";
1590
- return Object.values(args).map(renderArg).join(", ");
1591
- };
1592
- var newBuilder = function newBuilder() {
1593
- return {
1594
- schema: {
1595
- ROOT: {}
1596
- },
1597
- knownTypes: /* @__PURE__ */ new Set([
1598
- "ROOT"
1599
- ])
1600
- };
1601
- };
1602
- var findBoundPath = function findBoundPath(component, logger) {
1603
- var lookupProp = INPUT_BINDING_PROPS[component.component];
1604
- if (lookupProp) {
1605
- var prop = component[lookupProp];
1606
- if (isPathRef(prop)) return prop.path;
1607
- }
1608
- var pathRefs = collectPathRefs(component);
1609
- if (pathRefs.length === 1) return pathRefs[0];
1610
- if (pathRefs.length > 1) {
1611
- logger === null || logger === void 0 ? void 0 : logger.warn("[a2ui] Component '".concat(component.id, "' (").concat(component.component, ") has checks but multiple {path} refs; skipping schema synthesis for this component"));
1612
- } else {
1613
- logger === null || logger === void 0 ? void 0 : logger.warn("[a2ui] Component '".concat(component.id, "' (").concat(component.component, ") has checks but no bound path could be determined; skipping"));
1614
- }
1615
- return void 0;
1616
- };
1617
- var collectPathRefs = function collectPathRefs(component) {
1618
- var found = [];
1619
- var walk = function walk1(v) {
1620
- if (!v || (typeof v === "undefined" ? "undefined" : _type_of(v)) !== "object") return;
1621
- if (Array.isArray(v)) {
1622
- v.forEach(walk);
1623
- return;
1624
- }
1625
- if (isPathRef(v)) {
1626
- found.push(v.path);
1627
- return;
1628
- }
1629
- Object.values(v).forEach(walk);
1630
- };
1631
- var _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = undefined;
1632
- try {
1633
- for(var _iterator = Object.entries(component)[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true){
1634
- var _step_value = _sliced_to_array(_step.value, 2), k = _step_value[0], v = _step_value[1];
1635
- if (k === "id" || k === "component" || k === "checks" || k === "action") {
1636
- continue;
1637
- }
1638
- walk(v);
1639
- }
1640
- } catch (err) {
1641
- _didIteratorError = true;
1642
- _iteratorError = err;
1643
- } finally{
1644
- try {
1645
- if (!_iteratorNormalCompletion && _iterator.return != null) {
1646
- _iterator.return();
1647
- }
1648
- } finally{
1649
- if (_didIteratorError) {
1650
- throw _iteratorError;
1651
- }
1652
- }
1653
- }
1654
- return found;
1655
- };
1656
- var translateCheck = function translateCheck(check, logger) {
1657
- var _check_args;
1658
- var type = CHECK_TO_VALIDATOR[check.call];
1659
- if (!type) {
1660
- logger === null || logger === void 0 ? void 0 : logger.warn("[a2ui] Unknown validation check '".concat(check.call, "'; dropping"));
1661
- return void 0;
1662
- }
1663
- var ref = {
1664
- type: type,
1665
- severity: "error"
1666
- };
1667
- if (check.message) ref.message = check.message;
1668
- if (check.call === "regex" && ((_check_args = check.args) === null || _check_args === void 0 ? void 0 : _check_args.pattern)) {
1669
- ref.regex = unwrapLiteral(check.args.pattern);
1670
- }
1671
- if (check.call === "length") {
1672
- var _check_args1, _check_args2;
1673
- if (((_check_args1 = check.args) === null || _check_args1 === void 0 ? void 0 : _check_args1.min) !== void 0) ref.min = unwrapLiteral(check.args.min);
1674
- if (((_check_args2 = check.args) === null || _check_args2 === void 0 ? void 0 : _check_args2.max) !== void 0) ref.max = unwrapLiteral(check.args.max);
1675
- }
1676
- return ref;
1677
- };
1678
- var unwrapLiteral = function unwrapLiteral(value) {
1679
- if (typeof value === "string" || typeof value === "number" || typeof value === "boolean" || value === null) {
1680
- return value;
1681
- }
1682
- return value;
1683
- };
1684
- var installAtPath = function installAtPath(builder, binding, leafType, validations, logger) {
1685
- var segments = bindingToSegments(binding).filter(function(s) {
1686
- return !s.startsWith("[");
1687
- });
1688
- if (segments.length === 0) {
1689
- logger === null || logger === void 0 ? void 0 : logger.warn("[a2ui] Cannot install schema validation at empty path; skipping");
1690
- return;
1691
- }
1692
- var currentNode = builder.schema.ROOT;
1693
- var ownerPath = [];
1694
- for(var i = 0; i < segments.length - 1; i++){
1695
- var seg = segments[i];
1696
- ownerPath.push(seg);
1697
- var typeName = "".concat(TYPE_PREFIX).concat(ownerPath.join("_"));
1698
- var existing = currentNode[seg];
1699
- if (!existing) {
1700
- currentNode[seg] = {
1701
- type: typeName
1702
- };
1703
- } else if (existing.type !== typeName) {}
1704
- var ref = currentNode[seg].type;
1705
- if (!builder.schema[ref]) {
1706
- builder.schema[ref] = {};
1707
- builder.knownTypes.add(ref);
1708
- }
1709
- currentNode = builder.schema[ref];
1710
- }
1711
- var leafSeg = segments[segments.length - 1];
1712
- var existingLeaf = currentNode[leafSeg];
1713
- if (existingLeaf) {
1714
- var _existingLeaf_validation;
1715
- var merged = _object_spread_props(_object_spread({}, existingLeaf), {
1716
- type: pickLeafType(existingLeaf.type, leafType),
1717
- validation: _to_consumable_array((_existingLeaf_validation = existingLeaf.validation) !== null && _existingLeaf_validation !== void 0 ? _existingLeaf_validation : []).concat(_to_consumable_array(validations))
1718
- });
1719
- currentNode[leafSeg] = merged;
1720
- } else {
1721
- currentNode[leafSeg] = {
1722
- type: leafType,
1723
- validation: validations
1724
- };
1725
- }
1726
- };
1727
- var pickLeafType = function pickLeafType(existing, incoming) {
1728
- if (incoming !== "string") return incoming;
1729
- return existing;
1730
- };
1731
- var defaultLeafType = function defaultLeafType(component, checks) {
1732
- if (component.component === "CheckBox") return "boolean";
1733
- if (checks.some(function(c) {
1734
- return c.call === "numeric";
1735
- })) return "number";
1736
- return "string";
1737
- };
1738
- var synthesizeSchema = function synthesizeSchema(components, logger) {
1739
- var builder = newBuilder();
1740
- var found = false;
1741
- var _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = undefined;
1742
- try {
1743
- for(var _iterator = components[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true){
1744
- var component = _step.value;
1745
- if (!component.checks || component.checks.length === 0) continue;
1746
- var pointer = findBoundPath(component, logger);
1747
- if (!pointer) continue;
1748
- var binding = pointerToBinding(pointer);
1749
- if (!binding) continue;
1750
- var validations = component.checks.map(function(c) {
1751
- return translateCheck(c, logger);
1752
- }).filter(function(v) {
1753
- return v !== void 0;
1754
- });
1755
- if (validations.length === 0) continue;
1756
- installAtPath(builder, binding, defaultLeafType(component, component.checks), validations, logger);
1757
- found = true;
1758
- }
1759
- } catch (err) {
1760
- _didIteratorError = true;
1761
- _iteratorError = err;
1762
- } finally{
1763
- try {
1764
- if (!_iteratorNormalCompletion && _iterator.return != null) {
1765
- _iterator.return();
1766
- }
1767
- } finally{
1768
- if (_didIteratorError) {
1769
- throw _iteratorError;
1770
- }
1771
- }
1772
- }
1773
- return found ? builder.schema : void 0;
1774
- };
1775
- var resolveAndInline = function resolveAndInline(id, ctx, templateScope) {
1776
- var component = ctx.byId.get(id);
1777
- if (!component) {
1778
- throw new Error("[a2ui] Component reference '".concat(id, "' could not be resolved in the snapshot."));
1779
- }
1780
- return inlineComponent(component, ctx, templateScope);
1781
- };
1782
- var wrapInlined = function wrapInlined(asset) {
1783
- return {
1784
- asset: asset
1785
- };
1786
- };
1787
- var scopedBinding = function scopedBinding(pointer, scope) {
1788
- if (!pointer || pointer === "/") return scope !== null && scope !== void 0 ? scope : "";
1789
- if (pointer.startsWith("/")) return pointerToBinding(pointer);
1790
- if (!scope) return pointerToBinding(pointer);
1791
- var relative = pointerToBinding(pointer);
1792
- return relative ? "".concat(scope, "._index_.").concat(relative) : "".concat(scope, "._index_");
1793
- };
1794
- var scopedPointer = function scopedPointer(pointer, scope) {
1795
- if (pointer.startsWith("/")) return pointer;
1796
- return "/".concat(scope, "/_index_/").concat(pointer);
1797
- };
1798
- var translateAction = function translateAction(action, ctx) {
1799
- if ("event" in action) {
1800
- var _action_event = action.event, name = _action_event.name, context = _action_event.context;
1801
- ctx.eventNames.add(name);
1802
- var result = {
1803
- value: name
1804
- };
1805
- if (context && Object.keys(context).length > 0) {
1806
- result.exp = buildContextWriteExpressions(context);
1807
- }
1808
- return result;
1809
- }
1810
- return {
1811
- exp: translateFunctionCall(action.functionCall, ctx.logger)
1812
- };
1813
- };
1814
- var buildContextWriteExpressions = function buildContextWriteExpressions(context) {
1815
- return Object.entries(context).map(function(param) {
1816
- var _param = _sliced_to_array(param, 2), key = _param[0], value = _param[1];
1817
- var lhs = "{{".concat(A2UI_EVENT_CONTEXT_NAMESPACE, ".").concat(key, "}}");
1818
- return "".concat(lhs, " = ").concat(renderRhs(value));
1819
- });
1820
- };
1821
- var buildNavigation = function buildNavigation(surfaceId, eventNames) {
1822
- var view = {
1823
- state_type: "VIEW",
1824
- ref: surfaceId,
1825
- transitions: {
1826
- "*": "END_Done"
1827
- }
1828
- };
1829
- var endStates = {
1830
- END_Done: {
1831
- state_type: "END",
1832
- outcome: "done"
1833
- }
1834
- };
1835
- var _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = undefined;
1836
- try {
1837
- for(var _iterator = eventNames[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true){
1838
- var name = _step.value;
1839
- var endName = "END_".concat(name);
1840
- view.transitions[name] = endName;
1841
- endStates[endName] = {
1842
- state_type: "END",
1843
- outcome: name
1844
- };
1845
- }
1846
- } catch (err) {
1847
- _didIteratorError = true;
1848
- _iteratorError = err;
1849
- } finally{
1850
- try {
1851
- if (!_iteratorNormalCompletion && _iterator.return != null) {
1852
- _iterator.return();
1853
- }
1854
- } finally{
1855
- if (_didIteratorError) {
1856
- throw _iteratorError;
1857
- }
1858
- }
1859
- }
1860
- var flow = _object_spread({
1861
- startState: "VIEW_1",
1862
- VIEW_1: view
1863
- }, endStates);
1864
- return {
1865
- BEGIN: "FLOW_1",
1866
- FLOW_1: flow
1867
- };
1868
- };
1869
- var adaptA2UIToFlow = function adaptA2UIToFlow(snapshot, logger) {
1870
- var _snapshot_data;
1871
- if (!snapshot || !Array.isArray(snapshot.components)) {
1872
- throw new Error("[a2ui] snapshot.components must be an array");
1873
- }
1874
- var byId = /* @__PURE__ */ new Map();
1875
- var _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = undefined;
1876
- try {
1877
- for(var _iterator = snapshot.components[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true){
1878
- var component = _step.value;
1879
- if (!(component === null || component === void 0 ? void 0 : component.id)) {
1880
- throw new Error("[a2ui] every component must have an id");
1881
- }
1882
- byId.set(component.id, component);
1883
- }
1884
- } catch (err) {
1885
- _didIteratorError = true;
1886
- _iteratorError = err;
1887
- } finally{
1888
- try {
1889
- if (!_iteratorNormalCompletion && _iterator.return != null) {
1890
- _iterator.return();
1891
- }
1892
- } finally{
1893
- if (_didIteratorError) {
1894
- throw _iteratorError;
1895
- }
1896
- }
1897
- }
1898
- var root = byId.get("root");
1899
- if (!root) {
1900
- throw new Error("[a2ui] snapshot must contain a component with id 'root'");
1901
- }
1902
- var ctx = {
1903
- byId: byId,
1904
- inProgress: /* @__PURE__ */ new Set(),
1905
- eventNames: /* @__PURE__ */ new Set(),
1906
- logger: logger
1907
- };
1908
- var rootAsset = inlineComponent(root, ctx);
1909
- rootAsset.id = snapshot.surfaceId;
1910
- var schema = synthesizeSchema(snapshot.components, logger);
1911
- var flow = {
1912
- id: snapshot.surfaceId,
1913
- views: [
1914
- rootAsset
1915
- ],
1916
- data: (_snapshot_data = snapshot.data) !== null && _snapshot_data !== void 0 ? _snapshot_data : {},
1917
- navigation: buildNavigation(snapshot.surfaceId, ctx.eventNames)
1918
- };
1919
- if (schema) flow.schema = schema;
1920
- return flow;
1921
- };
1922
1516
  var __create = Object.create;
1923
1517
  var __defProp = Object.defineProperty;
1924
1518
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
@@ -2138,7 +1732,7 @@ var AsyncNodePlugin = function() {
2138
1732
  }
2139
1733
  return out;
2140
1734
  }
2141
- function isObject2(o) {
1735
+ function isObject(o) {
2142
1736
  return o != null && (typeof o === "undefined" ? "undefined" : _type_of(o)) === "object";
2143
1737
  }
2144
1738
  function addLast2(array, val) {
@@ -2211,7 +1805,7 @@ var AsyncNodePlugin = function() {
2211
1805
  if (idx === path.length - 1) {
2212
1806
  newValue = val;
2213
1807
  } else {
2214
- var nestedObj = isObject2(obj) && isObject2(obj[key]) ? obj[key] : typeof path[idx + 1] === "number" ? [] : {};
1808
+ var nestedObj = isObject(obj) && isObject(obj[key]) ? obj[key] : typeof path[idx + 1] === "number" ? [] : {};
2215
1809
  newValue = doSetIn(nestedObj, path, val, idx + 1);
2216
1810
  }
2217
1811
  return set2(obj, key, newValue);
@@ -2341,7 +1935,7 @@ var AsyncNodePlugin = function() {
2341
1935
  var key = keys[j];
2342
1936
  if (fAddDefaults && out[key] !== void 0) continue;
2343
1937
  var nextVal = obj[key];
2344
- if (fDeep && isObject2(out[key]) && isObject2(nextVal)) {
1938
+ if (fDeep && isObject(out[key]) && isObject(nextVal)) {
2345
1939
  nextVal = doMerge(fAddDefaults, fDeep, out[key], nextVal);
2346
1940
  }
2347
1941
  if (nextVal === void 0 || nextVal === out[key]) continue;
@@ -8032,234 +7626,8 @@ var AsyncNodePlugin = function() {
8032
7626
  ref: Symbol("not-started"),
8033
7627
  status: "not-started"
8034
7628
  };
8035
- var A2UI_EVENT_CONTEXT_NAMESPACE = "agent.event.context";
8036
- var NUMERIC_SEGMENT = /^(0|[1-9]\d*)$/;
8037
- var decodeSegment = function decodeSegment(segment) {
8038
- return segment.replace(/~1/g, "/").replace(/~0/g, "~");
8039
- };
8040
- var isObject = function isObject(v) {
8041
- return (typeof v === "undefined" ? "undefined" : _type_of(v)) === "object" && v !== null && !Array.isArray(v);
8042
- };
8043
- var isPathRef = function isPathRef(v) {
8044
- return isObject(v) && typeof v.path === "string" && Object.keys(v).length === 1;
8045
- };
8046
- var isFunctionCall = function isFunctionCall(v) {
8047
- return isObject(v) && typeof v.call === "string";
8048
- };
8049
- function renderArg(value) {
8050
- if (value === null) return "null";
8051
- if (value === void 0) return "null";
8052
- if (typeof value === "boolean") return String(value);
8053
- if (typeof value === "number") return String(value);
8054
- if (typeof value === "string") return JSON.stringify(value);
8055
- if (Array.isArray(value)) {
8056
- return "[".concat(value.map(renderArg).join(", "), "]");
8057
- }
8058
- if (isPathRef(value)) {
8059
- return "{{".concat(pointerToBinding(value.path), "}}");
8060
- }
8061
- if (isFunctionCall(value)) {
8062
- var inner = translateFunctionCall(value);
8063
- return inner.replace(/^@\[/, "").replace(/\]@$/, "");
8064
- }
8065
- return JSON.stringify(value);
8066
- }
8067
- var INPUT_BINDING_PROPS = {
8068
- TextField: "text",
8069
- CheckBox: "checked",
8070
- DateTimeInput: "value",
8071
- ChoicePicker: "value",
8072
- Slider: "value"
8073
- };
8074
- var CHECK_TO_VALIDATOR = {
8075
- required: "required",
8076
- regex: "regex",
8077
- email: "email",
8078
- length: "length",
8079
- numeric: "numeric"
8080
- };
8081
- var TYPE_PREFIX = "T_";
8082
- var STRUCTURAL_KEYS = /* @__PURE__ */ new Set([
8083
- "id",
8084
- "component",
8085
- "child",
8086
- "children",
8087
- "checks",
8088
- "action"
8089
- ]);
8090
- function inlineComponent(component, ctx, templateScope) {
8091
- if (ctx.inProgress.has(component.id)) {
8092
- throw new Error("[a2ui] Component cycle detected at id '".concat(component.id, "'. A2UI requires the component graph to be a tree."));
8093
- }
8094
- ctx.inProgress.add(component.id);
8095
- var asset = {
8096
- id: component.id,
8097
- type: component.component
8098
- };
8099
- var _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = undefined;
8100
- try {
8101
- for(var _iterator = Object.entries(component)[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true){
8102
- var _step_value = _sliced_to_array(_step.value, 2), key = _step_value[0], value = _step_value[1];
8103
- if (STRUCTURAL_KEYS.has(key)) continue;
8104
- asset[key] = translatePropValue(value, templateScope, ctx, key);
8105
- }
8106
- } catch (err) {
8107
- _didIteratorError = true;
8108
- _iteratorError = err;
8109
- } finally{
8110
- try {
8111
- if (!_iteratorNormalCompletion && _iterator.return != null) {
8112
- _iterator.return();
8113
- }
8114
- } finally{
8115
- if (_didIteratorError) {
8116
- throw _iteratorError;
8117
- }
8118
- }
8119
- }
8120
- if (typeof component.child === "string") {
8121
- var childId = component.child;
8122
- asset.child = wrapInlined(resolveAndInline(childId, ctx, templateScope));
8123
- }
8124
- if (component.children) {
8125
- if (Array.isArray(component.children)) {
8126
- asset.children = component.children.map(function(id) {
8127
- return wrapInlined(resolveAndInline(id, ctx, templateScope));
8128
- });
8129
- } else {
8130
- var _component_children = component.children, path = _component_children.path, componentId = _component_children.componentId;
8131
- var data = scopedBinding(path, templateScope);
8132
- var templateComponent = ctx.byId.get(componentId);
8133
- if (!templateComponent) {
8134
- throw new Error("[a2ui] Templated children reference unknown componentId '".concat(componentId, "' on component '").concat(component.id, "'."));
8135
- }
8136
- var templated = inlineComponent(_object_spread_props(_object_spread({}, templateComponent), {
8137
- id: "".concat(templateComponent.id, "-_index_")
8138
- }), ctx, data);
8139
- asset.template = [
8140
- {
8141
- data: data,
8142
- output: "children",
8143
- value: {
8144
- asset: templated
8145
- }
8146
- }
8147
- ];
8148
- }
8149
- }
8150
- if (component.action) {
8151
- Object.assign(asset, translateAction(component.action, ctx));
8152
- }
8153
- ctx.inProgress.delete(component.id);
8154
- return asset;
8155
- }
8156
- var CHILD_KEY_RE = /(?:^|[a-z])Child$|^child$/;
8157
- var CHILDREN_KEY_RE = /(?:^|[a-z])Children$|^children$/;
8158
- function translatePropValue(value, templateScope, ctx, parentKey) {
8159
- if (value === null || value === void 0) return value;
8160
- if (parentKey && CHILD_KEY_RE.test(parentKey) && typeof value === "string") {
8161
- return wrapInlined(resolveAndInline(value, ctx, templateScope));
8162
- }
8163
- if (parentKey && CHILDREN_KEY_RE.test(parentKey)) {
8164
- if (Array.isArray(value) && value.every(function(v) {
8165
- return typeof v === "string";
8166
- })) {
8167
- return value.map(function(id) {
8168
- return wrapInlined(resolveAndInline(id, ctx, templateScope));
8169
- });
8170
- }
8171
- if ((typeof value === "undefined" ? "undefined" : _type_of(value)) === "object" && value !== null && !Array.isArray(value) && "componentId" in value) {
8172
- var _ctx_logger;
8173
- (_ctx_logger = ctx.logger) === null || _ctx_logger === void 0 ? void 0 : _ctx_logger.warn("[a2ui] Templated children are only supported at top-level 'children'; '".concat(parentKey, "' will be left unresolved."));
8174
- }
8175
- }
8176
- if ((typeof value === "undefined" ? "undefined" : _type_of(value)) !== "object") return value;
8177
- if (Array.isArray(value)) {
8178
- return value.map(function(v) {
8179
- return translatePropValue(v, templateScope, ctx, void 0);
8180
- });
8181
- }
8182
- if (isPathRef(value)) {
8183
- return scopedBinding(value.path, templateScope);
8184
- }
8185
- if (isFunctionCall(value)) {
8186
- if (templateScope) {
8187
- return translateFunctionCall(rewritePathsInCall(value, templateScope), ctx.logger);
8188
- }
8189
- return translateFunctionCall(value, ctx.logger);
8190
- }
8191
- var out = {};
8192
- var _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = undefined;
8193
- try {
8194
- for(var _iterator = Object.entries(value)[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true){
8195
- var _step_value = _sliced_to_array(_step.value, 2), k = _step_value[0], v = _step_value[1];
8196
- out[k] = translatePropValue(v, templateScope, ctx, k);
8197
- }
8198
- } catch (err) {
8199
- _didIteratorError = true;
8200
- _iteratorError = err;
8201
- } finally{
8202
- try {
8203
- if (!_iteratorNormalCompletion && _iterator.return != null) {
8204
- _iterator.return();
8205
- }
8206
- } finally{
8207
- if (_didIteratorError) {
8208
- throw _iteratorError;
8209
- }
8210
- }
8211
- }
8212
- return out;
8213
- }
8214
- function rewritePathsInCall(value, scope) {
8215
- if (!value || (typeof value === "undefined" ? "undefined" : _type_of(value)) !== "object") return value;
8216
- if (Array.isArray(value)) {
8217
- return value.map(function(v) {
8218
- return rewritePathsInCall(v, scope);
8219
- });
8220
- }
8221
- if (isPathRef(value)) {
8222
- return {
8223
- path: scopedPointer(value.path, scope)
8224
- };
8225
- }
8226
- if (isFunctionCall(value)) {
8227
- return _object_spread_props(_object_spread({}, value), {
8228
- args: value.args ? Object.fromEntries(Object.entries(value.args).map(function(param) {
8229
- var _param = _sliced_to_array(param, 2), k = _param[0], v = _param[1];
8230
- return [
8231
- k,
8232
- rewritePathsInCall(v, scope)
8233
- ];
8234
- })) : value.args
8235
- });
8236
- }
8237
- return Object.fromEntries(Object.entries(value).map(function(param) {
8238
- var _param = _sliced_to_array(param, 2), k = _param[0], v = _param[1];
8239
- return [
8240
- k,
8241
- rewritePathsInCall(v, scope)
8242
- ];
8243
- }));
8244
- }
8245
- function renderRhs(value) {
8246
- if (value === null || value === void 0) return "null";
8247
- if (typeof value === "boolean") return String(value);
8248
- if (typeof value === "number") return String(value);
8249
- if (typeof value === "string") return JSON.stringify(value);
8250
- if (Array.isArray(value)) {
8251
- return "[".concat(value.map(renderRhs).join(", "), "]");
8252
- }
8253
- if (isPathRef(value)) {
8254
- return "{{".concat(pointerToBinding(value.path), "}}");
8255
- }
8256
- if (isFunctionCall(value)) {
8257
- return translateFunctionCall(value).replace(/^@\[/, "").replace(/\]@$/, "");
8258
- }
8259
- return JSON.stringify(value);
8260
- }
8261
- var PLAYER_VERSION = true ? "0.16.0--canary.866.36538" : "unknown";
8262
- var COMMIT = true ? "0186f1bd04fda238cbc62b8d293c8048ab26efc2" : "unknown";
7629
+ var PLAYER_VERSION = true ? "0.16.0--canary.891.38194" : "unknown";
7630
+ var COMMIT = true ? "19c662af721e43233cb821c155eae633a4e0129d" : "unknown";
8263
7631
  var _Player = /*#__PURE__*/ function() {
8264
7632
  function _Player2(config) {
8265
7633
  var _this = this;
@@ -8587,15 +7955,14 @@ var AsyncNodePlugin = function() {
8587
7955
  },
8588
7956
  {
8589
7957
  key: "start",
8590
- value: function start(payload, options) {
7958
+ value: function start(payload) {
8591
7959
  return _async_to_generator(function() {
8592
- var _this, _ref, flow, ref, maybeUpdateState, _this_setupFlow, state, start, endProps, _tmp, error, errorState;
7960
+ var _this, _ref, ref, maybeUpdateState, _this_setupFlow, state, start, endProps, _tmp, error, errorState;
8593
7961
  return _ts_generator(this, function(_state) {
8594
7962
  switch(_state.label){
8595
7963
  case 0:
8596
7964
  _this = this;
8597
- flow = (options === null || options === void 0 ? void 0 : options.format) === "a2ui" ? adaptA2UIToFlow(payload, this.logger) : payload;
8598
- ref = Symbol((_ref = flow === null || flow === void 0 ? void 0 : flow.id) !== null && _ref !== void 0 ? _ref : "payload");
7965
+ ref = Symbol((_ref = payload === null || payload === void 0 ? void 0 : payload.id) !== null && _ref !== void 0 ? _ref : "payload");
8599
7966
  maybeUpdateState = function maybeUpdateState(newState) {
8600
7967
  if (_this.state.ref !== ref) {
8601
7968
  _this.logger.warn("Received update for a flow that's not the current one");
@@ -8616,7 +7983,7 @@ var AsyncNodePlugin = function() {
8616
7983
  ,
8617
7984
  4
8618
7985
  ]);
8619
- _this_setupFlow = this.setupFlow(flow), state = _this_setupFlow.state, start = _this_setupFlow.start;
7986
+ _this_setupFlow = this.setupFlow(payload), state = _this_setupFlow.state, start = _this_setupFlow.start;
8620
7987
  this.setState(_object_spread({
8621
7988
  ref: ref
8622
7989
  }, state));
@@ -8651,7 +8018,7 @@ var AsyncNodePlugin = function() {
8651
8018
  errorState = {
8652
8019
  status: "error",
8653
8020
  ref: ref,
8654
- flow: flow,
8021
+ flow: payload,
8655
8022
  error: error
8656
8023
  };
8657
8024
  maybeUpdateState(errorState);