CCControlCenterActivity.m 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  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 systemFontOfSize:16]
  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 getActivityVerboseDebug])
  62. _sectionDataSource = [CCCoreData getAllTableActivityWithPredicate:[NSPredicate predicateWithFormat:@"(account == %@)", app.activeAccount]];
  63. else
  64. _sectionDataSource = [CCCoreData getAllTableActivityWithPredicate:[NSPredicate predicateWithFormat:@"(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. /*
  86. TableActivity *activity = [_sectionDataSource objectAtIndex:section];
  87. if ([activity.file length] > 0)
  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 *noteLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, collectionView.frame.size.width , CGFLOAT_MAX)];
  98. noteLabel.numberOfLines = 0;
  99. [noteLabel setFont:fontSizeNote];
  100. noteLabel.text = activity.note;
  101. noteLabel.lineBreakMode = NSLineBreakByWordWrapping;
  102. int heighNoteLabel = [self getLabelHeight:noteLabel];
  103. int heightView = 90 + heighNoteLabel + (heighNoteLabel/5);
  104. if (heightView < 90)
  105. heightView = 90;
  106. return CGSizeMake(collectionView.frame.size.width, heightView);
  107. }
  108. - (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath
  109. {
  110. UICollectionReusableView *headerView = [collectionView dequeueReusableSupplementaryViewOfKind:kind withReuseIdentifier:@"header" forIndexPath:indexPath];
  111. TableActivity *activity = [_sectionDataSource objectAtIndex:indexPath.section];
  112. UILabel *dateLabel = (UILabel *)[headerView viewWithTag:100];
  113. UILabel *actionLabel = (UILabel *)[headerView viewWithTag:101];
  114. UILabel *noteLabel = (UILabel *)[headerView viewWithTag:102];
  115. UIImageView *typeImage = (UIImageView *) [headerView viewWithTag:103];
  116. [dateLabel setFont:fontSizeData];
  117. dateLabel.textColor = [UIColor colorWithRed:100.0/255.0 green:100.0/255.0 blue:100.0/255.0 alpha:1.0];
  118. if ([CCUtility getActivityVerboseDebug]) {
  119. dateLabel.text = [NSDateFormatter localizedStringFromDate:activity.date dateStyle:NSDateFormatterFullStyle timeStyle:NSDateFormatterMediumStyle];
  120. } else {
  121. NSDateComponents* comps = [[NSCalendar currentCalendar] components:NSCalendarUnitYear | NSCalendarUnitMonth | NSCalendarUnitDay fromDate:activity.date];
  122. dateLabel.text = [CCUtility getTitleSectionDate:[[NSCalendar currentCalendar] dateFromComponents:comps]];
  123. }
  124. [actionLabel setFont:fontSizeAction];
  125. actionLabel.text = [NSString stringWithFormat:@"%@ %@", activity.action, activity.file];
  126. if ([activity.type length] == 0 || [activity.type isEqualToString:k_activityTypeInfo]) {
  127. actionLabel.textColor = COLOR_BRAND;
  128. typeImage.image = [UIImage imageNamed:@"activityTypeInfo"];
  129. }
  130. if ([activity.type isEqualToString:k_activityTypeSuccess]) {
  131. actionLabel.textColor = [UIColor colorWithRed:87.0/255.0 green:187.0/255.0 blue:57.0/255.0 alpha:1.0];;
  132. typeImage.image = [UIImage imageNamed:@"activityTypeSuccess"];
  133. }
  134. if ([activity.type isEqualToString:k_activityTypeFailure]) {
  135. actionLabel.textColor = [UIColor redColor];
  136. typeImage.image = [UIImage imageNamed:@"activityTypeFailure"];
  137. }
  138. [noteLabel setFont:fontSizeNote];
  139. noteLabel.textColor = COLOR_TEXT_ANTHRACITE;
  140. noteLabel.numberOfLines = 0;
  141. noteLabel.lineBreakMode = NSLineBreakByWordWrapping;
  142. noteLabel.text = activity.note;
  143. //headerView.backgroundColor = [UIColor blueColor];
  144. return headerView;
  145. }
  146. - (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
  147. {
  148. UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"cell" forIndexPath:indexPath];
  149. cell.backgroundColor = [UIColor clearColor];
  150. TableActivity *activity = [_sectionDataSource objectAtIndex:indexPath.section];
  151. NSString *dir = [activity.file stringByDeletingLastPathComponent];
  152. NSString *fileName = [activity.file lastPathComponent];
  153. if ([dir length] > 0 && [fileName length] > 0) {
  154. }
  155. return cell;
  156. }
  157. #pragma --------------------------------------------------------------------------------------------
  158. #pragma mark - ==== Utility ====
  159. #pragma --------------------------------------------------------------------------------------------
  160. - (CGFloat)getLabelHeight:(UILabel*)label
  161. {
  162. CGSize constraint = CGSizeMake(self.collectionView.frame.size.width, CGFLOAT_MAX);
  163. NSMutableParagraphStyle *paragraph = [[NSMutableParagraphStyle alloc] init];
  164. paragraph.lineBreakMode = NSLineBreakByWordWrapping;
  165. NSDictionary *attributes = @{NSFontAttributeName : label.font, NSParagraphStyleAttributeName: paragraph};
  166. NSStringDrawingContext *context = [[NSStringDrawingContext alloc] init];
  167. CGSize boundingBox = [label.text boundingRectWithSize:constraint options:NSStringDrawingUsesLineFragmentOrigin attributes:attributes context:context].size;
  168. CGSize size = CGSizeMake(ceil(boundingBox.width), ceil(boundingBox.height));
  169. return size.height;
  170. }
  171. @end