-
Notifications
You must be signed in to change notification settings - Fork 524
/
ATLConversationListViewController.h
178 lines (148 loc) · 8.17 KB
/
ATLConversationListViewController.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
//
// ATLUIConversationListViewController.h
// Atlas
//
// Created by Kevin Coleman on 8/29/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 "ATLConversationTableViewCell.h"
#import "ATLAvatarItem.h"
@class ATLConversationListViewController;
///---------------------------------------
/// @name Delegate
///---------------------------------------
@protocol ATLConversationListViewControllerDelegate <NSObject>
/**
@abstract Informs the delegate that an `LYRConversation` was selected from the conversation list.
@param conversationListViewController The `LYRConversationListViewController` in which the selection occurred.
@param conversation The `LYRConversation` object that was selected.
*/
- (void)conversationListViewController:(ATLConversationListViewController *)conversationListViewController didSelectConversation:(LYRConversation *)conversation;
@optional
/**
@abstract Informs the delegate that an `LYRConversation` was deleted.
@param conversationListViewController The `LYRConversationListViewController` in which the deletion occurred.
@param conversation The `LYRConversation` object that was deleted.
@param deletionMode The `LYRDeletionMode` with which the conversation was deleted.
*/
- (void)conversationListViewController:(ATLConversationListViewController *)conversationListViewController didDeleteConversation:(LYRConversation *)conversation deletionMode:(LYRDeletionMode)deletionMode;
/**
@abstract Informs the delegate that an attempt to delete an `LYRConversation` failed.
@param conversationListViewController The `LYRConversationListViewController` in which the deletion attempt occurred.
@param conversation The `LYRConversation` object that failed deletion.
@param deletionMode The `LYRDeletionMode` with which the conversation delete attempt was made.
@param error An `NSError` object describing the deletion failure.
*/
- (void)conversationListViewController:(ATLConversationListViewController *)conversationListViewController didFailDeletingConversation:(LYRConversation *)conversation deletionMode:(LYRDeletionMode)deletionMode error:(NSError *)error;
/**
@abstract Informs the delegate that a search has been made with the given search string.
@param conversationListViewController The controller in which the search was performed.
@param searchText The search text that was used for search.
@param completion The block has has no return value and accepts a single argument: an NSSet of objects conforming to the ATLParticipant protocol that were found to match the search text.
*/
- (void)conversationListViewController:(ATLConversationListViewController *)conversationListViewController didSearchForText:(NSString *)searchText completion:(void (^)(NSSet *filteredParticipants))completion;
@end
///---------------------------------------
/// @name Data Source
///---------------------------------------
@protocol ATLConversationListViewControllerDataSource <NSObject>
/**
@abstract Asks the data source for a title string to display for a given conversation.
@param conversationListViewController The `LYRConversationListViewController` in which the string will appear.
@param conversation The `LYRConversation` object.
@return The string to be displayed as the title for a given conversation in the conversation list.
*/
- (NSString *)conversationListViewController:(ATLConversationListViewController *)conversationListViewController titleForConversation:(LYRConversation *)conversation;
@optional
/**
@abstract Asks the delegate for an avatar item representing a conversation.
@param conversationListViewController The `LYRConversationListViewController` in which the item's data will appear.
@param conversation The `LYRConversation` object.
@return An object conforming to the `ATLAvatarItem` protocol.
@discussion The data provided by the object conforming to the `ATLAvatarItem` protocol will be displayed in an `LYRAvatarImageView`.
*/
- (id<ATLAvatarItem>)conversationListViewController:(ATLConversationListViewController *)conversationListViewController avatarItemForConversation:(LYRConversation *)conversation;
@end
/**
@abstract The `ATLConversationListViewController` class presents an interface which provides
for the display and selection of Layer conversations.
*/
@interface ATLConversationListViewController : UITableViewController
///---------------------------------------
/// @name Initializing a Controller
///---------------------------------------
/**
@abstract Creates and returns a new conversation list initialized with a given `LYRClient` object.
@param layerClient The `LYRClient` object from which conversations will be fetched for display.
@return An `LYRConversationListViewController` object.
*/
+ (instancetype)conversationListViewControllerWithLayerClient:(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 object that is informed when specific events occur
within the `LYRConversationListViewController`.
*/
@property (nonatomic, weak) id<ATLConversationListViewControllerDelegate> delegate;
/**
@abstract The object provides information to be displayed in the `LYRConversationListViewController`.
*/
@property (nonatomic, weak) id<ATLConversationListViewControllerDataSource> dataSource;
///----------------------------------------
/// @name Configuration
///----------------------------------------
/**
@abstract The `UITableViewCell` subclass for customizing the display of the conversations.
@discussion If you wish to provide your own custom class, your class must conform to the `ATLConversationPresenting` protocol.
@default `ATLConversationTableViewCell`
@raises NSInternalInconsistencyException Raised if the value is mutated after the receiver has been presented.
*/
@property (nonatomic) Class<ATLConversationPresenting> cellClass;
/**
@abstract Informs the receiver of the deletion modes that it should support.
@discussion See `LYRDeletionMode` in `LayerKit`. `LYRDeletionMode` must be wrapped as an `NSNumber` object prior to insertion in an array.
@default `LYRDeletionModeLocal` and `LYRDeletionModeAllParticipants.
@raises NSInternalInconsistencyException Raised if the value is mutated after the receiver has been presented.
*/
@property (nonatomic) NSArray *deletionModes;
/**
@abstract Informs the receiver if it should display an avatar item representing a conversation.
@discussion When `YES`, an avatar item will be displayed for every conversation cell.
Typically, this image will be an avatar image representing the user or group of users.
@default `YES`
@raises NSInternalInconsistencyException Raised if the value is mutated after the receiver has been presented.
*/
@property (nonatomic, assign) BOOL displaysAvatarItem;
/**
@abstract A boolean value that determines if editing is enabled.
@discussion When `YES`, an Edit button item will be displayed on the left hand side of the receiver's navigation
item which toggles the editing state of the receiver and swiping to delete cells will be enabled.
@default `YES`
@raises NSInternalInconsistencyException Raised if the value is mutated after the receiver has been presented.
*/
@property (nonatomic, assign) BOOL allowsEditing;
/**
@abstract Sets the height for cells within the receiver.
@default `76.0`
@raises NSInternalInconsistencyException Raised if the value is mutated after the receiver has been presented.
*/
@property (nonatomic, assign) CGFloat rowHeight;
@end