Coder Social home page Coder Social logo

kevinb1003 / react-terminal-ui Goto Github PK

View Code? Open in Web Editor NEW

This project forked from jonmbake/react-terminal-ui

0.0 0.0 0.0 828 KB

A terminal react component with support for light and dark modes.

Home Page: https://jonmbake.github.io/react-terminal-ui/demo/

License: MIT License

Shell 3.24% JavaScript 10.17% TypeScript 68.96% CSS 17.62%

react-terminal-ui's Introduction

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 ๐Ÿ˜

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

Name Description
name Name of the terminal. Displays at the top of the rendered component. In the demo, the name is set to React Terminal UI.
colorMode Terminal color mode - either Light or Dark. Defaults to Dark.
onInput An 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.
startingInputValue Starting input value. If this prop changes, any user-entered input will be overridden by this value. Defaults to the empty string ("").
prompt The prompt character. Defaults to '$'.
height Height of the terminal. Defaults to 600px.
redBtnCallback Optional callback function for the red button. If provided, the function will be invoked when the red button is clicked.
yellowBtnCallback Optional callback function for the yellow button. If provided, the function will be invoked when the yellow button is clicked.
greenBtnCallback Optional 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.

react-terminal-ui's People

Contributors

jonmbake avatar jerwolff avatar dependabot[bot] avatar romulorod avatar erikvanzijst avatar lquyet avatar steeeee0223 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.