mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-29 07:34:07 +00:00
91 lines
2.7 KiB
JavaScript
91 lines
2.7 KiB
JavaScript
import React, { useRef, useEffect } from 'react';
|
|
import { useDispatch } from 'react-redux';
|
|
import { useFormik } from 'formik';
|
|
import * as Yup from 'yup';
|
|
import { browseDirectory } from 'providers/ReduxStore/slices/collections/actions';
|
|
import Modal from 'components/Modal';
|
|
|
|
const ImportCollectionLocation = ({ onClose, handleSubmit, collectionName }) => {
|
|
const inputRef = useRef();
|
|
const dispatch = useDispatch();
|
|
|
|
const formik = useFormik({
|
|
enableReinitialize: true,
|
|
initialValues: {
|
|
collectionLocation: ''
|
|
},
|
|
validationSchema: Yup.object({
|
|
collectionLocation: Yup.string()
|
|
.min(1, 'must be atleast 1 characters')
|
|
.max(500, 'must be 500 characters or less')
|
|
.required('name is required')
|
|
}),
|
|
onSubmit: (values) => {
|
|
console.log('here');
|
|
handleSubmit(values.collectionLocation);
|
|
}
|
|
});
|
|
|
|
const browse = () => {
|
|
dispatch(browseDirectory())
|
|
.then((dirPath) => {
|
|
formik.setFieldValue('collectionLocation', dirPath);
|
|
})
|
|
.catch((error) => {
|
|
formik.setFieldValue('collectionLocation', '');
|
|
console.error(error);
|
|
});
|
|
};
|
|
|
|
useEffect(() => {
|
|
if (inputRef && inputRef.current) {
|
|
inputRef.current.focus();
|
|
}
|
|
}, [inputRef]);
|
|
|
|
const onSubmit = () => formik.handleSubmit();
|
|
|
|
return (
|
|
<Modal size="sm" title="Import Collection" confirmText="Import" handleConfirm={onSubmit} handleCancel={onClose}>
|
|
<form className="bruno-form" onSubmit={formik.handleSubmit}>
|
|
<div>
|
|
<label htmlFor="collectionName" className="block font-semibold">
|
|
Name
|
|
</label>
|
|
<div className="mt-2">{collectionName}</div>
|
|
|
|
<>
|
|
<label htmlFor="collectionLocation" className="block font-semibold mt-3">
|
|
Location
|
|
</label>
|
|
<input
|
|
id="collection-location"
|
|
type="text"
|
|
name="collectionLocation"
|
|
readOnly={true}
|
|
className="block textbox mt-2 w-full"
|
|
autoComplete="off"
|
|
autoCorrect="off"
|
|
autoCapitalize="off"
|
|
spellCheck="false"
|
|
value={formik.values.collectionLocation || ''}
|
|
onClick={browse}
|
|
/>
|
|
</>
|
|
{formik.touched.collectionLocation && formik.errors.collectionLocation ? (
|
|
<div className="text-red-500">{formik.errors.collectionLocation}</div>
|
|
) : null}
|
|
|
|
<div className="mt-1">
|
|
<span className="text-link cursor-pointer hover:underline" onClick={browse}>
|
|
Browse
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</Modal>
|
|
);
|
|
};
|
|
|
|
export default ImportCollectionLocation;
|