Navigator 包含一个功能,用户可以在其中定义自己的表视图,请参阅Navigator 的 DAML 文档。
是否可以创建一个视图,其中一列呈现一个按钮,当单击该按钮时,会立即执行选择?
Navigator 包含一个功能,用户可以在其中定义自己的表视图,请参阅Navigator 的 DAML 文档。
是否可以创建一个视图,其中一列呈现一个按钮,当单击该按钮时,会立即执行选择?
是的,这是可能的。自定义视图允许您渲染任意 React 组件,因此让我们创建一个来进行选择。
首先,从一个工作frontend-config.js
文件开始。DAML 快速入门项目包含一个。
然后,确保在文件顶部至少导入以下符号:
import React from 'react';
import { Button, DamlLfValue, withExercise } from '@da/ui-core';
然后,定义以下顶级值(例如,就在下面export const version={...}
):
// Create a React component to render a button that exercises a choice on click.
const ExerciseChoiceButtonBase = (props) => (
<Button
onClick={(e) => {
props.exercise(props.contractId, props.choiceName, props.choiceArgument);
e.stopPropagation();
}}
>
{props.title}
</Button>
)
ExerciseChoiceButtonBase.displayName = 'ExerciseChoiceButtonBase';
// Inject the `exercise` property to the props of the wrapped component.
// The value of that property is a convenience function to send a
// network request to exercise a choice.
const ExerciseChoiceButton = withExercise()(ExerciseChoiceButtonBase)
ExerciseChoiceButton.displayName = 'ExerciseChoiceButton';
最后,在表格单元格定义中使用以下代码:
{
key: "id",
title: "Action",
createCell: ({rowData}) => {
// Render our new component.
// The contract ID and choice argument are computed from the current contract row.
return ({
type: "react",
value: <ExerciseChoiceButton
title='Transfer to issuer'
contractId={rowData.id}
choiceArgument={
DamlLfValue.record(undefined, [
{label: 'newOwner', value: DamlLfValue.party(DamlLfValue.toJSON(rowData.argument).issuer)}
])
}
choiceName='Iou_Transfer'
/>
});
},
sortable: true,
width: 80,
weight: 3,
alignment: "left"
}
另一种选择是创建一个 React 组件,其中onClick
处理程序使用fetch()
. 在通过 Navigator UI 执行选择时检查网络流量,以找出请求的格式。