Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(98)

Unified Diff: ios/chrome/browser/ui/content_suggestions/cells/content_suggestions_most_visited_item.mm

Issue 2808433002: Create a MostVisited cell for ContentSuggestions (Closed)
Patch Set: Split Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ios/chrome/browser/ui/content_suggestions/cells/content_suggestions_most_visited_item.mm
diff --git a/ios/chrome/browser/ui/content_suggestions/cells/content_suggestions_most_visited_item.mm b/ios/chrome/browser/ui/content_suggestions/cells/content_suggestions_most_visited_item.mm
new file mode 100644
index 0000000000000000000000000000000000000000..db461c3a3dd000c4c14f12b099f614d683171671
--- /dev/null
+++ b/ios/chrome/browser/ui/content_suggestions/cells/content_suggestions_most_visited_item.mm
@@ -0,0 +1,203 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#import "ios/chrome/browser/ui/content_suggestions/cells/content_suggestions_most_visited_item.h"
+
+#import "ios/chrome/browser/ui/content_suggestions/cells/content_suggestions_most_visited.h"
+#import "ios/chrome/browser/ui/content_suggestions/cells/content_suggestions_most_visited_tile.h"
+#import "ios/chrome/browser/ui/favicon/favicon_attributes.h"
+#import "ios/chrome/browser/ui/favicon/favicon_view.h"
+#include "ios/chrome/browser/ui/ui_util.h"
+#import "ios/chrome/browser/ui/uikit_ui_util.h"
+#include "url/gurl.h"
+
+#if !defined(__has_feature) || !__has_feature(objc_arc)
+#error "This file requires ARC support."
+#endif
+
+namespace {
+const CGFloat kSpacingIPhone = 16;
+const CGFloat kSpacingIPad = 24;
+}
+
+#pragma mark - ContentSuggestionsMostVisitedItem
+
+@implementation ContentSuggestionsMostVisitedItem
+
+@synthesize suggestionIdentifier = _suggestionIdentifier;
+@synthesize mostVisiteds = _mostVisiteds;
+
+- (instancetype)initWithType:(NSInteger)type {
+ self = [super initWithType:type];
+ if (self) {
+ self.cellClass = [ContentSuggestionsMostVisitedCell class];
+ }
+ return self;
+}
+
+- (void)configureCell:(ContentSuggestionsMostVisitedCell*)cell {
+ [super configureCell:cell];
+ [cell setMostVisiteds:self.mostVisiteds];
+}
+
+@end
+
+#pragma mark - ContentSuggestionsMostVisitedCell
+
+@interface ContentSuggestionsMostVisitedCell ()
+
+// The Most Visited tiles to be displayed.
+@property(nonatomic, strong)
+ NSMutableArray<ContentSuggestionsMostVisitedTile*>* tiles;
lpromero 2017/04/07 12:46:57 Maybe add new lines between the property, as it is
gambard 2017/04/10 11:49:16 Done.
+// The first line of Most Visited tiles.
+@property(nonatomic, strong) UIStackView* firstLine;
+// The second line of Most Visited tiles, displayed below the first one.
+@property(nonatomic, strong) UIStackView* secondLine;
+// Contains both stack views.
+@property(nonatomic, copy) NSArray<UIStackView*>* stackViews;
+// Superview for the stack views, used to center them.
+@property(nonatomic, strong) UIView* stackContainer;
+// Width of the |stackContainer|, allowing resizing.
+@property(nonatomic, strong) NSLayoutConstraint* containerWidth;
+// Number of tiles per line during the previous layout.
+@property(nonatomic, assign) NSUInteger oldNumberOfTilesPerLine;
lpromero 2017/04/07 12:46:57 Optional nit: s/old/previous
gambard 2017/04/10 11:49:16 Done.
+
+@end
+
+@implementation ContentSuggestionsMostVisitedCell : MDCCollectionViewCell
+
+@synthesize tiles = _tiles;
+@synthesize firstLine = _firstLine;
+@synthesize secondLine = _secondLine;
+@synthesize stackViews = _stackViews;
+@synthesize stackContainer = _stackContainer;
+@synthesize containerWidth = _containerWidth;
+@synthesize oldNumberOfTilesPerLine = _oldNumberOfTilesPerLine;
+
+#pragma mark - Public
+
+- (instancetype)initWithFrame:(CGRect)frame {
stkhapugin 2017/04/07 12:17:58 optional: add a comment here or above @implementat
gambard 2017/04/10 11:49:16 Done.
+ self = [super initWithFrame:frame];
+ if (self) {
+ _tiles = [NSMutableArray array];
+ _firstLine = [[UIStackView alloc] init];
+ _secondLine = [[UIStackView alloc] init];
+ _stackViews = @[ _firstLine, _secondLine ];
+ _stackContainer = [[UIView alloc] init];
+ _oldNumberOfTilesPerLine = 0;
+
+ for (UIStackView* row in self.stackViews) {
+ row.axis = UILayoutConstraintAxisHorizontal;
+ row.spacing = [self spacing];
+ row.translatesAutoresizingMaskIntoConstraints = NO;
+ [_stackContainer addSubview:row];
+ row.layoutMarginsRelativeArrangement = YES;
+ }
+
+ _stackContainer.translatesAutoresizingMaskIntoConstraints = NO;
+
+ [self.contentView addSubview:_stackContainer];
+
+ [_stackContainer.centerXAnchor
+ constraintEqualToAnchor:self.contentView.centerXAnchor]
+ .active = YES;
+ _containerWidth = [_stackContainer.widthAnchor constraintEqualToConstant:0];
+ _containerWidth.active = YES;
+
+ ApplyVisualConstraints(@[ @"V:|[container]|" ],
+ @{ @"container" : _stackContainer });
+ ApplyVisualConstraints(
+ @[
+ @"V:|[first][second]|", @"H:|[first]-(>=0)-|",
+ @"H:|[second]-(>=0)-|"
+ ],
+ @{ @"first" : _firstLine,
+ @"second" : _secondLine });
+ }
+ return self;
+}
+
+- (void)setMostVisiteds:(NSArray<ContentSuggestionsMostVisited*>*)mostVisiteds {
+ [self.tiles removeAllObjects];
+ for (ContentSuggestionsMostVisited* mostVisited : mostVisiteds) {
lpromero 2017/04/07 12:46:57 s/:/in
gambard 2017/04/10 11:49:16 Done.
+ [self.tiles addObject:[ContentSuggestionsMostVisitedTile
+ tileWithTitle:mostVisited.title
+ attributes:mostVisited.attributes]];
+ }
+}
+
+#pragma mark - UIView
+
+- (void)layoutSubviews {
lpromero 2017/04/07 12:46:57 Please add the comment we use usually to describe
gambard 2017/04/10 11:49:16 Done.
+ [super layoutSubviews];
+
+ [self applyLayout];
+
+ [super layoutSubviews];
+}
+
+#pragma mark - Private
+
+// Layouts the tiles. The view is modified only if the number of tiles per line
+// changes.
+- (void)applyLayout {
+ NSUInteger numberOfTilesPerLine = [self numberOfTilesPerLine];
+
+ if (numberOfTilesPerLine == self.oldNumberOfTilesPerLine) {
+ return;
+ }
+ self.oldNumberOfTilesPerLine = numberOfTilesPerLine;
+
+ for (UIStackView* row in self.stackViews) {
+ while (row.arrangedSubviews.count > 0) {
+ UIView* view = row.arrangedSubviews.firstObject;
+ [row removeArrangedSubview:view];
+ [view removeFromSuperview];
+ }
+ }
+
+ NSUInteger numberOfTilesfirstLine =
lpromero 2017/04/07 12:46:57 s/numberOfTilesfirstLine/numberOfTilesFirstLine
gambard 2017/04/10 11:49:16 Done.
+ MIN(numberOfTilesPerLine, self.tiles.count);
+ for (NSUInteger i = 0; i < numberOfTilesfirstLine; i++) {
+ [self.firstLine addArrangedSubview:self.tiles[i]];
+ }
+ if (self.tiles.count > numberOfTilesPerLine) {
+ NSUInteger totalNumberOfTiles =
+ MIN(2 * numberOfTilesPerLine, self.tiles.count);
+ for (NSUInteger i = numberOfTilesPerLine; i < totalNumberOfTiles; i++) {
+ [self.secondLine addArrangedSubview:self.tiles[i]];
+ }
+ }
+
+ self.containerWidth.constant =
+ [self widthForNumberOfItem:numberOfTilesPerLine];
+}
+
+// Returns the maximum number of tiles per line, limited to 4.
+- (NSUInteger)numberOfTilesPerLine {
stkhapugin 2017/04/07 12:17:58 optional: it'd be nice to have a few tests for thi
gambard 2017/04/10 11:49:16 Done.
+ CGFloat availableWidth = self.contentView.bounds.size.width;
+
+ if (availableWidth > [self widthForNumberOfItem:4])
+ return 4;
+ if (availableWidth > [self widthForNumberOfItem:3])
+ return 3;
+ if (availableWidth > [self widthForNumberOfItem:2])
+ return 2;
+
+ NOTREACHED();
+ return 2;
+}
+
+// Returns the spacing of between tiles, based on the device.
lpromero 2017/04/07 12:46:57 s/between/middle or interior or inner? Or maybe i
gambard 2017/04/10 11:49:16 Done.
+- (CGFloat)spacing {
+ return IsIPadIdiom() ? kSpacingIPad : kSpacingIPhone;
+}
+
+// Returns the width necessary to fit |numberOfItem| items.
+- (CGFloat)widthForNumberOfItem:(NSUInteger)numberOfItem {
+ return (numberOfItem - 1) * [self spacing] +
+ numberOfItem * [ContentSuggestionsMostVisitedTile width];
+}
+
+@end

Powered by Google App Engine
This is Rietveld 408576698