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 pathBubble.d.ts
141 lines (141 loc) · 6.91 KB
/
Bubble.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
import PropTypes from 'prop-types';
import React from 'react';
import { StyleProp, ViewStyle, TextStyle } from 'react-native';
import QuickReplies from './QuickReplies';
import MessageText from './MessageText';
import MessageImage from './MessageImage';
import Time from './Time';
import { User, IMessage, LeftRightStyle, Reply, Omit, MessageVideoProps } from './types';
export declare type RenderMessageImageProps<TMessage extends IMessage> = Omit<BubbleProps<TMessage>, 'containerStyle' | 'wrapperStyle'> & MessageImage['props'];
export declare type RenderMessageVideoProps<TMessage extends IMessage> = Omit<BubbleProps<TMessage>, 'containerStyle' | 'wrapperStyle'> & MessageVideoProps<TMessage>;
export declare type RenderMessageTextProps<TMessage extends IMessage> = Omit<BubbleProps<TMessage>, 'containerStyle' | 'wrapperStyle'> & MessageText['props'];
export interface BubbleProps<TMessage extends IMessage> {
user?: User;
touchableProps?: object;
renderUsernameOnMessage?: boolean;
isCustomViewBottom?: boolean;
inverted?: boolean;
position: 'left' | 'right';
currentMessage?: TMessage;
nextMessage?: TMessage;
previousMessage?: TMessage;
optionTitles?: string[];
containerStyle?: LeftRightStyle<ViewStyle>;
wrapperStyle?: LeftRightStyle<ViewStyle>;
textStyle?: LeftRightStyle<TextStyle>;
bottomContainerStyle?: LeftRightStyle<ViewStyle>;
tickStyle?: StyleProp<TextStyle>;
containerToNextStyle?: LeftRightStyle<ViewStyle>;
containerToPreviousStyle?: LeftRightStyle<ViewStyle>;
usernameStyle?: LeftRightStyle<ViewStyle>;
quickReplyStyle?: StyleProp<ViewStyle>;
onLongPress?(context?: any, message?: any): void;
onQuickReply?(replies: Reply[]): void;
renderMessageImage?(props: RenderMessageImageProps<TMessage>): React.ReactNode;
renderMessageVideo?(props: RenderMessageVideoProps<TMessage>): React.ReactNode;
renderMessageText?(props: RenderMessageTextProps<TMessage>): React.ReactNode;
renderCustomView?(bubbleProps: BubbleProps<TMessage>): React.ReactNode;
renderTime?(timeProps: Time['props']): React.ReactNode;
renderTicks?(currentMessage: TMessage): React.ReactNode;
renderUsername?(): React.ReactNode;
renderQuickReplySend?(): React.ReactNode;
renderQuickReplies?(quickReplies: QuickReplies['props']): React.ReactNode;
}
export default class Bubble<TMessage extends IMessage = IMessage> extends React.Component<BubbleProps<TMessage>> {
static contextTypes: {
actionSheet: PropTypes.Requireable<(...args: any[]) => any>;
};
static defaultProps: {
touchableProps: {};
onLongPress: null;
renderMessageImage: null;
renderMessageVideo: null;
renderMessageText: null;
renderCustomView: null;
renderUsername: null;
renderTicks: null;
renderTime: null;
renderQuickReplies: null;
onQuickReply: null;
position: string;
optionTitles: string[];
currentMessage: {
text: null;
createdAt: null;
image: null;
};
nextMessage: {};
previousMessage: {};
containerStyle: {};
wrapperStyle: {};
bottomContainerStyle: {};
tickStyle: {};
usernameStyle: {};
containerToNextStyle: {};
containerToPreviousStyle: {};
};
static propTypes: {
user: PropTypes.Validator<object>;
touchableProps: PropTypes.Requireable<object>;
onLongPress: PropTypes.Requireable<(...args: any[]) => any>;
renderMessageImage: PropTypes.Requireable<(...args: any[]) => any>;
renderMessageVideo: PropTypes.Requireable<(...args: any[]) => any>;
renderMessageText: PropTypes.Requireable<(...args: any[]) => any>;
renderCustomView: PropTypes.Requireable<(...args: any[]) => any>;
isCustomViewBottom: PropTypes.Requireable<boolean>;
renderUsernameOnMessage: PropTypes.Requireable<boolean>;
renderUsername: PropTypes.Requireable<(...args: any[]) => any>;
renderTime: PropTypes.Requireable<(...args: any[]) => any>;
renderTicks: PropTypes.Requireable<(...args: any[]) => any>;
renderQuickReplies: PropTypes.Requireable<(...args: any[]) => any>;
onQuickReply: PropTypes.Requireable<(...args: any[]) => any>;
position: PropTypes.Requireable<string>;
optionTitles: PropTypes.Requireable<(string | null)[]>;
currentMessage: PropTypes.Requireable<object>;
nextMessage: PropTypes.Requireable<object>;
previousMessage: PropTypes.Requireable<object>;
containerStyle: PropTypes.Requireable<PropTypes.InferProps<{
left: PropTypes.Validator<StyleProp<ViewStyle>> | undefined;
right: PropTypes.Validator<StyleProp<ViewStyle>> | undefined;
}>>;
wrapperStyle: PropTypes.Requireable<PropTypes.InferProps<{
left: PropTypes.Validator<StyleProp<ViewStyle>> | undefined;
right: PropTypes.Validator<StyleProp<ViewStyle>> | undefined;
}>>;
bottomContainerStyle: PropTypes.Requireable<PropTypes.InferProps<{
left: PropTypes.Validator<StyleProp<ViewStyle>> | undefined;
right: PropTypes.Validator<StyleProp<ViewStyle>> | undefined;
}>>;
tickStyle: PropTypes.Requireable<any>;
usernameStyle: PropTypes.Requireable<any>;
containerToNextStyle: PropTypes.Requireable<PropTypes.InferProps<{
left: PropTypes.Validator<StyleProp<ViewStyle>> | undefined;
right: PropTypes.Validator<StyleProp<ViewStyle>> | undefined;
}>>;
containerToPreviousStyle: PropTypes.Requireable<PropTypes.InferProps<{
left: PropTypes.Validator<StyleProp<ViewStyle>> | undefined;
right: PropTypes.Validator<StyleProp<ViewStyle>> | undefined;
}>>;
};
onLongPress: () => void;
styledBubbleToNext(): (false | ViewStyle | import("react-native").RegisteredStyle<ViewStyle> | import("react-native").RecursiveArray<false | ViewStyle | import("react-native").RegisteredStyle<ViewStyle> | null | undefined> | {
borderBottomLeftRadius: number;
} | {
borderBottomRightRadius: number;
} | null | undefined)[] | null;
styledBubbleToPrevious(): (false | ViewStyle | import("react-native").RegisteredStyle<ViewStyle> | import("react-native").RecursiveArray<false | ViewStyle | import("react-native").RegisteredStyle<ViewStyle> | null | undefined> | {
borderTopLeftRadius: number;
} | {
borderTopRightRadius: number;
} | null | undefined)[] | null;
renderQuickReplies(): {} | null | undefined;
renderMessageText(): {} | null | undefined;
renderMessageImage(): {} | null | undefined;
renderMessageVideo(): {} | null | undefined;
renderTicks(): {} | null | undefined;
renderTime(): {} | null | undefined;
renderUsername(): JSX.Element | null;
renderCustomView(): {} | null | undefined;
renderBubbleContent(): JSX.Element;
render(): JSX.Element;
}