only changed items in the full network list are updated now

This commit is contained in:
Grant Limberg 2016-11-15 16:55:24 -08:00
commit 456c7ca661
4 changed files with 103 additions and 4 deletions

View file

@ -21,6 +21,17 @@
#import "NetworkInfoCell.h"
#import "Network.h"
BOOL hasNetworkWithID(NSArray<Network*> *list, UInt64 nwid)
{
for(Network *n in list) {
if(n.nwid == nwid) {
return YES;
}
}
return NO;
}
@interface ShowNetworksViewController ()
@end
@ -30,6 +41,8 @@
- (void)viewDidLoad {
[super viewDidLoad];
self.networkList = [NSMutableArray array];
[self.tableView setDelegate:self];
[self.tableView setDataSource:self];
[self.tableView setBackgroundColor:[NSColor clearColor]];
@ -50,9 +63,30 @@
}
- (void)setNetworks:(NSArray<Network *> *)list {
_networkList = list;
if(_visible) {
[_tableView reloadData];
for (Network *n in list) {
if ([_networkList containsObject:n]) {
// don't need to do anything here. Already an identical object in the list
continue;
}
else {
// network not in the list based on equality. Did an object change? or is it a new item?
if (hasNetworkWithID(_networkList, n.nwid)) {
for (int i = 0; i < [_networkList count]; ++i) {
Network *n2 = [_networkList objectAtIndex:i];
if (n.nwid == n2.nwid)
{
[_networkList replaceObjectAtIndex:i withObject:n];
[_tableView reloadDataForRowIndexes:[NSIndexSet indexSetWithIndex:i]
columnIndexes:[NSIndexSet indexSetWithIndex:0]];
}
}
}
else {
[_networkList addObject:n];
[_tableView reloadData];
}
}
}
}