/* Copyright 2017 Vector Creations Ltd 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 /** 'ContactsDataSource' is a base class to handle contacts in Riot. */ @interface ContactsDataSource : MXKDataSource { @protected // Section indexes NSInteger searchInputSection; NSInteger filteredLocalContactsSection; NSInteger filteredMatrixContactsSection; // Tell whether the non-matrix-enabled contacts must be hidden or not. NO by default. BOOL hideNonMatrixEnabledContacts; // Search results NSString *currentSearchText; NSMutableArray *filteredLocalContacts; NSMutableArray *filteredMatrixContacts; } /** Get the contact at the given index path. @param indexPath the index of the cell @return the contact */ -(MXKContact *)contactAtIndexPath:(NSIndexPath*)indexPath; /** Get the index path of the cell related to the provided contact. @param contact the contact. @return indexPath the index of the cell (nil if not found or if the related section is shrinked). */ - (NSIndexPath*)cellIndexPathWithContact:(MXKContact*)contact; /** Get the height of the section header view. @param section the section index @return the header height. */ - (CGFloat)heightForHeaderInSection:(NSInteger)section; /** Get the title of the header of the specified section. @param section the section index. @return the section title. */ - (NSString *)titleForHeaderInSection:(NSInteger)section; /** Get the section header view. @param section the section index @param frame the drawing area for the header of the specified section. @return the section header. */ - (UIView *)viewForHeaderInSection:(NSInteger)section withFrame:(CGRect)frame; /** Get the sticky header view for the specified section. @param section the section index @param frame the drawing area for the header of the specified section. @return the sticky header view. */ - (UIView *)viewForStickyHeaderInSection:(NSInteger)section withFrame:(CGRect)frame; /** Refresh the contacts data source and notify its delegate. */ - (void)forceRefresh; #pragma mark - Configuration /** Tell whether the sections are shrinkable. NO by default. */ @property (nonatomic) BOOL areSectionsShrinkable; /** Tell whether the matrix id should be added by default in the matrix contact display name (NO by default). If NO, the matrix id is added only to disambiguate the contact display names which appear several times. */ @property (nonatomic) BOOL forceMatrixIdInDisplayName; /** The type of standard accessory view the contact cells should use Default is UITableViewCellAccessoryNone. */ @property (nonatomic) UITableViewCellAccessoryType contactCellAccessoryType; /** An image used to create a custom accessy view on the right side of the contact cells. If set, use custom view. ignore accessoryType */ @property (nonatomic) UIImage *contactCellAccessoryImage; /** The dictionary of the ignored local contacts, the keys are their email. Empty by default. */ @property (nonatomic) NSMutableDictionary *ignoredContactsByEmail; /** The dictionary of the ignored matrix contacts, the keys are their matrix identifier. Empty by default. */ @property (nonatomic) NSMutableDictionary *ignoredContactsByMatrixId; /** Filter the contacts list, by keeping only the contacts who have the search pattern as prefix in their display name, their matrix identifiers and/or their contact methods (emails, phones). @param searchText the search pattern (nil to reset filtering). @param forceReset tell whether the search request must be applied by ignoring the previous search result if any (use NO by default). */ - (void)searchWithPattern:(NSString *)searchText forceReset:(BOOL)forceReset; /** Tell whether the search input is displayed in the contacts list. So that the user can select it (NO by default). */ @property (nonatomic) BOOL displaySearchInputInContactsList; /** The temporary contact built from the search input. This contact is not nil only when the search input is a valid email or a Matrix user ID. */ @property (nonatomic, readonly) MXKContact *searchInputContact; @end