如何在自适应卡上使用CSS样式?

时间:2019-09-25 19:41:42

标签: css botframework adaptive-cards web-chat

我正在尝试使用CSS在更细粒度的级别上对自适应卡进行样式设置,但是默认CSS类的相似名称使得难以定位单个元素。

我尝试尝试使用特定参数作为目标,但是它们仍然在一定程度上违反了规则。我曾尝试在自适应卡构建过程中使用唯一的ID或uniqueCSSSelector,但似乎它们在进入前端时都被剥离了。

以下是到目前为止我尝试过的一些示例。

li div .content .attachment .attachment div .ac-container:not(:first-child) .ac-columnSet:hover{
    background: #e6eaed;
    color: #323232;
}

li div .content .attachment .attachment div .ac-container:not(:first-child) .ac-columnSet:hover .ac-container .ac-textBlock p{
    color: #323232;
}```

2 个答案:

答案 0 :(得分:0)

您可以在此处设计自适应卡: https://adaptivecards.io/designer/

这里还列出了一些示例: https://adaptivecards.io/samples/

答案 1 :(得分:0)

首先,我要提到的是,此功能已经是BotFramework-WebChat存储库中正在处理的一项功能请求。我对此不了解ETA,所以不要计划很快。但是,请注意。

这是可以做到的,只需一点点黑客。简而言之,这些是您的步骤:

  1. 在自适应卡中创建“触发”属性,并为其分配唯一值。
  2. 创建一个activityMiddleware来查找触发值。收到后,然后通过附加id来更新将容纳传入自适应卡的元素。
  3. 在步骤2中,将纯CSS添加到基于附件id来对卡片进行样式设置的html中。
  4. activityMiddleware对象添加到直线。

希望有帮助!


下面是示例代码:

mainDialog.js -从我的机器人发送的自适应卡

  async basicAdaptiveCard ( stepContext ) {
    const card = {
      "$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
      "type": "AdaptiveCard",
      "version": "1.0",
      "trigger": "ServiceCardTrigger",
      "body": [
        {
          "type": "TextBlock",
          "text": "Hi!! How can I help you today?",
          "weight": "Bolder",
          "size": "Medium"
        }
      ],
      "actions": [
        {
          "type": "Action.Submit",
          "title": "Placeholder Message",
          "data": "close"
        }
      ]
    }

    const ac_card = CardFactory.adaptiveCard( card );
    await stepContext.context.sendActivity(
      {
        attachments: [ ac_card ]
      }
    );
    return { status: DialogTurnStatus.waiting };
  }

index.html -仅显示基本位。在此,我通过一个按钮进行跟踪,该按钮的值包括“服务详细信息”。这很简单,但是可以用于演示。根据需要进行更新。

<style>
  #ServiceCard {
    background-color: #e6eaed;
    color: #323232;
  }

  #ServiceCard:hover p {
    color: red
  }
</style>

[...]

<script type="text/babel">
  [...]

  const activityMiddleware = () => next => card => {
    const { activity: { from, type, attachments } } = card;
    if (type === 'message' && from.role === 'bot') {
      if(attachments && attachments[0].content.trigger === 'ServiceCardTrigger') {
        let children = document.getElementsByClassName('ac-adaptiveCard');
        for (let i = 0, j = children.length; i <= j; i++) {
          if(i === j - 1) {
            let child = children[i];
            if(child.lastChild.innerHTML.includes('Service details')) {
              child.id = 'ServiceCard';
            }
          }
        };
      }
    } 
    else {
      return next(card)
    }
  }

  [...]

  window.ReactDOM.render(
    <ReactWebChat
      activityMiddleware={ activityMiddleware }
      directLine={ directLine }
      username={'johndoe'}
    />,
    document.getElementById( 'webchat' )
  );

  [...]
</script>

enter image description here