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.
218 lines
6.0 KiB
TypeScript
218 lines
6.0 KiB
TypeScript
import React, { useEffect, useState } from 'react';
|
|
import { SessionHtmlRenderer } from '../basic/SessionHTMLRenderer';
|
|
import { updateConfirmModal } from '../../state/ducks/modalDialog';
|
|
import { SpacerLG } from '../basic/Text';
|
|
import { SessionButton, SessionButtonColor, SessionButtonType } from '../basic/SessionButton';
|
|
import { SessionSpinner } from '../basic/SessionSpinner';
|
|
import { SessionIcon, SessionIconSize, SessionIconType } from '../icon';
|
|
import { SessionWrapperModal } from '../SessionWrapperModal';
|
|
import { Dispatch } from '@reduxjs/toolkit';
|
|
import { shell } from 'electron';
|
|
import { MessageInteraction } from '../../interactions';
|
|
import {
|
|
ConversationInteractionStatus,
|
|
ConversationInteractionType,
|
|
updateConversationInteractionState,
|
|
} from '../../interactions/conversationInteractions';
|
|
import { useConversationInteractionPropsById } from '../../hooks/useParamSelector';
|
|
import styled from 'styled-components';
|
|
|
|
const StyledMessageText = styled(SessionHtmlRenderer)`
|
|
margin-bottom: var(--margins-lg);
|
|
`;
|
|
|
|
const StyledSubMessageText = styled(SessionHtmlRenderer)`
|
|
// Overrides SASS in this one case
|
|
margin-top: 0;
|
|
margin-bottom: var(--margins-md);
|
|
`;
|
|
|
|
// NOTE could be other confirmation statuses and types in future
|
|
export type ConfirmationStatus = ConversationInteractionStatus | undefined;
|
|
export type ConfirmationType = ConversationInteractionType | undefined;
|
|
|
|
export interface SessionConfirmDialogProps {
|
|
message?: string;
|
|
messageSub?: string;
|
|
title?: string;
|
|
onOk?: any;
|
|
onClose?: any;
|
|
closeAfterInput?: boolean;
|
|
|
|
/**
|
|
* function to run on ok click. Closes modal after execution by default
|
|
*/
|
|
onClickOk?: () => Promise<void> | void;
|
|
|
|
onClickClose?: () => any;
|
|
|
|
/**
|
|
* function to run on close click. Closes modal after execution by default
|
|
*/
|
|
onClickCancel?: () => any;
|
|
|
|
okText?: string;
|
|
cancelText?: string;
|
|
hideCancel?: boolean;
|
|
okTheme?: SessionButtonColor;
|
|
closeTheme?: SessionButtonColor;
|
|
sessionIcon?: SessionIconType;
|
|
iconSize?: SessionIconSize;
|
|
shouldShowConfirm?: boolean | undefined;
|
|
showExitIcon?: boolean | undefined;
|
|
headerReverse?: boolean;
|
|
conversationId?: string;
|
|
}
|
|
|
|
export const SessionConfirm = (props: SessionConfirmDialogProps) => {
|
|
const {
|
|
title = '',
|
|
message = '',
|
|
messageSub = '',
|
|
okTheme,
|
|
closeTheme = SessionButtonColor.Danger,
|
|
onClickOk,
|
|
onClickClose,
|
|
hideCancel = false,
|
|
sessionIcon,
|
|
iconSize,
|
|
shouldShowConfirm,
|
|
onClickCancel,
|
|
showExitIcon,
|
|
headerReverse,
|
|
closeAfterInput = true,
|
|
conversationId,
|
|
} = props;
|
|
|
|
const interactionProps = useConversationInteractionPropsById(conversationId);
|
|
|
|
const [isLoading, setIsLoading] = useState(false);
|
|
|
|
const okText = props.okText || window.i18n('ok');
|
|
const cancelText = props.cancelText || window.i18n('cancel');
|
|
const showHeader = !!props.title;
|
|
|
|
const messageSubText = messageSub ? 'session-confirm-main-message' : undefined;
|
|
|
|
const onClickOkHandler = async () => {
|
|
if (onClickOk) {
|
|
setIsLoading(true);
|
|
try {
|
|
await onClickOk();
|
|
} catch (e) {
|
|
window.log.warn(e);
|
|
} finally {
|
|
setIsLoading(false);
|
|
}
|
|
}
|
|
|
|
if (closeAfterInput) {
|
|
window.inboxStore?.dispatch(updateConfirmModal(null));
|
|
}
|
|
};
|
|
|
|
if (shouldShowConfirm && !shouldShowConfirm) {
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* Performs specified on close action then removes the modal.
|
|
*/
|
|
const onClickCancelHandler = () => {
|
|
if (onClickCancel) {
|
|
onClickCancel();
|
|
}
|
|
|
|
if (onClickClose) {
|
|
onClickClose();
|
|
}
|
|
};
|
|
|
|
useEffect(() => {
|
|
if (isLoading) {
|
|
if (conversationId && interactionProps?.interactionType) {
|
|
void updateConversationInteractionState({
|
|
conversationId,
|
|
type: interactionProps?.interactionType,
|
|
status: ConversationInteractionStatus.Loading,
|
|
});
|
|
}
|
|
}
|
|
}, [isLoading, conversationId, interactionProps?.interactionType]);
|
|
|
|
return (
|
|
<SessionWrapperModal
|
|
title={title}
|
|
onClose={onClickClose}
|
|
showExitIcon={showExitIcon}
|
|
showHeader={showHeader}
|
|
headerReverse={headerReverse}
|
|
>
|
|
{!showHeader && <SpacerLG />}
|
|
|
|
<div className="session-modal__centered">
|
|
{sessionIcon && iconSize && (
|
|
<>
|
|
<SessionIcon iconType={sessionIcon} iconSize={iconSize} />
|
|
<SpacerLG />
|
|
</>
|
|
)}
|
|
|
|
<StyledMessageText tag="span" className={messageSubText} html={message} />
|
|
{messageSub && (
|
|
<StyledSubMessageText
|
|
tag="span"
|
|
className="session-confirm-sub-message"
|
|
html={messageSub}
|
|
/>
|
|
)}
|
|
|
|
<SessionSpinner loading={isLoading} />
|
|
</div>
|
|
|
|
<div className="session-modal__button-group">
|
|
<SessionButton
|
|
text={okText}
|
|
buttonColor={okTheme}
|
|
buttonType={SessionButtonType.Simple}
|
|
onClick={onClickOkHandler}
|
|
dataTestId="session-confirm-ok-button"
|
|
/>
|
|
{!hideCancel && (
|
|
<SessionButton
|
|
text={cancelText}
|
|
buttonColor={!okTheme ? closeTheme : undefined}
|
|
buttonType={SessionButtonType.Simple}
|
|
onClick={onClickCancelHandler}
|
|
dataTestId="session-confirm-cancel-button"
|
|
/>
|
|
)}
|
|
</div>
|
|
</SessionWrapperModal>
|
|
);
|
|
};
|
|
|
|
export const showLinkVisitWarningDialog = (urlToOpen: string, dispatch: Dispatch<any>) => {
|
|
function onClickOk() {
|
|
void shell.openExternal(urlToOpen);
|
|
}
|
|
|
|
dispatch(
|
|
updateConfirmModal({
|
|
title: window.i18n('linkVisitWarningTitle'),
|
|
message: window.i18n('linkVisitWarningMessage', [urlToOpen]),
|
|
okText: window.i18n('open'),
|
|
okTheme: SessionButtonColor.Primary,
|
|
cancelText: window.i18n('editMenuCopy'),
|
|
showExitIcon: true,
|
|
onClickOk,
|
|
onClickClose: () => {
|
|
dispatch(updateConfirmModal(null));
|
|
},
|
|
onClickCancel: () => {
|
|
MessageInteraction.copyBodyToClipboard(urlToOpen);
|
|
},
|
|
})
|
|
);
|
|
};
|