| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312 |
- import UIButton from "@/components/ui/UIButton";
- import { Colors } from "@/constants/theme";
- import { ActionSheet, ActivityIndicator, Icon, Modal, Toast } from "@ant-design/react-native";
- import { Ionicons } from '@expo/vector-icons';
- import { Platform, Pressable, Text, View } from "react-native";
- import api from "@/utils/api";
- import { openSystemSettings } from "@/utils/os";
- import clsx from "clsx";
- import { DocumentPickerAsset, getDocumentAsync } from 'expo-document-picker';
- import { File } from 'expo-file-system';
- import { ImagePickerAsset, launchCameraAsync, launchImageLibraryAsync, requestCameraPermissionsAsync, requestMediaLibraryPermissionsAsync } from 'expo-image-picker';
- import { Link } from "expo-router";
- import { useCallback, useEffect, useState } from "react";
- const takePhoto = async (upload: (assets: ImagePickerAsset[] | DocumentPickerAsset[]) => void) => {
- const permission = await requestCameraPermissionsAsync();
- if (!permission.granted) {
- Modal.alert("请允许相册权限", "如果点击“确认“按钮后没有跳转,请自己前往系统设置开启相关权限", [
- {
- text: "确认",
- onPress: openSystemSettings,
- }
- ]);
- // 跳转到 ios/android 相关设置页面
- return;
- }
- const l = Toast.loading('正在打开相机...');
- try {
- const result = await launchCameraAsync({
- allowsEditing: false, // 是否允许裁剪
- quality: 0.9, // 照片质量
- });
- if (!result.canceled) {
- upload(result.assets);
- }
- } catch (err) {
- console.warn(err);
- Toast.fail('打开相机失败,请重试');
- }
- finally {
- Toast.remove(l);
- }
- }
- const picImg = async (upload: (assets: ImagePickerAsset[] | DocumentPickerAsset[]) => void) => {
- const permission = await requestMediaLibraryPermissionsAsync();
- if (!permission.granted) {
- Modal.alert("请允许相册权限", "如果点击“确认“按钮后没有跳转,请自己前往系统设置开启相关权限", [
- {
- text: "确认",
- onPress: openSystemSettings,
- }
- ]);
- // 跳转到 ios/android 相关设置页面
- return;
- }
- const l = Toast.loading('正在打开相册...');
- try {
- let result = await launchImageLibraryAsync({
- mediaTypes: ['images'], // 只选图片
- allowsEditing: false,
- quality: .9, // 质量 0~1
- });
- if (!result.canceled) {
- upload(result.assets);
- }
- } catch (err) {
- console.warn(err);
- Toast.fail('打开相册失败,请重试');
- } finally {
- Toast.remove(l);
- }
- }
- const pickDoc = async (upload: (assets: ImagePickerAsset[] | DocumentPickerAsset[]) => void) => {
- const l = Toast.loading('正在打开相册...');
- try {
- let result = await getDocumentAsync({
- type: [
- // PDF
- 'application/pdf',
- // Word 文档
- 'application/msword',
- 'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
- // Excel 表格
- 'application/vnd.ms-excel',
- 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
- // WPS 文字 / WPS 表格
- 'application/wps-office.doc',
- 'application/wps-office.docx',
- 'application/wps-office.xls',
- 'application/wps-office.xlsx',
- 'application/wps-office.et',
- 'application/wps-office.wps',
- // 纯文本
- 'text/plain',
- // HTML
- 'text/html',
- // 全部图片(jpg/png/gif/webp 等)
- 'image/*'
- ],
- copyToCacheDirectory: true, // 复制到应用缓存目录
- });
- if (!result.canceled) {
- upload(result.assets);
- }
- } catch (err) {
- console.warn(err);
- Toast.fail('打开文件失败,请重试');
- }
- finally {
- Toast.remove(l);
- }
- };
- export function UploadScreen({ visible, onClose }: { visible: boolean, onClose: () => void }) {
- useEffect(() => {
- if (!visible) {
- setState(0);
- }
- }, [visible]);
- const [state, setState] = useState(0);
- const upload = useCallback(async (assets: ImagePickerAsset[] | DocumentPickerAsset[]) => {
- setState(1);
- let att: { url: string, fullurl: string, attid: any } = null!;
- try {
- const file = new File(assets[0].uri);
- // file.type = item.mimeType || 'application/octet-stream';
- const formData = new FormData();
- formData.append('file', file);
- att = await api.uploadFile<{ url: string, fullurl: string, attid: any }>('common/upload', { body: formData });
- } catch (err) {
- setState(0);
- console.warn(err);
- Toast.fail('上传失败,请重试');
- return;
- }
- try {
- await api.post('/credit/create', {
- att: JSON.stringify(att),
- });
- setState(2);
- // eslint-disable-next-line @typescript-eslint/no-unused-vars
- } catch (err) {
- setState(0);
- Toast.fail('添加分析到队列失败,请重试');
- }
- }, []);
- return (
- <Modal visible={visible} transparent={true} animationType="slide">
- <View className="flex-row items-center">
- <Ionicons name="cloud-upload" size={48} color={Colors.tint} />
- <Text className="ml-4 text-3xl font-bold">征信分析</Text>
- </View>
- {state === 0 && (
- <View className="w-72 h-auto px-6">
- <Text className="mt-2 text-2xl">请选择征信上传方式</Text>
- <UIButton title="从本机文件" icon="folder" onPress={() => pickDoc(upload)} className="mt-8" />
- {Platform.OS === 'ios' && <UIButton title="从手机相册" icon="picture" onPress={() => picImg(upload)} className="mt-4" />}
- <UIButton title="拍照上传" icon="camera" onPress={() => takePhoto(upload)} className="mt-4" />
- </View>)}
- {
- state === 1 && (
- <View className="w-72 h-auto p-8">
- <ActivityIndicator size="large" color={Colors.tint} text="正在上传,请稍候..." />
- </View>
- )
- }
- {
- state === 2 && (
- <>
- <View className="w-72 h-auto p-8 flex-row">
- <Ionicons name="time-outline" size={48} color={Colors.tint} />
- <Text className="mt-4 ml-4 text-2xl">AI 正在分析</Text>
- </View>
- <Text className="mt-4 ml-4 text-2xl">
- <Link asChild href='/(tabs)/analytics' onPress={onClose}>
- <Text className="text-primary">分析页</Text>
- </Link>
- 查看状态和结果</Text>
- </>
- )
- }
- <View className="h-8" />
- {state != 1 && <Pressable hitSlop={8} className="absolute top-0 right-4" onPress={() => { onClose(); }}>
- <Icon name="close" size={32} />
- </Pressable>}
- </Modal >
- );
- }
- export function UploadComponent({ customerId, onCompolete }: { customerId?: number, onCompolete: () => void }) {
- const [state, setState] = useState(0);
- const upload = useCallback(async (assets: ImagePickerAsset[] | DocumentPickerAsset[]) => {
- setState(1);
- let att: { url: string, fullurl: string, attid: any } = null!;
- try {
- const file = new File(assets[0].uri);
- // file.type = item.mimeType || 'application/octet-stream';
- const formData = new FormData();
- formData.append('file', file);
- att = await api.uploadFile<{ url: string, fullurl: string, attid: any }>('common/upload', { body: formData });
- } catch (err) {
- setState(0);
- console.warn(err);
- Toast.fail('上传失败,请重试');
- return;
- }
- try {
- await api.post('/credit/create', {
- att: JSON.stringify(att),
- });
- setState(0);
- onCompolete?.();
- // eslint-disable-next-line @typescript-eslint/no-unused-vars
- } catch (err) {
- setState(0);
- Toast.fail('添加分析到队列失败,请重试');
- }
- }, [onCompolete]);
- const onSelect = useCallback((index: number) => {
- if (Platform.OS == 'android' && index == 2) {
- return;
- }
- if (Platform.OS == 'ios' && index == 3) {
- return;
- }
- if (index == 0) {
- pickDoc(upload);
- }
- if (index == 1) {
- if (Platform.OS == 'ios') {
- picImg(upload);
- } else {
- takePhoto(upload);
- }
- }
- if (index == 2) {
- takePhoto(upload);
- }
- }, []);
- const selectFile = useCallback(() => {
- ActionSheet.showActionSheetWithOptions({
- title: "请选择征信上传方式",
- cancelButtonIndex: 3,
- options: Platform.OS == 'ios' ? ['从本机文件', '从手机相册', '拍照上传', '取消'] : ['从本机文件', '拍照上传', '取消']
- }, onSelect);
- }, []);
- return (
- <>
- <View className="mb-3 rounded-2xl border border-outline-variant bg-surface-container-lowest p-4">
- <Text className="mb-3 text-xs font-bold uppercase tracking-widest text-outline">
- 上传征信文件
- </Text>
- <Pressable
- onPress={selectFile}
- disabled={state == 1}
- className="items-center rounded-2xl border-2 border-dashed border-outline-variant/40 bg-surface-container-low/50 px-6 py-8 disabled:opacity-50"
- >
- <View className="mb-3 h-14 w-14 items-center justify-center rounded-full bg-primary-fixed">
- <Ionicons name="cloud-upload-outline" size={30} color="#004ac6" />
- </View>
- {state == 1 ? <ActivityIndicator text="正在上传文档" size='small' /> : <Text className="text-base font-bold text-on-surface">
- 点击上传征信报告</Text>}
- <Text className={clsx("mt-1 text-sm leading-6 text-on-surface-variant", {
- 'opacity-50': state == 1
- })}>
- 支持 PDF、图片格式,最大 20MB
- </Text>
- </Pressable>
- </View>
- </>
- );
- }
|