fix: toast stripped function fetch cannot run on import

pull/3206/head
Audric Ackermann 8 months ago
parent 5d9bb47c93
commit 718b814902

@ -3,7 +3,7 @@ import { useDispatch } from 'react-redux';
import styled from 'styled-components'; import styled from 'styled-components';
import { clearOurAvatar, uploadOurAvatar } from '../../interactions/conversationInteractions'; import { clearOurAvatar, uploadOurAvatar } from '../../interactions/conversationInteractions';
import { ToastUtils } from '../../session/utils'; import { ToastUtils } from '../../session/utils';
import { editProfileModal, updateEditProfilePictureModel } from '../../state/ducks/modalDialog'; import { editProfileModal, updateEditProfilePictureModal } from '../../state/ducks/modalDialog';
import type { EditProfilePictureModalProps } from '../../types/ReduxTypes'; import type { EditProfilePictureModalProps } from '../../types/ReduxTypes';
import { pickFileForAvatar } from '../../types/attachments/VisualAttachment'; import { pickFileForAvatar } from '../../types/attachments/VisualAttachment';
import { SessionWrapperModal } from '../SessionWrapperModal'; import { SessionWrapperModal } from '../SessionWrapperModal';
@ -75,7 +75,7 @@ export const EditProfilePictureModal = (props: EditProfilePictureModalProps) =>
const { avatarPath, profileName, ourId } = props; const { avatarPath, profileName, ourId } = props;
const closeDialog = () => { const closeDialog = () => {
dispatch(updateEditProfilePictureModel(null)); dispatch(updateEditProfilePictureModal(null));
dispatch(editProfileModal({})); dispatch(editProfileModal({}));
}; };
@ -95,7 +95,7 @@ export const EditProfilePictureModal = (props: EditProfilePictureModalProps) =>
await uploadProfileAvatar(newAvatarObjectUrl); await uploadProfileAvatar(newAvatarObjectUrl);
setLoading(false); setLoading(false);
dispatch(updateEditProfilePictureModel(null)); dispatch(updateEditProfilePictureModal(null));
}; };
const handleRemove = async () => { const handleRemove = async () => {
@ -103,7 +103,7 @@ export const EditProfilePictureModal = (props: EditProfilePictureModalProps) =>
await clearOurAvatar(); await clearOurAvatar();
setNewAvatarObjectUrl(null); setNewAvatarObjectUrl(null);
setLoading(false); setLoading(false);
dispatch(updateEditProfilePictureModel(null)); dispatch(updateEditProfilePictureModal(null));
}; };
return ( return (

@ -2,7 +2,7 @@ import { isEmpty } from 'lodash';
import { useDispatch } from 'react-redux'; import { useDispatch } from 'react-redux';
import styled from 'styled-components'; import styled from 'styled-components';
import { SettingsKey } from '../../data/settings-key'; import { SettingsKey } from '../../data/settings-key';
import { updateHideRecoveryPasswordModel } from '../../state/ducks/modalDialog'; import { updateHideRecoveryPasswordModal } from '../../state/ducks/modalDialog';
import { showSettingsSection } from '../../state/ducks/section'; import { showSettingsSection } from '../../state/ducks/section';
import { SessionWrapperModal } from '../SessionWrapperModal'; import { SessionWrapperModal } from '../SessionWrapperModal';
import { Flex } from '../basic/Flex'; import { Flex } from '../basic/Flex';
@ -25,7 +25,7 @@ export function HideRecoveryPasswordDialog(props: HideRecoveryPasswordDialogProp
const dispatch = useDispatch(); const dispatch = useDispatch();
const onClose = () => { const onClose = () => {
dispatch(updateHideRecoveryPasswordModel(null)); dispatch(updateHideRecoveryPasswordModal(null));
}; };
const onConfirmation = async () => { const onConfirmation = async () => {
@ -44,7 +44,7 @@ export function HideRecoveryPasswordDialog(props: HideRecoveryPasswordDialogProp
text: window.i18n('theContinue'), text: window.i18n('theContinue'),
buttonColor: SessionButtonColor.Danger, buttonColor: SessionButtonColor.Danger,
onClick: () => { onClick: () => {
dispatch(updateHideRecoveryPasswordModel({ state: 'secondWarning' })); dispatch(updateHideRecoveryPasswordModal({ state: 'secondWarning' }));
}, },
dataTestId: 'session-confirm-ok-button', dataTestId: 'session-confirm-ok-button',
} }

@ -12,6 +12,7 @@ import {
getInviteContactModal, getInviteContactModal,
getLightBoxOptions, getLightBoxOptions,
getOnionPathDialog, getOnionPathDialog,
getOpenUrlModalState,
getReactClearAllDialog, getReactClearAllDialog,
getReactListDialog, getReactListDialog,
getRemoveModeratorsModal, getRemoveModeratorsModal,
@ -39,6 +40,7 @@ import { UpdateGroupMembersDialog } from './UpdateGroupMembersDialog';
import { UpdateGroupNameDialog } from './UpdateGroupNameDialog'; import { UpdateGroupNameDialog } from './UpdateGroupNameDialog';
import { UserDetailsDialog } from './UserDetailsDialog'; import { UserDetailsDialog } from './UserDetailsDialog';
import { EditProfileDialog } from './edit-profile/EditProfileDialog'; import { EditProfileDialog } from './edit-profile/EditProfileDialog';
import { OpenUrlModal } from './OpenUrlModal';
export const ModalContainer = () => { export const ModalContainer = () => {
const confirmModalState = useSelector(getConfirmModal); const confirmModalState = useSelector(getConfirmModal);
@ -59,6 +61,7 @@ export const ModalContainer = () => {
const reactClearAllModalState = useSelector(getReactClearAllDialog); const reactClearAllModalState = useSelector(getReactClearAllDialog);
const editProfilePictureModalState = useSelector(getEditProfilePictureModalState); const editProfilePictureModalState = useSelector(getEditProfilePictureModalState);
const hideRecoveryPasswordModalState = useSelector(getHideRecoveryPasswordModalState); const hideRecoveryPasswordModalState = useSelector(getHideRecoveryPasswordModalState);
const openUrlModalState = useSelector(getOpenUrlModalState);
const lightBoxOptions = useSelector(getLightBoxOptions); const lightBoxOptions = useSelector(getLightBoxOptions);
return ( return (
@ -87,6 +90,7 @@ export const ModalContainer = () => {
{hideRecoveryPasswordModalState && ( {hideRecoveryPasswordModalState && (
<HideRecoveryPasswordDialog {...hideRecoveryPasswordModalState} /> <HideRecoveryPasswordDialog {...hideRecoveryPasswordModalState} />
)} )}
{openUrlModalState && <OpenUrlModal {...openUrlModalState} />}
{lightBoxOptions && <LightboxGallery {...lightBoxOptions} />} {lightBoxOptions && <LightboxGallery {...lightBoxOptions} />}
</> </>
); );

@ -0,0 +1,71 @@
import { shell } from 'electron';
import { isEmpty } from 'lodash';
import { useDispatch } from 'react-redux';
import styled from 'styled-components';
import { MessageInteraction } from '../../interactions';
import { OpenUrlModalState, updateOpenUrlModal } from '../../state/ducks/modalDialog';
import { SessionWrapperModal } from '../SessionWrapperModal';
import { Flex } from '../basic/Flex';
import { I18n } from '../basic/I18n';
import { SessionButton, SessionButtonColor, SessionButtonType } from '../basic/SessionButton';
import { SpacerMD } from '../basic/Text';
const StyledDescriptionContainer = styled.div`
max-height: 150px;
overflow-y: auto;
`;
export function OpenUrlModal(props: OpenUrlModalState) {
const dispatch = useDispatch();
// console.warn('props', props);
if (!props || isEmpty(props) || !props.urlToOpen) {
return null;
}
const url = props.urlToOpen;
function onClose() {
dispatch(updateOpenUrlModal(null));
}
function onClickOpen() {
void shell.openExternal(url);
onClose();
}
function onClickCopy() {
MessageInteraction.copyBodyToClipboard(url);
onClose();
}
return (
<SessionWrapperModal
title={window.i18n('urlOpen')}
onClose={onClose}
showExitIcon={false}
showHeader={true}
additionalClassName="no-body-padding"
>
<StyledDescriptionContainer>
<I18n token={'urlOpenDescription'} args={{ url }} />
</StyledDescriptionContainer>
<SpacerMD />
<Flex container={true} justifyContent="center" alignItems="center" width="100%">
<SessionButton
text={window.i18n('urlOpen')}
buttonColor={SessionButtonColor.Danger}
buttonType={SessionButtonType.Ghost}
onClick={onClickOpen}
dataTestId="session-confirm-ok-button"
/>
<SessionButton
text={window.i18n('urlCopy')}
buttonColor={SessionButtonColor.Primary}
buttonType={SessionButtonType.Ghost}
onClick={onClickCopy}
dataTestId="session-confirm-cancel-button"
/>
</Flex>
</SessionWrapperModal>
);
}

@ -1,12 +1,11 @@
import { shell } from 'electron';
import { Dispatch, useEffect, useState } from 'react'; import { Dispatch, useEffect, useState } from 'react';
import { useDispatch } from 'react-redux'; import { useDispatch } from 'react-redux';
import useKey from 'react-use/lib/useKey'; import useKey from 'react-use/lib/useKey';
import styled from 'styled-components'; import styled from 'styled-components';
import { useLastMessage } from '../../hooks/useParamSelector'; import { useLastMessage } from '../../hooks/useParamSelector';
import { MessageInteraction } from '../../interactions';
import { updateConversationInteractionState } from '../../interactions/conversationInteractions'; import { updateConversationInteractionState } from '../../interactions/conversationInteractions';
import { updateConfirmModal } from '../../state/ducks/modalDialog'; import { ConversationInteractionStatus } from '../../interactions/types';
import { updateConfirmModal, updateOpenUrlModal } from '../../state/ducks/modalDialog';
import { SessionWrapperModal } from '../SessionWrapperModal'; import { SessionWrapperModal } from '../SessionWrapperModal';
import { SessionButton, SessionButtonColor, SessionButtonType } from '../basic/SessionButton'; import { SessionButton, SessionButtonColor, SessionButtonType } from '../basic/SessionButton';
import { SessionHtmlRenderer } from '../basic/SessionHTMLRenderer'; import { SessionHtmlRenderer } from '../basic/SessionHTMLRenderer';
@ -14,7 +13,6 @@ import { SessionRadioGroup, SessionRadioItems } from '../basic/SessionRadioGroup
import { SpacerLG } from '../basic/Text'; import { SpacerLG } from '../basic/Text';
import { SessionIcon, SessionIconSize, SessionIconType } from '../icon'; import { SessionIcon, SessionIconSize, SessionIconType } from '../icon';
import { SessionSpinner } from '../loading'; import { SessionSpinner } from '../loading';
import { ConversationInteractionStatus } from '../../interactions/types';
const StyledSubText = styled(SessionHtmlRenderer)<{ textLength: number }>` const StyledSubText = styled(SessionHtmlRenderer)<{ textLength: number }>`
font-size: var(--font-size-md); font-size: var(--font-size-md);
@ -218,25 +216,9 @@ export const SessionConfirm = (props: SessionConfirmDialogProps) => {
}; };
export const showLinkVisitWarningDialog = (urlToOpen: string, dispatch: Dispatch<any>) => { export const showLinkVisitWarningDialog = (urlToOpen: string, dispatch: Dispatch<any>) => {
function onClickOk() {
void shell.openExternal(urlToOpen);
}
dispatch( dispatch(
updateConfirmModal({ updateOpenUrlModal({
title: window.i18n('urlOpen'), urlToOpen,
message: window.i18n('urlOpenDescription', { url: urlToOpen }),
okText: window.i18n('open'),
okTheme: SessionButtonColor.Primary,
cancelText: window.i18n('copy'),
showExitIcon: true,
onClickOk,
onClickClose: () => {
dispatch(updateConfirmModal(null));
},
onClickCancel: () => {
MessageInteraction.copyBodyToClipboard(urlToOpen);
},
}) })
); );
}; };

@ -11,7 +11,7 @@ import { useHotkey } from '../../../hooks/useHotkey';
import { useOurAvatarPath, useOurConversationUsername } from '../../../hooks/useParamSelector'; import { useOurAvatarPath, useOurConversationUsername } from '../../../hooks/useParamSelector';
import { ProfileManager } from '../../../session/profile_manager/ProfileManager'; import { ProfileManager } from '../../../session/profile_manager/ProfileManager';
import LIBSESSION_CONSTANTS from '../../../session/utils/libsession/libsession_constants'; import LIBSESSION_CONSTANTS from '../../../session/utils/libsession/libsession_constants';
import { editProfileModal, updateEditProfilePictureModel } from '../../../state/ducks/modalDialog'; import { editProfileModal, updateEditProfilePictureModal } from '../../../state/ducks/modalDialog';
import { SessionWrapperModal } from '../../SessionWrapperModal'; import { SessionWrapperModal } from '../../SessionWrapperModal';
import { Flex } from '../../basic/Flex'; import { Flex } from '../../basic/Flex';
import { SessionButton } from '../../basic/SessionButton'; import { SessionButton } from '../../basic/SessionButton';
@ -232,7 +232,7 @@ export const EditProfileDialog = () => {
} }
closeDialog(); closeDialog();
dispatch( dispatch(
updateEditProfilePictureModel({ updateEditProfilePictureModal({
avatarPath, avatarPath,
profileName, profileName,
ourId, ourId,

@ -7,7 +7,7 @@ import { useIconToImageURL } from '../../../hooks/useIconToImageURL';
import { usePasswordModal } from '../../../hooks/usePasswordModal'; import { usePasswordModal } from '../../../hooks/usePasswordModal';
import { mnDecode } from '../../../session/crypto/mnemonic'; import { mnDecode } from '../../../session/crypto/mnemonic';
import { import {
updateHideRecoveryPasswordModel, updateHideRecoveryPasswordModal,
updateLightBoxOptions, updateLightBoxOptions,
} from '../../../state/ducks/modalDialog'; } from '../../../state/ducks/modalDialog';
import { showSettingsSection } from '../../../state/ducks/section'; import { showSettingsSection } from '../../../state/ducks/section';
@ -201,7 +201,7 @@ export const SettingsCategoryRecoveryPassword = () => {
title={window.i18n('recoveryPasswordHidePermanently')} title={window.i18n('recoveryPasswordHidePermanently')}
description={window.i18n('recoveryPasswordHideRecoveryPasswordDescription')} description={window.i18n('recoveryPasswordHideRecoveryPasswordDescription')}
onClick={() => { onClick={() => {
dispatch(updateHideRecoveryPasswordModel({ state: 'firstWarning' })); dispatch(updateHideRecoveryPasswordModal({ state: 'firstWarning' }));
}} }}
buttonText={window.i18n('hide')} buttonText={window.i18n('hide')}
buttonColor={SessionButtonColor.Danger} buttonColor={SessionButtonColor.Danger}

@ -35,12 +35,6 @@ export function pushToastInfo(
); );
} }
/**
* We are rendering a toast. A toast is only rendering a string and no html at all.
* We have to strip the html tags from the strings we are given.
*/
const getStrippedI18n = window.i18n.stripped;
export function pushToastSuccess(id: string, title: string, description?: string) { export function pushToastSuccess(id: string, title: string, description?: string) {
toast.success( toast.success(
<SessionToast title={title} description={description} type={SessionToastType.Success} />, <SessionToast title={title} description={description} type={SessionToastType.Success} />,
@ -52,70 +46,70 @@ export function pushLoadAttachmentFailure(message?: string) {
if (message) { if (message) {
pushToastError( pushToastError(
'unableToLoadAttachment', 'unableToLoadAttachment',
`${getStrippedI18n('attachmentsErrorLoad')} ${message}` `${window.i18n.stripped('attachmentsErrorLoad')} ${message}`
); );
} else { } else {
pushToastError('unableToLoadAttachment', getStrippedI18n('attachmentsErrorLoad')); pushToastError('unableToLoadAttachment', window.i18n.stripped('attachmentsErrorLoad'));
} }
} }
export function pushFileSizeErrorAsByte() { export function pushFileSizeErrorAsByte() {
pushToastError('fileSizeWarning', getStrippedI18n('attachmentsErrorSize')); pushToastError('fileSizeWarning', window.i18n.stripped('attachmentsErrorSize'));
} }
export function pushMultipleNonImageError() { export function pushMultipleNonImageError() {
pushToastError('attachmentsErrorTypes', getStrippedI18n('attachmentsErrorTypes')); pushToastError('attachmentsErrorTypes', window.i18n.stripped('attachmentsErrorTypes'));
} }
export function pushCannotMixError() { export function pushCannotMixError() {
pushToastError('attachmentsErrorTypes', getStrippedI18n('attachmentsErrorTypes')); pushToastError('attachmentsErrorTypes', window.i18n.stripped('attachmentsErrorTypes'));
} }
export function pushMaximumAttachmentsError() { export function pushMaximumAttachmentsError() {
pushToastError('attachmentsErrorNumber', getStrippedI18n('attachmentsErrorNumber')); pushToastError('attachmentsErrorNumber', window.i18n.stripped('attachmentsErrorNumber'));
} }
export function pushCopiedToClipBoard() { export function pushCopiedToClipBoard() {
pushToastInfo('copiedToClipboard', getStrippedI18n('copied')); pushToastInfo('copiedToClipboard', window.i18n.stripped('copied'));
} }
export function pushRestartNeeded() { export function pushRestartNeeded() {
pushToastInfo('restartNeeded', getStrippedI18n('settingsRestartDescription')); pushToastInfo('restartNeeded', window.i18n.stripped('settingsRestartDescription'));
} }
export function pushAlreadyMemberOpenGroup() { export function pushAlreadyMemberOpenGroup() {
pushToastInfo('publicChatExists', getStrippedI18n('communityJoinedAlready')); pushToastInfo('publicChatExists', window.i18n.stripped('communityJoinedAlready'));
} }
export function pushUserBanSuccess() { export function pushUserBanSuccess() {
pushToastSuccess('userBanned', getStrippedI18n('banUserBanned')); pushToastSuccess('userBanned', window.i18n.stripped('banUserBanned'));
} }
export function pushUserBanFailure() { export function pushUserBanFailure() {
pushToastError('userBanFailed', getStrippedI18n('banErrorFailed')); pushToastError('userBanFailed', window.i18n.stripped('banErrorFailed'));
} }
export function pushUserUnbanSuccess() { export function pushUserUnbanSuccess() {
pushToastSuccess('userUnbanned', getStrippedI18n('banUnbanUserUnbanned')); pushToastSuccess('userUnbanned', window.i18n.stripped('banUnbanUserUnbanned'));
} }
export function pushUserUnbanFailure() { export function pushUserUnbanFailure() {
pushToastError('userUnbanFailed', getStrippedI18n('banUnbanErrorFailed')); pushToastError('userUnbanFailed', window.i18n.stripped('banUnbanErrorFailed'));
} }
export function pushMessageDeleteForbidden() { export function pushMessageDeleteForbidden() {
pushToastError( pushToastError(
'messageDeletionForbidden', 'messageDeletionForbidden',
getStrippedI18n('deleteafterMessageDeletionStandardisationmessageDeletionForbidden') window.i18n.stripped('deleteafterMessageDeletionStandardisationmessageDeletionForbidden')
); );
} }
export function pushUnableToCall() { export function pushUnableToCall() {
pushToastError('unableToCall', getStrippedI18n('callsCannotStart')); pushToastError('unableToCall', window.i18n.stripped('callsCannotStart'));
} }
export function pushedMissedCall(userName: string) { export function pushedMissedCall(userName: string) {
pushToastInfo('missedCall', getStrippedI18n('callsMissedCallFrom', { name: userName })); pushToastInfo('missedCall', window.i18n.stripped('callsMissedCallFrom', { name: userName }));
} }
const openPermissionsSettings = () => { const openPermissionsSettings = () => {
@ -127,8 +121,10 @@ export function pushedMissedCallCauseOfPermission(conversationName: string) {
const id = 'missedCallPermission'; const id = 'missedCallPermission';
toast.info( toast.info(
<SessionToast <SessionToast
title={getStrippedI18n('callsMissedCallFrom', { name: conversationName })} title={window.i18n.stripped('callsMissedCallFrom', { name: conversationName })}
description={getStrippedI18n('callsYouMissedCallPermissions', { name: conversationName })} description={window.i18n.stripped('callsYouMissedCallPermissions', {
name: conversationName,
})}
type={SessionToastType.Info} type={SessionToastType.Info}
onToastClick={openPermissionsSettings} onToastClick={openPermissionsSettings}
/>, />,
@ -139,8 +135,8 @@ export function pushedMissedCallCauseOfPermission(conversationName: string) {
export function pushVideoCallPermissionNeeded() { export function pushVideoCallPermissionNeeded() {
pushToastInfo( pushToastInfo(
'videoCallPermissionNeeded', 'videoCallPermissionNeeded',
getStrippedI18n('callsPermissionsRequired'), window.i18n.stripped('callsPermissionsRequired'),
getStrippedI18n('callsPermissionsRequiredDescription'), window.i18n.stripped('callsPermissionsRequiredDescription'),
openPermissionsSettings openPermissionsSettings
); );
} }
@ -148,46 +144,46 @@ export function pushVideoCallPermissionNeeded() {
export function pushAudioPermissionNeeded() { export function pushAudioPermissionNeeded() {
pushToastInfo( pushToastInfo(
'audioPermissionNeeded', 'audioPermissionNeeded',
getStrippedI18n('permissionsMicrophoneAccessRequiredDesktop'), window.i18n.stripped('permissionsMicrophoneAccessRequiredDesktop'),
undefined, undefined,
openPermissionsSettings openPermissionsSettings
); );
} }
export function pushOriginalNotFound() { export function pushOriginalNotFound() {
pushToastError('messageErrorOriginal', getStrippedI18n('messageErrorOriginal')); pushToastError('messageErrorOriginal', window.i18n.stripped('messageErrorOriginal'));
} }
export function pushTooManyMembers() { export function pushTooManyMembers() {
pushToastError('groupAddMemberMaximum', getStrippedI18n('groupAddMemberMaximum')); pushToastError('groupAddMemberMaximum', window.i18n.stripped('groupAddMemberMaximum'));
} }
export function pushMessageRequestPending() { export function pushMessageRequestPending() {
pushToastInfo('messageRequestPending', getStrippedI18n('messageRequestPending')); pushToastInfo('messageRequestPending', window.i18n.stripped('messageRequestPending'));
} }
export function pushUnblockToSend() { export function pushUnblockToSend() {
pushToastInfo('unblockToSend', getStrippedI18n('blockBlockedDescription')); pushToastInfo('unblockToSend', window.i18n.stripped('blockBlockedDescription'));
} }
export function pushYouLeftTheGroup() { export function pushYouLeftTheGroup() {
pushToastError('youLeftTheGroup', getStrippedI18n('groupMemberYouLeft')); pushToastError('youLeftTheGroup', window.i18n.stripped('groupMemberYouLeft'));
} }
export function someDeletionsFailed(count: number) { export function someDeletionsFailed(count: number) {
pushToastWarning('deletionError', getStrippedI18n('deleteMessagesFailed', { count })); pushToastWarning('deletionError', window.i18n.stripped('deleteMessagesFailed', { count }));
} }
export function pushDeleted() { export function pushDeleted() {
pushToastSuccess('deleted', getStrippedI18n('deleteMessagesDeleted'), undefined); pushToastSuccess('deleted', window.i18n.stripped('deleteMessagesDeleted'), undefined);
} }
export function pushCannotRemoveCreatorFromGroup() { export function pushCannotRemoveCreatorFromGroup() {
pushToastWarning('adminCannotBeRemoved', getStrippedI18n('adminCannotBeRemoved')); pushToastWarning('adminCannotBeRemoved', window.i18n.stripped('adminCannotBeRemoved'));
} }
export function pushFailedToAddAsModerator() { export function pushFailedToAddAsModerator() {
pushToastWarning('adminPromotionFailed', getStrippedI18n('adminPromotionFailed')); pushToastWarning('adminPromotionFailed', window.i18n.stripped('adminPromotionFailed'));
} }
export function pushFailedToRemoveFromModerator(names: Array<string>) { export function pushFailedToRemoveFromModerator(names: Array<string>) {
@ -196,18 +192,18 @@ export function pushFailedToRemoveFromModerator(names: Array<string>) {
case 0: case 0:
throw new Error('pushFailedToRemoveFromModerator invalid case error'); throw new Error('pushFailedToRemoveFromModerator invalid case error');
case 1: case 1:
localizedString = getStrippedI18n('adminRemoveFailed', { localizedString = window.i18n.stripped('adminRemoveFailed', {
name: names[0], name: names[0],
}); });
break; break;
case 2: case 2:
localizedString = getStrippedI18n('adminRemoveFailedOther', { localizedString = window.i18n.stripped('adminRemoveFailedOther', {
name: names[0], name: names[0],
other_name: names[1], other_name: names[1],
}); });
break; break;
default: default:
localizedString = getStrippedI18n('adminRemoveFailedMultiple', { localizedString = window.i18n.stripped('adminRemoveFailedMultiple', {
name: names[0], name: names[0],
count: names.length - 1, count: names.length - 1,
}); });
@ -217,7 +213,7 @@ export function pushFailedToRemoveFromModerator(names: Array<string>) {
} }
export function pushUserAddedToModerators(name: string) { export function pushUserAddedToModerators(name: string) {
pushToastSuccess('adminPromotedToAdmin', getStrippedI18n('adminPromotedToAdmin', { name })); pushToastSuccess('adminPromotedToAdmin', window.i18n.stripped('adminPromotedToAdmin', { name }));
} }
export function pushUserRemovedFromModerators(names: Array<string>) { export function pushUserRemovedFromModerators(names: Array<string>) {
@ -226,18 +222,18 @@ export function pushUserRemovedFromModerators(names: Array<string>) {
case 0: case 0:
throw new Error('pushUserRemovedFromModerators invalid case error'); throw new Error('pushUserRemovedFromModerators invalid case error');
case 1: case 1:
localizedString = getStrippedI18n('adminRemovedUser', { localizedString = window.i18n.stripped('adminRemovedUser', {
name: names[0], name: names[0],
}); });
break; break;
case 2: case 2:
localizedString = getStrippedI18n('adminRemovedUserOther', { localizedString = window.i18n.stripped('adminRemovedUserOther', {
name: names[0], name: names[0],
other_name: names[1], other_name: names[1],
}); });
break; break;
default: default:
localizedString = getStrippedI18n('adminRemovedUserMultiple', { localizedString = window.i18n.stripped('adminRemovedUserMultiple', {
name: names[0], name: names[0],
count: names.length - 1, count: names.length - 1,
}); });
@ -248,23 +244,23 @@ export function pushUserRemovedFromModerators(names: Array<string>) {
} }
export function pushInvalidPubKey() { export function pushInvalidPubKey() {
pushToastSuccess('accountIdErrorInvalid', getStrippedI18n('accountIdErrorInvalid')); pushToastSuccess('accountIdErrorInvalid', window.i18n.stripped('accountIdErrorInvalid'));
} }
export function pushNoCameraFound() { export function pushNoCameraFound() {
pushToastWarning('noCameraFound', getStrippedI18n('cameraErrorNotFound')); pushToastWarning('noCameraFound', window.i18n.stripped('cameraErrorNotFound'));
} }
export function pushNoAudioInputFound() { export function pushNoAudioInputFound() {
pushToastWarning('noAudioInputFound', getStrippedI18n('audioNoInput')); pushToastWarning('noAudioInputFound', window.i18n.stripped('audioNoInput'));
} }
export function pushNoAudioOutputFound() { export function pushNoAudioOutputFound() {
pushToastWarning('noAudioOutputFound', getStrippedI18n('audioNoOutput')); pushToastWarning('noAudioOutputFound', window.i18n.stripped('audioNoOutput'));
} }
export function pushNoMediaUntilApproved() { export function pushNoMediaUntilApproved() {
pushToastError('noMediaUntilApproved', getStrippedI18n('messageRequestPendingDescription')); pushToastError('noMediaUntilApproved', window.i18n.stripped('messageRequestPendingDescription'));
} }
export function pushRateLimitHitReactions() { export function pushRateLimitHitReactions() {

@ -24,6 +24,7 @@ export type EditProfileModalState = object | null;
export type OnionPathModalState = EditProfileModalState; export type OnionPathModalState = EditProfileModalState;
export type EnterPasswordModalState = EnterPasswordModalProps | null; export type EnterPasswordModalState = EnterPasswordModalProps | null;
export type DeleteAccountModalState = EditProfileModalState; export type DeleteAccountModalState = EditProfileModalState;
export type OpenUrlModalState = { urlToOpen: string } | null;
export type SessionPasswordModalState = { passwordAction: PasswordAction; onOk: () => void } | null; export type SessionPasswordModalState = { passwordAction: PasswordAction; onOk: () => void } | null;
@ -68,6 +69,7 @@ export type ModalState = {
reactClearAllModalState: ReactModalsState; reactClearAllModalState: ReactModalsState;
editProfilePictureModalState: EditProfilePictureModalState; editProfilePictureModalState: EditProfilePictureModalState;
hideRecoveryPasswordModalState: HideRecoveryPasswordModalState; hideRecoveryPasswordModalState: HideRecoveryPasswordModalState;
openUrlModal: OpenUrlModalState;
lightBoxOptions: LightBoxOptions; lightBoxOptions: LightBoxOptions;
}; };
@ -90,6 +92,7 @@ export const initialModalState: ModalState = {
reactClearAllModalState: null, reactClearAllModalState: null,
editProfilePictureModalState: null, editProfilePictureModalState: null,
hideRecoveryPasswordModalState: null, hideRecoveryPasswordModalState: null,
openUrlModal: null,
lightBoxOptions: null, lightBoxOptions: null,
}; };
@ -145,12 +148,15 @@ const ModalSlice = createSlice({
updateReactClearAllModal(state, action: PayloadAction<ReactModalsState>) { updateReactClearAllModal(state, action: PayloadAction<ReactModalsState>) {
return { ...state, reactClearAllModalState: action.payload }; return { ...state, reactClearAllModalState: action.payload };
}, },
updateEditProfilePictureModel(state, action: PayloadAction<EditProfilePictureModalState>) { updateEditProfilePictureModal(state, action: PayloadAction<EditProfilePictureModalState>) {
return { ...state, editProfilePictureModalState: action.payload }; return { ...state, editProfilePictureModalState: action.payload };
}, },
updateHideRecoveryPasswordModel(state, action: PayloadAction<HideRecoveryPasswordModalState>) { updateHideRecoveryPasswordModal(state, action: PayloadAction<HideRecoveryPasswordModalState>) {
return { ...state, hideRecoveryPasswordModalState: action.payload }; return { ...state, hideRecoveryPasswordModalState: action.payload };
}, },
updateOpenUrlModal(state, action: PayloadAction<OpenUrlModalState>) {
return { ...state, updateOpenUrlModal: action.payload };
},
updateLightBoxOptions(state, action: PayloadAction<LightBoxOptions>) { updateLightBoxOptions(state, action: PayloadAction<LightBoxOptions>) {
const lightBoxOptions = action.payload; const lightBoxOptions = action.payload;
@ -189,8 +195,9 @@ export const {
updateBanOrUnbanUserModal, updateBanOrUnbanUserModal,
updateReactListModal, updateReactListModal,
updateReactClearAllModal, updateReactClearAllModal,
updateEditProfilePictureModel, updateEditProfilePictureModal,
updateHideRecoveryPasswordModel, updateHideRecoveryPasswordModal,
updateOpenUrlModal,
updateLightBoxOptions, updateLightBoxOptions,
} = actions; } = actions;
export const modalReducer = reducer; export const modalReducer = reducer;

@ -128,6 +128,11 @@ export const getHideRecoveryPasswordModalState = createSelector(
(state: ModalState): HideRecoveryPasswordModalState => state.hideRecoveryPasswordModalState (state: ModalState): HideRecoveryPasswordModalState => state.hideRecoveryPasswordModalState
); );
export const getOpenUrlModalState = createSelector(
getModal,
(state: ModalState) => state.openUrlModal
);
export const getLightBoxOptions = createSelector( export const getLightBoxOptions = createSelector(
getModal, getModal,
(state: ModalState): LightBoxOptions => state.lightBoxOptions (state: ModalState): LightBoxOptions => state.lightBoxOptions

Loading…
Cancel
Save