61 lines
1.6 KiB
Objective-C
61 lines
1.6 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 "RCTDatePickerManager.h"
|
|
|
|
#import "RCTBridge.h"
|
|
#import "RCTConvert.h"
|
|
#import "RCTEventDispatcher.h"
|
|
#import "UIView+ReactKit.h"
|
|
|
|
@implementation RCTDatePickerManager
|
|
|
|
- (UIView *)view
|
|
{
|
|
UIDatePicker *picker = [[UIDatePicker alloc] init];
|
|
[picker addTarget:self
|
|
action:@selector(onChange:)
|
|
forControlEvents:UIControlEventValueChanged];
|
|
return picker;
|
|
}
|
|
|
|
RCT_EXPORT_VIEW_PROPERTY(date)
|
|
RCT_EXPORT_VIEW_PROPERTY(minimumDate)
|
|
RCT_EXPORT_VIEW_PROPERTY(maximumDate)
|
|
RCT_EXPORT_VIEW_PROPERTY(minuteInterval)
|
|
RCT_REMAP_VIEW_PROPERTY(mode, datePickerMode)
|
|
RCT_REMAP_VIEW_PROPERTY(timeZoneOffsetInMinutes, timeZone)
|
|
|
|
- (void)onChange:(UIDatePicker *)sender
|
|
{
|
|
NSDictionary *event = @{
|
|
@"target": sender.reactTag,
|
|
@"timestamp": @([sender.date timeIntervalSince1970] * 1000.0)
|
|
};
|
|
[self.bridge.eventDispatcher sendInputEventWithName:@"topChange" body:event];
|
|
}
|
|
|
|
- (NSDictionary *)constantsToExport
|
|
{
|
|
UIDatePicker *dp = [[UIDatePicker alloc] init];
|
|
[dp layoutIfNeeded];
|
|
|
|
return @{
|
|
@"ComponentHeight": @(CGRectGetHeight(dp.frame)),
|
|
@"ComponentWidth": @(CGRectGetWidth(dp.frame)),
|
|
@"DatePickerModes": @{
|
|
@"time": @(UIDatePickerModeTime),
|
|
@"date": @(UIDatePickerModeDate),
|
|
@"datetime": @(UIDatePickerModeDateAndTime),
|
|
}
|
|
};
|
|
}
|
|
|
|
@end
|