Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

qml: Add PeerDetails page #387

Closed
wants to merge 1 commit into from
Closed

Conversation

johnny9
Copy link
Contributor

@johnny9 johnny9 commented Jan 29, 2024

This commit introduces a new page, PeerDetails, that shows additional information on a Peer after it is selected from the list of Peers. After clicking on the peer, the new page gets pushed onto the settings stack. Two conditions will cause the view to pop, the user clicking the Back at the top left or the peer disconnecting.

For reviewers, I would very much like comments on the conversion of the Stats struct to the QML compatible object that is used.

This commit does not include the disconnect/ban buttons, the top right buttons to cycle through the peers, or the icons that are adjacent to the values.

Link to github actions build artifacts.

Build Artifacts

src/qml/controls/SettingsButton.qml Outdated Show resolved Hide resolved
src/qml/controls/PeerRadioButton.qml Outdated Show resolved Hide resolved
@@ -292,6 +294,8 @@ int QmlGuiMain(int argc, char* argv[])
qmlRegisterSingletonInstance<AppMode>("org.bitcoincore.qt", 1, 0, "AppMode", &app_mode);
qmlRegisterType<BlockClockDial>("org.bitcoincore.qt", 1, 0, "BlockClockDial");
qmlRegisterType<LineGraph>("org.bitcoincore.qt", 1, 0, "LineGraph");
qmlRegisterUncreatableType<PeerDetailsModel>("org.bitcoincore.qt", 1, 0, "PeerDetailsModel", "");
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

clip: true
contentWidth: width

Column {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we need rules and way to wrap these values if for whatever reason they get too long:

Screenshot 2024-01-29 at 9 11 16 AM

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i think a max width with an elipses should cover it. I'll see what that looks like.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

values now elide

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

user might want to view all Services
maybe be good to put the missing ones in a tooltip?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

also things like onion address should be fully visible imo
#375 (review)

@johnny9
Copy link
Contributor Author

johnny9 commented Jan 29, 2024

From 845a878 to a660b9c

  • Removed unused controls (RadioButton and SettingsButton for disconnect/ban)

@johnny9
Copy link
Contributor Author

johnny9 commented Jan 29, 2024

Update from a660b9c to 8c2a918

  • Replaced color white with color neutral9 for Dark mode switching

@johnny9 johnny9 force-pushed the peer-details branch 4 times, most recently from 480c03f to b5e2de7 Compare January 30, 2024 04:27
@johnny9
Copy link
Contributor Author

johnny9 commented Jan 30, 2024

Update from ef6e826 to b5e2de7

  • Fixed lint issues
  • Constrained text values with elide

@MarnixCroes
Copy link
Contributor

b5e2de7 weird jumping when clicking on peer, at Direction, User agent_, Type, Ip and Network
cannot repro at ID

jumping.webm

@johnny9
Copy link
Contributor Author

johnny9 commented Jan 30, 2024

b5e2de7 weird jumping when clicking on peer, at Direction, User agent_, Type, Ip and Network cannot repro at ID
jumping.webm

This appears to be due to using the wrong index for the original model. I have updated the branch with a working solution

@johnny9
Copy link
Contributor Author

johnny9 commented Jan 30, 2024

Update from b5e2de7 to b7161c5

  • Don't use the index from the proxy table, instead find the index for the details from the original table model.

Copy link
Contributor

@MarnixCroes MarnixCroes left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what was the motivation behind current shown details?
some things like Connection Time (Age), Network, Last Block, Last Transaction are missing

CoreText { text: "Information"; bold: true; font.pixelSize: 18; horizontalAlignment: Qt.AlignLeft; }
Column {
width: parent.width
PeerKeyValueRow { key: qsTr("IP"); value: details.address }
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
PeerKeyValueRow { key: qsTr("IP"); value: details.address }
PeerKeyValueRow { key: qsTr("Address"); value: details.address }

can also be onion service/ other networks

PeerKeyValueRow { key: qsTr("Version"); value: details.version }
PeerKeyValueRow { key: qsTr("User agent"); value: details.userAgent }
PeerKeyValueRow { key: qsTr("Services"); value: details.services }
PeerKeyValueRow { key: qsTr("Transport relay"); value: details.transactionRelay }
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
PeerKeyValueRow { key: qsTr("Transport relay"); value: details.transactionRelay }
PeerKeyValueRow { key: qsTr("Transaction relay"); value: details.transactionRelay }

CoreText { text: "Block data"; bold: true; font.pixelSize: 18; horizontalAlignment: Qt.AlignLeft; }
Column {
width: parent.width
PeerKeyValueRow { key: qsTr("Starting block"); value: details.startingHeight }
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Starting Block doesn't seem to work correctly, for me this always shows 0
(testing with a synced signet node, normal bitcoin qt it works fine)

Copy link
Contributor Author

@johnny9 johnny9 Feb 5, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I noticed that the Qt gui uses a value from a different struct. I will switch to that and see if that resolves it.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes it works now

@GBKS
Copy link
Contributor

GBKS commented Feb 2, 2024

Great work. I tested it out on Android. Looks great overall, just see some inconsistencies to the design in terms of vertical spacing and missing formatting.

For text that does not fit in one line, I think it should just go multi-line. If you shorten it, you then need a way to expand it (which could be a simple tap).

In the image below, the Android screenshot is on the right, and the Figma mock-ups are on the left.

image

A few questions:

  • What does a "Synced headers" value of "-1" mean? That the process is not initialized?
  • What are permissions? What does "N/A" mean?
  • What does "Mapped AS" mean?
  • For sent/received, does it maybe make sense to show the percentage that is of the total send/receive? As an indicator of how much your node relies on this peer?

@MarnixCroes
Copy link
Contributor

@GBKS

What does a "Synced headers" value of "-1" mean? That the process is not initialized?

yes, it means that that peer didn't announce that info yet

What are permissions? What does "N/A" mean?

any special permissions that have been granted to that peer. N/A means Not Applicable / Not Assessed

What does "Mapped AS" mean?

Mapped Autonomous System, which can be used for diversifying peer selection

For sent/received, does it maybe make sense to show the percentage that is of the total send/receive? As an indicator of how much your node relies on this peer?

As peers are connecting and disconnecting all the time this is quite hard: Do you measure it for all currently connected peers, since the node is up, since first launch... etc.
and these values aren't that meaningful: a higher amount sent/received doesn't necessarily mean that the node relies more on this peer than another peer with a lower amount.

So, I get what you mean, but this shouldn't be added imo

@johnny9
Copy link
Contributor Author

johnny9 commented Feb 4, 2024

Great work. I tested it out on Android. Looks great overall, just see some inconsistencies to the design in terms of vertical spacing and missing formatting.

Ill adjust that spacing. Looks like mine is too tight.

For text that does not fit in one line, I think it should just go multi-line. If you shorten it, you then need a way to expand it (which could be a simple tap).

I'll use word wrap on the next update

A few questions:

* What does a "Synced headers" value of "-1" mean? That the process is not initialized

It means that it hasn't synced any headers with this peer yet. -1 is the default vault. I think this should just probably just be a minus as well until this data updates.

* What are permissions? What does "N/A" mean?

These are all of the permission strings "bloomfilter", "noban", "forcerelay" "relay" "mempool" "download" "addr". N/A just means that none are set. These permissions are assigned by using the "-whitelist" configuration option. Here are the description of these flags.
"bloomfilter (allow requesting BIP37 filtered blocks and transactions)",
"noban (do not ban for misbehavior; implies download)",
"forcerelay (relay transactions that are already in the mempool; implies relay)",
"relay (relay even in -blocksonly mode, and unlimited transaction announcements)",
"mempool (allow requesting BIP35 mempool contents)",
"download (allow getheaders during IBD, no disconnect after maxuploadtarget limit)",
"addr (responses to GETADDR avoid hitting the cache and contain random records with the most up-to-date info)"

* What does "Mapped AS" mean?

Mapped AS means Mapped Autonomous System which is a configuration option that lets you map peers to AS numbers. AS numbers are assigned by top level internet registries to organizations with a bunch of network addresses. You specify a mapping file to bitcoin core with a configuration option.

* For sent/received, does it maybe make sense to show the percentage that is of the total send/receive? As an indicator of how much your node relies on this peer?

Yeah I think there is a lot of value in that.

@johnny9
Copy link
Contributor Author

johnny9 commented Feb 5, 2024

Update from b7161c5 to d737ea3

  • Used correct struct for m_starting_height value to fix "Starting Height"
  • Changed IP to Address
  • Adjusted spacing to match figma
  • Allowed Text to WordWrap

@MarnixCroes
Copy link
Contributor

running d737ea3, I now had twice that the peer details page closed itself randomly and returned to the peers page.
peer didn't disconnect, not sure what is causing it.

Changed IP to Address

forgot to add the change?

Allowed Text to WordWrap

this looks good 👍

@GBKS
Copy link
Contributor

GBKS commented Feb 5, 2024

Thanks for the explainers and tweaking the layout.

These permissions are assigned by using the "-whitelist" configuration option

Does that mean permissions are application-wide and the same for all peers? If so, maybe they can be shown elsewhere...?

I think this should just probably just be a minus as well until this data updates.

Are we using "N/A" and "-" interchangeably? Looks like we need states for

  • Pending: we're still waiting to find out (maybe "..."?)
  • Not available: we're not waiting anymore, and have no idea ("N/A")
  • None: none were set ("-")

Does that seem about right? What's the likelihood of getting "not available"? Is that even possible?

@johnny9
Copy link
Contributor Author

johnny9 commented Feb 5, 2024

running d737ea3, I now had twice that the peer details page closed itself randomly and returned to the peers page. peer didn't disconnect, not sure what is causing it.

Yeah im worried about this. I will dig into that and make sure my signals are being triggered correctly

@GBKS
Copy link
Contributor

GBKS commented Feb 6, 2024

I now had twice that the peer details page closed itself randomly and returned to the peers page

I also had this happen.

@yashrajd
Copy link

yashrajd commented Feb 6, 2024

Good stuff guys.

In line with external feedback we received in past Bitcoin Core calls, a little tooltip and explainers for these items would be extremely useful.

Even the tip that @johnny9 provided about how peer permissions can be changed would be useful (on this page or somewhere else)

@GBKS

What does a "Synced headers" value of "-1" mean? That the process is not initialized?

yes, it means that that peer didn't announce that info yet

What are permissions? What does "N/A" mean?

any special permissions that have been granted to that peer. N/A means Not Applicable / Not Assessed

What does "Mapped AS" mean?

Mapped Autonomous System, which can be used for diversifying peer selection

For sent/received, does it maybe make sense to show the percentage that is of the total send/receive? As an indicator of how much your node relies on this peer?

As peers are connecting and disconnecting all the time this is quite hard: Do you measure it for all currently connected peers, since the node is up, since first launch... etc. and these values aren't that meaningful: a higher amount sent/received doesn't necessarily mean that the node relies more on this peer than another peer with a lower amount.

So, I get what you mean, but this shouldn't be added imo

@GBKS
Copy link
Contributor

GBKS commented Feb 7, 2024

For this PR generally, I'm happy to ACK it whenever the functionality is solid and we can tweak visualization details and tips as we live with it during practical usage.

anchors.horizontalCenter: parent.horizontalCenter
spacing: 10

CoreText { text: "Information"; bold: true; font.pixelSize: 18; horizontalAlignment: Qt.AlignLeft; }
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Every categories CoreText declaration also needs to specify color as Theme.color.neutral9

Copy link
Contributor

@MarnixCroes MarnixCroes left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Transport version and Connection Time with the peer should be added imo

@johnny9
Copy link
Contributor Author

johnny9 commented Feb 10, 2024

Transport version and Connection Time with the peer should be added imo

I think we need to re-sync with main before we add transport type but I can add Connection Time to the Network traffic section

@johnny9
Copy link
Contributor Author

johnny9 commented Feb 10, 2024

Update from b4f8fc1 to c8344d8

  • Prevented disconnect signal from triggering twice
  • Set color correctly on the section titles
  • Added "Connection time"

@MarnixCroes
Copy link
Contributor

Transport version and Connection Time with the peer should be added imo

and the Network (ipv4, onion etc),
sorry forgot about that one

Copy link
Contributor

@MarnixCroes MarnixCroes left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

apart from some minor things, like the dialog sometimes randomly closing.
I think this is good enough and improvements can be made later on

ACK c8344d8

nice work

Copy link
Member

@jarolrod jarolrod left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Almost there for the basic functionality of this page, some spacing is not adherent to the design file

PeerKeyValueRow { key: qsTr("Address"); value: details.address }
PeerKeyValueRow { key: qsTr("VIA"); value: details.addressLocal }
PeerKeyValueRow { key: qsTr("Type"); value: details.type }
PeerKeyValueRow { key: qsTr("Permission"); value: details.permission }
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
PeerKeyValueRow { key: qsTr("Permission"); value: details.permission }
PeerKeyValueRow { key: qsTr("Permissions"); value: details.permission }

}
Column {
width: parent.width
spacing: 5
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The spacing between sections of information is actually 15, so we'd want to add a bottom margin of 5

diff --git a/src/qml/pages/node/PeerDetails.qml b/src/qml/pages/node/PeerDetails.qml
index 224aef8c7..b32c2a0c7 100644
--- a/src/qml/pages/node/PeerDetails.qml
+++ b/src/qml/pages/node/PeerDetails.qml
@@ -79,6 +79,7 @@ Page {
             Column {
                 width: parent.width
                 spacing: 5
+                bottomPadding: 5
                 PeerKeyValueRow { key: qsTr("Address"); value: details.address }
                 PeerKeyValueRow { key: qsTr("VIA"); value: details.addressLocal }
                 PeerKeyValueRow { key: qsTr("Type"); value: details.type }
@@ -101,6 +102,7 @@ Page {
             Column {
                 width: parent.width
                 spacing: 5
+                bottomPadding: 5
                 PeerKeyValueRow { key: qsTr("Starting block"); value: details.startingHeight }
                 PeerKeyValueRow { key: qsTr("Synced headers"); value: details.syncedHeaders }
                 PeerKeyValueRow { key: qsTr("Synced blocks"); value: details.syncedBlocks }
@@ -116,6 +118,7 @@ Page {
             Column {
                 width: parent.width
                 spacing: 5
+                bottomPadding: 5
                 PeerKeyValueRow { key: qsTr("Direction"); value: details.direction }
                 PeerKeyValueRow { key: qsTr("Connection time"); value: details.connectionDuration }
                 PeerKeyValueRow { key: qsTr("Last send"); value: details.lastSend }

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See here, this starts to look like the design file

master patch
section-spacing-master section-spacing-patch

Design file screenshot of section spacing:

spacing-between-sections-15

Column {
width: Math.min(parent.width - 40, 450)
anchors.horizontalCenter: parent.horizontalCenter
spacing: 10
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we want to add top and bottom padding of 30 to adhere to the design file

Suggested change
spacing: 10
spacing: 10
topPadding: 30
bottomPadding: 30

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See here, this starts to look like the design file

master patch
top-bottom-padding-master top-bottom-padding-patch

Design file screenshot of top padding:

Screenshot 2024-02-13 at 10 30 16 PM

component PeerKeyValueRow: Row {
width: parent.width
property string key: ""
property string value: ""
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

also

Suggested change
property string value: ""
property string value: ""
spacing: 10

@johnny9
Copy link
Contributor Author

johnny9 commented Feb 14, 2024

Update from c8344d8 to eb5030f

  • incorporated all of @jarolrod suggestions (good eye)
  • set height of PeerKeyValueRow to 21 as specified by the Figma and removed the spacing value for the Columns that hold those Rows.
    Screenshot from 2024-02-14 00-24-30

Screenshot from 2024-02-14 00-22-35

Copy link
Contributor

@MarnixCroes MarnixCroes left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

eb5030f the new spacing can cause some overlap

image

@johnny9
Copy link
Contributor Author

johnny9 commented Feb 14, 2024

eb5030f the new spacing can cause some overlap

image

Thank you, updated with the height attached to the lineCount of the value

component PeerKeyValueRow: Row {
        width: parent.width
        property string key: ""
        property string value: ""
        height: 21 * valueText.lineCount
        spacing: 10
        CoreText {
            color: Theme.color.neutral9;
            text: key;
            width: 125;
            horizontalAlignment: Qt.AlignLeft;
        }
        CoreText {
            id: valueText
            color: Theme.color.neutral9;
            elide: Text.ElideRight;
            wrapMode: Text.WordWrap;
            text: value
            width: parent.width - 125;
            horizontalAlignment: Qt.AlignLeft;
        }
    }

Copy link
Contributor

@MarnixCroes MarnixCroes left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ack fa4e080

@yashrajd
Copy link

yashrajd commented Feb 14, 2024

Just ran the latest artefact, and it looks pretty good. Didn't see any spacing issues. ACK.

@GBKS
Copy link
Contributor

GBKS commented Feb 15, 2024

Thank you, updated with the height attached to the lineCount of the value

Do I see it correctly that the line height is hard-coded? Users can typically adjust text size via accessibility settings, which means the line height will also differ. Is there a way to automatically calculate this value?

In Figma and CSS, I usually define the line height as a percentage (see how that is defined in CSS here). Is that possible? Might be easier to work with.

@jarolrod
Copy link
Member

#388 is proposed as an alternative which handles some of the outstanding issues, implements more functionality

@johnny9
Copy link
Contributor Author

johnny9 commented Mar 1, 2024

Closing this as it is superseded with #388

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants