mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
126 lines
4.4 KiB
Objective-C
126 lines
4.4 KiB
Objective-C
//
|
|
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import "BlockListViewController.h"
|
|
#import "AddToBlockListViewController.h"
|
|
#import "BlockListUIUtils.h"
|
|
#import "ContactTableViewCell.h"
|
|
#import "ContactsViewHelper.h"
|
|
#import "OWSTableViewController.h"
|
|
#import "PhoneNumber.h"
|
|
#import "UIFont+OWS.h"
|
|
#import "UIView+OWS.h"
|
|
#import <SignalMessaging/Environment.h>
|
|
#import <SignalMessaging/OWSContactsManager.h>
|
|
#import <SignalServiceKit/OWSBlockingManager.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface BlockListViewController () <ContactsViewHelperDelegate>
|
|
|
|
@property (nonatomic, readonly) ContactsViewHelper *contactsViewHelper;
|
|
|
|
@property (nonatomic, readonly) OWSTableViewController *tableViewController;
|
|
|
|
@end
|
|
|
|
#pragma mark -
|
|
|
|
@implementation BlockListViewController
|
|
|
|
- (void)loadView
|
|
{
|
|
[super loadView];
|
|
|
|
_contactsViewHelper = [[ContactsViewHelper alloc] initWithDelegate:self];
|
|
|
|
self.title
|
|
= NSLocalizedString(@"SETTINGS_BLOCK_LIST_TITLE", @"Label for the block list section of the settings view");
|
|
|
|
_tableViewController = [OWSTableViewController new];
|
|
[self.view addSubview:self.tableViewController.view];
|
|
[_tableViewController.view autoPinWidthToSuperview];
|
|
[_tableViewController.view autoPinToTopLayoutGuideOfViewController:self withInset:0];
|
|
[_tableViewController.view autoPinToBottomLayoutGuideOfViewController:self withInset:0];
|
|
|
|
[self updateTableContents];
|
|
}
|
|
|
|
- (void)viewDidLoad
|
|
{
|
|
[super viewDidLoad];
|
|
[self.navigationController.navigationBar setTranslucent:NO];
|
|
}
|
|
|
|
#pragma mark - Table view data source
|
|
|
|
- (void)updateTableContents
|
|
{
|
|
OWSTableContents *contents = [OWSTableContents new];
|
|
|
|
__weak BlockListViewController *weakSelf = self;
|
|
ContactsViewHelper *helper = self.contactsViewHelper;
|
|
|
|
// Add section
|
|
|
|
OWSTableSection *addSection = [OWSTableSection new];
|
|
addSection.footerTitle = NSLocalizedString(
|
|
@"BLOCK_BEHAVIOR_EXPLANATION", @"An explanation of the consequences of blocking another user.");
|
|
|
|
[addSection
|
|
addItem:[OWSTableItem
|
|
disclosureItemWithText:NSLocalizedString(@"SETTINGS_BLOCK_LIST_ADD_BUTTON",
|
|
@"A label for the 'add phone number' button in the block list table.")
|
|
actionBlock:^{
|
|
AddToBlockListViewController *vc = [[AddToBlockListViewController alloc] init];
|
|
[weakSelf.navigationController pushViewController:vc animated:YES];
|
|
}]];
|
|
[contents addSection:addSection];
|
|
|
|
// Blocklist section
|
|
|
|
OWSTableSection *blocklistSection = [OWSTableSection new];
|
|
NSArray<NSString *> *blockedPhoneNumbers =
|
|
[helper.blockedPhoneNumbers sortedArrayUsingSelector:@selector(compare:)];
|
|
for (NSString *phoneNumber in blockedPhoneNumbers) {
|
|
[blocklistSection addItem:[OWSTableItem itemWithCustomCellBlock:^{
|
|
ContactTableViewCell *cell = [ContactTableViewCell new];
|
|
SignalAccount *signalAccount = [helper signalAccountForRecipientId:phoneNumber];
|
|
if (signalAccount) {
|
|
[cell configureWithSignalAccount:signalAccount contactsManager:helper.contactsManager];
|
|
} else {
|
|
[cell configureWithRecipientId:phoneNumber contactsManager:helper.contactsManager];
|
|
}
|
|
|
|
return cell;
|
|
}
|
|
customRowHeight:[ContactTableViewCell rowHeight]
|
|
actionBlock:^{
|
|
[BlockListUIUtils showUnblockPhoneNumberActionSheet:phoneNumber
|
|
fromViewController:weakSelf
|
|
blockingManager:helper.blockingManager
|
|
contactsManager:helper.contactsManager
|
|
completionBlock:nil];
|
|
}]];
|
|
}
|
|
[contents addSection:blocklistSection];
|
|
|
|
self.tableViewController.contents = contents;
|
|
}
|
|
|
|
#pragma mark - ContactsViewHelperDelegate
|
|
|
|
- (void)contactsViewHelperDidUpdateContacts
|
|
{
|
|
[self updateTableContents];
|
|
}
|
|
|
|
- (BOOL)shouldHideLocalNumber
|
|
{
|
|
return YES;
|
|
}
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|