@player-ui/check-path-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 CheckPathPlugin = 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 createMatcher = // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/plugins/check-path/core/src/index.ts
1923
1517
  function createMatcher(match) {
1924
1518
  if (typeof match === "string" || typeof match === "number") {
@@ -2160,7 +1754,7 @@ var CheckPathPlugin = function() {
2160
1754
  }
2161
1755
  return out;
2162
1756
  }
2163
- function isObject2(o) {
1757
+ function isObject(o) {
2164
1758
  return o != null && (typeof o === "undefined" ? "undefined" : _type_of(o)) === "object";
2165
1759
  }
2166
1760
  function addLast2(array, val) {
@@ -2233,7 +1827,7 @@ var CheckPathPlugin = function() {
2233
1827
  if (idx === path.length - 1) {
2234
1828
  newValue = val;
2235
1829
  } else {
2236
- var nestedObj = isObject2(obj) && isObject2(obj[key]) ? obj[key] : typeof path[idx + 1] === "number" ? [] : {};
1830
+ var nestedObj = isObject(obj) && isObject(obj[key]) ? obj[key] : typeof path[idx + 1] === "number" ? [] : {};
2237
1831
  newValue = doSetIn(nestedObj, path, val, idx + 1);
2238
1832
  }
2239
1833
  return set2(obj, key, newValue);
@@ -2363,7 +1957,7 @@ var CheckPathPlugin = function() {
2363
1957
  var key = keys[j];
2364
1958
  if (fAddDefaults && out[key] !== void 0) continue;
2365
1959
  var nextVal = obj[key];
2366
- if (fDeep && isObject2(out[key]) && isObject2(nextVal)) {
1960
+ if (fDeep && isObject(out[key]) && isObject(nextVal)) {
2367
1961
  nextVal = doMerge(fAddDefaults, fDeep, out[key], nextVal);
2368
1962
  }
2369
1963
  if (nextVal === void 0 || nextVal === out[key]) continue;
@@ -7835,234 +7429,8 @@ var CheckPathPlugin = function() {
7835
7429
  ref: Symbol("not-started"),
7836
7430
  status: "not-started"
7837
7431
  };
7838
- var A2UI_EVENT_CONTEXT_NAMESPACE = "agent.event.context";
7839
- var NUMERIC_SEGMENT = /^(0|[1-9]\d*)$/;
7840
- var decodeSegment = function decodeSegment(segment) {
7841
- return segment.replace(/~1/g, "/").replace(/~0/g, "~");
7842
- };
7843
- var isObject = function isObject(v) {
7844
- return (typeof v === "undefined" ? "undefined" : _type_of(v)) === "object" && v !== null && !Array.isArray(v);
7845
- };
7846
- var isPathRef = function isPathRef(v) {
7847
- return isObject(v) && typeof v.path === "string" && Object.keys(v).length === 1;
7848
- };
7849
- var isFunctionCall = function isFunctionCall(v) {
7850
- return isObject(v) && typeof v.call === "string";
7851
- };
7852
- function renderArg(value) {
7853
- if (value === null) return "null";
7854
- if (value === void 0) return "null";
7855
- if (typeof value === "boolean") return String(value);
7856
- if (typeof value === "number") return String(value);
7857
- if (typeof value === "string") return JSON.stringify(value);
7858
- if (Array.isArray(value)) {
7859
- return "[".concat(value.map(renderArg).join(", "), "]");
7860
- }
7861
- if (isPathRef(value)) {
7862
- return "{{".concat(pointerToBinding(value.path), "}}");
7863
- }
7864
- if (isFunctionCall(value)) {
7865
- var inner = translateFunctionCall(value);
7866
- return inner.replace(/^@\[/, "").replace(/\]@$/, "");
7867
- }
7868
- return JSON.stringify(value);
7869
- }
7870
- var INPUT_BINDING_PROPS = {
7871
- TextField: "text",
7872
- CheckBox: "checked",
7873
- DateTimeInput: "value",
7874
- ChoicePicker: "value",
7875
- Slider: "value"
7876
- };
7877
- var CHECK_TO_VALIDATOR = {
7878
- required: "required",
7879
- regex: "regex",
7880
- email: "email",
7881
- length: "length",
7882
- numeric: "numeric"
7883
- };
7884
- var TYPE_PREFIX = "T_";
7885
- var STRUCTURAL_KEYS = /* @__PURE__ */ new Set([
7886
- "id",
7887
- "component",
7888
- "child",
7889
- "children",
7890
- "checks",
7891
- "action"
7892
- ]);
7893
- function inlineComponent(component, ctx, templateScope) {
7894
- if (ctx.inProgress.has(component.id)) {
7895
- throw new Error("[a2ui] Component cycle detected at id '".concat(component.id, "'. A2UI requires the component graph to be a tree."));
7896
- }
7897
- ctx.inProgress.add(component.id);
7898
- var asset = {
7899
- id: component.id,
7900
- type: component.component
7901
- };
7902
- var _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = undefined;
7903
- try {
7904
- for(var _iterator = Object.entries(component)[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true){
7905
- var _step_value = _sliced_to_array(_step.value, 2), key = _step_value[0], value = _step_value[1];
7906
- if (STRUCTURAL_KEYS.has(key)) continue;
7907
- asset[key] = translatePropValue(value, templateScope, ctx, key);
7908
- }
7909
- } catch (err) {
7910
- _didIteratorError = true;
7911
- _iteratorError = err;
7912
- } finally{
7913
- try {
7914
- if (!_iteratorNormalCompletion && _iterator.return != null) {
7915
- _iterator.return();
7916
- }
7917
- } finally{
7918
- if (_didIteratorError) {
7919
- throw _iteratorError;
7920
- }
7921
- }
7922
- }
7923
- if (typeof component.child === "string") {
7924
- var childId = component.child;
7925
- asset.child = wrapInlined(resolveAndInline(childId, ctx, templateScope));
7926
- }
7927
- if (component.children) {
7928
- if (Array.isArray(component.children)) {
7929
- asset.children = component.children.map(function(id) {
7930
- return wrapInlined(resolveAndInline(id, ctx, templateScope));
7931
- });
7932
- } else {
7933
- var _component_children = component.children, path = _component_children.path, componentId = _component_children.componentId;
7934
- var data = scopedBinding(path, templateScope);
7935
- var templateComponent = ctx.byId.get(componentId);
7936
- if (!templateComponent) {
7937
- throw new Error("[a2ui] Templated children reference unknown componentId '".concat(componentId, "' on component '").concat(component.id, "'."));
7938
- }
7939
- var templated = inlineComponent(_object_spread_props(_object_spread({}, templateComponent), {
7940
- id: "".concat(templateComponent.id, "-_index_")
7941
- }), ctx, data);
7942
- asset.template = [
7943
- {
7944
- data: data,
7945
- output: "children",
7946
- value: {
7947
- asset: templated
7948
- }
7949
- }
7950
- ];
7951
- }
7952
- }
7953
- if (component.action) {
7954
- Object.assign(asset, translateAction(component.action, ctx));
7955
- }
7956
- ctx.inProgress.delete(component.id);
7957
- return asset;
7958
- }
7959
- var CHILD_KEY_RE = /(?:^|[a-z])Child$|^child$/;
7960
- var CHILDREN_KEY_RE = /(?:^|[a-z])Children$|^children$/;
7961
- function translatePropValue(value, templateScope, ctx, parentKey) {
7962
- if (value === null || value === void 0) return value;
7963
- if (parentKey && CHILD_KEY_RE.test(parentKey) && typeof value === "string") {
7964
- return wrapInlined(resolveAndInline(value, ctx, templateScope));
7965
- }
7966
- if (parentKey && CHILDREN_KEY_RE.test(parentKey)) {
7967
- if (Array.isArray(value) && value.every(function(v) {
7968
- return typeof v === "string";
7969
- })) {
7970
- return value.map(function(id) {
7971
- return wrapInlined(resolveAndInline(id, ctx, templateScope));
7972
- });
7973
- }
7974
- if ((typeof value === "undefined" ? "undefined" : _type_of(value)) === "object" && value !== null && !Array.isArray(value) && "componentId" in value) {
7975
- var _ctx_logger;
7976
- (_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."));
7977
- }
7978
- }
7979
- if ((typeof value === "undefined" ? "undefined" : _type_of(value)) !== "object") return value;
7980
- if (Array.isArray(value)) {
7981
- return value.map(function(v) {
7982
- return translatePropValue(v, templateScope, ctx, void 0);
7983
- });
7984
- }
7985
- if (isPathRef(value)) {
7986
- return scopedBinding(value.path, templateScope);
7987
- }
7988
- if (isFunctionCall(value)) {
7989
- if (templateScope) {
7990
- return translateFunctionCall(rewritePathsInCall(value, templateScope), ctx.logger);
7991
- }
7992
- return translateFunctionCall(value, ctx.logger);
7993
- }
7994
- var out = {};
7995
- var _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = undefined;
7996
- try {
7997
- for(var _iterator = Object.entries(value)[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true){
7998
- var _step_value = _sliced_to_array(_step.value, 2), k = _step_value[0], v = _step_value[1];
7999
- out[k] = translatePropValue(v, templateScope, ctx, k);
8000
- }
8001
- } catch (err) {
8002
- _didIteratorError = true;
8003
- _iteratorError = err;
8004
- } finally{
8005
- try {
8006
- if (!_iteratorNormalCompletion && _iterator.return != null) {
8007
- _iterator.return();
8008
- }
8009
- } finally{
8010
- if (_didIteratorError) {
8011
- throw _iteratorError;
8012
- }
8013
- }
8014
- }
8015
- return out;
8016
- }
8017
- function rewritePathsInCall(value, scope) {
8018
- if (!value || (typeof value === "undefined" ? "undefined" : _type_of(value)) !== "object") return value;
8019
- if (Array.isArray(value)) {
8020
- return value.map(function(v) {
8021
- return rewritePathsInCall(v, scope);
8022
- });
8023
- }
8024
- if (isPathRef(value)) {
8025
- return {
8026
- path: scopedPointer(value.path, scope)
8027
- };
8028
- }
8029
- if (isFunctionCall(value)) {
8030
- return _object_spread_props(_object_spread({}, value), {
8031
- args: value.args ? Object.fromEntries(Object.entries(value.args).map(function(param) {
8032
- var _param = _sliced_to_array(param, 2), k = _param[0], v = _param[1];
8033
- return [
8034
- k,
8035
- rewritePathsInCall(v, scope)
8036
- ];
8037
- })) : value.args
8038
- });
8039
- }
8040
- return Object.fromEntries(Object.entries(value).map(function(param) {
8041
- var _param = _sliced_to_array(param, 2), k = _param[0], v = _param[1];
8042
- return [
8043
- k,
8044
- rewritePathsInCall(v, scope)
8045
- ];
8046
- }));
8047
- }
8048
- function renderRhs(value) {
8049
- if (value === null || value === void 0) return "null";
8050
- if (typeof value === "boolean") return String(value);
8051
- if (typeof value === "number") return String(value);
8052
- if (typeof value === "string") return JSON.stringify(value);
8053
- if (Array.isArray(value)) {
8054
- return "[".concat(value.map(renderRhs).join(", "), "]");
8055
- }
8056
- if (isPathRef(value)) {
8057
- return "{{".concat(pointerToBinding(value.path), "}}");
8058
- }
8059
- if (isFunctionCall(value)) {
8060
- return translateFunctionCall(value).replace(/^@\[/, "").replace(/\]@$/, "");
8061
- }
8062
- return JSON.stringify(value);
8063
- }
8064
- var PLAYER_VERSION = true ? "0.16.0--canary.866.36538" : "unknown";
8065
- var COMMIT = true ? "0186f1bd04fda238cbc62b8d293c8048ab26efc2" : "unknown";
7432
+ var PLAYER_VERSION = true ? "0.16.0--canary.891.38194" : "unknown";
7433
+ var COMMIT = true ? "19c662af721e43233cb821c155eae633a4e0129d" : "unknown";
8066
7434
  var _Player = /*#__PURE__*/ function() {
8067
7435
  function _Player2(config) {
8068
7436
  var _this = this;
@@ -8390,15 +7758,14 @@ var CheckPathPlugin = function() {
8390
7758
  },
8391
7759
  {
8392
7760
  key: "start",
8393
- value: function start(payload, options) {
7761
+ value: function start(payload) {
8394
7762
  return _async_to_generator(function() {
8395
- var _this, _ref, flow, ref, maybeUpdateState, _this_setupFlow, state, start, endProps, _tmp, error, errorState;
7763
+ var _this, _ref, ref, maybeUpdateState, _this_setupFlow, state, start, endProps, _tmp, error, errorState;
8396
7764
  return _ts_generator(this, function(_state) {
8397
7765
  switch(_state.label){
8398
7766
  case 0:
8399
7767
  _this = this;
8400
- flow = (options === null || options === void 0 ? void 0 : options.format) === "a2ui" ? adaptA2UIToFlow(payload, this.logger) : payload;
8401
- ref = Symbol((_ref = flow === null || flow === void 0 ? void 0 : flow.id) !== null && _ref !== void 0 ? _ref : "payload");
7768
+ ref = Symbol((_ref = payload === null || payload === void 0 ? void 0 : payload.id) !== null && _ref !== void 0 ? _ref : "payload");
8402
7769
  maybeUpdateState = function maybeUpdateState(newState) {
8403
7770
  if (_this.state.ref !== ref) {
8404
7771
  _this.logger.warn("Received update for a flow that's not the current one");
@@ -8419,7 +7786,7 @@ var CheckPathPlugin = function() {
8419
7786
  ,
8420
7787
  4
8421
7788
  ]);
8422
- _this_setupFlow = this.setupFlow(flow), state = _this_setupFlow.state, start = _this_setupFlow.start;
7789
+ _this_setupFlow = this.setupFlow(payload), state = _this_setupFlow.state, start = _this_setupFlow.start;
8423
7790
  this.setState(_object_spread({
8424
7791
  ref: ref
8425
7792
  }, state));
@@ -8454,7 +7821,7 @@ var CheckPathPlugin = function() {
8454
7821
  errorState = {
8455
7822
  status: "error",
8456
7823
  ref: ref,
8457
- flow: flow,
7824
+ flow: payload,
8458
7825
  error: error
8459
7826
  };
8460
7827
  maybeUpdateState(errorState);