Add ability to create character sequences as Input
This commit is contained in:
@@ -1,17 +1,19 @@
|
|||||||
import gleam/erlang/atom
|
import gleam/erlang/atom
|
||||||
import gleam/list
|
import gleam/list
|
||||||
|
import gleam/string
|
||||||
|
|
||||||
import input/internal as internal_input
|
import input/internal as internal_input
|
||||||
|
|
||||||
pub type Key {
|
pub type Key {
|
||||||
Char(String)
|
Char(String)
|
||||||
|
|
||||||
|
Input(String)
|
||||||
Left
|
Left
|
||||||
Right
|
Right
|
||||||
Up
|
Up
|
||||||
Down
|
Down
|
||||||
|
|
||||||
Continue
|
Continue(buffer: List(String))
|
||||||
Unknown
|
Unknown
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -20,6 +22,9 @@ pub const esc = "\u{001B}"
|
|||||||
// control sequence introducer
|
// control sequence introducer
|
||||||
pub const csi = "["
|
pub const csi = "["
|
||||||
|
|
||||||
|
// input introducer
|
||||||
|
pub const input_introducer = "::"
|
||||||
|
|
||||||
pub fn from_list(l: List(String)) -> Key {
|
pub fn from_list(l: List(String)) -> Key {
|
||||||
case l {
|
case l {
|
||||||
[e, c, "D"] if e == esc && c == csi -> Left
|
[e, c, "D"] if e == esc && c == csi -> Left
|
||||||
@@ -27,12 +32,21 @@ pub fn from_list(l: List(String)) -> Key {
|
|||||||
[e, c, "A"] if e == esc && c == csi -> Up
|
[e, c, "A"] if e == esc && c == csi -> Up
|
||||||
[e, c, "B"] if e == esc && c == csi -> Down
|
[e, c, "B"] if e == esc && c == csi -> Down
|
||||||
|
|
||||||
[e, c] if e == esc && c == csi -> Continue
|
[e, c] if e == esc && c == csi -> Continue(l)
|
||||||
|
|
||||||
[e] if e == esc -> Continue
|
[ci] | [ci, _] if ci == input_introducer -> Continue(l)
|
||||||
|
[ii, cmd, tail] if ii == input_introducer -> {
|
||||||
|
case tail {
|
||||||
|
"\r" -> Input(cmd)
|
||||||
|
"\u{007F}" -> Continue([ii, string.drop_end(cmd, 1)])
|
||||||
|
_ -> Continue([ii, cmd <> tail])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[e] if e == esc -> Continue(l)
|
||||||
[char] -> Char(char)
|
[char] -> Char(char)
|
||||||
|
|
||||||
[] -> Continue
|
[] -> Continue([])
|
||||||
_ -> Unknown
|
_ -> Unknown
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -44,10 +58,13 @@ pub fn start_raw_shell() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub fn read_input_until_key(l: List(String)) -> Key {
|
pub fn read_input_until_key(l: List(String)) -> Key {
|
||||||
let l = internal_input.read_input() |> list.wrap |> list.append(l, _)
|
case
|
||||||
|
internal_input.read_input()
|
||||||
case from_list(l) {
|
|> list.wrap
|
||||||
Continue -> read_input_until_key(l)
|
|> list.append(l, _)
|
||||||
|
|> from_list
|
||||||
|
{
|
||||||
|
Continue(l) -> read_input_until_key(l)
|
||||||
k -> k
|
k -> k
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,13 +2,14 @@ import gleam/json
|
|||||||
import gleam/result
|
import gleam/result
|
||||||
import gleam/string
|
import gleam/string
|
||||||
|
|
||||||
import input/key.{type Key, Char}
|
import input/key.{type Key}
|
||||||
import mpv/internal/control as internal_control
|
import mpv/internal/control as internal_control
|
||||||
import tcp/reason.{type Reason}
|
import tcp/reason.{type Reason}
|
||||||
import tcp/tcp.{type Socket}
|
import tcp/tcp.{type Socket}
|
||||||
|
|
||||||
pub type Control {
|
pub type Control {
|
||||||
TogglePlayPause
|
TogglePlayPause
|
||||||
|
|
||||||
Exit
|
Exit
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -18,7 +19,7 @@ pub type ControlError {
|
|||||||
|
|
||||||
pub fn from_key(key: Key) -> Result(Control, Nil) {
|
pub fn from_key(key: Key) -> Result(Control, Nil) {
|
||||||
case key {
|
case key {
|
||||||
Char(char) -> char_control(char)
|
key.Char(char) -> char_control(char)
|
||||||
_ -> Error(Nil)
|
_ -> Error(Nil)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import gleam/list
|
import gleam/list
|
||||||
import gleeunit
|
import gleeunit
|
||||||
|
|
||||||
import input/key.{type Key, Char, csi, esc}
|
import input/key.{type Key, Char, csi, esc, input_introducer as ii}
|
||||||
|
|
||||||
pub fn main() -> Nil {
|
pub fn main() -> Nil {
|
||||||
gleeunit.main()
|
gleeunit.main()
|
||||||
@@ -12,18 +12,30 @@ type TestCase {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub fn key_from_list_test() {
|
pub fn key_from_list_test() {
|
||||||
let test_cases = [
|
let base_tests = [TestCase([], key.Continue([]))]
|
||||||
TestCase(["c"], Char("c")),
|
|
||||||
|
let char_tests = [TestCase(["c"], Char("c"))]
|
||||||
|
|
||||||
|
let escape_tests = [
|
||||||
|
TestCase([esc, csi], key.Continue([esc, csi])),
|
||||||
|
TestCase([esc], key.Continue([esc])),
|
||||||
|
|
||||||
TestCase([esc, csi, "D"], key.Left),
|
TestCase([esc, csi, "D"], key.Left),
|
||||||
TestCase([esc, csi, "C"], key.Right),
|
TestCase([esc, csi, "C"], key.Right),
|
||||||
TestCase([esc, csi, "A"], key.Up),
|
TestCase([esc, csi, "A"], key.Up),
|
||||||
TestCase([esc, csi, "B"], key.Down),
|
TestCase([esc, csi, "B"], key.Down),
|
||||||
TestCase([esc, csi], key.Continue),
|
|
||||||
TestCase([esc], key.Continue),
|
|
||||||
TestCase([], key.Continue),
|
|
||||||
]
|
]
|
||||||
|
|
||||||
list.each(test_cases, fn(tc) {
|
let input_tests = [
|
||||||
|
TestCase([ii], key.Continue([ii])),
|
||||||
|
TestCase([ii, "a"], key.Continue([ii, "a"])),
|
||||||
|
TestCase([ii, "a", "b"], key.Continue([ii, "ab"])),
|
||||||
|
TestCase([ii, "ab", "\r"], key.Input("ab")),
|
||||||
|
]
|
||||||
|
|
||||||
|
let test_cases = [base_tests, char_tests, escape_tests, input_tests]
|
||||||
|
|
||||||
|
list.each(list.flatten(test_cases), fn(tc) {
|
||||||
assert tc.expected == key.from_list(tc.input)
|
assert tc.expected == key.from_list(tc.input)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user