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

Made maxOutput Prop #1015

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/CONFIG.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ The terminal has several options you can use to change the behaviour of it. All
| readOnly | Hides the entire prompt, thus setting the terminal to read-only mode. | Boolean | `false` |
| styleEchoBack | Inherit style for command echoes (Terminal outputs of any commands entered) from prompt (Fully or partially, i.e. label or text only), or style them as regular messages. Omitting this prop enables default behaviour. | String<'labelOnly'/'textOnly'/'fullInherit'/'messageInherit'\> | `undefined` |
| welcomeMessage | The terminal welcome message. Set to `false` to disable, `true` to show the default, or supply a string (Or an array of them) to set a custom one. | Boolean/String/Array<String\> | `false` |
| maxOutput | The maximum amount of output lines in the terminal. Set to integer to cap output lines at that amount, set to 0 for there to be no cap. Omitting this prop enables default behaviour. | Number | `0` |

### Re-styling

Expand Down
3 changes: 2 additions & 1 deletion src/Terminal.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ export default class Terminal extends Component {
const { stdout } = this.state

if (this.props.locked) stdout.pop()

if (this.props.maxOutput && stdout.length >= this.props.maxOutput) stdout.shift()

stdout.push({ message, isEcho: options?.isEcho || false })

/* istanbul ignore next: Covered by interactivity tests */
Expand Down
3 changes: 2 additions & 1 deletion src/defs/types/Terminal.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ const optionTypes = {
noEchoBack: PropTypes.bool,
noHistory: PropTypes.bool,
noAutoScroll: PropTypes.bool,
noNewlineParsing: PropTypes.bool
noNewlineParsing: PropTypes.bool,
maxOutput: PropTypes.number
}

const labelTypes = {
Expand Down