PSNewNameGroupThread
Tạo cuộc hội thoại nhóm - đặt tên nhóm
navigation.navigate('PSNewNameGroupThreadScreen', {
selectedUsers: selectedUsers,
});
- RN CLI
- Expo
import {PSNewNameGroupThread} from '@communi/chat-react-native';
import {PSNewNameGroupThread} from '@piscale/chat-expo';
export const PSNewNameGroupThreadScreen = ({...}: {...}) => {
return <PSNewNameGroupThread {...props} />;
}
type PSNewNameGroupThreadProps = {
selectedUsers: PSUserModel[];
newNameGroupThreadStyles?: PSNewNameGroupThreadStyles;
onBackPress?: null | (() => void) | undefined;
onComplete?: null | ((threadId: string) => void) | undefined;
};
Tên | Mô tả | Tham số | Bắt buộc |
---|---|---|---|
selectedUsers | Tham số xác định thông tin users được chọn | ✓ | |
newNameGroupThreadStyles | 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 | ✗ | |
onComplete | Tham số gọi lại khi tạo nhóm thành công cần chuyển hướng tới PSMessages | threadId: Tham số xác định id của cuộc hội thoại nhóm đã được tạo thành công | ✗ |