| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271 |
- import * as WebBrowser from 'expo-web-browser';
- import * as React from 'react';
- import { StyleSheet, View } from 'react-native';
- import { Div, Button, Image, Text, Tag } from 'react-native-magnus';
- import { TextareaItem } from '@ant-design/react-native';
- import { ScrollView } from 'react-native-gesture-handler';
- import { useRoute } from '@react-navigation/native';
- import { useCreation, useRequest, useSet } from '@umijs/hooks';
- import { useTranslation } from 'react-i18next';
- import useModel from 'flooks';
- import Order from './model'; // Order模块通用方法
- import Header from './Header'; // 头部
- import ImagePicker from '../../components/ImagePicker';
- import Choose from '../../components/Choose';
- import ChooseMerchant from '../../components/ChooseMerchant';
- const map = new Map([
- [
- 'bad',
- [
- '不送上楼',
- '着装脏乱',
- '服务态度差',
- '未带保温箱',
- '食品凉了',
- '额外索取费用',
- '配送慢',
- '提前点送达',
- ],
- ],
- ['normal', ['味道一般', '速度很慢']],
- ['good', ['超好吃', '超级慢']],
- ]);
- export default function EvaluateScreen({ navigation }) {
- const { t } = useTranslation();
- const { userAppraisal } = useModel(Order, []);
- const route = useRoute();
- const { params } = route;
- const { orderId } = params || {};
- const [orderInfo, setorderInfo] = React.useState({ merchant: {} });
- const [choose, setchoose] = React.useState('');
- const [chooseMer, setchooseMer] = React.useState('');
- const [content, setcontent] = React.useState('');
- const [imgList, setimgList] = React.useState(['']);
- const [content2, setcontent2] = React.useState('');
- function changeImg(img, index) {
- const list = [...imgList];
- if (!img) {
- list.splice(index, 1);
- } else {
- list.splice(index, 1, img);
- }
- if (index === list.length - 1 && list.length < 4) {
- list.push('');
- }
- setimgList(list);
- }
- function deleteImg(index) {
- const list = [...imgList];
- if (!list[index]) {
- return null;
- } else {
- return () => changeImg('', index);
- }
- }
- const [tags, tagEvent] = useSet([]);
- React.useEffect(() => {
- tagEvent.reset();
- }, [choose]);
- const { merShowName, merchantId, riderId, merLogo } = orderInfo;
- useRequest(() => `/orderInfo/get/${orderId}`, {
- refreshDeps: [orderId],
- onSuccess: (result) => {
- setorderInfo(result);
- },
- });
- function submit() {
- const img = [...imgList].filter((item) => {
- return item;
- });
- const riderScore = [...map.keys()].indexOf(choose);
- userAppraisal(
- orderId,
- merchantId,
- riderId,
- img,
- chooseMer === 'good',
- content2,
- riderScore,
- content + [...Array.from(tags)].join(',')
- ).then(() => {
- navigation.goBack();
- });
- }
- const canSubmit = useCreation(() => {
- if (orderId && choose && chooseMer) {
- return true;
- } else {
- return false;
- }
- }, [orderId, choose, chooseMer, content, imgList, content2]);
- return (
- <>
- <Header title={t('tip3')} />
- <ScrollView contentContainerStyle={styles.scroll}>
- <View style={styles.card}>
- <Div row alignItems="center">
- <Image
- h={40}
- w={40}
- rounded="sm"
- source={{
- uri: 'https://picsum.photos/700',
- }}
- />
- <Text
- fontSize="xl"
- fontWeight="bold"
- textAlign="left"
- flex={1}
- mx={8}
- >
- 猪猪费
- </Text>
- <Text fontSize="xs" color="gray300" textAlign="left">
- {t('tipss4')}
- </Text>
- </Div>
- <Choose chooseValue={choose} changeValue={setchoose} />
- {!!choose && (
- <Div row flexWrap="wrap" py={14}>
- {map.get(choose).map((item, index) => {
- const isChoose = tagEvent.has(item);
- return (
- <Tag
- key={index}
- ml="sm"
- mb="sm"
- fontSize="xs"
- borderColor={isChoose ? 'white' : 'gray300'}
- borderWidth={1}
- color={isChoose ? 'white' : 'gray400'}
- bg={isChoose ? 'brand500' : 'hide'}
- onPress={() => {
- if (isChoose) {
- tagEvent.remove(item);
- } else {
- tagEvent.add(item);
- }
- }}
- >
- {item}
- </Tag>
- );
- })}
- </Div>
- )}
- <TextareaItem
- rows={4}
- placeholder={t('content2')}
- style={styles.text}
- count={100}
- onChange={setcontent}
- />
- </View>
- <View style={styles.card}>
- <Div row alignItems="center">
- <Image
- h={40}
- w={40}
- rounded="sm"
- source={{
- uri: merLogo,
- }}
- />
- <Text fontSize="xl" fontWeight="bold" flex={1} mx={8}>
- {merShowName || ' '}
- </Text>
- <Text fontSize="xs" color="gray300" textAlign="left">
- {t('yi-dui-shang-jia-ni-ming')}
- </Text>
- </Div>
- <ChooseMerchant chooseValue={chooseMer} changeValue={setchooseMer} />
- <Div pt={10} />
- <TextareaItem
- rows={4}
- placeholder={t('content2')}
- style={styles.text}
- count={100}
- onChange={setcontent2}
- />
- <Div row mt={10}>
- {imgList.map((item, index) => {
- return (
- <ImagePicker
- key={index}
- img={item}
- setImg={(img) => changeImg(img, index)}
- cancelEvent={deleteImg(index)}
- />
- );
- })}
- </Div>
- </View>
- <Button
- block
- bg="brand500"
- color="white"
- my={5}
- mx={10}
- onPress={submit}
- disabled={!canSubmit}
- >
- {t('ti-jiao')}
- </Button>
- </ScrollView>
- </>
- );
- }
- const styles = StyleSheet.create({
- scroll: {
- paddingVertical: 10,
- },
- card: {
- paddingHorizontal: 15,
- paddingVertical: 20,
- backgroundColor: '#fff',
- marginBottom: 10,
- },
- item: {
- paddingVertical: 5,
- },
- main: {
- paddingVertical: 5,
- },
- bottom: {
- paddingVertical: 10,
- },
- textarea: {
- marginVertical: 10,
- },
- text: {
- backgroundColor: '#eeeeee',
- paddingVertical: 10,
- fontSize: 10,
- borderBottomWidth: 0,
- },
- });
|