Directory server list: Add detail text for homeserver selection

This commit is contained in:
manuroe
2017-05-03 09:31:10 +02:00
parent 235e7959e9
commit e89b8f62b3
6 changed files with 165 additions and 0 deletions
@@ -0,0 +1,45 @@
/*
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 "DirectoryServerDetailTableViewCell.h"
#import "RiotDesignValues.h"
@implementation DirectoryServerDetailTableViewCell
- (void)awakeFromNib
{
[super awakeFromNib];
self.detailDescLabel.textColor = kRiotTextColorGray;
}
- (void)render:(id<MXKDirectoryServerCellDataStoring>)cellData
{
[super render:cellData];
if (cellData.includeAllNetworks)
{
self.detailDescLabel.text = [NSString stringWithFormat:NSLocalizedStringFromTable(@"directory_server_all_rooms", @"Vector", nil), cellData.homeserver];
}
else
{
self.detailDescLabel.text = NSLocalizedStringFromTable(@"directory_server_all_native_rooms", @"Vector", nil);
}
}
@end