Skip to main content

PSForwardMessage

Danh sách các cuộc hội thoại để chuyển tiếp tin nhắn

navigation.navigate('PSForwardMessageScreen', {
threadId: threadId,
messageIds: messageIds,
});
import {PSForwardMessage} from '@communi/chat-react-native';
export const PSForwardMessageScreen = ({...}: {...}) => {
return <PSForwardMessage {...props} />;
}
type PSForwardMessageProps = {
threadId: string;
messageIds: number[];
forwardMessageStyles?: PSForwardMessageStyles;
onBackPress?: null | (() => void) | undefined;
};
export type PSForwardMessageStyles = {
isSearchOnlyJoinedThreads?: boolean;
};
TênMô tảBắt buộc
threadIdTham số xác định id của cuộc hội thoại
messageIdsTham số xác định ids của messages cần forward
forwardMessageStylesTham số xác định style cho các thành phần UI
onBackPressTham số gọi lại khi cần back về state trước
isSearchOnlyJoinedThreadsTham số cấu hình cho phép chỉ search những cuộc hội thoại đã tham gia để forward tin nhắn