CCControlCenter.m 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436
  1. //
  2. // CCControlCenter.m
  3. // Crypto Cloud Technology Nextcloud
  4. //
  5. // Created by Marino Faggiana on 07/04/16.
  6. // Copyright (c) 2014 TWS. All rights reserved.
  7. //
  8. // Author Marino Faggiana <m.faggiana@twsweb.it>
  9. //
  10. // This program is free software: you can redistribute it and/or modify
  11. // it under the terms of the GNU General Public License as published by
  12. // the Free Software Foundation, either version 3 of the License, or
  13. // (at your option) any later version.
  14. //
  15. // This program is distributed in the hope that it will be useful,
  16. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. // GNU General Public License for more details.
  19. //
  20. // You should have received a copy of the GNU General Public License
  21. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. //
  23. #import "CCControlCenter.h"
  24. #import "CCControlCenterTransfer.h"
  25. #import "CCControlCenterActivity.h"
  26. #import "AppDelegate.h"
  27. #import "CCMain.h"
  28. #import "CCDetail.h"
  29. #define BORDER_TOUCH_UPDOWN 50.0f
  30. #define TOOLBAR_TRANSFER_H 0.0f
  31. #define TOOLBAR_ADD_BORDER 20.0f
  32. #define SIZE_FONT_NORECORD 18.0f
  33. #define ANIMATION_GESTURE 0.50f
  34. @interface CCControlCenter ()
  35. {
  36. UIVisualEffectView *_mainView;
  37. UILabel *_noRecord;
  38. UIImageView *_imageDrag;
  39. UIView *_endLine;
  40. CGFloat start, stop;
  41. UIPanGestureRecognizer *panNavigationBar, *panImageDrag;
  42. UITapGestureRecognizer *_singleFingerTap;
  43. UIPageControl *pageControl;
  44. }
  45. @end
  46. @implementation CCControlCenter
  47. #pragma --------------------------------------------------------------------------------------------
  48. #pragma mark ===== Init =====
  49. #pragma --------------------------------------------------------------------------------------------
  50. - (id)initWithCoder:(NSCoder *)aDecoder
  51. {
  52. if (self = [super initWithCoder:aDecoder]) {
  53. app.controlCenter = self;
  54. }
  55. return self;
  56. }
  57. - (void)viewDidLoad
  58. {
  59. [super viewDidLoad];
  60. _controlCenterPagesContent = [NSMutableArray new];
  61. UIBlurEffect *effect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight];
  62. _mainView = [[UIVisualEffectView alloc] initWithEffect:effect];
  63. [_mainView setFrame:CGRectMake(0, 0, self.navigationBar.frame.size.width, 0)];
  64. _mainView.hidden = YES;
  65. // TEST
  66. //_mainView.backgroundColor = [UIColor yellowColor];
  67. // Create data model
  68. _pageType = @[k_pageControlCenterTransfer, k_pageControlCenterActivity];
  69. _currentPageType = k_pageControlCenterTransfer;
  70. // Create page view controller
  71. _pageViewController = [[UIStoryboard storyboardWithName: @"ControlCenter" bundle:[NSBundle mainBundle]] instantiateViewControllerWithIdentifier:@"ControlCenterPageViewController"];
  72. _pageViewController.dataSource = self;
  73. _pageViewController.delegate = self;
  74. UIViewController *startingViewController = [self viewControllerAtIndex:0];
  75. NSArray *viewControllers = @[startingViewController];
  76. [_pageViewController setViewControllers:viewControllers direction:UIPageViewControllerNavigationDirectionForward animated:NO completion:nil];
  77. [_pageViewController.view setFrame:CGRectMake(0, 0, self.navigationBar.frame.size.width, 0)];
  78. _pageViewController.view.autoresizingMask = UIViewAutoresizingFlexibleWidth;
  79. [_mainView addSubview:_pageViewController.view];
  80. _noRecord =[[UILabel alloc]init];
  81. _noRecord.backgroundColor=[UIColor clearColor];
  82. _noRecord.textColor = COLOR_CONTROL_CENTER;
  83. _noRecord.font = [UIFont systemFontOfSize:SIZE_FONT_NORECORD];
  84. _noRecord.textAlignment = NSTextAlignmentCenter;
  85. _noRecord.text = NSLocalizedString(@"_no_transfer_",nil);
  86. _noRecord.hidden = YES;
  87. [_mainView addSubview:_noRecord];
  88. _imageDrag = [[UIImageView alloc] init];
  89. [_imageDrag setFrame:CGRectMake(0, 0, self.navigationBar.frame.size.width, 0)];
  90. _imageDrag.image = [UIImage imageNamed:image_drag];
  91. _imageDrag.contentMode = UIViewContentModeCenter;
  92. _imageDrag.userInteractionEnabled = YES;
  93. [_mainView addSubview:_imageDrag];
  94. _endLine = [[UIView alloc] init];
  95. [_endLine setFrame:CGRectMake(0, 0, self.navigationBar.frame.size.width, 0)];
  96. _endLine.backgroundColor = COLOR_CONTROL_CENTER;
  97. [_mainView addSubview:_endLine];
  98. [self.navigationBar.superview insertSubview:_mainView belowSubview:self.navigationBar];
  99. // Pop Gesture Recognizer
  100. [self.interactivePopGestureRecognizer addTarget:self action:@selector(handlePopGesture:)];
  101. panImageDrag = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(handlePanGesture:)];
  102. panImageDrag.maximumNumberOfTouches = panImageDrag.minimumNumberOfTouches = 1;
  103. [_imageDrag addGestureRecognizer:panImageDrag];
  104. panNavigationBar = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(handlePanGesture:)];
  105. panNavigationBar.maximumNumberOfTouches = panNavigationBar.minimumNumberOfTouches = 1;
  106. [self.navigationBar addGestureRecognizer:panNavigationBar];
  107. }
  108. /* iOS Developer Library : A panning gesture is continuous. It begins (UIGestureRecognizerStateBegan) when the minimum number of fingers allowed (minimumNumberOfTouches) has moved enough to be considered a pan. It changes (UIGestureRecognizerStateChanged) when a finger moves while at least the minimum number of fingers are pressed down. It ends (UIGestureRecognizerStateEnded) when all fingers are lifted. */
  109. - (void)handlePanGesture:(UIPanGestureRecognizer *)gesture;
  110. {
  111. CGPoint currentPoint = [gesture locationInView:self.view];
  112. CGFloat navigationBarH = self.navigationBar.frame.size.height + [UIApplication sharedApplication].statusBarFrame.size.height;
  113. CGFloat navigationBarW = self.navigationBar.frame.size.width;
  114. CGFloat heightScreen = [UIScreen mainScreen].bounds.size.height - self.tabBarController.tabBar.frame.size.height;
  115. CGFloat heightTableView = [UIScreen mainScreen].bounds.size.height - self.tabBarController.tabBar.frame.size.height - navigationBarH - BORDER_TOUCH_UPDOWN - TOOLBAR_TRANSFER_H - TOOLBAR_ADD_BORDER;
  116. float centerMaxH = [self getMaxH] / 2;
  117. float step = [self getMaxH] / 10;
  118. float tableViewY = navigationBarH;
  119. // BUG Scroll to top of UITableView by tapping status bar
  120. _mainView.hidden = NO;
  121. // start
  122. if (gesture.state == UIGestureRecognizerStateBegan) {
  123. start = currentPoint.y;
  124. }
  125. // cancelled (return to 0)
  126. if (gesture.state == UIGestureRecognizerStateCancelled) {
  127. currentPoint.y = 0;
  128. tableViewY = 0;
  129. panNavigationBar.enabled = YES;
  130. }
  131. // end
  132. if (gesture.state == UIGestureRecognizerStateEnded) {
  133. stop = currentPoint.y;
  134. // DOWN
  135. if (start < stop) {
  136. if (stop < (start + step + navigationBarH) && start <= navigationBarH) {
  137. currentPoint.y = 0;
  138. tableViewY = 0;
  139. panNavigationBar.enabled = YES;
  140. } else {
  141. currentPoint.y = [self getMaxH];
  142. tableViewY = navigationBarH;
  143. panNavigationBar.enabled = NO;
  144. }
  145. }
  146. // UP
  147. if (start >= stop && start >= navigationBarH) {
  148. if (stop > (start - step)) {
  149. currentPoint.y = [self getMaxH];
  150. tableViewY = navigationBarH;
  151. panNavigationBar.enabled = NO;
  152. } else {
  153. currentPoint.y = 0;
  154. tableViewY = 0;
  155. panNavigationBar.enabled = YES;
  156. }
  157. }
  158. }
  159. // changed
  160. if (gesture.state == UIGestureRecognizerStateChanged) {
  161. if (currentPoint.y <= navigationBarH) {
  162. currentPoint.y = 0;
  163. tableViewY = 0;
  164. }
  165. else if (currentPoint.y >= [self getMaxH]) {
  166. currentPoint.y = [self getMaxH];
  167. tableViewY = navigationBarH;
  168. }
  169. else {
  170. if (currentPoint.y - navigationBarH < navigationBarH) tableViewY = currentPoint.y - navigationBarH;
  171. else tableViewY = navigationBarH;
  172. }
  173. }
  174. [UIView animateWithDuration:ANIMATION_GESTURE delay:0.0 options:UIViewAnimationOptionTransitionCrossDissolve
  175. animations:^ {
  176. _mainView.frame = CGRectMake(0, 0, navigationBarW, currentPoint.y);
  177. _pageViewController.view.frame = CGRectMake(0, currentPoint.y - heightScreen + navigationBarH, navigationBarW, heightTableView);
  178. _noRecord.frame = CGRectMake(0, currentPoint.y - centerMaxH - TOOLBAR_TRANSFER_H, navigationBarW, SIZE_FONT_NORECORD+10);
  179. _imageDrag.frame = CGRectMake(0, currentPoint.y - BORDER_TOUCH_UPDOWN, navigationBarW, BORDER_TOUCH_UPDOWN);
  180. _endLine.frame = CGRectMake(0, currentPoint.y - BORDER_TOUCH_UPDOWN, navigationBarW, 1);
  181. } completion:^ (BOOL completed) {
  182. if (_mainView.frame.size.height == [self getMaxH]) {
  183. [self setIsOpen:YES];
  184. } else {
  185. [self setIsOpen:NO];
  186. }
  187. // BUG Scroll to top of UITableView by tapping status bar
  188. if (_mainView.frame.size.height == 0)
  189. _mainView.hidden = YES;
  190. }
  191. ];
  192. }
  193. /* iOS Developer Library : The navigation controller installs this gesture recognizer on its view and uses it to pop the topmost view controller off the navigation stack. You can use this property to retrieve the gesture recognizer and tie it to the behavior of other gesture recognizers in your user interface. When tying your gesture recognizers together, make sure they recognize their gestures simultaneously to ensure that your gesture recognizers are given a chance to handle the event. */
  194. - (void)handlePopGesture:(UIGestureRecognizer *)gesture
  195. {
  196. if (gesture.state == UIGestureRecognizerStateBegan) {
  197. _isPopGesture = YES;
  198. }
  199. if (gesture.state == UIGestureRecognizerStateEnded) {
  200. _isPopGesture = NO;
  201. }
  202. }
  203. // rotazione
  204. - (void)viewWillTransitionToSize:(CGSize)size withTransitionCoordinator:(id<UIViewControllerTransitionCoordinator>)coordinator
  205. {
  206. if (_isOpen) {
  207. [self setControlCenterHidden:YES];
  208. [coordinator animateAlongsideTransition:nil completion:^(id<UIViewControllerTransitionCoordinatorContext> context) {
  209. [self openControlCenterToSize:size];
  210. [self setControlCenterHidden: self.navigationBarHidden];
  211. }];
  212. //[self closeControlCenter];
  213. }
  214. [super viewWillTransitionToSize:size withTransitionCoordinator:coordinator];
  215. }
  216. - (void)setControlCenterHidden:(BOOL)hidden
  217. {
  218. _mainView.hidden = hidden;
  219. }
  220. - (float)getMaxH
  221. {
  222. //return ([UIScreen mainScreen].bounds.size.height / 4) * 3;
  223. return [UIScreen mainScreen].bounds.size.height - self.tabBarController.tabBar.frame.size.height;
  224. }
  225. - (void)openControlCenterToSize:(CGSize)size
  226. {
  227. CGFloat navigationBarH = self.navigationBar.frame.size.height + [UIApplication sharedApplication].statusBarFrame.size.height;
  228. _mainView.frame = CGRectMake(0, 0, size.width, [self getMaxH]);
  229. _pageViewController.view.frame = CGRectMake(0, navigationBarH, _mainView.frame.size.width, _mainView.frame.size.height - navigationBarH - BORDER_TOUCH_UPDOWN - TOOLBAR_TRANSFER_H - TOOLBAR_ADD_BORDER);
  230. _noRecord.frame = CGRectMake(0, _mainView.frame.size.height / 2 - TOOLBAR_TRANSFER_H, _mainView.frame.size.width, SIZE_FONT_NORECORD+10);
  231. _imageDrag.frame = CGRectMake(0, _mainView.frame.size.height - BORDER_TOUCH_UPDOWN, _mainView.frame.size.width, BORDER_TOUCH_UPDOWN);
  232. _endLine.frame = CGRectMake(0, _mainView.frame.size.height - BORDER_TOUCH_UPDOWN, _mainView.frame.size.width, 1);
  233. panNavigationBar.enabled = NO;
  234. [self setIsOpen:YES];
  235. }
  236. /*
  237. - (void)closeControlCenterToSize:(CGSize)size
  238. {
  239. _mainView.frame = CGRectMake(0, 0, size.width, 0);
  240. _tableView.frame = CGRectMake(0, 0, _mainView.frame.size.width, 0);
  241. _noRecord.frame = CGRectMake(0, 0, _mainView.frame.size.width, 0);
  242. _imageDrag.frame = CGRectMake(0, 0, _mainView.frame.size.width, 0);
  243. _endLine.frame = CGRectMake(0, 0, _mainView.frame.size.width, 0);
  244. panNavigationBar.enabled = YES;
  245. }
  246. */
  247. - (void)setIsOpen:(BOOL)setOpen
  248. {
  249. if (setOpen) {
  250. if (!_isOpen) {
  251. _isOpen = YES;
  252. [app.controlCenterTransfer reloadDatasource];
  253. }
  254. } else {
  255. _isOpen = NO;
  256. }
  257. }
  258. #pragma --------------------------------------------------------------------------------------------
  259. #pragma mark - ===== Single Finger Tap =====
  260. #pragma --------------------------------------------------------------------------------------------
  261. - (void)enableSingleFingerTap:(SEL)selector target:(id)target
  262. {
  263. _singleFingerTap = [[UITapGestureRecognizer alloc] initWithTarget:target action:selector];
  264. [self.navigationBar addGestureRecognizer:_singleFingerTap];
  265. }
  266. - (void)disableSingleFingerTap
  267. {
  268. [self.navigationBar removeGestureRecognizer:_singleFingerTap];
  269. }
  270. #pragma --------------------------------------------------------------------------------------------
  271. #pragma mark ===== Page =====
  272. #pragma --------------------------------------------------------------------------------------------
  273. - (UIViewController *)viewControllerAtIndex:(NSUInteger)index
  274. {
  275. if (([self.pageType count] == 0) || (index >= [self.pageType count])) {
  276. return nil;
  277. }
  278. UIViewController *pageContentViewController;
  279. if ([self.controlCenterPagesContent count] >= index+1) {
  280. pageContentViewController = [self.controlCenterPagesContent objectAtIndex:index];
  281. } else {
  282. if (index == 0)
  283. pageContentViewController = [[UIStoryboard storyboardWithName: @"ControlCenter" bundle:[NSBundle mainBundle]] instantiateViewControllerWithIdentifier:@"ControlCenterTransfer"];
  284. if (index == 1)
  285. pageContentViewController = [[UIStoryboard storyboardWithName: @"ControlCenter" bundle:[NSBundle mainBundle]] instantiateViewControllerWithIdentifier:@"ControlCenterActivity"];
  286. [self.controlCenterPagesContent addObject:pageContentViewController];
  287. }
  288. ((CCControlCenterTransfer *) pageContentViewController).pageIndex = index;
  289. ((CCControlCenterTransfer *) pageContentViewController).pageType = self.pageType[index];
  290. return pageContentViewController;
  291. }
  292. - (UIViewController *)pageViewController:(UIPageViewController *)pageViewController viewControllerBeforeViewController:(UIViewController *)viewController
  293. {
  294. NSUInteger index = ((CCControlCenterTransfer *) viewController).pageIndex;
  295. if ((index == 0) || (index == NSNotFound)) {
  296. return nil;
  297. }
  298. index--;
  299. return [self viewControllerAtIndex:index];
  300. }
  301. - (UIViewController *)pageViewController:(UIPageViewController *)pageViewController viewControllerAfterViewController:(UIViewController *)viewController
  302. {
  303. NSUInteger index = ((CCControlCenterTransfer *) viewController).pageIndex;
  304. if (index == NSNotFound) {
  305. return nil;
  306. }
  307. index++;
  308. if (index == [self.pageType count]) {
  309. return nil;
  310. }
  311. return [self viewControllerAtIndex:index];
  312. }
  313. - (NSInteger)presentationCountForPageViewController:(UIPageViewController *)pageViewController
  314. {
  315. return [self.pageType count];
  316. }
  317. - (NSInteger)presentationIndexForPageViewController:(UIPageViewController *)pageViewController
  318. {
  319. return 0;
  320. }
  321. /*
  322. - (void)pageViewController:(UIPageViewController *)pageViewController willTransitionToViewControllers:(NSArray<UIViewController *> *)pendingViewControllers
  323. {
  324. }
  325. */
  326. - (void)pageViewController:(UIPageViewController *)pageViewController didFinishAnimating:(BOOL)finished previousViewControllers:(NSArray<UIViewController *> *)previousViewControllers transitionCompleted:(BOOL)completed
  327. {
  328. }
  329. @end