forked from germc/Atlas-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ATLConversationViewController.h
309 lines (262 loc) · 16.2 KB
/
ATLConversationViewController.h
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
//
// ATLUIConversationViewController.h
// Atlas
//
// Created by Kevin Coleman on 8/31/14.
// Copyright (c) 2014 Layer, Inc. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
#import <UIKit/UIKit.h>
#import <LayerKit/LayerKit.h>
#import <MapKit/MapKit.h>
#import "ATLParticipant.h"
#import "ATLBaseConversationViewController.h"
typedef NS_ENUM(NSUInteger, ATLAvatarItemDisplayFrequency) {
ATLAvatarItemDisplayFrequencySection,
ATLAvatarItemDisplayFrequencyCluster,
ATLAvatarItemDisplayFrequencyAll
};
@class ATLConversationViewController;
@protocol ATLMessagePresenting;
///---------------------------------------
/// @name Delegate
///---------------------------------------
NS_ASSUME_NONNULL_BEGIN
@protocol ATLConversationViewControllerDelegate <NSObject>
@optional
/**
@abstract Informs the delegate that a user successfully sent an `LYRMessage` object.
@param viewController The `ATLConversationViewController` in which the message was sent.
@param message The `LYRMessage` object that was sent via Layer.
*/
- (void)conversationViewController:(ATLConversationViewController *)viewController didSendMessage:(LYRMessage *)message;
/**
@abstract Informs the delegate that an `LYRMessage` object send attempt failed.
@param viewController The `ATLConversationViewController` in which the message failed to send.
@param message The `LYRMessage` object which was attempted to be sent via Layer.
@param error The `NSError` object describing why send failed.
*/
- (void)conversationViewController:(ATLConversationViewController *)viewController didFailSendingMessage:(LYRMessage *)message error:(NSError *)error;
/**
@abstract Informs the delegate that an `LYRMessage` object was tapped.
@param viewController The `ATLConversationViewController` in which the message failed to send.
@param message The `LYRMessage` object which that was tapped.
*/
- (void)conversationViewController:(ATLConversationViewController *)viewController didSelectMessage:(LYRMessage *)message;
/**
@abstract Asks the delegate for the height to use for a message's cell.
@param viewController The `ATLConversationViewController` where the message cell will appear.
@param message The `LYRMessage` object that will be displayed in the cell.
@param cellWidth The width of the message's cell.
@return The height needed for the message's cell.
@discussion Applications should only return a value if the `message` object requires a custom cell class. If `nil` is returned, the collection view will default
to internal height calculations.
*/
- (CGFloat)conversationViewController:(ATLConversationViewController *)viewController heightForMessage:(LYRMessage *)message withCellWidth:(CGFloat)cellWidth;
/**
@abstract Informs the delegate of a cell being configured for the specified message.
@param conversationViewController The `ATLConversationViewController` where the message cell will appear.
@param cell The `UICollectionViewCell` object that confirms to the `ATLMessagePresenting` protocol that will be displayed in the controller.
@param message The `LYRMessage` object that will be displayed in the cell.
@discussion Applications should implement this method if they want add further configuration that is not set up during cell initialization, such as gesture recognizers.
It is up to the application to typecast the cell to access custom cell properties.
*/
- (void)conversationViewController:(ATLConversationViewController *)conversationViewController configureCell:(UICollectionViewCell<ATLMessagePresenting> *)cell forMessage:(LYRMessage *)message;
/**
@abstract Asks the delegate for an `NSOrderedSet` of `LYRMessage` objects representing an `NSArray` of content parts.
@param viewController The `ATLConversationViewController` supplying the content parts.
@param mediaAttachments The array of `ATLMediaAttachment` items supplied via user input into the `messageInputToolbar` property of the controller.
@return An `NSOrderedSet` of `LYRMessage` objects. If `nil` is returned, the controller will fall back to default behavior. If an empty
`NSOrderedSet` is returned, the controller will not send any messages.
@discussion Called when a user taps the `rightAccessoryButton` on an `ATLMessageInputToolbar`. The media attachments array supplied can contain
any media type, such as text, images, GPS location information. The media attachment array can also be empty, which indicates the `rightAccessoryButton`
was tapped when it contained no content, ie. the location share. Applications who wish to send `LYRMessage` objects with custom `LYRMessagePart` MIME
types not supported by default by Atlas can do so by implementing this method. All `LYRMessage` objects returned will be immediately sent into the
current conversation for the controller. If implemented, applications should also register custom `UICollectionViewCell` classes with the controller via
a call to `registerClass:forMessageCellWithReuseIdentifier:`. They should also implement the optional data source method, `conversationViewController:reuseIdentifierForMessage:`.
*/
- (nullable NSOrderedSet <LYRMessage*> *)conversationViewController:(ATLConversationViewController *)viewController messagesForMediaAttachments:(NSArray <ATLMediaAttachment*> *)mediaAttachments;
@end
///---------------------------------------
/// @name Data Source
///---------------------------------------
@protocol ATLConversationViewControllerDataSource <NSObject>
/**
@abstract Asks the data source for an object conforming to the `ATLParticipant` protocol for a given identifier.
@param conversationViewController The `ATLConversationViewController` requesting the object.
@param identity The participant identity.
@return An object conforming to the `ATLParticipant` protocol.
*/
- (id<ATLParticipant>)conversationViewController:(ATLConversationViewController *)conversationViewController participantForIdentity:(LYRIdentity *)identity;
/**
@abstract Asks the data source for an `NSAttributedString` representation of a given date.
@param conversationViewController The `ATLConversationViewController` requesting the string.
@param date The `NSDate` object to be displayed as a string.
@return an `NSAttributedString` representing the given date.
@discussion The date string will be displayed above message cells in section headers. The date represents the `sentAt` date of a message object.
The string can be customized to appear in whichever format your application requires.
*/
- (NSAttributedString *)conversationViewController:(ATLConversationViewController *)conversationViewController attributedStringForDisplayOfDate:(NSDate *)date;
/**
@abstract Asks the data source for an `NSAttributedString` representation of a given `LYRRecipientStatus`.
@param conversationViewController The `ATLConversationViewController` requesting the string.
@param recipientStatus The `LYRRecipientStatus` object to be displayed as a question
string.
@return An `NSAttributedString` representing the give recipient status.
@discussion The recipient status string will be displayed below message the most recent message sent by the authenticated user.
*/
- (NSAttributedString *)conversationViewController:(ATLConversationViewController *)conversationViewController attributedStringForDisplayOfRecipientStatus:(NSDictionary *)recipientStatus;
@optional
/**
@abstract Asks the data source for the collection view cell reuse identifier for a message.
@param viewController The `ATLConversationViewController` requesting the string.
@param message The `LYRMessage` object to display in the cell.
@return A string that will be used to dequeue a cell from the collection view.
@discussion Applications that wish to use custom cells in the `ATLConversationViewController` must first register a reuse identifier for their custom cell class.
This can be done via a call to `registerClass:forMessageCellWithReuseIdentifier:`. Applications should then return the registered reuse identifier only when necessary.
If `nil` is returned, the collection view will default to internal values for reuse identifiers.
*/
- (nullable NSString *)conversationViewController:(ATLConversationViewController *)viewController reuseIdentifierForMessage:(LYRMessage *)message;
/**
@abstract Asks the data source to provide a conversation for a set of participants.
@param viewController The `ATLConversationViewController` requesting the conversation.
@param participants A set of objects conforming to `ATLParticipant`.
@return A conversation that will be used by the conversation view controller.
@discussion Applications may implement this method to override the default behavior which is described below.
If this method is not implemented or `nil` is returned, the conversation view controller will default to 1) disabling delivery receipts if there are more than five participants and 2) using an existing conversation between the participants if one already exists.
*/
- (nullable LYRConversation *)conversationViewController:(ATLConversationViewController *)viewController conversationWithParticipants:(NSSet *)participants;
/**
@abstract Asks the data source to configure the default query used to fetch content for the controller if necessary.
@discussion The `LYRConversationViewController` uses the following default query:
LYRQuery *query = [LYRQuery queryWithQueryableClass:[LYRMessage class]];
query.predicate = [LYRPredicate predicateWithProperty:@"conversation" predicateOperator:LYRPredicateOperatorIsEqualTo value:self.conversation];
query.sortDescriptors = @[[NSSortDescriptor sortDescriptorWithKey:@"position" ascending:YES]];
Applications that require advanced query configuration can do so by implementing this data source method.
@param viewController The `ATLConversationViewController` requesting the configuration.
@param defaultQuery An `LYRQuery` object with the default configuration for the controller.
@return An `LYRQuery` object with any additional configuration.
@raises `NSInvalidArgumentException` if an `LYRQuery` object is not returned.
*/
- (LYRQuery *)conversationViewController:(ATLConversationViewController *)viewController willLoadWithQuery:(LYRQuery *)defaultQuery;
@end
/**
@abstract The `ATLConversationViewController` class presents an interface that provides for displaying
a Layer conversation and the ability to send messages. The controller's design and functionality closely correlates with
the conversation view controller in Messages.
*/
@interface ATLConversationViewController : ATLBaseConversationViewController <ATLAddressBarViewControllerDelegate, ATLMessageInputToolbarDelegate, UIActionSheetDelegate, UIImagePickerControllerDelegate, UINavigationControllerDelegate, LYRQueryControllerDelegate>
///---------------------------------------
/// @name Initializing a Controller
///---------------------------------------
/**
@abstract Creates and returns a new `ATLConversationViewController` initialized with an `LYRClient` object.
@param layerClient The `LYRClient` object from which to retrieve the messages for display.
@return An `LYRConversationViewController` object.
*/
+ (instancetype)conversationViewControllerWithLayerClient:(LYRClient *)layerClient;
/**
@abstract Initializes a new `ATLConversationViewController` object with the given `LYRClient` object.
@param layerClient The `LYRClient` object from which to retrieve the messages for display.
@return An `LYRConversationViewController` object initialized with the given `LYRClient` object.
*/
- (instancetype)initWithLayerClient:(LYRClient *)layerClient;
/**
@abstract The `LYRClient` object used to initialize the controller.
@discussion If using storyboards, the property must be set explicitly.
@raises NSInternalInconsistencyException Raised if the value is mutated after the receiver has been presented.
*/
@property (nonatomic) LYRClient *layerClient;
/**
@abstract The `LYRConversation` object whose messages will be displayed in the controller.
*/
@property (nonatomic) LYRConversation *conversation;
/**
@abstract The `LYRQueryController` object managing data displayed in the controller.
*/
@property (nonatomic, readonly) LYRQueryController *queryController;
/**
@abstract The `ATLConversationViewControllerDelegate` class informs the receiver to specific events that occurred within the controller.
*/
@property (nonatomic, weak) id<ATLConversationViewControllerDelegate> delegate;
/**
@abstract The `ATLConversationViewControllerDataSource` class presents an interface allowing
for the display of information pertaining to specific messages in the conversation view controller
*/
@property (nonatomic, weak) id<ATLConversationViewControllerDataSource> dataSource;
/**
@abstract Register a class for use in creating message collection view cells.
@param reuseIdentifier The string to be associated with the class.
*/
- (void)registerClass:(Class<ATLMessagePresenting>)cellClass forMessageCellWithReuseIdentifier:(NSString *)reuseIdentifier;
/**
@abstract Reloads the cell for the given Message.
@param message The Message object to reload the corresponding cell of. Cannot be `nil`.
*/
- (void)reloadCellForMessage:(LYRMessage *)message;
/**
@abstract Reloads the cells for all messages sent by the participant with the given identifier.
@discussion This method is useful after the completion of asynchronous user resolution activities.
@param participantIdentifier The identifier of the participant whose messages are to be reloaded.
*/
- (void)reloadCellsForMessagesSentByParticipantWithIdentifier:(NSString *)participantIdentifier;
/**
@abstract Informs the reciever that it should send a message with the current location of the device.
@discussion The controller manages updating the current location of the device and sending a message with an `ATLMIMETypeLocation` MIMEType.
*/
- (void)sendLocationMessage;
/**
@abstract Sends the specified message in the current conversation and informs the delegate of success or failure.
@discussion This method can be used to send custom `LYRMessage` objects that are initialized outside of Atlas's default implementation.
@param message The Message object to send.
*/
- (void)sendMessage:(LYRMessage *)message;
///---------------------------
/// @name Configuring Behavior
///---------------------------
/**
@abstract The time interval at which message dates should be displayed in seconds. Default is 60 minutes meaning that
dates will appear centered above a message only if the previous message was sent over 60 minutes ago.
*/
@property (nonatomic) NSTimeInterval dateDisplayTimeInterval;
/**
@abstract A Boolean value that determines whether or not the controller marks all messages as read.
@discussion If `YES`, the controller will mark all messages in the conversation as read when it is presented.
@default `YES`.
*/
@property (nonatomic) BOOL marksMessagesAsRead;
/**
@abstract A Boolean value that determines whether or not the username is shown if there is only one other participant in the conversation.
@default `NO`.
Should be set before `[super viewDidLoad]` is called.
*/
@property (nonatomic) BOOL shouldDisplayUsernameForOneOtherParticipant;
/**
@abstract A Boolean value that determines whether or not an avatar is shown if there is only one other participant in the conversation.
@default `NO`.
Should be set before `[super viewDidLoad]` is called.
*/
@property (nonatomic) BOOL shouldDisplayAvatarItemForOneOtherParticipant;
/**
@abstract A Boolean value that determines whether or not an avatar is shown next to the outgoing messages
@default `NO`.
*/
@property (nonatomic) BOOL shouldDisplayAvatarItemForAuthenticatedUser;
/**
@abstract An Enum value that determines how often avatar items should be shown next to messages.
@default 'ATLAvatarItemDisplayFrequencySection'.
*/
@property (nonatomic) ATLAvatarItemDisplayFrequency avatarItemDisplayFrequency;
@end
NS_ASSUME_NONNULL_END