I ask for the help of specialists, I am new to React Native and faced such a problem. enter image description here Trying to send the file this way with a single button click using react-native-image-crop-picker I already sent files to the server on Next js and everything worked fine, but now I needed to make a mobile version but it doesn't work as I expected.
import { useMutation } from '@apollo/client';
import React, { useCallback, useEffect, useState } from 'react';
import {
Image,
SafeAreaView,
ScrollView,
StatusBar,
StyleSheet,
View,
} from 'react-native';
import { Button } from 'react-native-elements';
import Icon from 'react-native-vector-icons/FontAwesome';
import ImagePicker from "react-native-image-crop-picker"
import { ReactNativeFile } from 'apollo-upload-client';
import { gql } from "@apollo/client";
export const mutationSendPhotoForProcessing = gql`
mutation SendPhotoForProcessing($file: Upload!){
send_photo_for_processing(file: $file)
}
`
const Home = () => {
const [SendPhoto] = useMutation(mutationSendPhotoForProcessing);
const onButtonPress = async () => {
let file = await ImagePicker.openPicker({
cropping: true
});
const { data } = await SendPhoto({
variables: {
file: new ReactNativeFile({
name: 'a.jpg',
type: 'image/jpg',
uri: file.path,
}),
}
});
};
return (
<SafeAreaView>
<StatusBar barStyle={'dark-content'} />
<ScrollView>
<View>
<Button
onPress={() => alert()}
icon={
<Icon name="upload" color={"white"} size={20} />
}
/>
<Button
onPress={() => onButtonPress()}
title="Upload image"
/>
</View>
</ScrollView>
</SafeAreaView>
);
};
const styles = StyleSheet.create({
sectionContainer: {
marginTop: 32,
paddingHorizontal: 24,
},
});
export default Home;