| | |
| | | import DialogCloseButton from './DialogCloseButton'; |
| | | import { usePapaParse } from './usePapaParse'; |
| | | |
| | | export function ImportModal({ open, onClose, sampleCsv, useCodeImport }) { |
| | | export function ImportModal({ open, onClose, importTemp, useCodeImport }) { |
| | | const refresh = useRefresh(); |
| | | |
| | | const SAMPLE_URL = `data:text/csv;name=crm_contacts_sample.csv;charset=utf-8,${encodeURIComponent(sampleCsv.default)}`; |
| | | |
| | | const { processBatch } = useCodeImport(); |
| | | const { importer, parseCsv, reset } = usePapaParse({ |
| | |
| | | component={Link} |
| | | label="Download CSV sample" |
| | | color="info" |
| | | to={SAMPLE_URL} |
| | | to={importTemp} |
| | | download={'crm_contacts_sample.csv'} |
| | | /> |
| | | } |