OLD | NEW |
---|---|
(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_SUGGESTIONS_SUGGESTIONS_EXPANDABLE_ITEM_H_ | |
6 #define IOS_CHROME_BROWSER_UI_SUGGESTIONS_SUGGESTIONS_EXPANDABLE_ITEM_H_ | |
7 | |
8 #import "ios/third_party/material_components_ios/src/components/CollectionCells/ src/MaterialCollectionCells.h" | |
9 | |
10 #import "ios/chrome/browser/ui/collection_view/cells/collection_view_item.h" | |
11 | |
12 // Item for an expandable article in the suggestions. An expandable article can | |
13 // be expanded, displaying more informations/interactions. | |
14 @interface SuggestionsExpandableItem : CollectionViewItem | |
15 | |
16 // Init the article with a |title|, a |subtitle| an |image| and some |detail| | |
17 // displayed only when the article is expanded. |type| is the type of the item. | |
18 - (instancetype)initWithType:(NSInteger)type | |
19 title:(NSString*)title | |
20 subtitle:(NSString*)subtitle | |
21 image:(UIImage*)image | |
22 detailText:(NSString*)detail NS_DESIGNATED_INITIALIZER; | |
23 | |
24 - (instancetype)initWithType:(NSInteger)type NS_UNAVAILABLE; | |
25 | |
26 // The collectionView displaying this article. Its layout will be invalidated | |
27 // when the article is expanded/retracted. | |
28 @property(nonatomic, assign) UICollectionView* collectionView; | |
lpromero
2017/01/11 13:19:20
Don't depend on the collection like this. Have a d
gambard
2017/01/12 14:39:40
It means inspecting the type of every cell in the
lpromero
2017/01/12 16:44:38
Don't check the cell type, check the ItemType for
| |
29 | |
30 @end | |
31 | |
32 // Corresponding cell of an expandable article. | |
33 @interface SuggestionsExpandableCell : MDCCollectionViewCell | |
34 | |
35 @property(nonatomic, assign) SuggestionsExpandableItem* item; | |
lpromero
2017/01/11 13:19:20
I'd remove this and keep the item just as a data h
gambard
2017/01/12 14:39:40
The item needs to know if the cell has been expand
lpromero
2017/01/12 16:44:38
The item should hold that knowledge. In its public
| |
36 @property(nonatomic, copy) NSString* title; | |
37 @property(nonatomic, copy) NSString* subtitle; | |
38 @property(nonatomic, copy) NSString* detail; | |
39 @property(nonatomic, retain) UIImage* image; | |
40 | |
41 @end | |
42 | |
43 #endif // IOS_CHROME_BROWSER_UI_SUGGESTIONS_SUGGESTIONS_EXPANDABLE_ITEM_H_ | |
OLD | NEW |