Skip to main content

PSJoinGroupInvitation

Sử dụng PSJoinGroupInvitation hiển thị thông báo mời tham gia nhóm.

Cách sử dụng

import { PSChatProvider, PSJoinGroupInvitation } from "@communi/chat-react";
import { useParams } from "react-router-dom";

export const App = () => {
// Ở đây chúng tôi lấy invite_key từ url bằng react-router-dom
const { invite_key } = useParams();

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

const handleJoinGroup = (threadId) => {
// Xử lý sự kiện tham gia nhóm, ví dụng navigate đến màn hình cuộc hội thoại
};

return (
<PSChatProvider appId="YOUR_APP_ID" fetchToken={fetchCommuniToken}>
<PSJoinGroupInvitation
inviteKey={inviteKey}
onJoin={onJoin}
onClose={onClose}
/>
</PSChatProvider>
);
};

Props API

Thuộc tínhMô tảKiểu dữ liệuBắt buộcGiá trị mặc định
inviteKeyMã mời tham giastring_
onCloseHàm gọi lại khi người dùng ấn nút đóngfunction(id: string)Không_
onJoinHàm gọi lại khi người dùng tham gia nhóm thành côngfunction(id: string)Không-