mirror of
https://github.com/status-im/react-native.git
synced 2025-01-09 17:15:54 +00:00
3eeaffce1a
Summary: Example (index.ios.js): ``` 'use strict'; import React from 'react'; import {ListView, RefreshControl, Text, View} from 'react-native'; class BugExample extends React.Component { render() { return ( <ListView style={{backgroundColor: 'red'}} contentContainerStyle={{backgroundColor: 'green'}} refreshControl={ <RefreshControl refreshing={true} onRefresh={() => {}} /> } dataSource={ new ListView.DataSource({rowHasChanged: (r1, r2) => r1 !== r2}).cloneWithRows(['a', 'b', 'c']) } renderRow={(item) => { return ( <View> <Text>{item}</Text> </View> ); }} /> ); } } ``` RN version: 0.34, 0.35-rc iOS version (emulator): 9. Closes https://github.com/facebook/react-native/pull/10321 Differential Revision: D4142774 Pulled By: mmmulani fbshipit-source-id: 743b865a6e1c1fb09c7cfc48631ad383bd593f89
133 lines
4.0 KiB
Objective-C
133 lines
4.0 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 "RCTRefreshControl.h"
|
|
|
|
#import "RCTUtils.h"
|
|
|
|
@implementation RCTRefreshControl {
|
|
BOOL _isInitialRender;
|
|
BOOL _currentRefreshingState;
|
|
}
|
|
|
|
- (instancetype)init
|
|
{
|
|
if ((self = [super init])) {
|
|
[self addTarget:self action:@selector(refreshControlValueChanged) forControlEvents:UIControlEventValueChanged];
|
|
_isInitialRender = true;
|
|
_currentRefreshingState = false;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
RCT_NOT_IMPLEMENTED(- (instancetype)initWithCoder:(NSCoder *)aDecoder)
|
|
|
|
- (void)layoutSubviews
|
|
{
|
|
[super layoutSubviews];
|
|
|
|
// Fix for bug #7976
|
|
// TODO: Remove when updating to use iOS 10 refreshControl UIScrollView prop.
|
|
if (self.backgroundColor == nil) {
|
|
self.backgroundColor = [UIColor clearColor];
|
|
}
|
|
|
|
// If the control is refreshing when mounted we need to call
|
|
// beginRefreshing in layoutSubview or it doesn't work.
|
|
if (_currentRefreshingState && _isInitialRender) {
|
|
[self beginRefreshing];
|
|
}
|
|
_isInitialRender = false;
|
|
}
|
|
|
|
- (void)beginRefreshing
|
|
{
|
|
// When using begin refreshing we need to adjust the ScrollView content offset manually.
|
|
UIScrollView *scrollView = (UIScrollView *)self.superview;
|
|
CGPoint offset = {scrollView.contentOffset.x, scrollView.contentOffset.y - self.frame.size.height};
|
|
|
|
// `beginRefreshing` must be called after the animation is done. This is why it is impossible
|
|
// to use `setContentOffset` with `animated:YES`.
|
|
[UIView animateWithDuration:0.25
|
|
delay:0
|
|
options:UIViewAnimationOptionBeginFromCurrentState
|
|
animations:^(void) {
|
|
[scrollView setContentOffset:offset];
|
|
} completion:^(__unused BOOL finished) {
|
|
[super beginRefreshing];
|
|
}];
|
|
}
|
|
|
|
- (void)endRefreshing
|
|
{
|
|
// The contentOffset of the scrollview MUST be greater than 0 before calling
|
|
// endRefreshing otherwise the next pull to refresh will not work properly.
|
|
UIScrollView *scrollView = (UIScrollView *)self.superview;
|
|
if (scrollView.contentOffset.y < 0) {
|
|
CGPoint offset = {scrollView.contentOffset.x, -scrollView.contentInset.top};
|
|
[UIView animateWithDuration:0.25
|
|
delay:0
|
|
options:UIViewAnimationOptionBeginFromCurrentState
|
|
animations:^(void) {
|
|
[scrollView setContentOffset:offset];
|
|
} completion:^(__unused BOOL finished) {
|
|
[super endRefreshing];
|
|
}];
|
|
} else {
|
|
[super endRefreshing];
|
|
}
|
|
}
|
|
|
|
- (NSString *)title
|
|
{
|
|
return self.attributedTitle.string;
|
|
}
|
|
|
|
- (void)setTitle:(NSString *)title
|
|
{
|
|
NSRange range = NSMakeRange(0, self.attributedTitle.length);
|
|
NSDictionary *attrs = [self.attributedTitle attributesAtIndex:0 effectiveRange: &range];
|
|
self.attributedTitle = [[NSAttributedString alloc] initWithString:title attributes:attrs];
|
|
}
|
|
|
|
- (void)setTitleColor:(UIColor *)color
|
|
{
|
|
NSRange range = NSMakeRange(0, self.attributedTitle.length);
|
|
NSDictionary *attrs = [self.attributedTitle attributesAtIndex:0 effectiveRange: &range];
|
|
NSMutableDictionary *attrsMutable = [attrs mutableCopy];
|
|
[attrsMutable setObject:color forKey:NSForegroundColorAttributeName];
|
|
self.attributedTitle = [[NSAttributedString alloc] initWithString:self.attributedTitle.string attributes:attrsMutable];
|
|
}
|
|
|
|
- (void)setRefreshing:(BOOL)refreshing
|
|
{
|
|
if (_currentRefreshingState != refreshing) {
|
|
_currentRefreshingState = refreshing;
|
|
|
|
if (refreshing) {
|
|
if (!_isInitialRender) {
|
|
[self beginRefreshing];
|
|
}
|
|
} else {
|
|
[self endRefreshing];
|
|
}
|
|
}
|
|
}
|
|
|
|
- (void)refreshControlValueChanged
|
|
{
|
|
_currentRefreshingState = super.refreshing;
|
|
|
|
if (_onRefresh) {
|
|
_onRefresh(nil);
|
|
}
|
|
}
|
|
|
|
@end
|