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

Side by Side Diff: ios/chrome/browser/ui/content_suggestions/cells/content_suggestions_article_item.h

Issue 2865183003: Use the same design for all suggestions (Closed)
Patch Set: Address comments Created 3 years, 7 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef IOS_CHROME_BROWSER_UI_CONTENT_SUGGESTIONS_CELLS_CONTENT_SUGGESTIONS_ARTI CLE_ITEM_H_
6 #define IOS_CHROME_BROWSER_UI_CONTENT_SUGGESTIONS_CELLS_CONTENT_SUGGESTIONS_ARTI CLE_ITEM_H_
7
8 #import "ios/chrome/browser/ui/collection_view/cells/collection_view_item.h"
9 #import "ios/chrome/browser/ui/content_suggestions/identifier/content_suggestion _identifier.h"
10 #import "ios/third_party/material_components_ios/src/components/CollectionCells/ src/MaterialCollectionCells.h"
11
12 namespace base {
13 class Time;
14 }
15
16 @class ContentSuggestionsArticleItem;
17 @class FaviconAttributes;
18 @class FaviconViewNew;
19 class GURL;
20
21 // Delegate for a ContentSuggestionsArticleItem.
22 @protocol ContentSuggestionsArticleItemDelegate
23
24 // Loads the image associated with this item.
25 - (void)loadImageForArticleItem:(ContentSuggestionsArticleItem*)articleItem;
26
27 @end
28
29 // Item for an article in the suggestions.
30 @interface ContentSuggestionsArticleItem
31 : CollectionViewItem<ContentSuggestionIdentification>
32
33 // Initialize an article with a |title|, a |subtitle|, an |image| and the |url|
34 // to the full article. |type| is the type of the item.
35 - (instancetype)initWithType:(NSInteger)type
36 title:(NSString*)title
37 subtitle:(NSString*)subtitle
38 delegate:(id<ContentSuggestionsArticleItemDelegate>)delegate
39 url:(const GURL&)url NS_DESIGNATED_INITIALIZER;
40
41 - (instancetype)initWithType:(NSInteger)type NS_UNAVAILABLE;
42
43 @property(nonatomic, copy, readonly) NSString* title;
44 @property(nonatomic, strong) UIImage* image;
45 @property(nonatomic, readonly, assign) GURL articleURL;
46 @property(nonatomic, copy) NSString* publisher;
47 @property(nonatomic, assign) base::Time publishDate;
48 @property(nonatomic, weak) id<ContentSuggestionsArticleItemDelegate> delegate;
49 // Attributes for favicon.
50 @property(nonatomic, strong) FaviconAttributes* attributes;
51
52 @end
53
54 // Corresponding cell for an article in the suggestions.
55 @interface ContentSuggestionsArticleCell : MDCCollectionViewCell
56
57 @property(nonatomic, readonly, strong) UILabel* titleLabel;
58 @property(nonatomic, readonly, strong) UILabel* subtitleLabel;
59 // View for displaying the favicon.
60 @property(nonatomic, readonly, strong) FaviconViewNew* faviconView;
61
62 // Sets an |image| to illustrate the article, replacing the "no image" icon.
63 - (void)setContentImage:(UIImage*)image;
64
65 // Sets the publisher |name| and |date|.
66 - (void)setPublisherName:(NSString*)publisherName date:(base::Time)publishDate;
67
68 @end
69
70 #endif // IOS_CHROME_BROWSER_UI_CONTENT_SUGGESTIONS_CELLS_CONTENT_SUGGESTIONS_A RTICLE_ITEM_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698