import React, { useRef } from 'react'; import { defineMessages, IntlShape, useIntl } from 'react-intl'; import { IconButton } from 'soapbox/components/ui'; import { useInstance } from 'soapbox/hooks'; const messages = defineMessages({ upload: { id: 'upload_button.label', defaultMessage: 'Add media attachment' }, }); export const onlyImages = (types: string[] | undefined): boolean => { return types?.every((type) => type.startsWith('image/')) ?? false; }; export interface IUploadButton { disabled?: boolean; unavailable?: boolean; onSelectFile: (files: FileList, intl: IntlShape) => void; style?: React.CSSProperties; resetFileKey: number | null; className?: string; iconClassName?: string; icon?: string; } const UploadButton: React.FC = ({ disabled = false, unavailable = false, onSelectFile, resetFileKey, className = 'text-gray-600 hover:text-gray-700 dark:hover:text-gray-500', iconClassName, icon, }) => { const intl = useIntl(); const { configuration } = useInstance(); const fileElement = useRef(null); const attachmentTypes = configuration.media_attachments.supported_mime_types; const handleChange: React.ChangeEventHandler = (e) => { if (e.target.files?.length) { onSelectFile(e.target.files, intl); } }; const handleClick = () => { fileElement.current?.click(); }; if (unavailable) { return null; } const src = icon || ( onlyImages(attachmentTypes) ? require('@tabler/icons/photo.svg') : require('@tabler/icons/paperclip.svg') ); return (
); }; export default UploadButton;