# @syncify/ansi

Terminal utilities for the [Syncify CLI](https://syncify.sh) Shopify theme development tool. This module provides CLI enhancements, helpers and various other TUI logic which are used in console logging and reporting for Syncify.

### Installation

The module should be included within distributed builds. Given the way the minification algorithms work in most build tools and the hard depedencies this package requires, failure to include within your builds will likely result in headaches.

```bash
$ pnpm add @syncify/ansi -D
```

# Colors

Terminal colors are exposed and made available using [Ansis](https://github.com/webdiscus/ansis). There are custom colors and raw access to `Ansis` is available.

### Standard Colors

![](https://img.shields.io/static/v1?label=&message=red&color=CA1A01)
![](https://img.shields.io/static/v1?label=&message=cyan&color=cyan)
![](https://img.shields.io/static/v1?label=&message=green&color=00C202)
![](https://img.shields.io/static/v1?label=&message=yellow&color=C8C400)
![](https://img.shields.io/static/v1?label=&message=magenta&color=CA30C7)
![](https://img.shields.io/static/v1?label=&message=blue&color=blue)
![](https://img.shields.io/static/v1?label=&message=white&color=white)
![](https://img.shields.io/static/v1?label=&message=gray&color=gray)
![](https://img.shields.io/static/v1?label=&message=dim&color=686A6E)

### Bright Colors

![](https://img.shields.io/static/v1?label=&message=redBright&color=F34634)
![](https://img.shields.io/static/v1?label=&message=cyanBright&color=60FDFF)
![](https://img.shields.io/static/v1?label=&message=greenBright&color=5EFA68)
![](https://img.shields.io/static/v1?label=&message=yellowBright&color=fffc67)
![](https://img.shields.io/static/v1?label=&message=magentaBright&color=FF77FF)
![](https://img.shields.io/static/v1?label=&message=whiteBright&color=ffffff)

### Custom Colors

![](https://img.shields.io/static/v1?label=&message=brown&color=c19a6b)
![](https://img.shields.io/static/v1?label=&message=pink&color=ff75d1)
![](https://img.shields.io/static/v1?label=&message=teal&color=91EBC2)
![](https://img.shields.io/static/v1?label=&message=lightGray&color=2a2a2e)
![](https://img.shields.io/static/v1?label=&message=orange&color=FFAB40)
![](https://img.shields.io/static/v1?label=&message=lavender&color=8080FF)
![](https://img.shields.io/static/v1?label=&message=neonGreen&color=56ef83)
![](https://img.shields.io/static/v1?label=&message=neonCyan&color=69d5fd)
![](https://img.shields.io/static/v1?label=&message=neonRouge&color=FF8095)
![](https://img.shields.io/static/v1?label=&message=neonMagenta&color=7b68ee)

# Symbols

There are various symbols (characters) available as named exports. Symbols in the CLI are color wrapped and injected into strings when composing logs and messaged etc.

### Character Helpers

Character are `const` exports, they are output in `darkGray` by default.

```js
import {
  PIP // |
  HSH // #
  PLS // +
  MIN // -
  COM // ,
  CHK // ✓
  BAD // 𐄂
  COL // :
  ARR // →
  CHV // ▸
  ARL // ⥂
  TLD // ~
  DSH // —
} from '@syncify/ansi'
```

### Infix Wrappers

Infix wrappers are `const` exports, they are output in `darkGray` by default.

```js
import {
  LPR // (
  RPR // )
  LCB // {
  RCB // }
  LSB // [
  RSB // ]
  LAN // <
  RAN // >
} from '@syncify/ansi'
```

### Tree Characters

Tree characters available on the `Tree` named export and are output in `darkGray` by default. Characters are also available in `red` and `yellow` colors.

<!-- prettier-ignore-->
```js
import { Tree } from '@syncify/ansi';

Tree.open         // ┌─
Tree.stub         // ├
Tree.dash         // ├─
Tree.line         // │
Tree.base         // └─
Tree.next         // \n│
Tree.after        // │\n
Tree.wrap         // \n│\n

Tree.indent.edge  // ├──┬─
Tree.indent.line  // │  │
Tree.indent.stub  // │  ├
Tree.indent.dash  // │  ├─
Tree.indent.base  // │  └─
Tree.indent.fall  // ├──┐
```

# TUI Create

Log message generator instance which can be used to compose a complex output log.

```js
import { Create } from '@syncify/ansi';

const message = Create();

message.BR;
message.NL;
message.Break();
message.Template();
message.Update();
message.Context();
message.Dash();
message.End();
message.Error();
message.Get();
message.Inline();
message.Insert();
message.Line();
message.Newline();
message.Pop();
message.Remove();
message.Ruler();
message.Top();
message.Warn();
message.Wrap();
message.toLine();
message.toRaw();
message.toString();
message.Log();
```

# Spinner

Symbol Spinner utility which will persist a terminal animation.

```js
import { spinner } from '@syncify/ansi';

spinner('loading', {
  line: true,
  action: {},
  color: 'pink',
  style: 'spinning'
});

spinner.update('');
spinner.stop();
```

# Capture

Regular expression replacers, which capture various text sequences or characters, excluding any ansi occurrences.

### Usage

<!-- prettier-ignore-->
```js
import { capture } from '@syncify/ansi'

capture(/(regex)/, '', match => {})     // sugar matching

capture.punctuation('', match => {})    // [$<[\]>{}:,-]
capture.quoted('', match => {})         // "double" and "single"
capture.brackets('', match => {})       // [ and ]
capture.braces('', match => {})         // { and }
capture.angles('', match => {})         // < and >
capture.colons('', match => {})         // :
capture.dollar('', match => {})         // $
capture.dash('', match => {})           // -
capture.commas('', match => {})         // ,
```

# Progress

Progress bar utility is available on the `progress` named export. This function returns an instance with methods.

```bash
▰▰▰▰▰▰▰▰▰▰▱▱▱▱▱▱▱▱▱▱ 50%
```

### Usage

<!-- prettier-ignore-->
```js
import { progress } from '@syncify/ansi';

const loading = progress(25, {
  showPercentage: true,
  barColor: 'neonGreen',
  percentColor: 'whiteBright',
  barSize: 40,
  clearOnComplete: false
});

loading.increment(1);  // Increment progress
loading.decrement(1);  // Decrement progress
loading.render()       // Render the progress bar, returns string
loading.stop()         // Stop progress
loading.percent        // Returns loading percentage
```

# Terminal Size

The module also exposes a helper utility for obtaining the developers terminal size and will return some information about the terminal dimensions.

```js
import { tsize } from '@syncify/ansi';

const {
  wrap, // number
  cols, // number
  row // number
} = tsize();
```

# Contributing

This package is designed for usage within [Syncify](https://syncify.sh). Contributions are not accepted unless they pertain to the core Syncify module. If contributions fall into that category, fork the Syncify project.
