123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
-
- #import "RNNTitleViewHelper.h"
- #import <React/RCTConvert.h>
- #import "RCTHelpers.h"
- #import "RNNFontAttributesCreator.h"
-
- @implementation RNNTitleView
-
-
- @end
-
- @interface RNNTitleViewHelper ()
-
- @property (nonatomic, weak) UIViewController *viewController;
-
- @property (nonatomic, strong) NSString *title;
- @property (nonatomic, strong) NSString *subtitle;
-
- @property (nonatomic, strong) RNNTitleView *titleView;
- @property (nonatomic, strong) RNNTitleOptions *titleOptions;
- @property (nonatomic, strong) RNNSubtitleOptions *subtitleOptions;
-
- @end
-
-
- @implementation RNNTitleViewHelper
-
- - (instancetype)initWithTitleViewOptions:(RNNTitleOptions*)titleOptions
- subTitleOptions:(RNNSubtitleOptions*)subtitleOptions
- viewController:(UIViewController*)viewController {
- self = [super init];
- if (self) {
- self.viewController = viewController;
- self.title = [titleOptions.text getWithDefaultValue:nil];
- self.subtitle = [subtitleOptions.text getWithDefaultValue:nil];
- self.titleOptions = titleOptions;
- self.subtitleOptions = subtitleOptions;
-
- }
- return self;
- }
-
- +(NSString*)validateString:(NSString*)string {
- if ([string isEqual:[NSNull null]]) {
- return nil;
- }
-
- return string;
- }
-
- -(void)setup {
- CGRect navigationBarBounds = self.viewController.navigationController.navigationBar.bounds;
-
- self.titleView = [[RNNTitleView alloc] initWithFrame:navigationBarBounds];
- self.titleView.backgroundColor = [UIColor clearColor];
- self.titleView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin;
- self.titleView.clipsToBounds = YES;
-
- if (self.subtitle) {
- self.titleView.subtitleLabel = [self setupSubtitle];
- }
-
- if (self.title) {
- self.titleView.titleLabel = [self setupTitle];
- }
-
- [self centerTitleView:navigationBarBounds titleLabel:self.titleView.titleLabel subtitleLabel:self.titleView.subtitleLabel];
-
- self.viewController.navigationItem.titleView = self.titleView;
- }
-
- -(void)centerTitleView:(CGRect)navigationBarBounds titleLabel:(UILabel*)titleLabel subtitleLabel:(UILabel*)subtitleLabel
- {
- CGRect titleViewFrame = navigationBarBounds;
- titleViewFrame.size.width = MAX(titleLabel.frame.size.width, subtitleLabel.frame.size.width);;
- self.titleView.frame = titleViewFrame;
-
- for (UIView *view in self.titleView.subviews) {
- CGRect viewFrame = view.frame;
- viewFrame.size.width = self.titleView.frame.size.width;
- viewFrame.origin.x = (self.titleView.frame.size.width - viewFrame.size.width)/2;
- view.frame = viewFrame;
- }
-
- }
-
-
- -(UILabel*)setupSubtitle {
- CGRect subtitleFrame = self.titleView.frame;
- subtitleFrame.size.height /= 2;
- subtitleFrame.origin.y = subtitleFrame.size.height;
-
- UILabel *subtitleLabel = [[UILabel alloc] initWithFrame:subtitleFrame];
- subtitleLabel.textAlignment = NSTextAlignmentCenter;
- subtitleLabel.backgroundColor = [UIColor clearColor];
- subtitleLabel.autoresizingMask = self.titleView.autoresizingMask;
-
- NSDictionary* fontAttributes = [RNNFontAttributesCreator createFontAttributesWithFontFamily:[_subtitleOptions.fontFamily getWithDefaultValue:nil] fontSize:[_subtitleOptions.fontSize getWithDefaultValue:nil] color:[_subtitleOptions.color getWithDefaultValue:nil]];
- [subtitleLabel setAttributedText:[[NSAttributedString alloc] initWithString:self.subtitle attributes:fontAttributes]];
-
-
- CGSize labelSize = [subtitleLabel.text sizeWithAttributes:fontAttributes];
- CGRect labelframe = subtitleLabel.frame;
- labelframe.size = labelSize;
- subtitleLabel.frame = labelframe;
- [subtitleLabel sizeToFit];
-
- if (_subtitleOptions.color.hasValue) {
- UIColor *color = _subtitleOptions.color.get;
- subtitleLabel.textColor = color;
- }
-
- [self.titleView addSubview:subtitleLabel];
-
- return subtitleLabel;
- }
-
-
- -(UILabel*)setupTitle {
- CGRect titleFrame = self.titleView.frame;
- if (self.subtitle) {
- titleFrame.size.height /= 2;
- }
- UILabel *titleLabel = [[UILabel alloc] initWithFrame:titleFrame];
- titleLabel.textAlignment = NSTextAlignmentCenter;
- titleLabel.backgroundColor = [UIColor clearColor];
-
- titleLabel.autoresizingMask = self.titleView.autoresizingMask;
-
- NSDictionary* fontAttributes = [RNNFontAttributesCreator createFontAttributesWithFontFamily:[_titleOptions.fontFamily getWithDefaultValue:nil] fontSize:[_titleOptions.fontSize getWithDefaultValue:nil] color:[_subtitleOptions.color getWithDefaultValue:nil]];
- [titleLabel setAttributedText:[[NSAttributedString alloc] initWithString:self.title attributes:fontAttributes]];
-
- CGSize labelSize = [titleLabel.text sizeWithAttributes:fontAttributes];
- CGRect labelframe = titleLabel.frame;
- labelframe.size = labelSize;
- titleLabel.frame = labelframe;
-
- if (!self.subtitle) {
- titleLabel.center = self.titleView.center;
- }
-
- if (_titleOptions.color.hasValue) {
- UIColor *color = _titleOptions.color.get;
- titleLabel.textColor = color;
- }
-
- [titleLabel sizeToFit];
- [self.titleView addSubview:titleLabel];
-
- return titleLabel;
- }
-
-
- @end
-
|