From 76100903cb2c969bffafc4530c84dfd92288472d Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Wed, 22 Sep 2021 11:17:41 +1000 Subject: [PATCH 1/3] show ip of onion path on hover of country name --- stylesheets/_session.scss | 1 + .../dialog/OnionStatusPathDialog.tsx | 27 ++++++++++++++++--- 2 files changed, 24 insertions(+), 4 deletions(-) diff --git a/stylesheets/_session.scss b/stylesheets/_session.scss index a594052e0..45bf13b71 100644 --- a/stylesheets/_session.scss +++ b/stylesheets/_session.scss @@ -1095,6 +1095,7 @@ input { flex-direction: column; margin: $session-margin-sm; align-items: flex-start; + min-width: 10vw; position: relative; .onion__node { diff --git a/ts/components/dialog/OnionStatusPathDialog.tsx b/ts/components/dialog/OnionStatusPathDialog.tsx index 9a84f5589..8b3624a2e 100644 --- a/ts/components/dialog/OnionStatusPathDialog.tsx +++ b/ts/components/dialog/OnionStatusPathDialog.tsx @@ -19,6 +19,8 @@ import { Flex } from '../basic/Flex'; import { SessionIcon, SessionIconButton } from '../session/icon'; import { SessionSpinner } from '../session/SessionSpinner'; import { SessionWrapperModal } from '../session/SessionWrapperModal'; +// tslint:disable-next-line: no-submodule-imports +import useHover from 'react-use/lib/useHover'; export type StatusLightType = { glowStartDelay: number; @@ -26,6 +28,25 @@ export type StatusLightType = { color?: string; }; +const OnionCountryDisplay = ({ + index, + labelText, + snodeIp, +}: { + snodeIp?: string; + labelText: string; + index: number; +}) => { + const element = (hovered: boolean) => ( +
+ {hovered && snodeIp ? snodeIp : labelText} +
+ ); + const [hoverable] = useHover(element); + + return hoverable; +}; + const OnionPathModalInner = () => { const onionPath = useSelector(getFirstOnionPath); const isOnline = useSelector(getIsOnline); @@ -69,14 +90,12 @@ const OnionPathModalInner = () => { {nodes.map((snode: Snode | any, index: number) => { let labelText = snode.label ? snode.label - : `${countryLookup.byIso(ip2country(snode.ip))?.country} [${snode.ip}]`; + : `${countryLookup.byIso(ip2country(snode.ip))?.country}`; if (!labelText) { labelText = window.i18n('unknownCountry'); } return labelText ? ( -
- {labelText} -
+ ) : null; })} From e8c17f2b6e1a50117f97878bdf46c65b20a8076b Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Wed, 22 Sep 2021 11:19:59 +1000 Subject: [PATCH 2/3] bump to v1.7.3 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7eac174a1..a373f893a 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "session-desktop", "productName": "Session", "description": "Private messaging from your desktop", - "version": "1.7.2", + "version": "1.7.3", "license": "GPL-3.0", "author": { "name": "Loki Project", From 87aa4dfbf4b9c9aba5fff592066db372bf5f2111 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Wed, 22 Sep 2021 13:35:36 +1000 Subject: [PATCH 3/3] center ip and countries in onion path dialog --- stylesheets/_session.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stylesheets/_session.scss b/stylesheets/_session.scss index 45bf13b71..285e29ef2 100644 --- a/stylesheets/_session.scss +++ b/stylesheets/_session.scss @@ -1094,7 +1094,7 @@ input { display: flex; flex-direction: column; margin: $session-margin-sm; - align-items: flex-start; + align-items: center; min-width: 10vw; position: relative; @@ -1122,6 +1122,7 @@ input { } .onion__node__country { margin: $session-margin-sm; + min-width: 150px; } .onion__growing-icon {