CCControlCenter.m 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432
  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_ADD_BORDER 20.0f
  31. #define SIZE_FONT_NORECORD 18.0f
  32. #define ANIMATION_GESTURE 0.50f
  33. @interface CCControlCenter ()
  34. {
  35. UIVisualEffectView *_mainView;
  36. UIImageView *_imageDrag;
  37. UIView *_endLine;
  38. CGFloat start, stop;
  39. UIPanGestureRecognizer *panNavigationBar, *panImageDrag;
  40. UITapGestureRecognizer *_singleFingerTap;
  41. UIPageControl *pageControl;
  42. }
  43. @end
  44. @implementation CCControlCenter
  45. #pragma --------------------------------------------------------------------------------------------
  46. #pragma mark ===== Init =====
  47. #pragma --------------------------------------------------------------------------------------------
  48. - (id)initWithCoder:(NSCoder *)aDecoder
  49. {
  50. if (self = [super initWithCoder:aDecoder]) {
  51. app.controlCenter = self;
  52. }
  53. return self;
  54. }
  55. - (void)viewDidLoad
  56. {
  57. [super viewDidLoad];
  58. _controlCenterPagesContent = [NSMutableArray new];
  59. UIBlurEffect *effect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight];
  60. _mainView = [[UIVisualEffectView alloc] initWithEffect:effect];
  61. [_mainView setFrame:CGRectMake(0, 0, self.navigationBar.frame.size.width, 0)];
  62. _mainView.hidden = YES;
  63. // TEST
  64. //_mainView.backgroundColor = [UIColor yellowColor];
  65. // Create data model
  66. _pageType = @[k_pageControlCenterTransfer, k_pageControlCenterActivity];
  67. _currentPageType = k_pageControlCenterTransfer;
  68. // Create page view controller
  69. _pageViewController = [[UIStoryboard storyboardWithName: @"ControlCenter" bundle:[NSBundle mainBundle]] instantiateViewControllerWithIdentifier:@"ControlCenterPageViewController"];
  70. _pageViewController.dataSource = self;
  71. _pageViewController.delegate = self;
  72. UIViewController *startingViewController = [self viewControllerAtIndex:0];
  73. NSArray *viewControllers = @[startingViewController];
  74. [_pageViewController setViewControllers:viewControllers direction:UIPageViewControllerNavigationDirectionForward animated:NO completion:nil];
  75. [_pageViewController.view setFrame:CGRectMake(0, 0, self.navigationBar.frame.size.width, 0)];
  76. _pageViewController.view.autoresizingMask = UIViewAutoresizingFlexibleWidth;
  77. [_mainView addSubview:_pageViewController.view];
  78. _noRecord =[[UILabel alloc]init];
  79. _noRecord.backgroundColor=[UIColor clearColor];
  80. _noRecord.textColor = COLOR_CONTROL_CENTER;
  81. _noRecord.font = [UIFont systemFontOfSize:SIZE_FONT_NORECORD];
  82. _noRecord.textAlignment = NSTextAlignmentCenter;
  83. [_mainView addSubview:_noRecord];
  84. _imageDrag = [[UIImageView alloc] init];
  85. [_imageDrag setFrame:CGRectMake(0, 0, self.navigationBar.frame.size.width, 0)];
  86. _imageDrag.image = [UIImage imageNamed:image_drag];
  87. _imageDrag.contentMode = UIViewContentModeCenter;
  88. _imageDrag.userInteractionEnabled = YES;
  89. [_mainView addSubview:_imageDrag];
  90. _endLine = [[UIView alloc] init];
  91. [_endLine setFrame:CGRectMake(0, 0, self.navigationBar.frame.size.width, 0)];
  92. _endLine.backgroundColor = COLOR_CONTROL_CENTER;
  93. [_mainView addSubview:_endLine];
  94. [self.navigationBar.superview insertSubview:_mainView belowSubview:self.navigationBar];
  95. // Pop Gesture Recognizer
  96. [self.interactivePopGestureRecognizer addTarget:self action:@selector(handlePopGesture:)];
  97. panImageDrag = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(handlePanGesture:)];
  98. panImageDrag.maximumNumberOfTouches = panImageDrag.minimumNumberOfTouches = 1;
  99. [_imageDrag addGestureRecognizer:panImageDrag];
  100. panNavigationBar = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(handlePanGesture:)];
  101. panNavigationBar.maximumNumberOfTouches = panNavigationBar.minimumNumberOfTouches = 1;
  102. [self.navigationBar addGestureRecognizer:panNavigationBar];
  103. }
  104. /* 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. */
  105. - (void)handlePanGesture:(UIPanGestureRecognizer *)gesture;
  106. {
  107. CGPoint currentPoint = [gesture locationInView:self.view];
  108. CGFloat navigationBarH = self.navigationBar.frame.size.height + [UIApplication sharedApplication].statusBarFrame.size.height;
  109. CGFloat navigationBarW = self.navigationBar.frame.size.width;
  110. CGFloat heightScreen = [UIScreen mainScreen].bounds.size.height - self.tabBarController.tabBar.frame.size.height;
  111. CGFloat heightTableView = [UIScreen mainScreen].bounds.size.height - self.tabBarController.tabBar.frame.size.height - self.navigationBar.frame.size.height - BORDER_TOUCH_UPDOWN - TOOLBAR_ADD_BORDER;
  112. float centerMaxH = [self getMaxH] / 2;
  113. float step = [self getMaxH] / 10;
  114. float tableViewY = navigationBarH;
  115. // BUG Scroll to top of UITableView by tapping status bar
  116. _mainView.hidden = NO;
  117. // start
  118. if (gesture.state == UIGestureRecognizerStateBegan) {
  119. start = currentPoint.y;
  120. }
  121. // cancelled (return to 0)
  122. if (gesture.state == UIGestureRecognizerStateCancelled) {
  123. currentPoint.y = 0;
  124. tableViewY = 0;
  125. panNavigationBar.enabled = YES;
  126. }
  127. // end
  128. if (gesture.state == UIGestureRecognizerStateEnded) {
  129. stop = currentPoint.y;
  130. // DOWN
  131. if (start < stop) {
  132. if (stop < (start + step + navigationBarH) && start <= navigationBarH) {
  133. currentPoint.y = 0;
  134. tableViewY = 0;
  135. panNavigationBar.enabled = YES;
  136. } else {
  137. currentPoint.y = [self getMaxH];
  138. tableViewY = navigationBarH;
  139. panNavigationBar.enabled = NO;
  140. }
  141. }
  142. // UP
  143. if (start >= stop && start >= navigationBarH) {
  144. if (stop > (start - step)) {
  145. currentPoint.y = [self getMaxH];
  146. tableViewY = navigationBarH;
  147. panNavigationBar.enabled = NO;
  148. } else {
  149. currentPoint.y = 0;
  150. tableViewY = 0;
  151. panNavigationBar.enabled = YES;
  152. }
  153. }
  154. }
  155. // changed
  156. if (gesture.state == UIGestureRecognizerStateChanged) {
  157. if (currentPoint.y <= navigationBarH) {
  158. currentPoint.y = 0;
  159. tableViewY = 0;
  160. }
  161. else if (currentPoint.y >= [self getMaxH]) {
  162. currentPoint.y = [self getMaxH];
  163. tableViewY = navigationBarH;
  164. }
  165. else {
  166. if (currentPoint.y - navigationBarH < navigationBarH) tableViewY = currentPoint.y - navigationBarH;
  167. else tableViewY = navigationBarH;
  168. }
  169. }
  170. [UIView animateWithDuration:ANIMATION_GESTURE delay:0.0 options:UIViewAnimationOptionTransitionCrossDissolve
  171. animations:^ {
  172. _mainView.frame = CGRectMake(0, 0, navigationBarW, currentPoint.y);
  173. _pageViewController.view.frame = CGRectMake(0, currentPoint.y - heightScreen + navigationBarH, navigationBarW, heightTableView);
  174. _noRecord.frame = CGRectMake(0, currentPoint.y - centerMaxH, navigationBarW, SIZE_FONT_NORECORD+10);
  175. _imageDrag.frame = CGRectMake(0, currentPoint.y - BORDER_TOUCH_UPDOWN, navigationBarW, BORDER_TOUCH_UPDOWN);
  176. _endLine.frame = CGRectMake(0, currentPoint.y - BORDER_TOUCH_UPDOWN, navigationBarW, 1);
  177. } completion:^ (BOOL completed) {
  178. if (_mainView.frame.size.height == [self getMaxH]) {
  179. [self setIsOpen:YES];
  180. } else {
  181. [self setIsOpen:NO];
  182. }
  183. // BUG Scroll to top of UITableView by tapping status bar
  184. if (_mainView.frame.size.height == 0)
  185. _mainView.hidden = YES;
  186. }
  187. ];
  188. }
  189. /* 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. */
  190. - (void)handlePopGesture:(UIGestureRecognizer *)gesture
  191. {
  192. if (gesture.state == UIGestureRecognizerStateBegan) {
  193. _isPopGesture = YES;
  194. }
  195. if (gesture.state == UIGestureRecognizerStateEnded) {
  196. _isPopGesture = NO;
  197. }
  198. }
  199. // rotazione
  200. - (void)viewWillTransitionToSize:(CGSize)size withTransitionCoordinator:(id<UIViewControllerTransitionCoordinator>)coordinator
  201. {
  202. if (_isOpen) {
  203. [self setControlCenterHidden:YES];
  204. [coordinator animateAlongsideTransition:nil completion:^(id<UIViewControllerTransitionCoordinatorContext> context) {
  205. [self openControlCenterToSize:size];
  206. [self setControlCenterHidden: self.navigationBarHidden];
  207. }];
  208. //[self closeControlCenter];
  209. }
  210. [super viewWillTransitionToSize:size withTransitionCoordinator:coordinator];
  211. }
  212. - (void)setControlCenterHidden:(BOOL)hidden
  213. {
  214. _mainView.hidden = hidden;
  215. }
  216. - (float)getMaxH
  217. {
  218. //return ([UIScreen mainScreen].bounds.size.height / 4) * 3;
  219. return [UIScreen mainScreen].bounds.size.height - self.tabBarController.tabBar.frame.size.height;
  220. }
  221. - (void)openControlCenterToSize:(CGSize)size
  222. {
  223. CGFloat navigationBarH = self.navigationBar.frame.size.height + [UIApplication sharedApplication].statusBarFrame.size.height;
  224. _mainView.frame = CGRectMake(0, 0, size.width, [self getMaxH]);
  225. _pageViewController.view.frame = CGRectMake(0, navigationBarH, _mainView.frame.size.width, _mainView.frame.size.height - self.navigationBar.frame.size.height - BORDER_TOUCH_UPDOWN - TOOLBAR_ADD_BORDER);
  226. _noRecord.frame = CGRectMake(0, _mainView.frame.size.height / 2, _mainView.frame.size.width, SIZE_FONT_NORECORD+10);
  227. _imageDrag.frame = CGRectMake(0, _mainView.frame.size.height - BORDER_TOUCH_UPDOWN, _mainView.frame.size.width, BORDER_TOUCH_UPDOWN);
  228. _endLine.frame = CGRectMake(0, _mainView.frame.size.height - BORDER_TOUCH_UPDOWN, _mainView.frame.size.width, 1);
  229. panNavigationBar.enabled = NO;
  230. [self setIsOpen:YES];
  231. }
  232. /*
  233. - (void)closeControlCenterToSize:(CGSize)size
  234. {
  235. _mainView.frame = CGRectMake(0, 0, size.width, 0);
  236. _tableView.frame = CGRectMake(0, 0, _mainView.frame.size.width, 0);
  237. _noRecord.frame = CGRectMake(0, 0, _mainView.frame.size.width, 0);
  238. _imageDrag.frame = CGRectMake(0, 0, _mainView.frame.size.width, 0);
  239. _endLine.frame = CGRectMake(0, 0, _mainView.frame.size.width, 0);
  240. panNavigationBar.enabled = YES;
  241. }
  242. */
  243. - (void)setIsOpen:(BOOL)setOpen
  244. {
  245. if (setOpen) {
  246. if (!_isOpen) {
  247. _isOpen = YES;
  248. [app.controlCenterTransfer reloadDatasource];
  249. }
  250. } else {
  251. _isOpen = NO;
  252. }
  253. }
  254. #pragma --------------------------------------------------------------------------------------------
  255. #pragma mark - ===== Single Finger Tap =====
  256. #pragma --------------------------------------------------------------------------------------------
  257. - (void)enableSingleFingerTap:(SEL)selector target:(id)target
  258. {
  259. _singleFingerTap = [[UITapGestureRecognizer alloc] initWithTarget:target action:selector];
  260. [self.navigationBar addGestureRecognizer:_singleFingerTap];
  261. }
  262. - (void)disableSingleFingerTap
  263. {
  264. [self.navigationBar removeGestureRecognizer:_singleFingerTap];
  265. }
  266. #pragma --------------------------------------------------------------------------------------------
  267. #pragma mark ===== Page =====
  268. #pragma --------------------------------------------------------------------------------------------
  269. - (UIViewController *)viewControllerAtIndex:(NSUInteger)index
  270. {
  271. if (([self.pageType count] == 0) || (index >= [self.pageType count])) {
  272. return nil;
  273. }
  274. UIViewController *pageContentViewController;
  275. if ([self.controlCenterPagesContent count] >= index+1) {
  276. pageContentViewController = [self.controlCenterPagesContent objectAtIndex:index];
  277. } else {
  278. if (index == 0)
  279. pageContentViewController = [[UIStoryboard storyboardWithName: @"ControlCenter" bundle:[NSBundle mainBundle]] instantiateViewControllerWithIdentifier:@"ControlCenterTransfer"];
  280. if (index == 1)
  281. pageContentViewController = [[UIStoryboard storyboardWithName: @"ControlCenter" bundle:[NSBundle mainBundle]] instantiateViewControllerWithIdentifier:@"ControlCenterActivity"];
  282. [self.controlCenterPagesContent addObject:pageContentViewController];
  283. }
  284. ((CCControlCenterTransfer *) pageContentViewController).pageIndex = index;
  285. ((CCControlCenterTransfer *) pageContentViewController).pageType = self.pageType[index];
  286. return pageContentViewController;
  287. }
  288. - (UIViewController *)pageViewController:(UIPageViewController *)pageViewController viewControllerBeforeViewController:(UIViewController *)viewController
  289. {
  290. NSUInteger index = ((CCControlCenterTransfer *) viewController).pageIndex;
  291. if ((index == 0) || (index == NSNotFound)) {
  292. return nil;
  293. }
  294. index--;
  295. return [self viewControllerAtIndex:index];
  296. }
  297. - (UIViewController *)pageViewController:(UIPageViewController *)pageViewController viewControllerAfterViewController:(UIViewController *)viewController
  298. {
  299. NSUInteger index = ((CCControlCenterTransfer *) viewController).pageIndex;
  300. if (index == NSNotFound) {
  301. return nil;
  302. }
  303. index++;
  304. if (index == [self.pageType count]) {
  305. return nil;
  306. }
  307. return [self viewControllerAtIndex:index];
  308. }
  309. - (NSInteger)presentationCountForPageViewController:(UIPageViewController *)pageViewController
  310. {
  311. return [self.pageType count];
  312. }
  313. - (NSInteger)presentationIndexForPageViewController:(UIPageViewController *)pageViewController
  314. {
  315. return 0;
  316. }
  317. /*
  318. - (void)pageViewController:(UIPageViewController *)pageViewController willTransitionToViewControllers:(NSArray<UIViewController *> *)pendingViewControllers
  319. {
  320. }
  321. */
  322. - (void)pageViewController:(UIPageViewController *)pageViewController didFinishAnimating:(BOOL)finished previousViewControllers:(NSArray<UIViewController *> *)previousViewControllers transitionCompleted:(BOOL)completed
  323. {
  324. }
  325. @end