82 lines
2.1 KiB
TypeScript
82 lines
2.1 KiB
TypeScript
|
import React, { useRef } from 'react';
|
||
|
import { defineMessages, useIntl } from 'react-intl';
|
||
|
|
||
|
import { IconButton } from 'soapbox/components/ui';
|
||
|
import { useAppSelector } from 'soapbox/hooks';
|
||
|
|
||
|
import type { List as ImmutableList } from 'immutable';
|
||
|
|
||
|
const messages = defineMessages({
|
||
|
upload: { id: 'upload_button.label', defaultMessage: 'Add media attachment' },
|
||
|
});
|
||
|
|
||
|
const onlyImages = (types: ImmutableList<string>) => {
|
||
|
return Boolean(types && types.every(type => type.startsWith('image/')));
|
||
|
};
|
||
|
|
||
|
interface IUploadButton {
|
||
|
disabled: boolean,
|
||
|
unavailable: boolean,
|
||
|
onSelectFile: (files: FileList) => void,
|
||
|
style: React.CSSProperties,
|
||
|
resetFileKey: number,
|
||
|
}
|
||
|
|
||
|
const UploadButton: React.FC<IUploadButton> = ({
|
||
|
disabled,
|
||
|
unavailable,
|
||
|
onSelectFile,
|
||
|
resetFileKey,
|
||
|
}) => {
|
||
|
const intl = useIntl();
|
||
|
|
||
|
const fileElement = useRef<HTMLInputElement>(null);
|
||
|
const attachmentTypes = useAppSelector(state => state.instance.configuration.getIn(['media_attachments', 'supported_mime_types']) as ImmutableList<string>);
|
||
|
|
||
|
const handleChange: React.ChangeEventHandler<HTMLInputElement> = (e) => {
|
||
|
if (e.target.files?.length) {
|
||
|
onSelectFile(e.target.files);
|
||
|
}
|
||
|
};
|
||
|
|
||
|
const handleClick = () => {
|
||
|
fileElement.current?.click();
|
||
|
};
|
||
|
|
||
|
if (unavailable) {
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
const src = onlyImages(attachmentTypes)
|
||
|
? require('@tabler/icons/icons/photo.svg')
|
||
|
: require('@tabler/icons/icons/paperclip.svg');
|
||
|
|
||
|
return (
|
||
|
<div>
|
||
|
<IconButton
|
||
|
src={src}
|
||
|
className='text-gray-400 hover:text-gray-600'
|
||
|
title={intl.formatMessage(messages.upload)}
|
||
|
disabled={disabled}
|
||
|
onClick={handleClick}
|
||
|
/>
|
||
|
|
||
|
<label>
|
||
|
<span className='sr-only'>{intl.formatMessage(messages.upload)}</span>
|
||
|
<input
|
||
|
key={resetFileKey}
|
||
|
ref={fileElement}
|
||
|
type='file'
|
||
|
multiple
|
||
|
accept={attachmentTypes && attachmentTypes.toArray().join(',')}
|
||
|
onChange={handleChange}
|
||
|
disabled={disabled}
|
||
|
className='hidden'
|
||
|
/>
|
||
|
</label>
|
||
|
</div>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default UploadButton;
|