fix line on onion path modal

pull/1735/head
Audric Ackermann 4 years ago
parent 00c7c8b969
commit 4eb76df60c
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -470,6 +470,7 @@ label {
} }
&__close > div { &__close > div {
float: left; float: left;
padding: $session-margin-xs;
margin: 0px; margin: 0px;
} }
&__icons > div { &__icons > div {
@ -1211,19 +1212,12 @@ input {
align-items: center; align-items: center;
margin: $session-margin-xs; margin: $session-margin-xs;
&__country { &:nth-child(2) {
margin: $session-margin-sm; margin-top: 0;
} }
&__growing-icon { &:nth-last-child(2) {
position: relative; margin-bottom: 0;
width: 20px;
height: 20px svg {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
} }
.session-icon-button { .session-icon-button {
@ -1231,13 +1225,27 @@ input {
} }
} }
.onion__node-list-lights {
position: relative;
}
.onion__node__country {
margin: $session-margin-sm;
}
.onion__growing-icon {
flex-grow: 1;
display: flex;
align-items: center;
}
.onion__vertical-line { .onion__vertical-line {
border-left: 2px solid $onionPathLineColor; background: $onionPathLineColor;
height: 182px;
position: absolute; position: absolute;
left: 11px; height: calc(100% - 2 * 15px);
top: 22px; margin: 15px calc(100% / 2 - 1px);
z-index: -1;
width: 1px;
// z-index: -1;
} }
} }

@ -8,12 +8,7 @@ import Electron from 'electron';
const { shell } = Electron; const { shell } = Electron;
import { useDispatch, useSelector } from 'react-redux'; import { useDispatch, useSelector } from 'react-redux';
import { import { SessionIcon, SessionIconButton, SessionIconSize, SessionIconType } from './session/icon';
SessionIcon,
SessionIconButton,
SessionIconSize,
SessionIconType,
} from './session/icon';
import { SessionWrapperModal } from './session/SessionWrapperModal'; import { SessionWrapperModal } from './session/SessionWrapperModal';
@ -31,6 +26,7 @@ import {
// tslint:disable-next-line: no-submodule-imports // tslint:disable-next-line: no-submodule-imports
import useNetworkState from 'react-use/lib/useNetworkState'; import useNetworkState from 'react-use/lib/useNetworkState';
import { SessionSpinner } from './session/SessionSpinner'; import { SessionSpinner } from './session/SessionSpinner';
import { Flex } from './basic/Flex';
export type StatusLightType = { export type StatusLightType = {
glowStartDelay: number; glowStartDelay: number;
@ -60,56 +56,57 @@ const OnionPathModalInner = () => {
<> <>
<p className="onion__description">{window.i18n('onionPathIndicatorDescription')}</p> <p className="onion__description">{window.i18n('onionPathIndicatorDescription')}</p>
<div className="onion__node-list"> <div className="onion__node-list">
<div className="onion__vertical-line" /> <Flex container={true}>
{nodes.map((snode: Snode | any, index: number) => { <div className="onion__node-list-lights">
return ( <div className="onion__vertical-line" />
<>
<OnionNodeStatusLight <Flex container={true} flexDirection="column" alignItems="center" height="100%">
glowDuration={glowDuration} {nodes.map((_snode: Snode | any, index: number) => {
glowStartDelay={index} return (
label={snode.label} <OnionNodeStatusLight
snode={snode} glowDuration={glowDuration}
key={index} glowStartDelay={index}
/> key={index}
</> />
); );
})} })}
</Flex>
</div>
<Flex container={true} flexDirection="column" alignItems="flex-start">
{nodes.map((snode: Snode | any, index: number) => {
let labelText = snode.label
? snode.label
: countryLookup.byIso(ip2country(snode.ip))?.country;
if (!labelText) {
labelText = window.i18n('unknownCountry');
}
return labelText ? <div className="onion__node__country">{labelText}</div> : null;
})}
</Flex>
</Flex>
</div> </div>
</> </>
); );
}; };
export type OnionNodeStatusLightType = { export type OnionNodeStatusLightType = {
snode: Snode;
label?: string;
glowStartDelay: number; glowStartDelay: number;
glowDuration: number; glowDuration: number;
}; };
/** /**
* Component containing a coloured status light and an adjacent country label. * Component containing a coloured status light.
*/ */
export const OnionNodeStatusLight = (props: OnionNodeStatusLightType): JSX.Element => { export const OnionNodeStatusLight = (props: OnionNodeStatusLightType): JSX.Element => {
const { snode, label, glowStartDelay, glowDuration } = props; const { glowStartDelay, glowDuration } = props;
const theme = useTheme(); const theme = useTheme();
let labelText = label ? label : countryLookup.byIso(ip2country(snode.ip))?.country;
if (!labelText) {
labelText = window.i18n('unknownCountry');
}
return ( return (
<div className="onion__node"> <ModalStatusLight
<ModalStatusLight glowDuration={glowDuration}
glowDuration={glowDuration} glowStartDelay={glowStartDelay}
glowStartDelay={glowStartDelay} color={theme.colors.accent}
color={theme.colors.accent} />
/>
{labelText ? (
<>
<div className="onion__node__country">{labelText}</div>
</>
) : null}
</div>
); );
}; };
@ -128,7 +125,7 @@ export const ModalStatusLight = (props: StatusLightType) => {
glowDuration={glowDuration} glowDuration={glowDuration}
glowStartDelay={glowStartDelay} glowStartDelay={glowStartDelay}
iconType={SessionIconType.Circle} iconType={SessionIconType.Circle}
iconSize={SessionIconSize.Small} iconSize={SessionIconSize.Tiny}
theme={theme} theme={theme}
/> />
</div> </div>
@ -163,7 +160,7 @@ export const ActionPanelOnionStatusLight = (props: {
return ( return (
<SessionIconButton <SessionIconButton
iconSize={SessionIconSize.Medium} iconSize={SessionIconSize.Small}
iconType={SessionIconType.Circle} iconType={SessionIconType.Circle}
iconColor={iconColor} iconColor={iconColor}
onClick={handleClick} onClick={handleClick}

@ -102,8 +102,12 @@ export const icons = {
ratio: 1, ratio: 1,
}, },
[SessionIconType.Circle]: { [SessionIconType.Circle]: {
path: 'M 100, 100m -75, 0a 75,75 0 1,0 150,0a 75,75 0 1,0 -150,0', path: '\
viewBox: '0 0 200 200', M 0, 50\
a 50,50 0 1,1 100,0\
a 50,50 0 1,1 -100,0\
',
viewBox: '0 0 100 100',
ratio: 1, ratio: 1,
}, },
[SessionIconType.CircleCheck]: { [SessionIconType.CircleCheck]: {

Loading…
Cancel
Save