import React from 'react'; import { useIntl, defineMessages, FormattedMessage } from 'react-intl'; import { changeComposeSensitivity } from 'soapbox/actions/compose'; import { FormGroup, Checkbox } from 'soapbox/components/ui'; import { useAppSelector, useAppDispatch } from 'soapbox/hooks'; const messages = defineMessages({ marked: { id: 'compose_form.sensitive.marked', defaultMessage: 'Media is marked as sensitive' }, unmarked: { id: 'compose_form.sensitive.unmarked', defaultMessage: 'Media is not marked as sensitive' }, }); /** Button to mark own media as sensitive. */ const SensitiveButton: React.FC = () => { const intl = useIntl(); const dispatch = useAppDispatch(); const active = useAppSelector(state => state.compose.get('sensitive') === true); const disabled = useAppSelector(state => state.compose.get('spoiler') === true); const onClick = () => { dispatch(changeComposeSensitivity()); }; return (