[go: nahoru, domu]

blob: 9c51d3a8abdd26f5c3df5f0b292ee944c05676c9 [file] [log] [blame]
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import "ios/chrome/browser/shared/ui/table_view/cells/table_view_text_link_item.h"
#import "base/apple/foundation_util.h"
#import "base/ios/ns_range.h"
#import "ios/chrome/browser/net/crurl.h"
#import "ios/chrome/browser/shared/ui/table_view/chrome_table_view_styler.h"
#import "ios/chrome/browser/shared/ui/util/uikit_ui_util.h"
#import "ios/chrome/common/string_util.h"
#import "ios/chrome/common/ui/colors/semantic_color_names.h"
#import "ios/chrome/common/ui/table_view/table_view_cells_constants.h"
#import "ios/chrome/common/ui/util/text_view_util.h"
#pragma mark - TableViewTextLinkItem
@implementation TableViewTextLinkItem
- (instancetype)initWithType:(NSInteger)type {
self = [super initWithType:type];
if (self) {
self.cellClass = [TableViewTextLinkCell class];
}
return self;
}
- (void)configureCell:(TableViewCell*)tableCell
withStyler:(ChromeTableViewStyler*)styler {
[super configureCell:tableCell withStyler:styler];
TableViewTextLinkCell* cell =
base::apple::ObjCCastStrict<TableViewTextLinkCell>(tableCell);
cell.textView.text = self.text;
cell.selectionStyle = UITableViewCellSelectionStyleNone;
if (self.linkRanges) {
[self.linkRanges enumerateObjectsUsingBlock:^(NSValue* rangeValue,
NSUInteger i, BOOL* stop) {
CrURL* crurl = [[CrURL alloc] initWithGURL:self.linkURLs[i]];
[cell setLinkURL:crurl forRange:rangeValue.rangeValue];
}];
}
}
@end
#pragma mark - TableViewTextLinkCell
@interface TableViewTextLinkCell () <UITextViewDelegate>
@end
@implementation TableViewTextLinkCell
- (instancetype)initWithStyle:(UITableViewCellStyle)style
reuseIdentifier:(NSString*)reuseIdentifier {
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
// Text Label, set font sizes using dynamic type.
_textView = CreateUITextViewWithTextKit1();
_textView.scrollEnabled = NO;
_textView.editable = NO;
_textView.delegate = self;
_textView.translatesAutoresizingMaskIntoConstraints = NO;
_textView.font = [UIFont preferredFontForTextStyle:UIFontTextStyleFootnote];
_textView.textColor = [UIColor colorNamed:kTextSecondaryColor];
_textView.backgroundColor = UIColor.clearColor;
// Add subviews to View Hierarchy.
[self.contentView addSubview:_textView];
// Set and activate constraints.
[NSLayoutConstraint activateConstraints:@[
// Title Label Constraints.
[_textView.leadingAnchor
constraintEqualToAnchor:self.contentView.leadingAnchor
constant:kTableViewHorizontalSpacing],
[_textView.topAnchor constraintEqualToAnchor:self.contentView.topAnchor],
[_textView.bottomAnchor
constraintEqualToAnchor:self.contentView.bottomAnchor
constant:0],
[_textView.trailingAnchor
constraintEqualToAnchor:self.contentView.trailingAnchor
constant:-kTableViewHorizontalSpacing]
]];
}
return self;
}
- (void)setLinkURL:(CrURL*)URL {
if (!URL) {
return;
}
if (URL.gurl.is_valid()) {
UITextView* textView = self.textView;
DCHECK(textView.text.length > 0);
// Attribute form of the font/color given to the text view on init.
NSDictionary<NSAttributedStringKey, id>* textAttributes =
[textView.attributedText attributesAtIndex:0 effectiveRange:nullptr];
textView.attributedText = AttributedStringFromStringWithLink(
textView.text, textAttributes, [self linkAttributesForURL:URL]);
}
}
- (void)setLinkURL:(CrURL*)URL forRange:(NSRange)range {
if (!URL) {
return;
}
if (URL.gurl.is_valid()) {
NSMutableAttributedString* text = [[NSMutableAttributedString alloc]
initWithAttributedString:self.textView.attributedText];
[text addAttributes:[self linkAttributesForURL:URL] range:range];
self.textView.attributedText = text;
}
}
- (NSDictionary<NSAttributedStringKey, id>*)linkAttributesForURL:(CrURL*)URL {
NSURL* linkURL = URL.nsurl;
return @{
NSForegroundColorAttributeName : [UIColor colorNamed:kBlueColor],
NSLinkAttributeName : linkURL,
};
}
- (void)prepareForReuse {
[super prepareForReuse];
self.delegate = nil;
}
- (BOOL)textView:(UITextView*)textView
shouldInteractWithURL:(NSURL*)URL
inRange:(NSRange)characterRange
interaction:(UITextItemInteraction)interaction {
DCHECK(self.textView == textView);
DCHECK(URL);
CrURL* crurl = [[CrURL alloc] initWithNSURL:URL];
[self.delegate tableViewTextLinkCell:self didRequestOpenURL:crurl];
// Returns NO as the app is handling the opening of the URL.
return NO;
}
@end