-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathFLEXGlobalsEntry.m
More file actions
96 lines (74 loc) · 2.9 KB
/
Copy pathFLEXGlobalsEntry.m
File metadata and controls
96 lines (74 loc) · 2.9 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
//
// FLEXGlobalsEntry.m
// FLEX
//
// Created by Javier Soto on 7/26/14.
// Copyright (c) 2020 FLEX Team. All rights reserved.
//
#import "FLEXGlobalsEntry.h"
@implementation FLEXGlobalsEntry
+ (instancetype)entryWithEntry:(Class<FLEXGlobalsEntry>)cls
cellAccessoryType:(UITableViewCellAccessoryType)cellAccessoryType
row:(FLEXGlobalsRow)row {
BOOL providesVCs = [cls respondsToSelector:@selector(globalsEntryViewController:)];
BOOL providesActions = [cls respondsToSelector:@selector(globalsEntryRowAction:)];
NSParameterAssert(cls);
NSParameterAssert(providesVCs || providesActions);
FLEXGlobalsEntry *entry = [self new];
entry->_entryNameFuture = ^{ return [cls globalsEntryTitle:row]; };
entry->_cellAccessoryType = cellAccessoryType;
if (providesVCs) {
id action = providesActions ? [cls globalsEntryRowAction:row] : nil;
if (action) {
entry->_rowAction = action;
} else {
entry->_viewControllerFuture = ^{ return [cls globalsEntryViewController:row]; };
}
} else {
entry->_rowAction = [cls globalsEntryRowAction:row];
}
return entry;
}
+ (instancetype)entryWithNameFuture:(FLEXGlobalsEntryNameFuture)nameFuture
cellAccessoryType:(UITableViewCellAccessoryType)cellAccessoryType
viewControllerFuture:(FLEXGlobalsEntryViewControllerFuture)viewControllerFuture {
NSParameterAssert(nameFuture);
NSParameterAssert(viewControllerFuture);
FLEXGlobalsEntry *entry = [self new];
entry->_entryNameFuture = [nameFuture copy];
entry->_cellAccessoryType = cellAccessoryType;
entry->_viewControllerFuture = [viewControllerFuture copy];
return entry;
}
+ (instancetype)entryWithNameFuture:(FLEXGlobalsEntryNameFuture)nameFuture
cellAccessoryType:(UITableViewCellAccessoryType)cellAccessoryType
action:(FLEXGlobalsEntryRowAction)rowSelectedAction {
NSParameterAssert(nameFuture);
NSParameterAssert(rowSelectedAction);
FLEXGlobalsEntry *entry = [self new];
entry->_entryNameFuture = [nameFuture copy];
entry->_cellAccessoryType = cellAccessoryType;
entry->_rowAction = [rowSelectedAction copy];
return entry;
}
@end
@interface FLEXGlobalsEntry (Debugging)
@property (nonatomic, readonly) NSString *name;
@end
@implementation FLEXGlobalsEntry (Debugging)
- (NSString *)name {
return self.entryNameFuture();
}
@end
#pragma mark - flex_concreteGlobalsEntry
@implementation NSObject (FLEXGlobalsEntry)
+ (FLEXGlobalsEntry *)flex_concreteGlobalsEntry:(FLEXGlobalsRow)row {
if ([self conformsToProtocol:@protocol(FLEXGlobalsEntry)]) {
return [FLEXGlobalsEntry entryWithEntry:self
cellAccessoryType:UITableViewCellAccessoryDisclosureIndicator
row:row
];
}
return nil;
}
@end