diff --git a/stylesheets/_modal.scss b/stylesheets/_modal.scss index 94ef11ddb..5e5c0709c 100644 --- a/stylesheets/_modal.scss +++ b/stylesheets/_modal.scss @@ -235,7 +235,6 @@ border-radius: 50%; background-color: $session-color-white; transition: $session-transition-duration; - margin-top: 30px; &:hover { filter: brightness(90%); diff --git a/stylesheets/_session.scss b/stylesheets/_session.scss index 9f02a97c0..1570ac049 100644 --- a/stylesheets/_session.scss +++ b/stylesheets/_session.scss @@ -476,6 +476,7 @@ label { } &__close > div { float: left; + margin: 0px; } &__icons > div { float: right; @@ -756,7 +757,6 @@ label { background-color: rgba($session-color-black, 0.72); opacity: 0; transition: $session-transition-duration; - margin: 30px 0px; &:after { content: 'Edit'; @@ -1199,7 +1199,11 @@ input { } } -// .session-onion-path-wrapper { + +.onion__description { + min-width: 100%; + width: 0; +} .onion__node-list { display: flex; @@ -1223,6 +1227,7 @@ input { } } + .session-nickname-wrapper { position: absolute; height: 100%; diff --git a/ts/components/EditProfileDialog.tsx b/ts/components/EditProfileDialog.tsx index 11c96659a..cb4053915 100644 --- a/ts/components/EditProfileDialog.tsx +++ b/ts/components/EditProfileDialog.tsx @@ -125,13 +125,6 @@ export class EditProfileDialog extends React.Component { : undefined; return ( - //
{
- {/* */}
); diff --git a/ts/components/OnionStatusDialog.tsx b/ts/components/OnionStatusDialog.tsx index 9b678be83..b640f586d 100644 --- a/ts/components/OnionStatusDialog.tsx +++ b/ts/components/OnionStatusDialog.tsx @@ -50,18 +50,21 @@ const OnionPathModalInner = (props: any) => { ]; return ( -
- {nodes.map((snode: Snode | any, index: number) => { - return ( - - ); - })} -
+ <> +

{window.i18n('onionPathIndicatorDescription')}

+
+ {nodes.map((snode: Snode | any, index: number) => { + return ( + + ); + })} +
+ ); }; diff --git a/ts/components/session/ActionsPanel.tsx b/ts/components/session/ActionsPanel.tsx index e2cb6909c..57e203c0c 100644 --- a/ts/components/session/ActionsPanel.tsx +++ b/ts/components/session/ActionsPanel.tsx @@ -261,6 +261,8 @@ export const ActionsPanel = () => { }, DAYS * 1); return ( + <> + {modal ? modal : null}
{
- {modal ? modal : null}
+ ); }; diff --git a/ts/components/session/SessionWrapperModal.tsx b/ts/components/session/SessionWrapperModal.tsx index f2ed0ec52..c7377d128 100644 --- a/ts/components/session/SessionWrapperModal.tsx +++ b/ts/components/session/SessionWrapperModal.tsx @@ -30,6 +30,7 @@ interface Props { export type SessionWrapperModalType = { title?: string; + showHeader?: boolean; onConfirm?: () => void; onClose?: () => void; showClose?: boolean @@ -47,6 +48,7 @@ export const SessionWrapperModal = (props: SessionWrapperModalType) => { title, onConfirm, onClose, + showHeader, showClose = false, confirmText, cancelText, @@ -57,15 +59,14 @@ export const SessionWrapperModal = (props: SessionWrapperModalType) => { } = props; useEffect(() => { - window.addEventListener('keyup', upHandler); + window.addEventListener('keyup', keyUpHandler); return () => { - window.removeEventListener('keyup', upHandler); + window.removeEventListener('keyup', keyUpHandler); }; }, []); - // TODO: warrick: typing - const upHandler = ({ key }: any) => { + const keyUpHandler = ({ key }: any) => { if (key === 'Escape') { if (props.onClose) { props.onClose(); @@ -75,24 +76,25 @@ export const SessionWrapperModal = (props: SessionWrapperModalType) => { return (
- {/*
*/}
-
-
- {showExitIcon ? ( - - ) : null} -
-
{title}
-
- {headerIconButtons - ? headerIconButtons.map((iconItem: any) => { + + {showHeader ? +
+
+ {showExitIcon ? ( + + ) : null} +
+
{title}
+
+ {headerIconButtons + ? headerIconButtons.map((iconItem: any) => { return ( { /> ); }) - : null} + : null} +
-
+ : null} +
{props.children}
+ {onConfirm ? ( {confirmText || window.i18n('ok')} ) : null} + + {onClose && showClose ? ( {cancelText || window.i18n('close')} ) : null} +
diff --git a/ts/state/ducks/onion.tsx b/ts/state/ducks/onion.tsx index 5245c4907..06ad4c978 100644 --- a/ts/state/ducks/onion.tsx +++ b/ts/state/ducks/onion.tsx @@ -29,8 +29,10 @@ const onionSlice = createSlice({ reducers: { updateOnionPaths(state, action: PayloadAction) { let newPayload = { snodePath: action.payload }; - // let isEqual = JSON.stringify(state, null, 2) == JSON.stringify(newPayload, null, 2); - // return isEqual ? state : newPayload; + + let isEqual = JSON.stringify(state, null, 2) == JSON.stringify(newPayload, null, 2); + return isEqual ? state : newPayload; + return newPayload; }, },