PSSearchMessage
Tìm kiếm tin nhắn trong cuộc hội thoại
navigation.navigate('PSSearchMessageScreen', {
threadId: threadId,
});
- RN CLI
- Expo
import {PSSearchMessage} from '@communi/chat-react-native';
import {PSSearchMessage} from '@piscale/chat-expo';
export const PSSearchMessageScreen = ({...}: {...}) => {
return <PSSearchMessage {...props} />;
}
type PSSearchMessageProps = {
threadId: string;
searchMessageStyles?: PSSearchMessageStyles;
onBackPress?: null | (() => void) | undefined;
onViewMessage?: null | ((messageId: number) => void) | undefined;
};
Tên | Mô tả | Tham số | Bắt buộc |
---|---|---|---|
threadId | Tham số xác định id của cuộc hội thoại | ✓ | |
searchMessageStyles | 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 | ✗ | |
onViewMessage | Tham số gọi lại khi cần xem message trong cuộc hội thoại | messageId: Tham số xác định id của message | ✗ |