Skip to main content

PSMessageNotification

PSMessageNotification là component dùng để hiển thị thông báo trong ứng dụng khi có tin nhắn mới đến.

Cách sử dụng

import { PSChatProvider, PSMessageNotification } from "@communi/chat-react";

export const App = () => {
const fetchCommuniToken = async () => {
return "YOUR_TOKEN";
};

const handleNotificationClick = (messageData) => {
// Do something when click on notification
};

return (
<PSChatProvider appId="YOUR_APP_ID" fetchToken={fetchCommuniToken}>
<PSMessageNotification onNotificationClick={handleNotificationClick} />
</PSChatProvider>
);
};

Props API

Thuộc tínhMô tảKiểu dữ liệuBắt buộcGiá trị mặc định
positionVị trí hiển thị của thông báobottom-left \ bottom-center \ bottom-right \
disableRenderUINgăn chặn việc hiển thị thông báo mặc định nếu giá trị là truebooleanKhôngfalse
onNotifyHàm gọi lại khi nhận được một thông báo(data: MessageData) => voidKhông-
onNotificationClickHàm gọi lại khi người dùng click vào thông báo(data: MessageData) => voidKhông() => {}