This repository has been archived by the owner on Dec 19, 2022. It is now read-only.
forked from germc/Atlas-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ATLBaseCollectionViewCell.h
67 lines (54 loc) · 1.91 KB
/
ATLBaseCollectionViewCell.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
//
// ATLBaseCollectionViewCell.h
// Pods
//
// Created by Kevin Coleman on 12/22/15.
//
//
#import <UIKit/UIKit.h>
#import "ATLMessageBubbleView.h"
#import "ATLAvatarView.h"
#import "ATLMessagePresenting.h"
#import <LayerKit/LayerKit.h>
typedef NS_ENUM(NSInteger, ATLCellType) {
ATLOutgoingCellType,
ATLIncomingCellType,
};
extern CGFloat const ATLMessageCellHorizontalMargin;
/**
@abstract The `ATLBaseCollectionViewCell` provides for building custom UI on top of a basic Atlas 'Bubble Cell'.
@discussion Applications that wish to build custom UI inside of a bubble should create a subclass of `ATLBaseCollectionViewCell`
and add subviews to the `bubbleView` property.
*/
@interface ATLBaseCollectionViewCell : UICollectionViewCell <ATLMessagePresenting>
/**
@abstract The background color for the bubble view displayed in the cell. Default is light gray.
*/
@property (nonatomic) UIColor *bubbleViewColor UI_APPEARANCE_SELECTOR;
/**
@abstract The corner radius of the bubble view displayed in the cell. Default is 16.
*/
@property (nonatomic) CGFloat bubbleViewCornerRadius UI_APPEARANCE_SELECTOR;
/**
@abstract The view that handles displaying the cell content.
*/
@property (nonatomic) ATLMessageBubbleView *bubbleView;
/**
@abstract The optional avatar image view representing a user.
*/
@property (nonatomic) ATLAvatarView *avatarView;
/**
@abstract The `LYRMessage` object passed in `ATLMessagePresenting` protocol `presentMessage:`.
*/
@property (nonatomic) LYRMessage *message;
/**
@abstract Configures the message bubble's width.
*/
- (void)updateBubbleWidth:(CGFloat)bubbleWidth;
/**
@abstract Updates the message cell's `ATLCellType`.
@discussion The cell type determines the alignment of the cell in the conversation view. Cells with `ATLOutgoingCellType` will
right aligned and cells with `ATLIncomingCellType` will be left aligned.
*/
- (void)configureCellForType:(ATLCellType)cellType;
@end