2024-12-20 19:55:17 +05:30
|
|
|
import React, { useState } from 'react';
|
|
|
|
|
import { useSocketStore } from '../../context/socket';
|
2025-01-09 20:07:42 +05:30
|
|
|
import { Coordinates } from '../recorder/canvas';
|
2024-12-20 19:55:17 +05:30
|
|
|
|
|
|
|
|
interface DateTimeLocalPickerProps {
|
|
|
|
|
coordinates: Coordinates;
|
|
|
|
|
selector: string;
|
|
|
|
|
onClose: () => void;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const DateTimeLocalPicker: React.FC<DateTimeLocalPickerProps> = ({ coordinates, selector, onClose }) => {
|
|
|
|
|
const { socket } = useSocketStore();
|
|
|
|
|
const [selectedDateTime, setSelectedDateTime] = useState<string>('');
|
|
|
|
|
|
|
|
|
|
const handleDateTimeChange = (e: React.ChangeEvent<HTMLInputElement>) => {
|
|
|
|
|
setSelectedDateTime(e.target.value);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handleConfirm = () => {
|
|
|
|
|
if (socket && selectedDateTime) {
|
|
|
|
|
socket.emit('input:datetime-local', {
|
|
|
|
|
selector,
|
|
|
|
|
value: selectedDateTime
|
|
|
|
|
});
|
|
|
|
|
onClose();
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return (
|
2025-01-09 19:22:28 +05:30
|
|
|
<div
|
2024-12-20 19:55:17 +05:30
|
|
|
style={{
|
|
|
|
|
position: 'absolute',
|
|
|
|
|
left: `${coordinates.x}px`,
|
|
|
|
|
top: `${coordinates.y}px`,
|
|
|
|
|
zIndex: 1000,
|
|
|
|
|
backgroundColor: 'white',
|
|
|
|
|
boxShadow: '0 2px 10px rgba(0,0,0,0.1)',
|
|
|
|
|
padding: '10px',
|
|
|
|
|
borderRadius: '4px'
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<div className="flex flex-col space-y-2">
|
|
|
|
|
<input
|
|
|
|
|
type="datetime-local"
|
|
|
|
|
onChange={handleDateTimeChange}
|
|
|
|
|
value={selectedDateTime}
|
|
|
|
|
className="p-2 border rounded"
|
|
|
|
|
autoFocus
|
|
|
|
|
/>
|
|
|
|
|
<div className="flex justify-end space-x-2">
|
2025-01-09 19:22:28 +05:30
|
|
|
<button
|
2024-12-20 19:55:17 +05:30
|
|
|
onClick={onClose}
|
|
|
|
|
className="px-3 py-1 text-sm text-gray-600 hover:text-gray-800 border rounded"
|
|
|
|
|
>
|
|
|
|
|
Cancel
|
|
|
|
|
</button>
|
2025-01-09 19:22:28 +05:30
|
|
|
<button
|
2024-12-20 19:55:17 +05:30
|
|
|
onClick={handleConfirm}
|
|
|
|
|
disabled={!selectedDateTime}
|
2025-01-09 19:22:28 +05:30
|
|
|
className={`px-3 py-1 text-sm rounded ${selectedDateTime
|
|
|
|
|
? 'bg-blue-500 text-white hover:bg-blue-600'
|
2024-12-20 19:55:17 +05:30
|
|
|
: 'bg-gray-300 text-gray-500 cursor-not-allowed'
|
2025-01-09 19:22:28 +05:30
|
|
|
}`}
|
2024-12-20 19:55:17 +05:30
|
|
|
>
|
|
|
|
|
Confirm
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default DateTimeLocalPicker;
|