我正在尝试使用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;
}```

最佳答案

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

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


在您的自适应卡中创建一个“触发”属性,并为其分配一个唯一值。
创建一个activityMiddleware查找触发值。收到后,通过附加id更新将容纳传入自适应卡的元素。
将纯CSS添加到您的html中,以便在步骤2中根据附加的id对卡进行样式设置。
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>


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

09-13 05:23