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

fix dhcp display in padd tiny #447

Merged
merged 1 commit into from
Mar 29, 2025

Conversation

christianboyle
Copy link
Contributor

What does this PR aim to accomplish?:

This PR fixes a regression to PADDtiny introduced in v4.0.0.

The addition of the DHCP status display caused line wrapping, which caused a blank line to appear, which cut off the header information display.

diff

How does this PR accomplish the above?:

  1. Maintains the correct number of lines for the tiny display (53x20)
  2. Shows both IPv6 and DHCP status information
  3. Keeps the formatting consistent with other display modes

By submitting this pull request, I confirm the following:

  1. I have read and understood the contributors guide, as well as this entire template. I understand which branch to base my commits and Pull Requests against.
  2. I have commented my proposed changes within the code and I have tested my changes.
  3. I am willing to help maintain this change if there are issues with it later.
  4. It is compatible with the EUPL 1.2 license
  5. I have squashed any insignificant commits. (git rebase)
  6. I have checked that another pull request for this purpose does not exist.
  7. I have considered, and confirmed that this submission will be valuable to others.
  8. I accept that this submission may not be used, and the pull request closed at the will of the maintainer.
  9. I give this submission freely, and claim no ownership to its content.

  • [x ] I have read the above and my PR is ready for review. Check this box to confirm

Copy link
Member

@yubiuser yubiuser left a comment

Choose a reason for hiding this comment

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

Thanks for your PR. Please base on and target development brach.


You reverted the new additions by removing ${dhcp_check_box}" "Rng" "${dhcp_range}. Maybe you can keep them and play a bit with the paddings to fit everything in one line?

@christianboyle christianboyle changed the base branch from master to development March 15, 2025 21:47
@christianboyle
Copy link
Contributor Author

@yubiuser In case you're curious why I didn't just add the variables back, there is a display issue where the opening checkbox bracket gets the color from the Enabled Disabled display:

2025-03-15_04-52-51PM
2025-03-15_04-50-51PM

If there's a better way to handle that, let me know.

@rdwebdesign
Copy link
Member

there is a display issue where the opening checkbox bracket gets the color from the Enabled Disabled display:

I see the blank line, but I can't replicate this color issue:

image

Also, your screenshot on the PR description is not showing this color error when using the original code.
image

@rdwebdesign
Copy link
Member

@yubiuser

I think the only issue is the excessive padding near the end of the line: %-36s${reset_text}${clear_line}\n.

Why do we need it there?
I think this was a mistake... I don't think this line will ever fit in "tiny".

@christianboyle
Copy link
Contributor Author

christianboyle commented Mar 15, 2025

@yubiuser @rdwebdesign

Hey, sorry for the confusion. In my original commit I had a typo where ${dhcp_range_heatmap} became ${dhcp_heatmap} which threw things into a bad state.

It seems like my latest fix has things rendering like you see in this screenshot, which is probably closer to correct than what we had been seeing with the [-] indicator, due to us testing with the wrong variable.

2025-03-15_06-08-38PM

Edit: Although, I'm now seeing DNSSEC: Disabled with Disabled in blue in @rdwebdesign's screenshot. So I guess I'm not sure what's intended at this point.

@yubiuser
Copy link
Member

I think the big padding was needed because the range can be something like 198.167.345.123 - 198.167.345.200 which is alone 33 characters

@rdwebdesign
Copy link
Member

rdwebdesign commented Mar 16, 2025

The issue is:
in the current master code, after the "Rng" string, we have only 33 columns available (including the space):

 DHCP:     [-]   Rng N/A
SYSTEM ==============================================
                    1234567890          1234567890 
                              1234567890          123

The maximum padding should be 32 to avoid the blank line.

Your range example will overflow anyway:

image

Note: the range you posted as example is invalid. 345... really?!? (I just noticed after posting the images) 😅 😂

You can remove the spaces around the hyphen in the range string... or you can simply remove the "Rng" string and add the IPs right after the box:

image

@christianboyle
Copy link
Contributor Author

christianboyle commented Mar 16, 2025

Ok, here's where things stand:

  1. [Disabled] corrected to use checkbox [-] with blue hyphen, which is the expected display
    -- The issue was that in the "tiny" display format, we're using dhcp_range_heatmap to color the DHCP status text instead of using the dhcp_check_box variable.

  2. Rng: removed and @rdwebdesign's sample IP range tested with hardcoded value
    -- Reduced the spacing after the checkbox from 5 spaces to 2 spaces
    -- Increased the width allocation for the DHCP range from 10 to 45 characters

Edit: If someone could test with DHCP enabled, that would be good; I'm wondering why we don't see the [✓], like we expect, in @rdwebdesign's screenshot with IP range.

Edit 2: I see our errant empty line is back, fixing now.

range

@christianboyle
Copy link
Contributor Author

Ok, things should be all good now.

spacing

@christianboyle
Copy link
Contributor Author

One last adjustment; making this N/A the only yellow item on the screen was annoying.

This change handles it conditionally:

  • N/A is blue, which is consistent with the checkbox hyphen style for Disabled state
  • IP Range continues to be yellow, unchanged from the existing style in master

2025-03-16_12-51-12PM

@rdwebdesign rdwebdesign requested a review from yubiuser March 16, 2025 19:32
@yubiuser yubiuser mentioned this pull request Mar 28, 2025
Copy link
Member

@yubiuser yubiuser left a comment

Choose a reason for hiding this comment

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

Could you squash them all down please. Then this can be merged.

updates from review

more updates from review

fix dhcp string to checkbox

fix dhcp ip range display

fix dhcp ip range display again

enhance dhcp range display

Update padd.sh

Co-authored-by: RD WebDesign <[email protected]>
Signed-off-by: Christian Boyle <[email protected]>

add newline at end of file, per editorconfig-checker failure

Update padd.sh

Co-authored-by: yubiuser <[email protected]>
Signed-off-by: Christian Boyle <[email protected]>
@yubiuser yubiuser dismissed rdwebdesign’s stale review March 29, 2025 20:36

Code has been simplified a lot - requested change not necessary anymore

@yubiuser yubiuser merged commit 4dd69cb into pi-hole:development Mar 29, 2025
3 checks passed
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.

3 participants