You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Currently, rendering the UnsupportedContent component is done by stringifying the component and appending it as a string in the content property. This brings in state mutation of the props that is not advised.
Expected behavior
Rendered UnsupportedContent component as a react component. Wrap it in ChatMessage or ChatMyMessage components from @fluentui/react-components. Add the chat message header customizations for a similar look to the rest of the messages. Remove any state mutations on the props passed in onRenderMessage.
In a case where we want developers to provide their own logic to render the content (replace an adaptive card, for instance), we should provide a onUnsupportedContentRender callback that developers can use to return a JSX element if required.
In a case where we want developers to provide their own logic to render the content (replace an adaptive card, for instance), we should provide a onUnsupportedContentRender callback that developers can use to return a JSX element if required.
Good idea, we should make this its own issue. Update: #3122
Describe the bug
Currently, rendering the
UnsupportedContent
component is done by stringifying the component and appending it as a string in the content property. This brings in state mutation of the props that is not advised.To Reproduce
Steps to reproduce the behavior:
microsoft-graph-toolkit/packages/mgt-chat/src/utils/chat.tsx
Lines 15 to 24 in 2a61bd7
Expected behavior
Rendered
UnsupportedContent
component as a react component. Wrap it inChatMessage
orChatMyMessage
components from@fluentui/react-components
. Add the chat message header customizations for a similar look to the rest of the messages. Remove any state mutations on the props passed inonRenderMessage
.Additional Context
ChatMessage
andChatMyMessage
The text was updated successfully, but these errors were encountered: