* optimize room typing members hook * remove unused code - WIP * remove old code from initMatrix * remove twemojify function * remove old sanitize util * delete old markdown util * delete Math atom component * uninstall unused dependencies * remove old notification system * decrypt message in inbox notification center and fix refresh in background * improve notification --------- Co-authored-by: Krishan <33421343+kfiven@users.noreply.github.com>
81 lines
2.0 KiB
JavaScript
81 lines
2.0 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import './Dialog.scss';
|
|
|
|
import Text from '../../atoms/text/Text';
|
|
import Header, { TitleWrapper } from '../../atoms/header/Header';
|
|
import ScrollView from '../../atoms/scroll/ScrollView';
|
|
import RawModal from '../../atoms/modal/RawModal';
|
|
|
|
function Dialog({
|
|
className,
|
|
isOpen,
|
|
title,
|
|
onAfterOpen,
|
|
onAfterClose,
|
|
contentOptions,
|
|
onRequestClose,
|
|
closeFromOutside,
|
|
children,
|
|
invisibleScroll,
|
|
}) {
|
|
return (
|
|
<RawModal
|
|
className={`${className === null ? '' : `${className} `}dialog-modal`}
|
|
isOpen={isOpen}
|
|
onAfterOpen={onAfterOpen}
|
|
onAfterClose={onAfterClose}
|
|
onRequestClose={onRequestClose}
|
|
closeFromOutside={closeFromOutside}
|
|
size="small"
|
|
>
|
|
<div className="dialog">
|
|
<div className="dialog__content">
|
|
<Header>
|
|
<TitleWrapper>
|
|
{typeof title === 'string' ? (
|
|
<Text variant="h2" weight="medium" primary>
|
|
{title}
|
|
</Text>
|
|
) : (
|
|
title
|
|
)}
|
|
</TitleWrapper>
|
|
{contentOptions}
|
|
</Header>
|
|
<div className="dialog__content__wrapper">
|
|
<ScrollView autoHide={!invisibleScroll} invisible={invisibleScroll}>
|
|
<div className="dialog__content-container">{children}</div>
|
|
</ScrollView>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</RawModal>
|
|
);
|
|
}
|
|
|
|
Dialog.defaultProps = {
|
|
className: null,
|
|
contentOptions: null,
|
|
onAfterOpen: null,
|
|
onAfterClose: null,
|
|
onRequestClose: null,
|
|
closeFromOutside: true,
|
|
invisibleScroll: false,
|
|
};
|
|
|
|
Dialog.propTypes = {
|
|
className: PropTypes.string,
|
|
isOpen: PropTypes.bool.isRequired,
|
|
title: PropTypes.node.isRequired,
|
|
contentOptions: PropTypes.node,
|
|
onAfterOpen: PropTypes.func,
|
|
onAfterClose: PropTypes.func,
|
|
onRequestClose: PropTypes.func,
|
|
closeFromOutside: PropTypes.bool,
|
|
children: PropTypes.node.isRequired,
|
|
invisibleScroll: PropTypes.bool,
|
|
};
|
|
|
|
export default Dialog;
|