我正在使用Bot Framework网络聊天(基于反应)。我使用卡片操作(英雄卡片)来建议类似问题的列表。有时,英雄卡中的文字可能太长。在这种情况下,文本将被截断并替换为三个点。可以使用英雄卡的工具提示吗?
我查看了代码中的HeroCard
选项,但没有发现任何相关内容。
我已经在Github上提出了这个问题:https://github.com/microsoft/BotFramework-WebChat/issues/2032
对此有任何帮助吗?
答案 0 :(得分:1)
Web Chat使用Adaptive Cards NPM软件包来呈现卡,但是不幸的是,自适应卡不支持在卡中的元素上添加工具提示说明。但是,在GitHub上有几个issues已公开有关添加工具提示功能的信息,因此希望该功能很快将在Web Chat中可用。
即使Adaptive Cards不支持添加工具提示,您也可以为Web Chat创建自定义附件中间件并实现自己的Hero Card渲染器。下面的代码段显示了基本的Hero Card渲染器,没有任何样式。
<script type="text/babel">
const HeroCardAttachment = ({ buttons, images, title, store }) =>
<div className='ac-container'>
<div className='ac-container'>
{ images.map(({ url }, index) =>
<window.React.Fragment key={ index }>
<div>
<img src= { url } />
</div>
<div style={{height: '8px'}}/>
</window.React.Fragment>
)}
<div>{ title }</div>
</div>
<div />
<div >
{ buttons.map(({ title, type, value }, index) => (
<window.React.Fragment key={ index }>
<button
aria-label={ title }
type='button'
title={ title }
onClick={ () => {
switch (type) {
case 'openUrl':
window.open(value)
break;
case 'postBack':
store.dispatch({
type: 'WEB_CHAT/SEND_POST_BACK',
payload: { value }
});
break;
default:
store.dispatch({
type: 'WEB_CHAT/SEND_MESSAGE_BACK',
payload: { value, text: value, displayText: value }
});
}
}}
>
<div title={ title }>
{ title }
</div>
</button>
<div />
</window.React.Fragment>
))}
</div>
</div>;
(async function () {
const res = await fetch('/directline/token', { method: 'POST' });
const { token } = await res.json();
const { createStore, ReactWebChat } = window.WebChat;
const store = createStore();
const attachmentMiddleware = () => next => card => {
switch (card.attachment.contentType) {
case 'application/vnd.microsoft.card.hero':
return <HeroCardAttachment {...card.attachment.content} store={ store }/>;
default:
return next(card);
}
};
window.ReactDOM.render(
<ReactWebChat
attachmentMiddleware={ attachmentMiddleware }
directLine={ window.WebChat.createDirectLine({ token }) }
store={ store }
/>,
document.getElementById('webchat')
);
store.dispatch({
type: 'WEB_CHAT/SET_SEND_BOX',
payload: { text: 'sample:github-repository' }
});
document.querySelector('#webchat > *').focus();
})().catch(err => console.error(err));
</script>
有关附件中间件的更多详细信息,请查看此sample。
希望这会有所帮助。