CCControlCenterActivity.m 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  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. // Datasource
  17. NSArray *_sectionDataSource;
  18. }
  19. @end
  20. @implementation CCControlCenterActivity
  21. #pragma --------------------------------------------------------------------------------------------
  22. #pragma mark ===== Init =====
  23. #pragma --------------------------------------------------------------------------------------------
  24. - (id)initWithCoder:(NSCoder *)aDecoder
  25. {
  26. if (self = [super initWithCoder:aDecoder]) {
  27. app.controlCenterActivity = self;
  28. }
  29. return self;
  30. }
  31. - (void)viewDidLoad {
  32. [super viewDidLoad];
  33. _sectionDataSource = [NSArray new];
  34. [self reloadDatasource];
  35. }
  36. // Apparirà
  37. - (void)viewWillAppear:(BOOL)animated
  38. {
  39. [super viewWillAppear:animated];
  40. app.controlCenter.labelMessageNoRecord.hidden = YES;
  41. }
  42. // E' arrivato
  43. - (void)viewDidAppear:(BOOL)animated
  44. {
  45. [super viewDidAppear:animated];
  46. [self reloadDatasource];
  47. }
  48. - (void)didReceiveMemoryWarning {
  49. [super didReceiveMemoryWarning];
  50. }
  51. #pragma --------------------------------------------------------------------------------------------
  52. #pragma mark - ==== Datasource ====
  53. #pragma --------------------------------------------------------------------------------------------
  54. - (void)reloadDatasource
  55. {
  56. // test
  57. if (app.activeAccount.length == 0)
  58. return;
  59. if (app.controlCenter.isOpen) {
  60. if ([CCUtility getActivityVerboseHigh])
  61. _sectionDataSource = [CCCoreData getAllTableActivityWithPredicate:[NSPredicate predicateWithFormat:@"((account == %@) || (account == ''))", app.activeAccount]];
  62. else
  63. _sectionDataSource = [CCCoreData getAllTableActivityWithPredicate:[NSPredicate predicateWithFormat:@"(account == %@) AND (verbose == %lu)", app.activeAccount, k_activityVerboseDefault]];
  64. if ([[app.controlCenter getActivePage] isEqualToString:k_pageControlCenterActivity]) {
  65. if ([_sectionDataSource count] == 0) {
  66. app.controlCenter.labelMessageNoRecord.text = NSLocalizedString(@"_no_activity_",nil);
  67. app.controlCenter.labelMessageNoRecord.hidden = NO;
  68. } else {
  69. app.controlCenter.labelMessageNoRecord.hidden = YES;
  70. }
  71. }
  72. }
  73. [self.collectionView reloadData];
  74. }
  75. #pragma --------------------------------------------------------------------------------------------
  76. #pragma mark - ==== Table ====
  77. #pragma --------------------------------------------------------------------------------------------
  78. - (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView
  79. {
  80. return [_sectionDataSource count];
  81. }
  82. - (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
  83. {
  84. TableActivity *activity = [_sectionDataSource objectAtIndex:section];
  85. if ([activity.action isEqual: k_activityDebugActionDownload] || [activity.action isEqual: k_activityDebugActionUpload]) {
  86. if ([[NSFileManager defaultManager] fileExistsAtPath:[NSString stringWithFormat:@"%@/%@.ico", app.directoryUser, activity.fileID]])
  87. return 1;
  88. else
  89. return 0;
  90. }
  91. return 0;
  92. }
  93. -(CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout referenceSizeForHeaderInSection:(NSInteger)section
  94. {
  95. TableActivity *activity = [_sectionDataSource objectAtIndex:section];
  96. UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, collectionView.frame.size.width - 40, CGFLOAT_MAX)];
  97. label.numberOfLines = 0;
  98. label.lineBreakMode = NSLineBreakByWordWrapping;
  99. [label sizeToFit];
  100. // Action
  101. [label setFont:fontSizeAction];
  102. label.text = [NSString stringWithFormat:@"%@ %@", activity.action, activity.file];
  103. int heightAction = [self getLabelHeight:label];
  104. // Note
  105. [label setFont:fontSizeNote];
  106. if ([CCUtility getActivityVerboseHigh] && activity.idActivity == 0) label.text = [NSString stringWithFormat:@"%@ Selector: %@", activity.note, activity.selector];
  107. else label.text = activity.note;
  108. int heightNote = [self getLabelHeight:label];
  109. int heightView = 40 + heightAction + heightNote;
  110. return CGSizeMake(collectionView.frame.size.width, heightView);
  111. }
  112. - (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath
  113. {
  114. if (kind == UICollectionElementKindSectionHeader) {
  115. UICollectionReusableView *headerView = [collectionView dequeueReusableSupplementaryViewOfKind:kind withReuseIdentifier:@"header" forIndexPath:indexPath];
  116. TableActivity *activity = [_sectionDataSource objectAtIndex:indexPath.section];
  117. UILabel *dateLabel = (UILabel *)[headerView viewWithTag:100];
  118. UILabel *actionLabel = (UILabel *)[headerView viewWithTag:101];
  119. UILabel *noteLabel = (UILabel *)[headerView viewWithTag:102];
  120. UIImageView *typeImage = (UIImageView *) [headerView viewWithTag:103];
  121. [dateLabel setFont:fontSizeData];
  122. dateLabel.textColor = [UIColor colorWithRed:100.0/255.0 green:100.0/255.0 blue:100.0/255.0 alpha:1.0];
  123. if ([CCUtility getActivityVerboseHigh]) {
  124. dateLabel.text = [NSDateFormatter localizedStringFromDate:activity.date dateStyle:NSDateFormatterFullStyle timeStyle:NSDateFormatterMediumStyle];
  125. } else {
  126. NSDateComponents* comps = [[NSCalendar currentCalendar] components:NSCalendarUnitYear | NSCalendarUnitMonth | NSCalendarUnitDay fromDate:activity.date];
  127. dateLabel.text = [CCUtility getTitleSectionDate:[[NSCalendar currentCalendar] dateFromComponents:comps]];
  128. }
  129. [actionLabel setFont:fontSizeAction];
  130. [actionLabel sizeToFit];
  131. actionLabel.text = [NSString stringWithFormat:@"%@ %@", activity.action, activity.file];
  132. if ([activity.type isEqualToString:k_activityTypeInfo]) {
  133. actionLabel.textColor = COLOR_BRAND;
  134. if (activity.idActivity == 0)
  135. typeImage.image = [UIImage imageNamed:@"activityTypeInfo"];
  136. else
  137. typeImage.image = [UIImage imageNamed:@"activityTypeInfoServer"];
  138. }
  139. if ([activity.type isEqualToString:k_activityTypeSuccess]) {
  140. actionLabel.textColor = [UIColor colorWithRed:87.0/255.0 green:187.0/255.0 blue:57.0/255.0 alpha:1.0];;
  141. typeImage.image = [UIImage imageNamed:@"activityTypeSuccess"];
  142. }
  143. if ([activity.type isEqualToString:k_activityTypeFailure]) {
  144. actionLabel.textColor = [UIColor redColor];
  145. typeImage.image = [UIImage imageNamed:@"activityTypeFailure"];
  146. }
  147. [noteLabel setFont:fontSizeNote];
  148. [noteLabel sizeToFit];
  149. noteLabel.textColor = COLOR_TEXT_ANTHRACITE;
  150. noteLabel.numberOfLines = 0;
  151. noteLabel.lineBreakMode = NSLineBreakByWordWrapping;
  152. if ([CCUtility getActivityVerboseHigh] && activity.idActivity == 0) noteLabel.text = [NSString stringWithFormat:@"%@ Selector: %@", activity.note, activity.selector];
  153. else noteLabel.text = activity.note;
  154. return headerView;
  155. }
  156. if (kind == UICollectionElementKindSectionFooter) {
  157. UICollectionReusableView *footerView = [collectionView dequeueReusableSupplementaryViewOfKind:kind withReuseIdentifier:@"footer" forIndexPath:indexPath];
  158. return footerView;
  159. }
  160. return nil;
  161. }
  162. - (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
  163. {
  164. UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"cell" forIndexPath:indexPath];
  165. cell.backgroundColor = [UIColor clearColor];
  166. UIImageView *imageView = (UIImageView *)[cell viewWithTag:104];
  167. TableActivity *activity = [_sectionDataSource objectAtIndex:indexPath.section];
  168. imageView.image = [UIImage imageWithContentsOfFile:[NSString stringWithFormat:@"%@/%@.ico", app.directoryUser, activity.fileID]];
  169. return cell;
  170. }
  171. #pragma --------------------------------------------------------------------------------------------
  172. #pragma mark - ==== Utility ====
  173. #pragma --------------------------------------------------------------------------------------------
  174. - (CGFloat)getLabelHeight:(UILabel*)label
  175. {
  176. CGSize constraint = CGSizeMake(self.collectionView.frame.size.width, CGFLOAT_MAX);
  177. NSMutableParagraphStyle *paragraph = [[NSMutableParagraphStyle alloc] init];
  178. paragraph.lineBreakMode = NSLineBreakByWordWrapping;
  179. NSDictionary *attributes = @{NSFontAttributeName : label.font, NSParagraphStyleAttributeName: paragraph};
  180. NSStringDrawingContext *context = [[NSStringDrawingContext alloc] init];
  181. CGSize boundingBox = [label.text boundingRectWithSize:constraint options:NSStringDrawingUsesLineFragmentOrigin attributes:attributes context:context].size;
  182. CGSize size = CGSizeMake(ceil(boundingBox.width), ceil(boundingBox.height));
  183. return size.height;
  184. }
  185. @end