You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
105 lines
3.9 KiB
JavaScript
105 lines
3.9 KiB
JavaScript
import { useState, useEffect } from 'react';
|
|
import { Form, Input, Modal } from 'antd';
|
|
import { isEmpty, pick } from '@/utils/commons';
|
|
import useConversationStore from '@/stores/ConversationStore';
|
|
import { phoneNumberToWAID } from '@/channel/whatsappUtils';
|
|
|
|
export const ConversationItemForm = ({ initialValues, onFormInstanceReady }) => {
|
|
const [currentConversation] = useConversationStore((state) => [state.currentConversation]);
|
|
const fromCurrent = initialValues?.is_current_order ? pick(currentConversation, ['coli_sn', 'coli_id', 'opi_sn']) : {};
|
|
const [form] = Form.useForm();
|
|
const [formatPhone, setFormatPhone] = useState('');
|
|
const [formatVisible, setFormatVisible] = useState(false);
|
|
|
|
useEffect(() => {
|
|
onFormInstanceReady(form);
|
|
setFormatPhone(phoneNumberToWAID(initialValues.phone_number || ''));
|
|
}, []);
|
|
|
|
useEffect(() => {
|
|
form.setFieldValue('wa_id', formatPhone);
|
|
return () => {};
|
|
}, [formatPhone]);
|
|
|
|
const onValuesChange = (changeValues, allValues) => {
|
|
if ('phone_number' in changeValues) {
|
|
const _t = phoneNumberToWAID(changeValues.phone_number);
|
|
setFormatPhone(_t);
|
|
setFormatVisible(_t !== changeValues.phone_number);
|
|
}
|
|
};
|
|
return (
|
|
<Form layout='horizontal' form={form} name='form_in_modal' initialValues={{ ...fromCurrent, ...initialValues, wa_id: formatPhone }} onValuesChange={onValuesChange}>
|
|
<Form.Item
|
|
name={'phone_number'}
|
|
label='WhatsApp号码'
|
|
validateStatus={formatVisible ? 'warning' : undefined}
|
|
help={formatVisible ? `WhatsApp格式: ${formatPhone}` : undefined}
|
|
rules={[{ required: true, message: '请输入联系人手机号' }]}>
|
|
<Input placeholder='请输入联系人手机号' />
|
|
</Form.Item>
|
|
{/* hidden */}
|
|
<Form.Item hidden name={'wa_id'} dependencies={['phone_number']}>
|
|
<Input />
|
|
</Form.Item>
|
|
{initialValues.is_current_order && (
|
|
<>
|
|
<Form.Item
|
|
name={'coli_id'}
|
|
label={'关联当前订单'}
|
|
rules={[{ required: true, message: '关联的订单' }]}
|
|
validateStatus='warning'
|
|
help='请务必确认关联的订单是否正确'>
|
|
<Input placeholder='请先关联订单' disabled={initialValues.is_current_order} />
|
|
</Form.Item>
|
|
<Form.Item name={'coli_sn'} label='订单SN' hidden={initialValues.is_current_order} rules={[{ required: true, message: '订单SN' }]}>
|
|
<Input placeholder='订单SN' />
|
|
</Form.Item>
|
|
</>
|
|
)}
|
|
{!initialValues.is_current_order && (
|
|
<Form.Item name={'name'} label='联系人名称' rules={[{ required: true, message: '请输入联系人名称' }]} className='mb-1'>
|
|
<Input placeholder='请输入联系人名称' />
|
|
</Form.Item>
|
|
)}
|
|
{/* <div className=' text-neutral-500 italic'>如果会话已存在, 将直接切换</div> */}
|
|
</Form>
|
|
);
|
|
};
|
|
export const ConversationItemFormModal = ({ open, onCreate, onCancel, initialValues, loading }) => {
|
|
const [formInstance, setFormInstance] = useState();
|
|
return (
|
|
<Modal
|
|
open={open}
|
|
title='新建会话'
|
|
okText='确认'
|
|
// cancelText='Cancel'
|
|
okButtonProps={{
|
|
autoFocus: true,
|
|
}}
|
|
confirmLoading={loading}
|
|
onCancel={() => {
|
|
onCancel();
|
|
formInstance?.resetFields();
|
|
}}
|
|
destroyOnClose
|
|
onOk={async () => {
|
|
try {
|
|
const values = await formInstance?.validateFields();
|
|
// formInstance?.resetFields();
|
|
onCreate(values);
|
|
} catch (error) {
|
|
console.log('Failed:', error);
|
|
}
|
|
}}>
|
|
<ConversationItemForm
|
|
initialValues={initialValues}
|
|
onFormInstanceReady={(instance) => {
|
|
setFormInstance(instance);
|
|
}}
|
|
/>
|
|
</Modal>
|
|
);
|
|
};
|
|
export default ConversationItemFormModal;
|