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

Add padding to build log terminal #2543

Merged
merged 1 commit into from
Dec 6, 2021
Merged

Conversation

menghif
Copy link
Contributor

@menghif menghif commented Nov 29, 2021

Issue This PR Addresses

Fixes #2534

Type of Change

  • Bugfix: Change which fixes an issue
  • New Feature: Change which adds functionality
  • Documentation Update: Change which improves documentation
  • UI: Change which improves UI

Description

Add 1rem padding to build log terminal.

Screen Shot 2021-11-29 at 10 27 27 AM

Checklist

  • Quality: This PR builds and passes our npm test and works locally
  • Tests: This PR includes thorough tests or an explanation of why it does not
  • Screenshots: This PR includes screenshots or GIFs of the changes made or an explanation of why it does not (if applicable)
  • Documentation: This PR includes updated/added documentation to user exposed functionality or configuration variables are added/changed or an explanation of why it does not(if applicable)

@gitpod-io
Copy link

gitpod-io bot commented Nov 29, 2021

humphd
humphd previously approved these changes Nov 30, 2021
Copy link
Contributor

@Andrewnt219 Andrewnt219 left a comment

Choose a reason for hiding this comment

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

Seem like it isn't working. Reproduce:

// terminal.js
+ terminal.write("Hello world");

image

Copy link
Contributor

@Yoda-Canada Yoda-Canada left a comment

Choose a reason for hiding this comment

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

@menghif I retest your code, and the cursor can display on the second line. However when I put in some letters, they are still on the first line.
image
image
The convertEol: true, means "When enabled the cursor will be set to the beginning of the next line with every new line. This is equivalent to sending '\r\n' for each '\n'. " Therefore, my point is that convertEol is the issue.

const terminal = new Terminal({
  cols: 80,
  rows: 30,
  convertEol: true,
  theme,
});

@humphd
Copy link
Contributor

humphd commented Dec 2, 2021

The fix for this is to use CSS to wrap the terminal in a parent element, then set its background to the same colour and include padding. Here's an example of how I do this on another project:

Screen Shot 2021-12-02 at 11 08 23 AM

@Andrewnt219
Copy link
Contributor

@menghif Add padding to the class ".xterm" works as well. See xtermjs/xterm.js#1208

image

@humphd
Copy link
Contributor

humphd commented Dec 5, 2021

Can we get an update on this?

@menghif
Copy link
Contributor Author

menghif commented Dec 5, 2021

Sorry for the delay, @Andrewnt219's fix seems to work well!

Andrewnt219
Andrewnt219 previously approved these changes Dec 6, 2021
Copy link
Contributor

@Andrewnt219 Andrewnt219 left a comment

Choose a reason for hiding this comment

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

LGTM 👍.

humphd
humphd previously approved these changes Dec 6, 2021
@humphd
Copy link
Contributor

humphd commented Dec 6, 2021

@menghif squash and rebase this, and I'll merge it!

@humphd humphd merged commit d6e3d6c into Seneca-CDOT:master Dec 6, 2021
@humphd
Copy link
Contributor

humphd commented Dec 6, 2021

fyi @Yoda-Canada, this might help with your work on styling the terminal as well.

@menghif menghif deleted the issue-2534 branch December 8, 2021 01:46
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.

Add padding to build log terminal
4 participants