|
|
|
@ -2,6 +2,7 @@ import React from 'react';
|
|
|
|
|
import { SessionModal } from './SessionModal';
|
|
|
|
|
import { SessionButton, SessionButtonColor } from './SessionButton';
|
|
|
|
|
import { SessionHtmlRenderer } from './SessionHTMLRenderer';
|
|
|
|
|
import { SessionIcon, SessionIconSize, SessionIconType } from './icon';
|
|
|
|
|
|
|
|
|
|
interface Props {
|
|
|
|
|
message: string;
|
|
|
|
@ -16,6 +17,8 @@ interface Props {
|
|
|
|
|
hideCancel: boolean;
|
|
|
|
|
okTheme: SessionButtonColor;
|
|
|
|
|
closeTheme: SessionButtonColor;
|
|
|
|
|
sessionIcon?: SessionIconType;
|
|
|
|
|
iconSize?: SessionIconSize;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export class SessionConfirm extends React.Component<Props> {
|
|
|
|
@ -41,6 +44,8 @@ export class SessionConfirm extends React.Component<Props> {
|
|
|
|
|
onClickOk,
|
|
|
|
|
onClickClose,
|
|
|
|
|
hideCancel,
|
|
|
|
|
sessionIcon,
|
|
|
|
|
iconSize,
|
|
|
|
|
} = this.props;
|
|
|
|
|
|
|
|
|
|
const okText = this.props.okText || window.i18n('ok');
|
|
|
|
@ -62,6 +67,13 @@ export class SessionConfirm extends React.Component<Props> {
|
|
|
|
|
{!showHeader && <div className="spacer-lg" />}
|
|
|
|
|
|
|
|
|
|
<div className="session-modal__centered">
|
|
|
|
|
{sessionIcon && (
|
|
|
|
|
<div>
|
|
|
|
|
<SessionIcon iconType={sessionIcon} iconSize={iconSize} />
|
|
|
|
|
<div className="spacer-lg" />
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
|
|
|
|
|
<SessionHtmlRenderer
|
|
|
|
|
tag="span"
|
|
|
|
|
className={messageSubText}
|
|
|
|
|