Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support HTMl tags in message #208

Open
hamidpak013 opened this issue Oct 20, 2023 · 2 comments
Open

Support HTMl tags in message #208

hamidpak013 opened this issue Oct 20, 2023 · 2 comments

Comments

@hamidpak013
Copy link

here is the message that I want to show
Please select the Service Provider\n0. Main Menu\n1. Back\n2. CarSpa Experts\n3. DriveShine Services\n4. SwiftLube & Wash\n5. AutoCare Pros\n6. Greenwheels Maintenance;

  1. I want to show the asterisk message in Bold.
  2. \n should be added to the new line

so I wrote a method that reads the text from the backend and converts it into HTML tags like this:
<----Please select the Service Provider
0. Main Menu
1. Back
2. CarSpa Experts
3. DriveShine Services
4. SwiftLube & Wash
5. AutoCare Pros
6. Greenwheels Maintenance"---->

when I tried to provide my div element to text in MessageBox it popped up with this error

error: Type 'Element' is not assignable to type 'string'.

Please provide support for the HTML tags or provide a way to achieve this in Reactjs and Typescript

@last-Programmer
Copy link

the text property accepts React.Element. It seems to be that the typescript defintion of text property is just string only. that is the reason we are getting the error. it would be nice if it is updated some thing like this text: string | React.Element in IMessage inteface in type.d.ts

Thanks

@soerennielsen
Copy link

soerennielsen commented Jul 14, 2024

You can add a message to your datasource with html like this:
const response = {
position: "left",
title: "bot",
type: "text",
text: Stub response from backend with a link,
};
setMessages((prevMessages) => [...prevMessages, response]);

where "messages" is my datasource state.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants