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-02-20 04:10:52 +00:00
|
|
|
|
|
|
|
#import "RCTScrollViewManager.h"
|
|
|
|
|
2015-03-06 00:36:41 +00:00
|
|
|
#import "RCTBridge.h"
|
2015-02-20 04:10:52 +00:00
|
|
|
#import "RCTConvert.h"
|
|
|
|
#import "RCTScrollView.h"
|
2015-03-11 02:03:59 +00:00
|
|
|
#import "RCTSparseArray.h"
|
|
|
|
#import "RCTUIManager.h"
|
2015-02-20 04:10:52 +00:00
|
|
|
|
|
|
|
@implementation RCTScrollViewManager
|
|
|
|
|
|
|
|
- (UIView *)view
|
|
|
|
{
|
2015-03-06 00:36:41 +00:00
|
|
|
return [[RCTScrollView alloc] initWithEventDispatcher:self.bridge.eventDispatcher];
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
RCT_EXPORT_VIEW_PROPERTY(alwaysBounceHorizontal)
|
|
|
|
RCT_EXPORT_VIEW_PROPERTY(alwaysBounceVertical)
|
|
|
|
RCT_EXPORT_VIEW_PROPERTY(bounces)
|
|
|
|
RCT_EXPORT_VIEW_PROPERTY(bouncesZoom)
|
|
|
|
RCT_EXPORT_VIEW_PROPERTY(canCancelContentTouches)
|
|
|
|
RCT_EXPORT_VIEW_PROPERTY(centerContent)
|
|
|
|
RCT_EXPORT_VIEW_PROPERTY(automaticallyAdjustContentInsets)
|
|
|
|
RCT_EXPORT_VIEW_PROPERTY(decelerationRate)
|
|
|
|
RCT_EXPORT_VIEW_PROPERTY(directionalLockEnabled)
|
|
|
|
RCT_EXPORT_VIEW_PROPERTY(keyboardDismissMode)
|
|
|
|
RCT_EXPORT_VIEW_PROPERTY(maximumZoomScale)
|
|
|
|
RCT_EXPORT_VIEW_PROPERTY(minimumZoomScale)
|
|
|
|
RCT_EXPORT_VIEW_PROPERTY(pagingEnabled)
|
|
|
|
RCT_EXPORT_VIEW_PROPERTY(scrollEnabled)
|
|
|
|
RCT_EXPORT_VIEW_PROPERTY(scrollsToTop)
|
|
|
|
RCT_EXPORT_VIEW_PROPERTY(showsHorizontalScrollIndicator)
|
|
|
|
RCT_EXPORT_VIEW_PROPERTY(showsVerticalScrollIndicator)
|
|
|
|
RCT_EXPORT_VIEW_PROPERTY(stickyHeaderIndices);
|
|
|
|
RCT_EXPORT_VIEW_PROPERTY(throttleScrollCallbackMS);
|
2015-03-13 23:17:21 +00:00
|
|
|
RCT_EXPORT_VIEW_PROPERTY(zoomScale);
|
2015-02-20 04:10:52 +00:00
|
|
|
RCT_EXPORT_VIEW_PROPERTY(contentInset);
|
|
|
|
RCT_EXPORT_VIEW_PROPERTY(scrollIndicatorInsets);
|
2015-03-13 23:17:21 +00:00
|
|
|
RCT_REMAP_VIEW_PROPERTY(contentOffset, scrollView.contentOffset);
|
2015-02-20 04:10:52 +00:00
|
|
|
|
2015-03-01 23:33:55 +00:00
|
|
|
- (NSDictionary *)constantsToExport
|
2015-02-20 04:10:52 +00:00
|
|
|
{
|
2015-03-01 23:33:55 +00:00
|
|
|
return @{
|
2015-02-20 04:10:52 +00:00
|
|
|
@"DecelerationRate": @{
|
2015-03-01 23:33:55 +00:00
|
|
|
@"Normal": @(UIScrollViewDecelerationRateNormal),
|
|
|
|
@"Fast": @(UIScrollViewDecelerationRateFast),
|
2015-02-20 04:10:52 +00:00
|
|
|
},
|
|
|
|
@"KeyboardDismissMode": @{
|
2015-03-01 23:33:55 +00:00
|
|
|
@"None": @(UIScrollViewKeyboardDismissModeNone),
|
|
|
|
@"Interactive": @(UIScrollViewKeyboardDismissModeInteractive),
|
|
|
|
@"OnDrag": @(UIScrollViewKeyboardDismissModeOnDrag),
|
2015-02-20 04:10:52 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2015-03-11 02:03:59 +00:00
|
|
|
- (void)getContentSize:(NSNumber *)reactTag
|
|
|
|
callback:(RCTResponseSenderBlock)callback
|
|
|
|
{
|
|
|
|
RCT_EXPORT();
|
|
|
|
|
|
|
|
[self.bridge.uiManager addUIBlock:^(RCTUIManager *uiManager, RCTSparseArray *viewRegistry) {
|
|
|
|
|
|
|
|
UIView *view = viewRegistry[reactTag];
|
|
|
|
if (!view) {
|
|
|
|
RCTLogError(@"Cannot find view with tag %@", reactTag);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-03-22 20:54:43 +00:00
|
|
|
CGSize size = ((RCTScrollView *)view).scrollView.contentSize;
|
2015-03-11 02:03:59 +00:00
|
|
|
callback(@[@{
|
|
|
|
@"width" : @(size.width),
|
|
|
|
@"height" : @(size.height)
|
|
|
|
}]);
|
|
|
|
}];
|
|
|
|
}
|
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
@end
|