2015-03-23 20:28:42 +00:00
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
2015-03-09 21:42:55 +00:00
|
|
|
|
|
|
|
#import "RCTSliderManager.h"
|
|
|
|
|
|
|
|
#import "RCTBridge.h"
|
|
|
|
#import "RCTEventDispatcher.h"
|
2015-04-21 17:50:10 +00:00
|
|
|
#import "RCTSlider.h"
|
2015-03-26 09:58:06 +00:00
|
|
|
#import "UIView+React.h"
|
2015-03-09 21:42:55 +00:00
|
|
|
|
|
|
|
@implementation RCTSliderManager
|
|
|
|
|
2015-04-08 12:42:43 +00:00
|
|
|
RCT_EXPORT_MODULE()
|
|
|
|
|
2015-03-09 21:42:55 +00:00
|
|
|
- (UIView *)view
|
|
|
|
{
|
2015-04-21 17:50:10 +00:00
|
|
|
RCTSlider *slider = [[RCTSlider alloc] init];
|
2015-03-09 21:42:55 +00:00
|
|
|
[slider addTarget:self action:@selector(sliderValueChanged:) forControlEvents:UIControlEventValueChanged];
|
|
|
|
[slider addTarget:self action:@selector(sliderTouchEnd:) forControlEvents:UIControlEventTouchUpInside];
|
2015-07-17 19:58:39 +00:00
|
|
|
[slider addTarget:self action:@selector(sliderTouchEnd:) forControlEvents:UIControlEventTouchUpOutside];
|
2015-03-09 21:42:55 +00:00
|
|
|
return slider;
|
|
|
|
}
|
|
|
|
|
2015-04-21 17:50:10 +00:00
|
|
|
static void RCTSendSliderEvent(RCTSliderManager *self, UISlider *sender, BOOL continuous)
|
2015-03-09 21:42:55 +00:00
|
|
|
{
|
|
|
|
NSDictionary *event = @{
|
|
|
|
@"target": sender.reactTag,
|
|
|
|
@"value": @(sender.value),
|
2015-04-21 17:50:10 +00:00
|
|
|
@"continuous": @(continuous),
|
2015-03-09 21:42:55 +00:00
|
|
|
};
|
|
|
|
|
2015-08-11 13:37:12 +00:00
|
|
|
[self.bridge.eventDispatcher sendInputEventWithName:@"change" body:event];
|
2015-03-09 21:42:55 +00:00
|
|
|
}
|
|
|
|
|
2015-04-21 17:50:10 +00:00
|
|
|
- (void)sliderValueChanged:(UISlider *)sender
|
2015-03-09 21:42:55 +00:00
|
|
|
{
|
2015-04-21 17:50:10 +00:00
|
|
|
RCTSendSliderEvent(self, sender, YES);
|
|
|
|
}
|
2015-03-09 21:42:55 +00:00
|
|
|
|
2015-04-21 17:50:10 +00:00
|
|
|
- (void)sliderTouchEnd:(UISlider *)sender
|
|
|
|
{
|
|
|
|
RCTSendSliderEvent(self, sender, NO);
|
2015-03-09 21:42:55 +00:00
|
|
|
}
|
|
|
|
|
2015-03-26 04:29:28 +00:00
|
|
|
RCT_EXPORT_VIEW_PROPERTY(value, float);
|
|
|
|
RCT_EXPORT_VIEW_PROPERTY(minimumValue, float);
|
|
|
|
RCT_EXPORT_VIEW_PROPERTY(maximumValue, float);
|
2015-04-23 12:42:54 +00:00
|
|
|
RCT_EXPORT_VIEW_PROPERTY(minimumTrackTintColor, UIColor);
|
|
|
|
RCT_EXPORT_VIEW_PROPERTY(maximumTrackTintColor, UIColor);
|
2015-03-09 21:42:55 +00:00
|
|
|
|
|
|
|
@end
|