You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
215 lines
4.9 KiB
TypeScript
215 lines
4.9 KiB
TypeScript
4 years ago
|
import React from 'react';
|
||
|
import { toast } from 'react-toastify';
|
||
|
import { SessionIconType } from '../../components/session/icon';
|
||
|
import {
|
||
|
SessionToast,
|
||
|
SessionToastType,
|
||
|
} from '../../components/session/SessionToast';
|
||
|
|
||
|
// if you push a toast manually with toast...() be sure to set the type attribute of the SessionToast component
|
||
|
export function pushToastError(
|
||
|
id: string,
|
||
|
title: string,
|
||
|
description?: string
|
||
|
) {
|
||
|
toast.error(
|
||
|
<SessionToast
|
||
|
title={title}
|
||
|
description={description}
|
||
|
type={SessionToastType.Error}
|
||
|
/>,
|
||
|
{ toastId: id }
|
||
|
);
|
||
|
}
|
||
|
|
||
|
export function pushToastWarning(
|
||
|
id: string,
|
||
|
title: string,
|
||
|
description?: string
|
||
|
) {
|
||
|
toast.warning(
|
||
|
<SessionToast
|
||
|
title={title}
|
||
|
description={description}
|
||
|
type={SessionToastType.Warning}
|
||
|
/>,
|
||
|
{ toastId: id }
|
||
|
);
|
||
|
}
|
||
|
|
||
|
export function pushToastInfo(id: string, title: string, description?: string) {
|
||
|
toast.info(
|
||
|
<SessionToast
|
||
|
title={title}
|
||
|
description={description}
|
||
|
type={SessionToastType.Info}
|
||
|
/>,
|
||
|
{ toastId: id }
|
||
|
);
|
||
|
}
|
||
|
|
||
|
export function pushToastSuccess(
|
||
|
id: string,
|
||
|
title: string,
|
||
|
description?: string,
|
||
|
icon?: SessionIconType
|
||
|
) {
|
||
|
toast.success(
|
||
|
<SessionToast
|
||
|
title={title}
|
||
|
description={description}
|
||
|
type={SessionToastType.Success}
|
||
|
icon={icon}
|
||
|
/>,
|
||
|
{ toastId: id }
|
||
|
);
|
||
|
}
|
||
|
|
||
|
export function pushLoadAttachmentFailure() {
|
||
|
pushToastError(
|
||
|
'unableToLoadAttachment',
|
||
|
window.i18n('unableToLoadAttachment')
|
||
|
);
|
||
|
}
|
||
|
|
||
|
export function pushDangerousFileError() {
|
||
|
pushToastError('dangerousFileType', window.i18n('dangerousFileType'));
|
||
|
}
|
||
|
|
||
|
export function pushFileSizeError(limit: number, units: string) {
|
||
|
pushToastError(
|
||
|
'fileSizeWarning',
|
||
|
window.i18n('fileSizeWarning'),
|
||
|
`Max size: ${limit} ${units}`
|
||
|
);
|
||
|
}
|
||
|
|
||
|
export function pushMultipleNonImageError() {
|
||
|
pushToastError(
|
||
|
'cannotMixImageAndNonImageAttachments',
|
||
|
window.i18n('cannotMixImageAndNonImageAttachments')
|
||
|
);
|
||
|
}
|
||
|
|
||
|
export function pushCannotMixError() {
|
||
|
pushToastError(
|
||
|
'oneNonImageAtATimeToast',
|
||
|
window.i18n('oneNonImageAtATimeToast')
|
||
|
);
|
||
|
}
|
||
|
|
||
|
export function pushMaximumAttachmentsError() {
|
||
|
pushToastError('maximumAttachments', window.i18n('maximumAttachments'));
|
||
|
}
|
||
|
|
||
|
export function pushMessageBodyTooLong() {
|
||
|
pushToastError('messageBodyTooLong', window.i18n('messageBodyTooLong'));
|
||
|
}
|
||
|
|
||
|
export function pushMessageBodyMissing() {
|
||
|
pushToastError('messageBodyMissing', window.i18n('messageBodyMissing'));
|
||
|
}
|
||
|
|
||
|
export function pushCopiedToClipBoard() {
|
||
|
pushToastInfo('copiedToClipboard', window.i18n('copiedToClipboard'));
|
||
|
}
|
||
|
|
||
|
export function pushForceUnlinked() {
|
||
|
pushToastInfo('successUnlinked', window.i18n('successUnlinked'));
|
||
|
}
|
||
|
|
||
|
export function pushSpellCheckDirty() {
|
||
|
pushToastInfo('spellCheckDirty', window.i18n('spellCheckDirty'));
|
||
|
}
|
||
|
|
||
|
export function pushAlreadyMemberOpenGroup() {
|
||
|
pushToastInfo('publicChatExists', window.i18n('publicChatExists'));
|
||
|
}
|
||
|
|
||
|
export function pushUserBanSuccess() {
|
||
|
pushToastSuccess('userBanned', window.i18n('userBanned'));
|
||
|
}
|
||
|
|
||
|
export function pushUserBanFailure() {
|
||
|
pushToastError('userBanFailed', window.i18n('userBanFailed'));
|
||
|
}
|
||
|
|
||
|
export function pushMessageDeleteForbidden() {
|
||
|
pushToastError(
|
||
|
'messageDeletionForbidden',
|
||
|
window.i18n('messageDeletionForbidden')
|
||
|
);
|
||
|
}
|
||
|
|
||
|
export function pushAudioPermissionNeeded() {
|
||
|
pushToastInfo(
|
||
|
'audioPermissionNeeded',
|
||
|
window.i18n('audioPermissionNeededTitle'),
|
||
|
window.i18n('audioPermissionNeeded')
|
||
|
);
|
||
|
}
|
||
|
|
||
|
export function pushOriginalNotFound() {
|
||
|
pushToastError(
|
||
|
'originalMessageNotFound',
|
||
|
window.i18n('originalMessageNotFound')
|
||
|
);
|
||
|
}
|
||
|
|
||
|
export function pushOriginalNoLongerAvailable() {
|
||
|
pushToastError(
|
||
|
'originalMessageNotAvailable',
|
||
|
window.i18n('originalMessageNotAvailable')
|
||
|
);
|
||
|
}
|
||
|
|
||
|
export function pushFoundButNotLoaded() {
|
||
|
pushToastError(
|
||
|
'messageFoundButNotLoaded',
|
||
|
window.i18n('messageFoundButNotLoaded')
|
||
|
);
|
||
|
}
|
||
|
|
||
|
export function pushTooManyMembers() {
|
||
|
pushToastError('tooManyMembers', window.i18n('closedGroupMaxSize'));
|
||
|
}
|
||
|
|
||
|
export function pushPairingRequestReceived(alreadyLinked: boolean) {
|
||
|
const title = alreadyLinked
|
||
|
? window.i18n('devicePairingRequestReceivedLimitTitle')
|
||
|
: window.i18n('devicePairingRequestReceivedNoListenerTitle');
|
||
|
|
||
|
const description = alreadyLinked
|
||
|
? window.i18n(
|
||
|
'devicePairingRequestReceivedLimitDescription',
|
||
|
window.CONSTANTS.MAX_LINKED_DEVICES
|
||
|
)
|
||
|
: window.i18n('devicePairingRequestReceivedNoListenerDescription');
|
||
|
|
||
|
if (alreadyLinked) {
|
||
|
toast.info(
|
||
|
<SessionToast
|
||
|
title={title}
|
||
|
description={description}
|
||
|
type={SessionToastType.Info}
|
||
|
/>,
|
||
|
{
|
||
|
toastId: 'pairingRequestReceived',
|
||
|
autoClose: false,
|
||
|
}
|
||
|
);
|
||
|
} else {
|
||
|
toast.warning(
|
||
|
<SessionToast
|
||
|
title={title}
|
||
|
description={description}
|
||
|
type={SessionToastType.Warning}
|
||
|
/>,
|
||
|
{
|
||
|
toastId: 'pairingRequestReceived',
|
||
|
autoClose: false,
|
||
|
}
|
||
|
);
|
||
|
}
|
||
|
}
|