Giter VIP home page Giter VIP logo

kia's Introduction

Kia

Simple terminal spinners for Deno ๐Ÿฆ•

Version 0.4.0

weather.ts example

Kia is based on, and has much of the features of, ora. The project was also influenced by the work of: cli-spinners, and CLI Spinners for Deno

Usage

import Kia from "https://deno.land/x/[email protected]/mod.ts";

// Just a function to async sleep
function sleep(ms: number) {
	return new Promise((resolve) => setTimeout(resolve, ms));
}

const kia: any = new Kia("I will be back in about 3 seconds");
kia.start();
await sleep(3000) // or any other async action that'll take some time
kia.succeed("Action completed");

More thorough examples are available in the examples folder

API

kia()

kia(text)

kia(options)

Kia can be created with a string or the Options interface. A string is simply mapped to Options.text

const kia = new Kia("Hello");
// or
const kia = new Kia({
	text: "Hello",
	color: "Red",
});

options

You can pass any of the following options to the kia context:

text

Type: String

Default: ""

The text to display after the spinner

color

Type: Color

Default: "white"

The color for the spinner to be. Uses the color type in util.ts, which maps to the Deno standard colors.

spinner

Type: Spinner

Default: Dependent on OS (See below)

The spinner that the Kia instance should use. There are spinners provided in spinners.ts or you can provide it with an object like so:

    {
        interval: 80,
        frames: ["-", "|"]
    }

On windows the spinner defaults to windows, while on other OSes it defaults to dots.

Spinners can also be imported from anywhere as long as they follow this format. See the examples/externalSpinners.ts example for more info.

indent

Type: number

Default: 0

The level of indentation of the spinner in spaces

cursor

Type: boolean

Default: false

Whether or not to display a cursor when the spinner is active

writer

Type: Deno.Writer

Default: Deno.stdout

The resource to output to. This can be anything that uses the Writer interface including stdout, stderr, and files.

Instance

.start(text?)

Starts the spinner. Optionally sets the text at the same time. Returns Kia instance.

.stop()

Stops the spinner and clears the line. Returns Kia instance.

.set(text)

.set(options)

Allows you to change the spinners options. Returns Kia instance.

const kia = new Kia("Hello");
kia.set({ text: "Goodbye", color: "Red" });

.succeed(text?)

.fail(text?)

.warn(text?)

.info(text?)

Stops the spinner, and returns a message with the current text or the provided text as well as an icon indicating status. Wraps around stopWithFlair(). Returns Kia instance.

.stopWithFlair(text, flair)

Stops the spinner, and returns a message with the current text or the provided text as well as the preceding flair/icon. Returns Kia instance.

.stopAndPersist(options)

Stops the spinner and holds it in a static state. Returns the instance.

.renderNextFrame()

Renders the next frame of the spinner when it is stopped (i.e. can only be run after .stopAndPersist()).

.getText()

Returns the current text of the spinner

.getFrame()

Returns the current spinner frame

forPromise(action, text)

forPromise(action, options)

import { forPromise } from "https://deno.land/x/[email protected]/mod.ts";

forPromise(
	async () => {
		await yourAsyncAction();
	},
	{ text: name }
);

Starts a spinner for a promise. The spinner is stopped with .succeed() if the promise fulfills or with .fail() if it rejects. Returns the spinner instance.

action

Type: Promise

kia's People

Contributors

harrypeach avatar michael-spengler avatar zvictor avatar

Watchers

James Cloos 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.