This repository was archived by the owner on Aug 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAvatar.d.ts
54 lines (54 loc) · 2.36 KB
/
Avatar.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import PropTypes from 'prop-types';
import React, { ReactNode } from 'react';
import { ImageStyle, ViewStyle } from 'react-native';
import { Omit, IMessage, User, LeftRightStyle } from './types';
export interface AvatarProps<TMessage extends IMessage> {
currentMessage?: TMessage;
previousMessage?: TMessage;
nextMessage?: TMessage;
position: 'left' | 'right';
renderAvatarOnTop?: boolean;
showAvatarForEveryMessage?: boolean;
imageStyle?: LeftRightStyle<ImageStyle>;
containerStyle?: LeftRightStyle<ViewStyle>;
renderAvatar?(props: Omit<AvatarProps<TMessage>, 'renderAvatar'>): ReactNode;
onPressAvatar?(user: User): void;
onLongPressAvatar?(user: User): void;
}
export default class Avatar<TMessage extends IMessage = IMessage> extends React.Component<AvatarProps<TMessage>> {
static defaultProps: {
renderAvatarOnTop: boolean;
showAvatarForEveryMessage: boolean;
position: string;
currentMessage: {
user: null;
};
previousMessage: {};
nextMessage: {};
containerStyle: {};
imageStyle: {};
onPressAvatar: () => void;
onLongPressAvatar: () => void;
};
static propTypes: {
renderAvatarOnTop: PropTypes.Requireable<boolean>;
showAvatarForEveryMessage: PropTypes.Requireable<boolean>;
position: PropTypes.Requireable<string>;
currentMessage: PropTypes.Requireable<object>;
previousMessage: PropTypes.Requireable<object>;
nextMessage: PropTypes.Requireable<object>;
onPressAvatar: PropTypes.Requireable<(...args: any[]) => any>;
onLongPressAvatar: PropTypes.Requireable<(...args: any[]) => any>;
renderAvatar: PropTypes.Requireable<(...args: any[]) => any>;
containerStyle: PropTypes.Requireable<PropTypes.InferProps<{
left: PropTypes.Validator<import("react-native").StyleProp<ViewStyle>> | undefined;
right: PropTypes.Validator<import("react-native").StyleProp<ViewStyle>> | undefined;
}>>;
imageStyle: PropTypes.Requireable<PropTypes.InferProps<{
left: PropTypes.Validator<import("react-native").StyleProp<ViewStyle>> | undefined;
right: PropTypes.Validator<import("react-native").StyleProp<ViewStyle>> | undefined;
}>>;
};
renderAvatar(): {} | null | undefined;
render(): JSX.Element | null;
}