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