Files
ncd-fe/packages/pl-fe/src/features/compose/components/upload-button.tsx
nicole mikołajczyk 79bf3a8398 pl-fe: random accessibility improvements
Signed-off-by: nicole mikołajczyk <git@mkljczk.pl>
2026-02-07 22:24:48 +01:00

91 lines
2.3 KiB
TypeScript

import React, { useRef } from 'react';
import { defineMessages, IntlShape, useIntl } from 'react-intl';
import IconButton from 'pl-fe/components/ui/icon-button';
import { useInstance } from 'pl-fe/hooks/use-instance';
const messages = defineMessages({
upload: { id: 'upload_button.label', defaultMessage: 'Add media attachment' },
});
const onlyImages = (types: string[] | undefined): boolean =>
types?.every((type) => type.startsWith('image/')) ?? false;
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<IUploadButton> = ({
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<HTMLInputElement>(null);
const attachmentTypes = configuration.media_attachments.supported_mime_types;
let accept = attachmentTypes?.join(',');
if (accept === 'application/octet-stream') accept = undefined;
const handleChange: React.ChangeEventHandler<HTMLInputElement> = (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('@phosphor-icons/core/regular/image.svg')
: require('@phosphor-icons/core/regular/paperclip.svg')
);
return (
<div>
<IconButton
src={src}
className={className}
iconClassName={iconClassName}
title={intl.formatMessage(messages.upload)}
disabled={disabled}
onClick={handleClick}
/>
<label aria-hidden>
<input
key={resetFileKey}
ref={fileElement}
type='file'
multiple
accept={accept}
onChange={handleChange}
disabled={disabled}
className='hidden'
/>
</label>
</div>
);
};
export { UploadButton as default };