1.3.0 • Published 22 hours ago

react-terminal-ui v1.3.0

Weekly downloads
34
License
MIT
Repository
github
Last release
22 hours ago

CI Jest Code Coverage Report Types TypeScript CodeQL Scan

React Terminal UI

A React terminal component with support for light/dark modes. Styling is courtesy of termynal.js.

Check out the Demo :heart_eyes:

React Terminal UI Demo Dark

React Terminal UI Demo Light

Installation

npm install --save react-terminal-ui

Usage

React Terminal UI is a "dumb component"-- whatever props you pass in, it will render. You usually want to have a smart, controller component that controls terminal state. For example:

import React from 'react';
import Terminal, { ColorMode, TerminalOutput } from 'react-terminal-ui';

const TerminalController = (props = {}) => {
  const [terminalLineData, setTerminalLineData] = useState([
    <TerminalOutput>Welcome to the React Terminal UI Demo!</TerminalOutput>
  ]);
  // Terminal has 100% width by default so it should usually be wrapped in a container div
  return (
    <div className="container">
      <Terminal name='React Terminal Usage Example' colorMode={ ColorMode.Light }  onInput={ terminalInput => console.log(`New terminal input received: '${ terminalInput }'`) }>
        { terminalLineData }
      </Terminal>
    </div>
  )
};

Component Props

NameDescription
nameName of the terminal. Displays at the top of the rendered component. In the demo, the name is set to React Terminal UI.
colorModeTerminal color mode - either Light or Dark. Defaults to Dark.
onInputAn optional callback function that is invoked when a user presses enter on the prompt. The function is passed the current prompt input. If the onInput prop is not passed, the prompt input line will not display in the terminal.
startingInputValueStarting input value. If this prop changes, any user-entered input will be overridden by this value. Defaults to the empty string ("").
promptThe prompt character. Defaults to '$'.
heightHeight of the terminal. Defaults to 600px.
redBtnCallbackOptional callback function for the red button. If provided, the function will be invoked when the red button is clicked.
yellowBtnCallbackOptional callback function for the yellow button. If provided, the function will be invoked when the yellow button is clicked.
greenBtnCallbackOptional callback function for the green button. If provided, the function will be invoked when the green button is clicked.

Development

Make sure to run npm run install-peers after npm install so peer dependencies are also installed.

License

MIT

Termynal.js is also licensed under MIT, Copyright (C) 2017 Ines Montani.

1.3.0

22 hours ago

1.2.0

6 months ago

1.1.0

7 months ago

1.0.1

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.0

2 years ago

0.2.1

2 years ago

0.2.0

2 years ago

0.1.18

2 years ago

0.1.17

2 years ago

0.1.14

3 years ago

0.1.12

3 years ago

0.1.13

3 years ago

0.1.11

3 years ago

0.1.10

3 years ago

0.1.8

4 years ago

0.1.9

4 years ago

0.1.7

4 years ago

0.1.6

4 years ago

0.1.5

4 years ago

0.1.4

4 years ago

0.1.3

4 years ago

0.1.2

4 years ago

0.1.1

4 years ago