112 lines
3.5 KiB
TypeScript
112 lines
3.5 KiB
TypeScript
import React from 'react';
|
|
import { FormattedMessage } from 'react-intl';
|
|
import Toggle from 'react-toggle';
|
|
|
|
import { muteAccount } from 'soapbox/actions/accounts';
|
|
import { closeModal } from 'soapbox/actions/modals';
|
|
import { toggleHideNotifications, changeMuteDuration } from 'soapbox/actions/mutes';
|
|
import { Modal, HStack, Stack, Text } from 'soapbox/components/ui';
|
|
import DurationSelector from 'soapbox/features/compose/components/polls/duration-selector';
|
|
import { useAppDispatch, useAppSelector, useFeatures } from 'soapbox/hooks';
|
|
import { makeGetAccount } from 'soapbox/selectors';
|
|
|
|
const getAccount = makeGetAccount();
|
|
|
|
const MuteModal = () => {
|
|
const dispatch = useAppDispatch();
|
|
|
|
const account = useAppSelector((state) => getAccount(state, state.mutes.new.accountId!));
|
|
const notifications = useAppSelector((state) => state.mutes.new.notifications);
|
|
const duration = useAppSelector((state) => state.mutes.new.duration);
|
|
const mutesDuration = useFeatures().mutesDuration;
|
|
|
|
if (!account) return null;
|
|
|
|
const handleClick = () => {
|
|
dispatch(closeModal());
|
|
dispatch(muteAccount(account.id, notifications, duration));
|
|
};
|
|
|
|
const handleCancel = () => {
|
|
dispatch(closeModal());
|
|
};
|
|
|
|
const toggleNotifications = () => {
|
|
dispatch(toggleHideNotifications());
|
|
};
|
|
|
|
const handleChangeMuteDuration = (expiresIn: number): void => {
|
|
dispatch(changeMuteDuration(expiresIn));
|
|
};
|
|
|
|
const toggleAutoExpire = () => handleChangeMuteDuration(duration ? 0 : 2 * 60 * 60 * 24);
|
|
|
|
return (
|
|
<Modal
|
|
title={
|
|
<FormattedMessage
|
|
id='confirmations.mute.heading'
|
|
defaultMessage='Mute @{name}'
|
|
values={{ name: account.acct }}
|
|
/>
|
|
}
|
|
onClose={handleCancel}
|
|
confirmationAction={handleClick}
|
|
confirmationText={<FormattedMessage id='confirmations.mute.confirm' defaultMessage='Mute' />}
|
|
cancelText={<FormattedMessage id='confirmation_modal.cancel' defaultMessage='Cancel' />}
|
|
cancelAction={handleCancel}
|
|
>
|
|
<Stack space={4}>
|
|
<Text>
|
|
<FormattedMessage
|
|
id='confirmations.mute.message'
|
|
defaultMessage='Are you sure you want to mute {name}?'
|
|
values={{ name: <strong>@{account.acct}</strong> }}
|
|
/>
|
|
</Text>
|
|
|
|
<label>
|
|
<HStack alignItems='center' space={2}>
|
|
<Text tag='span' theme='muted'>
|
|
<FormattedMessage id='mute_modal.hide_notifications' defaultMessage='Hide notifications from this user?' />
|
|
</Text>
|
|
|
|
<Toggle
|
|
checked={notifications}
|
|
onChange={toggleNotifications}
|
|
icons={false}
|
|
/>
|
|
</HStack>
|
|
</label>
|
|
|
|
{mutesDuration && (
|
|
<>
|
|
<label>
|
|
<HStack alignItems='center' space={2}>
|
|
<Text tag='span'>
|
|
<FormattedMessage id='mute_modal.auto_expire' defaultMessage='Automatically expire mute?' />
|
|
</Text>
|
|
|
|
<Toggle
|
|
checked={duration !== 0}
|
|
onChange={toggleAutoExpire}
|
|
icons={false}
|
|
/>
|
|
</HStack>
|
|
</label>
|
|
|
|
{duration !== 0 && (
|
|
<Stack space={2}>
|
|
<Text weight='medium'><FormattedMessage id='mute_modal.duration' defaultMessage='Duration' />: </Text>
|
|
|
|
<DurationSelector onDurationChange={handleChangeMuteDuration} />
|
|
</Stack>
|
|
)}
|
|
</>
|
|
)}
|
|
</Stack>
|
|
</Modal>
|
|
);
|
|
};
|
|
|
|
export default MuteModal;
|