| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 | 
							- #import "RNNSideMenuController.h"
 - #import "MMDrawerVisualState.h"
 - 
 - @interface RNNSideMenuController ()
 - 
 - @property (readwrite) RNNSideMenuChildVC *center;
 - @property (readwrite) RNNSideMenuChildVC *left;
 - @property (readwrite) RNNSideMenuChildVC *right;
 - 
 - @end
 - 
 - @implementation RNNSideMenuController
 - 
 - - (instancetype)initWithLayoutInfo:(RNNLayoutInfo *)layoutInfo creator:(id<RNNRootViewCreator>)creator childViewControllers:(NSArray *)childViewControllers options:(RNNNavigationOptions *)options defaultOptions:(RNNNavigationOptions *)defaultOptions presenter:(RNNBasePresenter *)presenter eventEmitter:(RNNEventEmitter *)eventEmitter {
 - 	[self setControllers:childViewControllers];
 - 	self = [super initWithCenterViewController:self.center leftDrawerViewController:self.left rightDrawerViewController:self.right];
 - 	
 - 	self.presenter = presenter;
 - 	[self.presenter bindViewController:self];
 - 	
 - 	self.defaultOptions = defaultOptions;
 - 	self.options = options;
 - 	
 - 	self.layoutInfo = layoutInfo;
 - 	
 - 	self.closeDrawerGestureModeMask = MMCloseDrawerGestureModeAll;
 - 	
 - 	[self.presenter applyOptionsOnInit:self.resolveOptions];
 - 	
 - 	// Fixes #3697
 - 	[self setExtendedLayoutIncludesOpaqueBars:YES];
 - 	self.edgesForExtendedLayout |= UIRectEdgeBottom;
 - 	
 - 	return self;
 - }
 - 
 - - (void)setAnimationType:(NSString *)animationType {
 - 	MMDrawerControllerDrawerVisualStateBlock animationTypeStateBlock = nil;
 - 	if ([animationType isEqualToString:@"door"]) animationTypeStateBlock = [MMDrawerVisualState swingingDoorVisualStateBlock];
 - 	else if ([animationType isEqualToString:@"parallax"]) animationTypeStateBlock = [MMDrawerVisualState parallaxVisualStateBlockWithParallaxFactor:2.0];
 - 	else if ([animationType isEqualToString:@"slide"]) animationTypeStateBlock = [MMDrawerVisualState slideVisualStateBlock];
 - 	else if ([animationType isEqualToString:@"slide-and-scale"]) animationTypeStateBlock = [MMDrawerVisualState slideAndScaleVisualStateBlock];
 - 	
 - 	if (animationTypeStateBlock) {
 - 		[self setDrawerVisualStateBlock:animationTypeStateBlock];
 - 	}
 - }
 - 
 - - (void)side:(MMDrawerSide)side width:(double)width {
 - 	switch (side) {
 - 		case MMDrawerSideRight:
 - 			self.maximumRightDrawerWidth = width;
 - 			[self.right setWidth:width];
 - 			break;
 - 		case MMDrawerSideLeft:
 - 			self.maximumLeftDrawerWidth = width;
 - 			[self.left setWidth:width];
 - 		default:
 - 			break;
 - 	}
 - }
 - 
 - - (void)side:(MMDrawerSide)side visible:(BOOL)visible {
 - 	if (visible) {
 - 		[self showSideMenu:side animated:YES];
 - 	} else {
 - 		[self hideSideMenu:side animated:YES];
 - 	}
 - }
 - 
 - -(void)showSideMenu:(MMDrawerSide)side animated:(BOOL)animated {
 - 	[self openDrawerSide:side animated:animated completion:nil];
 - }
 - 
 - -(void)hideSideMenu:(MMDrawerSide)side animated:(BOOL)animated {
 - 	[self closeDrawerAnimated:animated completion:nil];
 - }
 - 
 - - (void)side:(MMDrawerSide)side enabled:(BOOL)enabled {
 - 	switch (side) {
 - 		case MMDrawerSideRight:
 - 			self.rightSideEnabled = enabled;
 - 			break;
 - 		case MMDrawerSideLeft:
 - 			self.leftSideEnabled = enabled;
 - 		default:
 - 			break;
 - 	}
 - }
 - 
 - -(void)setControllers:(NSArray*)controllers {
 - 	for (id controller in controllers) {
 - 		if ([controller isKindOfClass:[RNNSideMenuChildVC class]]) {
 - 			RNNSideMenuChildVC *child = (RNNSideMenuChildVC*)controller;
 - 			
 - 			if (child.type == RNNSideMenuChildTypeCenter) {
 - 				self.center = child;
 - 			}
 - 			else if(child.type == RNNSideMenuChildTypeLeft) {
 - 				self.left = child;
 - 			}
 - 			else if(child.type == RNNSideMenuChildTypeRight) {
 - 				self.right = child;
 - 			}
 - 			
 - 			[self addChildViewController:child];
 - 		}
 - 		
 - 		else {
 - 			@throw [NSException exceptionWithName:@"UnknownSideMenuControllerType" reason:[@"Unknown side menu type " stringByAppendingString:[controller description]] userInfo:nil];
 - 		}
 - 	}
 - }
 - 
 - - (UIStatusBarStyle)preferredStatusBarStyle {
 - 	return self.openedViewController.preferredStatusBarStyle;
 - }
 - 
 - - (UIInterfaceOrientationMask)supportedInterfaceOrientations {
 - 	return self.openedViewController.supportedInterfaceOrientations;
 - }
 - 
 - - (UIViewController *)openedViewController {
 - 	switch (self.openSide) {
 - 		case MMDrawerSideNone:
 - 			return self.center;
 - 		case MMDrawerSideLeft:
 - 			return self.left;
 - 		case MMDrawerSideRight:
 - 			return self.right;
 - 		default:
 - 			return self.center;
 - 	}
 - }
 - 
 - - (UIViewController<RNNLayoutProtocol> *)getCurrentChild {
 - 	return self.center;
 - }
 - 
 - - (CGFloat)getTopBarHeight {
 -     for(UIViewController * child in [self childViewControllers]) {
 -         CGFloat childTopBarHeight = [child getTopBarHeight];
 -         if (childTopBarHeight > 0) return childTopBarHeight;
 -     }
 -     return [super getTopBarHeight];
 - }
 - 
 - @end
 
 
  |