CCControlCenterActivity.m 9.7 KB

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