mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
72 lines
2.5 KiB
Objective-C
72 lines
2.5 KiB
Objective-C
|
|
#import "CountryCodeViewController.h"
|
|
#import "CountryCodeTableViewCell.h"
|
|
#import "NBPhoneNumberUtil.h"
|
|
#import "PhoneNumber.h"
|
|
#import "PhoneNumberUtil.h"
|
|
|
|
static NSString *const CONTRY_CODE_TABLE_CELL_IDENTIFIER = @"CountryCodeTableViewCell";
|
|
static NSString *const kUnwindToCountryCodeWasSelectedSegue = @"UnwindToCountryCodeWasSelectedSegue";
|
|
|
|
|
|
@interface CountryCodeViewController () {
|
|
NSArray *_countryCodes;
|
|
}
|
|
|
|
@end
|
|
|
|
@implementation CountryCodeViewController
|
|
|
|
- (void)viewDidLoad {
|
|
[super viewDidLoad];
|
|
[self.navigationController.navigationBar setTranslucent:NO];
|
|
_countryCodes = [PhoneNumberUtil countryCodesForSearchTerm:nil];
|
|
self.title = NSLocalizedString(@"COUNTRYCODE_SELECT_TITLE", @"");
|
|
}
|
|
|
|
#pragma mark - UITableViewDelegate
|
|
|
|
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
|
|
return (NSInteger)_countryCodes.count;
|
|
}
|
|
|
|
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
|
|
CountryCodeTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CONTRY_CODE_TABLE_CELL_IDENTIFIER];
|
|
if (!cell) {
|
|
cell = [[CountryCodeTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
|
|
reuseIdentifier:CONTRY_CODE_TABLE_CELL_IDENTIFIER];
|
|
}
|
|
|
|
NSString *countryCode = _countryCodes[(NSUInteger)indexPath.row];
|
|
|
|
[cell configureWithCountryCode:[PhoneNumberUtil callingCodeFromCountryCode:countryCode]
|
|
andCountryName:[PhoneNumberUtil countryNameFromCountryCode:countryCode]];
|
|
|
|
return cell;
|
|
}
|
|
|
|
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
|
|
NSString *countryCode = _countryCodes[(NSUInteger)indexPath.row];
|
|
_callingCodeSelected = [PhoneNumberUtil callingCodeFromCountryCode:countryCode];
|
|
_countryNameSelected = [PhoneNumberUtil countryNameFromCountryCode:countryCode];
|
|
[self.searchBar resignFirstResponder];
|
|
[self performSegueWithIdentifier:kUnwindToCountryCodeWasSelectedSegue sender:self];
|
|
}
|
|
|
|
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
|
|
return 44.0f;
|
|
}
|
|
|
|
#pragma mark - UISearchBarDelegate
|
|
|
|
- (void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText {
|
|
_countryCodes = [PhoneNumberUtil countryCodesForSearchTerm:searchText];
|
|
[self.countryCodeTableView reloadData];
|
|
}
|
|
|
|
-(void)filterContentForSearchText:(NSString*)searchText scope:(NSString*)scope
|
|
{
|
|
_countryCodes = [PhoneNumberUtil countryCodesForSearchTerm:searchText];
|
|
}
|
|
|
|
@end
|