如何在 WebChat 中自定义自适应卡片?

How to customize Adaptive-Cards in WebChat?

这个问题是我上一个问题的延伸。 ()

当时对自适应卡的自定义和WebChat.html文件了解不多

上图就是我要的自适应卡的布局图。 右边的预约按钮是Action.OpenUrl按钮。

要放置这样的按钮,我需要将 ActionSet 放入列中。但是,典型的 Adaptive Cards 不会像上图那样在 Column 中显示 ActionSet。 内容类型如下所示。 ContentType = "application/vnd.microsoft.card.adaptive" (在网络聊天中)

要解决这个问题,我必须自定义 Adaptive Cards,但我不确定如何自定义。

(惭愧, 我参考了下面的 link 但我仍然无法自定义卡片。

Bot Connector service is not using latest Adaptive Cards #87

你能告诉我解决这个问题的方法或者展示一个简单的定制卡片示例吗?请。

下面是我写的代码

我的自适应卡片代码:

card.Body.Add(new AdaptiveColumnSet()
{
    Columns = new List<AdaptiveColumn>()
    {
        new AdaptiveColumn()
        {
            //(~Date, No problem)
        },
        new AdaptiveColumn()
        {
            //(~Price, No problem)
        },
        new AdaptiveColumn()
        {
            Items =
            {
                new AdaptiveActionSet()
                {
                    Actions =
                    {
                        new AdaptiveOpenUrlAction()
                        {
                            Url = new Uri("https://www.SomeUrl.com"),
                            Title = "Reserve",
                            Style = "positive",
                        }
                    }
                }
            },
            Width = "auto",
        }
    },
});

var reply = turnContext.Activity.CreateReply();
reply.Attachments = new List<Attachment>
{
    new Attachment()
    {
        ContentType = "application/vnd.microsoft.card.custom",
        Content = card
    }
};

我的webChat.html:

const attachmentMiddleware = () => next => card => {
  if (card.attachment.contentype === 'application/vnd.microsoft.card.custom'){
    card.attachment.contentType = 'application/vnd.microsoft.card.adaptive'
  }
  return next(card)
};

window.WebChat.renderWebChat({
    directLine: botConnection,
    styleOptions,
    adaptiveCardHostConfig,
    attachmentMiddleware
}, document.getElementById('webchat'));

document.querySelector('#webchat > *').focus();

同上,ContentType = "application/vnd.microsoft.card.custom"

如果我将自定义分配给 contentType,

我收到一个名为“无渲染器”的错误。

使用 AdaptiveColumn 的 SelectAction 解决了这个问题。 并且它通过一起使用 AdaptiveTextBlock 和 SelectAction 并指定宽度。

例如)

Items =
    {
        new AdaptiveTextBlock()
        {
            HorizontalAlignment = AdaptiveHorizontalAlignment.Center,
            Color = AdaptiveTextColor.Light,
            Text = "Reserve",
            Weight = AdaptiveTextWeight.Bolder,
         }
    },
    SelectAction = new AdaptiveOpenUrlAction()
    {
        Url = new Uri($"{someurl}"),
        Title = "rsv",
        Id = "bb" + cnt,
    },
    Width = "50px"