CCControlCenterActivity.m 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297
  1. //
  2. // CCControlCenterActivity.m
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 01/03/17.
  6. // Copyright © 2017 TWS. All rights reserved.
  7. //
  8. #import "CCControlCenterActivity.h"
  9. #import "AppDelegate.h"
  10. #import "CCSection.h"
  11. #define fontSizeData [UIFont boldSystemFontOfSize:15]
  12. #define fontSizeAction [UIFont systemFontOfSize:14]
  13. #define fontSizeNote [UIFont systemFontOfSize:14]
  14. @interface CCControlCenterActivity ()
  15. {
  16. BOOL _verbose;
  17. // Datasource
  18. NSArray *_sectionDataSource;
  19. }
  20. @end
  21. @implementation CCControlCenterActivity
  22. #pragma --------------------------------------------------------------------------------------------
  23. #pragma mark ===== Init =====
  24. #pragma --------------------------------------------------------------------------------------------
  25. - (id)initWithCoder:(NSCoder *)aDecoder
  26. {
  27. if (self = [super initWithCoder:aDecoder]) {
  28. app.controlCenterActivity = self;
  29. }
  30. return self;
  31. }
  32. - (void)viewDidLoad {
  33. [super viewDidLoad];
  34. _sectionDataSource = [NSArray new];
  35. [self reloadDatasource];
  36. }
  37. // Apparirà
  38. - (void)viewWillAppear:(BOOL)animated
  39. {
  40. [super viewWillAppear:animated];
  41. _verbose = [CCUtility getActivityVerboseHigh];
  42. app.controlCenter.labelMessageNoRecord.hidden = YES;
  43. }
  44. // E' arrivato
  45. - (void)viewDidAppear:(BOOL)animated
  46. {
  47. [super viewDidAppear:animated];
  48. [self reloadDatasource];
  49. }
  50. - (void)didReceiveMemoryWarning {
  51. [super didReceiveMemoryWarning];
  52. }
  53. #pragma --------------------------------------------------------------------------------------------
  54. #pragma mark - ==== Datasource ====
  55. #pragma --------------------------------------------------------------------------------------------
  56. - (void)reloadDatasource
  57. {
  58. // test
  59. if (app.activeAccount.length == 0)
  60. return;
  61. if (app.controlCenter.isOpen) {
  62. NSPredicate *predicate;
  63. if ([CCUtility getActivityVerboseHigh])
  64. predicate = [NSPredicate predicateWithFormat:@"((account == %@) || (account == ''))", app.activeAccount];
  65. else
  66. predicate = [NSPredicate predicateWithFormat:@"(account == %@) AND (verbose == %lu)", app.activeAccount, k_activityVerboseDefault];
  67. _sectionDataSource = [CCCoreData getAllTableActivityWithPredicate: predicate];
  68. [self reloadCollection];
  69. }
  70. }
  71. - (void)reloadCollection
  72. {
  73. NSDate *dateActivity;
  74. if ([_sectionDataSource count] == 0) {
  75. app.controlCenter.labelMessageNoRecord.text = NSLocalizedString(@"_no_activity_",nil);
  76. app.controlCenter.labelMessageNoRecord.hidden = NO;
  77. } else {
  78. app.controlCenter.labelMessageNoRecord.hidden = YES;
  79. dateActivity = ((TableActivity *)[_sectionDataSource objectAtIndex:0]).date;
  80. }
  81. if ([dateActivity compare:_storeDateFirstActivity] == NSOrderedDescending || _storeDateFirstActivity == nil) {
  82. _storeDateFirstActivity = dateActivity;
  83. [self.collectionView reloadData];
  84. }
  85. }
  86. #pragma --------------------------------------------------------------------------------------------
  87. #pragma mark - ==== Table ====
  88. #pragma --------------------------------------------------------------------------------------------
  89. - (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView
  90. {
  91. return [_sectionDataSource count];
  92. }
  93. - (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
  94. {
  95. TableActivity *activity = [_sectionDataSource objectAtIndex:section];
  96. if ([activity.action isEqual: k_activityDebugActionDownload] || [activity.action isEqual: k_activityDebugActionUpload]) {
  97. if ([[NSFileManager defaultManager] fileExistsAtPath:[NSString stringWithFormat:@"%@/%@.ico", app.directoryUser, activity.fileID]])
  98. return 1;
  99. else
  100. return 0;
  101. }
  102. return 0;
  103. }
  104. -(CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout referenceSizeForHeaderInSection:(NSInteger)section
  105. {
  106. TableActivity *activity = [_sectionDataSource objectAtIndex:section];
  107. UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, collectionView.frame.size.width - 40, CGFLOAT_MAX)];
  108. label.numberOfLines = 0;
  109. label.lineBreakMode = NSLineBreakByWordWrapping;
  110. [label sizeToFit];
  111. // Action
  112. [label setFont:fontSizeAction];
  113. label.text = [NSString stringWithFormat:@"%@ %@", activity.action, activity.file];
  114. int heightAction = [self getLabelHeight:label];
  115. // Note
  116. [label setFont:fontSizeNote];
  117. if (_verbose && activity.idActivity == 0) label.text = [NSString stringWithFormat:@"%@ Selector: %@", activity.note, activity.selector];
  118. else label.text = activity.note;
  119. int heightNote = [self getLabelHeight:label];
  120. int heightView = 40 + heightAction + heightNote;
  121. return CGSizeMake(collectionView.frame.size.width, heightView);
  122. }
  123. - (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath
  124. {
  125. UICollectionReusableView *reusableview;
  126. if (kind == UICollectionElementKindSectionHeader) {
  127. reusableview = [collectionView dequeueReusableSupplementaryViewOfKind:kind withReuseIdentifier:@"header" forIndexPath:indexPath];
  128. TableActivity *activity = [_sectionDataSource objectAtIndex:indexPath.section];
  129. UILabel *dateLabel = (UILabel *)[reusableview viewWithTag:100];
  130. UILabel *actionLabel = (UILabel *)[reusableview viewWithTag:101];
  131. UILabel *noteLabel = (UILabel *)[reusableview viewWithTag:102];
  132. UIImageView *typeImage = (UIImageView *) [reusableview viewWithTag:103];
  133. [dateLabel setFont:fontSizeData];
  134. dateLabel.textColor = [UIColor colorWithRed:100.0/255.0 green:100.0/255.0 blue:100.0/255.0 alpha:1.0];
  135. if ([CCUtility getActivityVerboseHigh]) {
  136. dateLabel.text = [NSDateFormatter localizedStringFromDate:activity.date dateStyle:NSDateFormatterFullStyle timeStyle:NSDateFormatterMediumStyle];
  137. } else {
  138. NSDateComponents* comps = [[NSCalendar currentCalendar] components:NSCalendarUnitYear | NSCalendarUnitMonth | NSCalendarUnitDay fromDate:activity.date];
  139. dateLabel.text = [CCUtility getTitleSectionDate:[[NSCalendar currentCalendar] dateFromComponents:comps]];
  140. }
  141. [actionLabel setFont:fontSizeAction];
  142. [actionLabel sizeToFit];
  143. actionLabel.text = [NSString stringWithFormat:@"%@ %@", activity.action, activity.file];
  144. if ([activity.type isEqualToString:k_activityTypeInfo]) {
  145. actionLabel.textColor = COLOR_BRAND;
  146. if (activity.idActivity == 0)
  147. typeImage.image = [UIImage imageNamed:@"activityTypeInfo"];
  148. else
  149. typeImage.image = [UIImage imageNamed:@"activityTypeInfoServer"];
  150. }
  151. if ([activity.type isEqualToString:k_activityTypeSuccess]) {
  152. actionLabel.textColor = [UIColor colorWithRed:87.0/255.0 green:187.0/255.0 blue:57.0/255.0 alpha:1.0];;
  153. typeImage.image = [UIImage imageNamed:@"activityTypeSuccess"];
  154. }
  155. if ([activity.type isEqualToString:k_activityTypeFailure]) {
  156. actionLabel.textColor = [UIColor redColor];
  157. typeImage.image = [UIImage imageNamed:@"activityTypeFailure"];
  158. }
  159. [noteLabel setFont:fontSizeNote];
  160. [noteLabel sizeToFit];
  161. noteLabel.textColor = COLOR_TEXT_ANTHRACITE;
  162. noteLabel.numberOfLines = 0;
  163. noteLabel.lineBreakMode = NSLineBreakByWordWrapping;
  164. if ([CCUtility getActivityVerboseHigh] && activity.idActivity == 0) noteLabel.text = [NSString stringWithFormat:@"%@ Selector: %@", activity.note, activity.selector];
  165. else noteLabel.text = activity.note;
  166. }
  167. if (kind == UICollectionElementKindSectionFooter) {
  168. reusableview = [collectionView dequeueReusableSupplementaryViewOfKind:kind withReuseIdentifier:@"footer" forIndexPath:indexPath];
  169. }
  170. return reusableview;
  171. }
  172. - (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
  173. {
  174. UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"cell" forIndexPath:indexPath];
  175. cell.backgroundColor = [UIColor clearColor];
  176. UIImageView *imageView = (UIImageView *)[cell viewWithTag:104];
  177. TableActivity *activity = [_sectionDataSource objectAtIndex:indexPath.section];
  178. imageView.image = [UIImage imageWithContentsOfFile:[NSString stringWithFormat:@"%@/%@.ico", app.directoryUser, activity.fileID]];
  179. return cell;
  180. }
  181. - (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
  182. {
  183. TableActivity *activity = [_sectionDataSource objectAtIndex:indexPath.section];
  184. CCMetadata *metadata = [CCCoreData getMetadataWithPreficate:[NSPredicate predicateWithFormat:@"(account == %@) AND (fileID == %@)", activity.account, activity.fileID] context:nil];
  185. if (metadata) {
  186. if (!self.splitViewController.isCollapsed && app.activeMain.detailViewController.isViewLoaded && app.activeMain.detailViewController.view.window)
  187. [app.activeMain.navigationController popToRootViewControllerAnimated:NO];
  188. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.1 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
  189. [app.activeMain performSegueWithIdentifier:@"segueDetail" sender:metadata];
  190. });
  191. } else {
  192. [app messageNotification:@"_info_" description:@"_activity_file_not_present_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeInfo];
  193. }
  194. }
  195. #pragma --------------------------------------------------------------------------------------------
  196. #pragma mark - ==== Utility ====
  197. #pragma --------------------------------------------------------------------------------------------
  198. - (CGFloat)getLabelHeight:(UILabel*)label
  199. {
  200. CGSize constraint = CGSizeMake(self.collectionView.frame.size.width, CGFLOAT_MAX);
  201. NSMutableParagraphStyle *paragraph = [[NSMutableParagraphStyle alloc] init];
  202. paragraph.lineBreakMode = NSLineBreakByWordWrapping;
  203. NSDictionary *attributes = @{NSFontAttributeName : label.font, NSParagraphStyleAttributeName: paragraph};
  204. NSStringDrawingContext *context = [[NSStringDrawingContext alloc] init];
  205. CGSize boundingBox = [label.text boundingRectWithSize:constraint options:NSStringDrawingUsesLineFragmentOrigin attributes:attributes context:context].size;
  206. CGSize size = CGSizeMake(ceil(boundingBox.width), ceil(boundingBox.height));
  207. return size.height;
  208. }
  209. @end