41 lines
1 KiB
TypeScript
41 lines
1 KiB
TypeScript
import { openModal } from './modals';
|
|
|
|
import type { Account } from 'soapbox/schemas';
|
|
import type { AppDispatch } from 'soapbox/store';
|
|
import type { Account as AccountEntity } from 'soapbox/types/entities';
|
|
|
|
const MUTES_INIT_MODAL = 'MUTES_INIT_MODAL';
|
|
const MUTES_TOGGLE_HIDE_NOTIFICATIONS = 'MUTES_TOGGLE_HIDE_NOTIFICATIONS';
|
|
const MUTES_CHANGE_DURATION = 'MUTES_CHANGE_DURATION';
|
|
|
|
const initMuteModal = (account: AccountEntity | Account) =>
|
|
(dispatch: AppDispatch) => {
|
|
dispatch({
|
|
type: MUTES_INIT_MODAL,
|
|
account,
|
|
});
|
|
|
|
dispatch(openModal('MUTE'));
|
|
};
|
|
|
|
const toggleHideNotifications = () =>
|
|
(dispatch: AppDispatch) => {
|
|
dispatch({ type: MUTES_TOGGLE_HIDE_NOTIFICATIONS });
|
|
};
|
|
|
|
const changeMuteDuration = (duration: number) =>
|
|
(dispatch: AppDispatch) => {
|
|
dispatch({
|
|
type: MUTES_CHANGE_DURATION,
|
|
duration,
|
|
});
|
|
};
|
|
|
|
export {
|
|
MUTES_INIT_MODAL,
|
|
MUTES_TOGGLE_HIDE_NOTIFICATIONS,
|
|
MUTES_CHANGE_DURATION,
|
|
initMuteModal,
|
|
toggleHideNotifications,
|
|
changeMuteDuration,
|
|
};
|