Compare commits

..

2 Commits

Author SHA1 Message Date
f64af89e9b test: adapt to list.find usage 2026-03-16 17:07:51 +01:00
0e9c1dbb01 feat: use list.find() instead of building a dict 2026-03-16 17:07:37 +01:00
2 changed files with 6 additions and 17 deletions

View File

@@ -1,4 +1,3 @@
import gleam/dict
import gleam/io import gleam/io
import gleam/list import gleam/list
import gleam/string import gleam/string
@@ -50,14 +49,6 @@ pub fn build_commands() -> List(Command) {
] ]
} }
pub fn commands_dict(
cmds: List(Command),
) -> dict.Dict(String, fn(List(Command)) -> Nil) {
list.fold(cmds, dict.new(), fn(acc, cmd) {
dict.insert(acc, cmd.name, cmd.run)
})
}
fn append_history(cmd: String) -> Nil { fn append_history(cmd: String) -> Nil {
case simplifile.append(history_file, cmd <> "\n") { case simplifile.append(history_file, cmd <> "\n") {
Ok(Nil) -> Nil Ok(Nil) -> Nil
@@ -73,8 +64,8 @@ fn repl_loop(cmds: List(Command)) -> a {
"" -> Nil "" -> Nil
_ -> { _ -> {
input |> append_history input |> append_history
case dict.get(commands_dict(cmds), cmd) { case list.find(cmds, fn(c) { c.name == cmd }) {
Ok(func) -> func(cmds) Ok(command) -> command.run(cmds)
Error(_) -> io.println(input <> ": unknown command") Error(_) -> io.println(input <> ": unknown command")
} }
} }

View File

@@ -1,19 +1,17 @@
import gleam/dict import gleam/list
import gleeunit import gleeunit
import gleeunit/should import gleeunit/should
import simple_repl import simple_repl
pub fn command_lookup_test() { pub fn command_lookup_test() {
let commands = let commands = simple_repl.build_commands()
simple_repl.build_commands()
|> simple_repl.commands_dict
let has_help = case dict.get(commands, "help") { let has_help = case list.find(commands, fn(c) { c.name == "help" }) {
Ok(_) -> True Ok(_) -> True
Error(_) -> False Error(_) -> False
} }
let has_unknown = case dict.get(commands, "foo") { let has_unknown = case list.find(commands, fn(c) { c.name == "foo" }) {
Ok(_) -> True Ok(_) -> True
Error(_) -> False Error(_) -> False
} }