CCControlCenter.m 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484
  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 "AppDelegate.h"
  26. #import "CCMain.h"
  27. #import "CCDetail.h"
  28. #define BORDER_TOUCH_UPDOWN 50.0f
  29. #define TOOLBAR_TRANSFER_H 0.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. UILabel *_noRecord;
  37. UIImageView *_imageDrag;
  38. UIView *_endLine;
  39. CGFloat start, stop;
  40. UIPanGestureRecognizer *panNavigationBar, *panImageDrag;
  41. UITapGestureRecognizer *_singleFingerTap;
  42. UIPageControl *pageControl;
  43. }
  44. @end
  45. @implementation CCControlCenter
  46. #pragma --------------------------------------------------------------------------------------------
  47. #pragma mark ===== Init =====
  48. #pragma --------------------------------------------------------------------------------------------
  49. - (id)initWithCoder:(NSCoder *)aDecoder
  50. {
  51. if (self = [super initWithCoder:aDecoder]) {
  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. _noRecord.text = NSLocalizedString(@"_no_transfer_",nil);
  84. _noRecord.hidden = YES;
  85. [_mainView addSubview:_noRecord];
  86. _imageDrag = [[UIImageView alloc] init];
  87. [_imageDrag setFrame:CGRectMake(0, 0, self.navigationBar.frame.size.width, 0)];
  88. _imageDrag.image = [UIImage imageNamed:image_drag];
  89. _imageDrag.contentMode = UIViewContentModeCenter;
  90. _imageDrag.userInteractionEnabled = YES;
  91. [_mainView addSubview:_imageDrag];
  92. _endLine = [[UIView alloc] init];
  93. [_endLine setFrame:CGRectMake(0, 0, self.navigationBar.frame.size.width, 0)];
  94. _endLine.backgroundColor = COLOR_CONTROL_CENTER;
  95. [_mainView addSubview:_endLine];
  96. [self.navigationBar.superview insertSubview:_mainView belowSubview:self.navigationBar];
  97. // Pop Gesture Recognizer
  98. [self.interactivePopGestureRecognizer addTarget:self action:@selector(handlePopGesture:)];
  99. panImageDrag = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(handlePanGesture:)];
  100. panImageDrag.maximumNumberOfTouches = panImageDrag.minimumNumberOfTouches = 1;
  101. [_imageDrag addGestureRecognizer:panImageDrag];
  102. panNavigationBar = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(handlePanGesture:)];
  103. panNavigationBar.maximumNumberOfTouches = panNavigationBar.minimumNumberOfTouches = 1;
  104. [self.navigationBar addGestureRecognizer:panNavigationBar];
  105. }
  106. /* 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. */
  107. - (void)handlePanGesture:(UIPanGestureRecognizer *)gesture;
  108. {
  109. CGPoint currentPoint = [gesture locationInView:self.view];
  110. CGFloat navigationBarH = self.navigationBar.frame.size.height + [UIApplication sharedApplication].statusBarFrame.size.height;
  111. CGFloat navigationBarW = self.navigationBar.frame.size.width;
  112. CGFloat heightScreen = [UIScreen mainScreen].bounds.size.height - self.tabBarController.tabBar.frame.size.height;
  113. CGFloat heightTableView = [UIScreen mainScreen].bounds.size.height - self.tabBarController.tabBar.frame.size.height - navigationBarH - BORDER_TOUCH_UPDOWN - TOOLBAR_TRANSFER_H - TOOLBAR_ADD_BORDER;
  114. float centerMaxH = [self getMaxH] / 2;
  115. float step = [self getMaxH] / 10;
  116. float tableViewY = navigationBarH;
  117. // BUG Scroll to top of UITableView by tapping status bar
  118. _mainView.hidden = NO;
  119. // start
  120. if (gesture.state == UIGestureRecognizerStateBegan) {
  121. start = currentPoint.y;
  122. }
  123. // cancelled (return to 0)
  124. if (gesture.state == UIGestureRecognizerStateCancelled) {
  125. currentPoint.y = 0;
  126. tableViewY = 0;
  127. panNavigationBar.enabled = YES;
  128. }
  129. // end
  130. if (gesture.state == UIGestureRecognizerStateEnded) {
  131. stop = currentPoint.y;
  132. // DOWN
  133. if (start < stop) {
  134. if (stop < (start + step + navigationBarH) && start <= navigationBarH) {
  135. currentPoint.y = 0;
  136. tableViewY = 0;
  137. panNavigationBar.enabled = YES;
  138. } else {
  139. currentPoint.y = [self getMaxH];
  140. tableViewY = navigationBarH;
  141. panNavigationBar.enabled = NO;
  142. }
  143. }
  144. // UP
  145. if (start >= stop && start >= navigationBarH) {
  146. if (stop > (start - step)) {
  147. currentPoint.y = [self getMaxH];
  148. tableViewY = navigationBarH;
  149. panNavigationBar.enabled = NO;
  150. } else {
  151. currentPoint.y = 0;
  152. tableViewY = 0;
  153. panNavigationBar.enabled = YES;
  154. }
  155. }
  156. }
  157. // changed
  158. if (gesture.state == UIGestureRecognizerStateChanged) {
  159. if (currentPoint.y <= navigationBarH) {
  160. currentPoint.y = 0;
  161. tableViewY = 0;
  162. }
  163. else if (currentPoint.y >= [self getMaxH]) {
  164. currentPoint.y = [self getMaxH];
  165. tableViewY = navigationBarH;
  166. }
  167. else {
  168. if (currentPoint.y - navigationBarH < navigationBarH) tableViewY = currentPoint.y - navigationBarH;
  169. else tableViewY = navigationBarH;
  170. }
  171. }
  172. [UIView animateWithDuration:ANIMATION_GESTURE delay:0.0 options:UIViewAnimationOptionTransitionCrossDissolve
  173. animations:^ {
  174. _mainView.frame = CGRectMake(0, 0, navigationBarW, currentPoint.y);
  175. _pageViewController.view.frame = CGRectMake(0, currentPoint.y - heightScreen + navigationBarH, navigationBarW, heightTableView);
  176. _noRecord.frame = CGRectMake(0, currentPoint.y - centerMaxH - TOOLBAR_TRANSFER_H, navigationBarW, SIZE_FONT_NORECORD+10);
  177. _imageDrag.frame = CGRectMake(0, currentPoint.y - BORDER_TOUCH_UPDOWN, navigationBarW, BORDER_TOUCH_UPDOWN);
  178. _endLine.frame = CGRectMake(0, currentPoint.y - BORDER_TOUCH_UPDOWN, navigationBarW, 1);
  179. } completion:^ (BOOL completed) {
  180. if (_mainView.frame.size.height == [self getMaxH]) {
  181. [self setIsOpen:YES];
  182. } else {
  183. [self setIsOpen:NO];
  184. }
  185. // BUG Scroll to top of UITableView by tapping status bar
  186. if (_mainView.frame.size.height == 0)
  187. _mainView.hidden = YES;
  188. }
  189. ];
  190. }
  191. /* 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. */
  192. - (void)handlePopGesture:(UIGestureRecognizer *)gesture
  193. {
  194. if (gesture.state == UIGestureRecognizerStateBegan) {
  195. _isPopGesture = YES;
  196. }
  197. if (gesture.state == UIGestureRecognizerStateEnded) {
  198. _isPopGesture = NO;
  199. }
  200. }
  201. // rotazione
  202. - (void)viewWillTransitionToSize:(CGSize)size withTransitionCoordinator:(id<UIViewControllerTransitionCoordinator>)coordinator
  203. {
  204. if (_isOpen) {
  205. [self setControlCenterHidden:YES];
  206. [coordinator animateAlongsideTransition:nil completion:^(id<UIViewControllerTransitionCoordinatorContext> context) {
  207. [self openControlCenterToSize:size];
  208. [self setControlCenterHidden: self.navigationBarHidden];
  209. }];
  210. //[self closeControlCenter];
  211. }
  212. [super viewWillTransitionToSize:size withTransitionCoordinator:coordinator];
  213. }
  214. - (void)setControlCenterHidden:(BOOL)hidden
  215. {
  216. _mainView.hidden = hidden;
  217. }
  218. - (float)getMaxH
  219. {
  220. //return ([UIScreen mainScreen].bounds.size.height / 4) * 3;
  221. return [UIScreen mainScreen].bounds.size.height - self.tabBarController.tabBar.frame.size.height;
  222. }
  223. - (void)openControlCenterToSize:(CGSize)size
  224. {
  225. CGFloat navigationBarH = self.navigationBar.frame.size.height + [UIApplication sharedApplication].statusBarFrame.size.height;
  226. _mainView.frame = CGRectMake(0, 0, size.width, [self getMaxH]);
  227. _pageViewController.view.frame = CGRectMake(0, navigationBarH, _mainView.frame.size.width, _mainView.frame.size.height - navigationBarH - BORDER_TOUCH_UPDOWN - TOOLBAR_TRANSFER_H - TOOLBAR_ADD_BORDER);
  228. _noRecord.frame = CGRectMake(0, _mainView.frame.size.height / 2 - TOOLBAR_TRANSFER_H, _mainView.frame.size.width, SIZE_FONT_NORECORD+10);
  229. _imageDrag.frame = CGRectMake(0, _mainView.frame.size.height - BORDER_TOUCH_UPDOWN, _mainView.frame.size.width, BORDER_TOUCH_UPDOWN);
  230. _endLine.frame = CGRectMake(0, _mainView.frame.size.height - BORDER_TOUCH_UPDOWN, _mainView.frame.size.width, 1);
  231. panNavigationBar.enabled = NO;
  232. [self setIsOpen:YES];
  233. }
  234. /*
  235. - (void)closeControlCenterToSize:(CGSize)size
  236. {
  237. _mainView.frame = CGRectMake(0, 0, size.width, 0);
  238. _tableView.frame = CGRectMake(0, 0, _mainView.frame.size.width, 0);
  239. _noRecord.frame = CGRectMake(0, 0, _mainView.frame.size.width, 0);
  240. _imageDrag.frame = CGRectMake(0, 0, _mainView.frame.size.width, 0);
  241. _endLine.frame = CGRectMake(0, 0, _mainView.frame.size.width, 0);
  242. panNavigationBar.enabled = YES;
  243. }
  244. */
  245. - (void)setIsOpen:(BOOL)setOpen
  246. {
  247. if (setOpen) {
  248. if (!_isOpen) {
  249. _isOpen = YES;
  250. //[self reloadDatasource];
  251. }
  252. } else {
  253. _isOpen = NO;
  254. }
  255. }
  256. #pragma --------------------------------------------------------------------------------------------
  257. #pragma mark - ===== Single Finger Tap =====
  258. #pragma --------------------------------------------------------------------------------------------
  259. - (void)enableSingleFingerTap:(SEL)selector target:(id)target
  260. {
  261. _singleFingerTap = [[UITapGestureRecognizer alloc] initWithTarget:target action:selector];
  262. [self.navigationBar addGestureRecognizer:_singleFingerTap];
  263. }
  264. - (void)disableSingleFingerTap
  265. {
  266. [self.navigationBar removeGestureRecognizer:_singleFingerTap];
  267. }
  268. #pragma --------------------------------------------------------------------------------------------
  269. #pragma mark ===== Page =====
  270. #pragma --------------------------------------------------------------------------------------------
  271. - (UIViewController *)viewControllerAtIndex:(NSUInteger)index
  272. {
  273. if (([self.pageType count] == 0) || (index >= [self.pageType count])) {
  274. return nil;
  275. }
  276. /*
  277. if (index == 0) {
  278. CCControlCenterTransfer *pageContentViewController;
  279. if ([self.controlCenterPagesContent count] >= index+1) {
  280. pageContentViewController = [self.controlCenterPagesContent objectAtIndex:index];
  281. } else {
  282. // Create a new view controller and pass suitable data.
  283. pageContentViewController = [[UIStoryboard storyboardWithName: @"ControlCenter" bundle:[NSBundle mainBundle]] instantiateViewControllerWithIdentifier:@"ControlCenterTransfer"];
  284. [self.controlCenterPagesContent addObject:pageContentViewController];
  285. }
  286. pageContentViewController.pageIndex = index;
  287. pageContentViewController.pageType = self.pageType[index];
  288. return pageContentViewController;
  289. }
  290. if (index == 1) {
  291. CCControlCenterTransfer *pageContentViewController;
  292. if ([self.controlCenterPagesContent count] >= index+1) {
  293. pageContentViewController = [self.controlCenterPagesContent objectAtIndex:index];
  294. } else {
  295. // Create a new view controller and pass suitable data.
  296. pageContentViewController = [[UIStoryboard storyboardWithName: @"ControlCenter" bundle:[NSBundle mainBundle]] instantiateViewControllerWithIdentifier:@"ControlCenterTransfer"];
  297. [self.controlCenterPagesContent addObject:pageContentViewController];
  298. }
  299. pageContentViewController.pageIndex = index;
  300. pageContentViewController.pageType = self.pageType[index];
  301. return pageContentViewController;
  302. }
  303. */
  304. UIViewController *pageContentViewController;
  305. if ([self.controlCenterPagesContent count] >= index+1) {
  306. pageContentViewController = [self.controlCenterPagesContent objectAtIndex:index];
  307. } else {
  308. // Create a new view controller and pass suitable data.
  309. pageContentViewController = [[UIStoryboard storyboardWithName: @"ControlCenter" bundle:[NSBundle mainBundle]] instantiateViewControllerWithIdentifier:@"ControlCenterTransfer"];
  310. [self.controlCenterPagesContent addObject:pageContentViewController];
  311. }
  312. if (index == 0) {
  313. ((CCControlCenterTransfer *) pageContentViewController).pageIndex = index;
  314. ((CCControlCenterTransfer *) pageContentViewController).pageType = self.pageType[index];
  315. }
  316. if (index == 1) {
  317. ((CCControlCenterTransfer *) pageContentViewController).pageIndex = index;
  318. ((CCControlCenterTransfer *) pageContentViewController).pageType = self.pageType[index];
  319. }
  320. return pageContentViewController;
  321. }
  322. - (UIViewController *)pageViewController:(UIPageViewController *)pageViewController viewControllerBeforeViewController:(UIViewController *)viewController
  323. {
  324. NSUInteger index = ((CCControlCenterTransfer *) viewController).pageIndex;
  325. if ((index == 0) || (index == NSNotFound)) {
  326. return nil;
  327. }
  328. index--;
  329. return [self viewControllerAtIndex:index];
  330. }
  331. - (UIViewController *)pageViewController:(UIPageViewController *)pageViewController viewControllerAfterViewController:(UIViewController *)viewController
  332. {
  333. NSUInteger index = ((CCControlCenterTransfer *) viewController).pageIndex;
  334. if (index == NSNotFound) {
  335. return nil;
  336. }
  337. index++;
  338. if (index == [self.pageType count]) {
  339. return nil;
  340. }
  341. return [self viewControllerAtIndex:index];
  342. }
  343. - (NSInteger)presentationCountForPageViewController:(UIPageViewController *)pageViewController
  344. {
  345. return [self.pageType count];
  346. }
  347. - (NSInteger)presentationIndexForPageViewController:(UIPageViewController *)pageViewController
  348. {
  349. return 0;
  350. }
  351. /*
  352. - (void)pageViewController:(UIPageViewController *)pageViewController willTransitionToViewControllers:(NSArray<UIViewController *> *)pendingViewControllers
  353. {
  354. }
  355. */
  356. - (void)pageViewController:(UIPageViewController *)pageViewController didFinishAnimating:(BOOL)finished previousViewControllers:(NSArray<UIViewController *> *)previousViewControllers transitionCompleted:(BOOL)completed
  357. {
  358. }
  359. @end