Как отделить вызов API с помощью API контекста React Natives?

Я новичок в реакции на родных. У меня есть следующий компонент в моем проекте, который я написал для получения API в том же компоненте, но хочу отделить его. У меня возникают трудности с тем, как я могу получить доступ к переменной, которую я использую в методе "getAlbum", извне компонента.

Я пытаюсь сделать это, используя API контекста новой концепции. возможно ли это с помощью контекстного API и как?

Есть ли стандартный способ отделить вызов API от компонента?

import React, { Component } from 'react';
import {
  FlatList, Text, View, Image, TouchableOpacity,
} from 'react-native';
import { ActivityIndicator, Provider } from 'react-native-paper';
import axios from 'axios';
import styles from '../style/ThumbnailView.component.style';
import ErrorAlert from '../common/ErrorAlert';
import * as myConstant from '../common/Constants';

export default class HomeScreen extends Component {

  // For to Navigation header
  static navigationOptions = () => ({
    headerTitle: 'Album Information',
  });

  constructor(props) {
    super(props);

    this.state = {
      isLoading: true,
      apiLoadingError: false,
    };
  }

  getAlbums() {
    const { navigation } = this.props;
    const albumId = navigation.getParam('albumID', 'no data');
    axios
      .get(
        myConstant.API + `photos?albumId=${albumId}`, {timeout: myConstant.TIMEOUT} 
      )
      .then((response) => {
          this.setState({
            isLoading: false,
            dataSource: response.data,
          });
      })
      .catch(err => {
        this.setState({isLoading: false, apiLoadingError: true})
      }); 
  }

  componentDidMount() {
    this.getAlbums();
  }

  render() {

    if (this.state.isLoading) {
      return (
        <View style={{ flex: 1, paddingTop: 30 }}>
            <ActivityIndicator animating={true} size='large' />
        </View>
      );
    }

    if (this.state.apiLoadingError) {
      return (
        <ErrorAlert />
      );
    }

    return (
      <React.Fragment>
        <Provider>
          <View style={styles.listContainer} >

            <FlatList
                testID='flatlist'
                data={ this.state.dataSource } numColumns={3}
                renderItem={({ item }) => <View style={styles.listRowContainer}>
                    <TouchableOpacity onPress={() => this.props.navigation.navigate('AlbumDetailsViewScreen', {
                  albumTitle: item.title, albumImg: item.url
                })} style={styles.listRow}>
                    <View style={styles.listTextNavVIew}>
                      <Image source = {{ uri: item.thumbnailUrl }} style={styles.imageViewContainer} />
                    </View>
                    </TouchableOpacity>
                </View>
              }
                keyExtractor = { (item, index) => index.toString() }
            />

          </View>
        </Provider>
      </React.Fragment>
    );
  }
}

0 ответов

Другие вопросы по тегам