# Interactive TUI

The interactive TUI allows you to make your apps interactive if they provide one or two data sources, which consist of a list of strings, integers, and even class instances, to make getting information about them easier. The interactive TUI renders the screen in two panes, the top being a status bar, and the bottom being a list of key bindings. For clarification, the `ifm` command uses the double pane interactive TUI and the `taskman` command uses the single pane interactive TUI with info in the second pane:

<figure><img src="https://github.com/Aptivi-Stable-Docs/nks-manual-0.1.0-beta3/blob/main/.gitbook/assets/Beta3-056-Files.png" alt=""><figcaption><p>Double-paned interactive TUI with the ability to switch between two panes</p></figcaption></figure>

<figure><img src="https://github.com/Aptivi-Stable-Docs/nks-manual-0.1.0-beta3/blob/main/.gitbook/assets/Beta3-093-Inputs%20(1).png" alt=""><figcaption><p>Single-paned interactive TUI</p></figcaption></figure>

{% hint style="info" %}
You can exit out of any interactive TUI application by pressing the `ESC` key on your keyboard.
{% endhint %}

These are some of the controls, alongside the custom defined controls for a specific TUI, that you can use:

| Key          | Action                                                              |
| ------------ | ------------------------------------------------------------------- |
| `Up Arrow`   | Moves up one element in the current pane                            |
| `Down Arrow` | Moves down one element in the current pane                          |
| `Home`       | Moves to the first element                                          |
| `End`        | Moves to the last element                                           |
| `Page Up`    | One page backward                                                   |
| `Page Down`  | One page forward                                                    |
| `I`          | Gives you more information about a selected element if there is one |
| `K`          | Shows you a list of available bindings                              |
| `Tab`        | Switches the sides                                                  |
| `ESC`        | Exits the interactive TUI app                                       |

{% hint style="info" %}
This feature is also available on Terminaux. Some of the features here might not get backported to Terminaux until the next version surfaces there.
{% endhint %}

## Can I make one, too?

Yes! You can make your own interactive TUI application. Depending on your requirements, you may want to make a plan as to how would your interactive TUI application be.

For each application, you must make a class that would implement both the `BaseInteractiveTui` class and the `IInteractiveTui` interface, just like below:

{% code title="MyTui.cs" lineNumbers="true" %}

```csharp
internal class MyTui : BaseInteractiveTui, IInteractiveTui
{
    public override List<InteractiveTuiBinding> Bindings { get; set; } = new()
    {
        new InteractiveTuiBinding("Action", ConsoleKey.F1, (data, _) => Proceed(data))
    };

    public override IEnumerable PrimaryDataSource =>
        new string[] { "One", "Two", "Three", "Four" };

    public override void RenderStatus(object item)
    {
        string currentItem = (string)item;
        Status = currentItem;
    }

    public override string GetEntryFromItem(object item)
    {
        string currentItem = (string)item;
        return $" [{currentItem}]";
    }

    private static void Proceed(object data)
    {
        string currentItem = (string)data;
        InfoBoxColor.WriteInfoBox(currentItem);
    }
}
```

{% endcode %}

However, you cannot execute your interactive TUI based on your class unless you use this (assuming that you've already defined a command entry in your mod entry point class called `mycommand`):

{% code title="MyCommand.cs" lineNumbers="true" %}

```csharp
public override int Execute(CommandParameters parameters, ref string variableValue)
{
	InteractiveTuiTools.OpenInteractiveTui(new MyTui());
	return 0;
}
```

{% endcode %}

If everything goes well, you should see this:

<figure><img src="https://github.com/Aptivi-Stable-Docs/nks-manual-0.1.0-beta3/blob/main/.gitbook/assets/Beta3-094-Inputs.png" alt=""><figcaption></figcaption></figure>

And if you press your key binding, you'll get this:

<figure><img src="https://github.com/Aptivi-Stable-Docs/nks-manual-0.1.0-beta3/blob/main/.gitbook/assets/Beta3-095-Inputs.png" alt=""><figcaption></figcaption></figure>

{% hint style="info" %}
When defining the interactive TUI binding, you can now set the required modifier keys by setting the `bindingKeyModifiers` value. Here is a constructor that supports this property:

```csharp
public InteractiveTuiBinding(string bindingName, ConsoleKey bindingKeyName, ConsoleModifiers bindingKeyModifiers, Action<object, int> bindingAction)
```

{% endhint %}

For multiple panes, you'll have to modify your class to take two data sources and adapt it to interact with the second pane, like below: (note the highlighted parts, they are added)

<pre class="language-csharp" data-title="MyTui.cs" data-line-numbers><code class="lang-csharp">internal class MyTui : BaseInteractiveTui, IInteractiveTui
{
    public override List&#x3C;InteractiveTuiBinding> Bindings { get; set; } = new()
    {
        new InteractiveTuiBinding("Action", ConsoleKey.F1, (data, _) => Proceed(data)),
    };

<strong>    public override bool SecondPaneInteractable =>
</strong><strong>        true;
</strong>
    public override IEnumerable PrimaryDataSource =>
        new string[] { "One", "Two", "Three", "Four" };

<strong>    public override IEnumerable SecondaryDataSource =>
</strong><strong>        new string[] { "Five", "Six", "Seven", "Eight", "Nine", "Ten" };
</strong>
    public override void RenderStatus(object item)
    {
        string currentItem = (string)item;
        Status = currentItem;
    }

    public override string GetEntryFromItem(object item)
    {
        string currentItem = (string)item;
        return $" [{currentItem}]";
    }

    private static void Proceed(object data)
    {
        string currentItem = (string)data;
        InfoBoxColor.WriteInfoBox(currentItem);
    }
}
</code></pre>

If everything goes well, you should be able to switch to the second pane, causing you to be able to select items from the second pane:

<figure><img src="https://github.com/Aptivi-Stable-Docs/nks-manual-0.1.0-beta3/blob/main/.gitbook/assets/Beta3-096-Inputs.png" alt=""><figcaption></figcaption></figure>

And if you try to execute your key binding on an item found in the second pane, you'll see this:

<figure><img src="https://github.com/Aptivi-Stable-Docs/nks-manual-0.1.0-beta3/blob/main/.gitbook/assets/Beta3-097-Inputs.png" alt=""><figcaption></figcaption></figure>

{% hint style="info" %}
As of 0.1.0 Beta 3, you don't have to manually implement the switch function, since it's already implemented for double-pane interactive TUIs.
{% endhint %}

Additionally, you can make your TUI app refresh every set millisecond so that your app can update itself based on the **selected** data, like weather for the selected city. For this, you need an information source that is dynamic and self-updating (from the `GetInfoFromItem()` function), like stopwatches, random data, or even self-updating data gathered from the Internet, based on the selected item in the first pane, assuming that you know how to process them correctly.

For example, to use the Namer library to make a single-paned TUI application that gathers random names to list 10 names in the info pane, you must add a NuGet package, Namer, to your mod's dependencies. To learn more about how to use this library, consult the below page:

{% content-ref url="/spaces/gmP2CdmfwirIpCISUoX8/pages/3yjqDHtI6GTEAmb2zdl2" %}
[How to use](/deprecated/namer-manual/usage/how-to-use.md)
{% endcontent-ref %}

The code that would do this would look like this:

<pre class="language-csharp" data-title="MyTui.cs" data-line-numbers><code class="lang-csharp">internal class MyTui : BaseInteractiveTui, IInteractiveTui
{
    public override List&#x3C;InteractiveTuiBinding> Bindings { get; set; } = new();

    public override int RefreshInterval => 15000;

    public override IEnumerable PrimaryDataSource =>
        new string[] { "Test" };

    public override void RenderStatus(object item)
    {
        string currentItem = (string)item;
        Status = currentItem;
    }

    public override string GetEntryFromItem(object item)
    {
        string currentItem = (string)item;
        return $" [{currentItem}]";
    }
<strong>    public override string GetInfoFromItem(object item)
</strong><strong>    {
</strong><strong>        var namesBuilder = new StringBuilder();
</strong>
<strong>        var list = NameGenerator.GenerateNames(10);
</strong><strong>        for (int i = 0; i &#x3C; list.Length; i++)
</strong><strong>        {
</strong><strong>            string name = list[i];
</strong><strong>            namesBuilder.AppendLine(name);
</strong><strong>        }
</strong>
<strong>        return namesBuilder.ToString();
</strong><strong>    }
</strong>}
</code></pre>

If everything goes well, you should see your TUI app refresh every 15 seconds:

<figure><img src="https://github.com/Aptivi-Stable-Docs/nks-manual-0.1.0-beta3/blob/main/.gitbook/assets/Beta3-098-Inputs.png" alt=""><figcaption></figcaption></figure>

### Colors for the TUI

You can also specify the colors for your TUI application, too! Currently, your interactive TUI uses the regular colors defined under `InteractiveTuiColors`, which gets its values from the kernel configuration that you can also customize.

However, you can override the TUI colors by using the `new` keyword on all the `*Color` properties to assign it a new `Color` value. For example, the contacts manager gets its own colors from its own colors class, which is also configurable through the kernel settings, like below:

{% code title="ContactsManagerCli.cs (Beta 2)" lineNumbers="true" %}

```csharp
public static new Color BackgroundColor => ContactManagerCliColors.ContactsManagerBackgroundColor;
public static new Color ForegroundColor => ContactManagerCliColors.ContactsManagerForegroundColor;
public static new Color PaneBackgroundColor => ContactManagerCliColors.ContactsManagerPaneBackgroundColor;
(...)
```

{% endcode %}

### `LastOnOverflow()`

You usually don't need to override this function, as it works by checking both panes for out of bounds and, if overflown, fixing their values so that they don't overflow.

### `AcceptsEmptyData`

You can specify if your interactive TUI accepts empty data. The interactive TUI, by default, checks for the data source in both panes and, if not found or are empty, exits.

However, if you override the value like below, it'll start up regardless of how many data is there.

```csharp
public override bool AcceptsEmptyData => true;
```

### `HandleExit()`

If you want to handle exiting your own TUI application in your way, you can override the HandleExit() function like this:

```csharp
public override void HandleExit()
{
    (...)
}
```

### `Instance`

If you want to access instance-based fields


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://aptivi.gitbook.io/deprecated/nitrocid-ks-v0.1.0-beta-3-manual/advanced-and-power-users/inner-workings/console-input/interactive-tui.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
