mirror of
https://github.com/status-im/react-native.git
synced 2025-01-09 17:15:54 +00:00
6234a5dfa2
Summary: I want to resolve #11170 by passing the `color` prop from `PickerIOS.Item` to its implementation. In `RCTPicker.m`, the label.textColor was already being set and used, but there was nothing referencing the past prop. I passed the prop to the implementation, checked if it exists, and if not, set the default color, like before. I visually tested the **Colorful Pickers** example in UIExplorer. Those picker `Item`s pass in a `color` prop. ![dec-01-2016 22-07-46](https://cloud.githubusercontent.com/assets/9259509/20821696/ae45d704-b812-11e6-9720-0045d6c0bcd4.gif) The basic picker does not pass the color prop to the picker `Item`, and there are no errors. Basic functionality is still in tact: ![dec-01-2016 22-09-35](https://cloud.githubusercontent.com/assets/9259509/20821730/ee544f74-b812-11e6-9294-a1b45e78d9f7.gif) Closes https://github.com/facebook/react-native/pull/11260 Differential Revision: D4272370 fbshipit-source-id: 5fa33c40526dda59ca2ab527c31351bcd27e5cf3
110 lines
2.8 KiB
Objective-C
110 lines
2.8 KiB
Objective-C
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
|
|
#import "RCTPicker.h"
|
|
|
|
#import "RCTConvert.h"
|
|
#import "RCTUtils.h"
|
|
|
|
@interface RCTPicker() <UIPickerViewDataSource, UIPickerViewDelegate>
|
|
@end
|
|
|
|
@implementation RCTPicker
|
|
|
|
- (instancetype)initWithFrame:(CGRect)frame
|
|
{
|
|
if ((self = [super initWithFrame:frame])) {
|
|
_color = [UIColor blackColor];
|
|
_font = [UIFont systemFontOfSize:21]; // TODO: selected title default should be 23.5
|
|
_selectedIndex = NSNotFound;
|
|
_textAlign = NSTextAlignmentCenter;
|
|
self.delegate = self;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
RCT_NOT_IMPLEMENTED(- (instancetype)initWithCoder:(NSCoder *)aDecoder)
|
|
|
|
- (void)setItems:(NSArray<NSDictionary *> *)items
|
|
{
|
|
_items = [items copy];
|
|
[self setNeedsLayout];
|
|
}
|
|
|
|
- (void)setSelectedIndex:(NSInteger)selectedIndex
|
|
{
|
|
if (_selectedIndex != selectedIndex) {
|
|
BOOL animated = _selectedIndex != NSNotFound; // Don't animate the initial value
|
|
_selectedIndex = selectedIndex;
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
|
[self selectRow:selectedIndex inComponent:0 animated:animated];
|
|
});
|
|
}
|
|
}
|
|
|
|
#pragma mark - UIPickerViewDataSource protocol
|
|
|
|
- (NSInteger)numberOfComponentsInPickerView:(__unused UIPickerView *)pickerView
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
- (NSInteger)pickerView:(__unused UIPickerView *)pickerView
|
|
numberOfRowsInComponent:(__unused NSInteger)component
|
|
{
|
|
return _items.count;
|
|
}
|
|
|
|
#pragma mark - UIPickerViewDelegate methods
|
|
|
|
- (NSString *)pickerView:(__unused UIPickerView *)pickerView
|
|
titleForRow:(NSInteger)row
|
|
forComponent:(__unused NSInteger)component
|
|
{
|
|
return [RCTConvert NSString:_items[row][@"label"]];
|
|
}
|
|
|
|
- (UIView *)pickerView:(UIPickerView *)pickerView
|
|
viewForRow:(NSInteger)row
|
|
forComponent:(NSInteger)component
|
|
reusingView:(UILabel *)label
|
|
{
|
|
if (!label) {
|
|
label = [[UILabel alloc] initWithFrame:(CGRect){
|
|
CGPointZero,
|
|
{
|
|
[pickerView rowSizeForComponent:component].width,
|
|
[pickerView rowSizeForComponent:component].height,
|
|
}
|
|
}];
|
|
}
|
|
|
|
label.font = _font;
|
|
|
|
label.textColor = [RCTConvert UIColor:_items[row][@"textColor"]] ?: _color;
|
|
|
|
label.textAlignment = _textAlign;
|
|
label.text = [self pickerView:pickerView titleForRow:row forComponent:component];
|
|
return label;
|
|
}
|
|
|
|
- (void)pickerView:(__unused UIPickerView *)pickerView
|
|
didSelectRow:(NSInteger)row inComponent:(__unused NSInteger)component
|
|
{
|
|
_selectedIndex = row;
|
|
if (_onChange) {
|
|
_onChange(@{
|
|
@"newIndex": @(row),
|
|
@"newValue": RCTNullIfNil(_items[row][@"value"]),
|
|
});
|
|
}
|
|
}
|
|
|
|
@end
|