mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
c7662b5a86
Going forward, we want to prefer safer asserts, but we don't want to blindly apply crashing asserts across the codebase
50 lines
1.6 KiB
Objective-C
50 lines
1.6 KiB
Objective-C
//
|
|
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import "OWSDeviceTableViewCell.h"
|
|
#import "DateUtil.h"
|
|
#import <SignalMessaging/OWSTableViewController.h>
|
|
#import <SignalMessaging/Theme.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@implementation OWSDeviceTableViewCell
|
|
|
|
- (void)configureWithDevice:(OWSDevice *)device
|
|
{
|
|
OWSAssertDebug(device);
|
|
|
|
[OWSTableItem configureCell:self];
|
|
|
|
self.nameLabel.textColor = Theme.primaryColor;
|
|
self.linkedLabel.textColor = Theme.secondaryColor;
|
|
self.lastSeenLabel.textColor = Theme.secondaryColor;
|
|
|
|
self.nameLabel.text = device.displayName;
|
|
|
|
NSString *linkedFormatString
|
|
= NSLocalizedString(@"DEVICE_LINKED_AT_LABEL", @"{{Short Date}} when device was linked.");
|
|
self.linkedLabel.text =
|
|
[NSString stringWithFormat:linkedFormatString, [DateUtil.dateFormatter stringFromDate:device.createdAt]];
|
|
|
|
NSString *lastSeenFormatString = NSLocalizedString(
|
|
@"DEVICE_LAST_ACTIVE_AT_LABEL", @"{{Short Date}} when device last communicated with Signal Server.");
|
|
|
|
NSDate *displayedLastSeenAt;
|
|
// lastSeenAt is stored at day granularity. At midnight UTC.
|
|
// Making it likely that when you first link a device it will
|
|
// be "last seen" the day before it was created, which looks broken.
|
|
if ([device.lastSeenAt compare:device.createdAt] == NSOrderedDescending) {
|
|
displayedLastSeenAt = device.lastSeenAt;
|
|
} else {
|
|
displayedLastSeenAt = device.createdAt;
|
|
}
|
|
|
|
self.lastSeenLabel.text =
|
|
[NSString stringWithFormat:lastSeenFormatString, [DateUtil.dateFormatter stringFromDate:displayedLastSeenAt]];
|
|
}
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|