Files
pokedexcli/commands.go
T

141 lines
2.7 KiB
Go
Raw Normal View History

2026-07-26 10:54:19 -05:00
package main
import (
"fmt"
"os"
"sort"
"time"
"github.com/StevanFreeborn/pokedexcli/internal/pokeapi"
"github.com/StevanFreeborn/pokedexcli/internal/pokecache"
2026-07-26 10:54:19 -05:00
)
type context struct {
commands map[string]cliCommand
client *pokeapi.Client
prevOffset int
nextOffset int
2026-07-26 10:54:19 -05:00
}
func (r *context) register(c cliCommand) {
if c.name != "" {
r.commands[c.name] = c
}
}
func NewContext() *context {
var exitCommand = cliCommand{
name: "exit",
description: "Exit the Pokedex",
callback: commandExit,
}
var helpCommand = cliCommand{
name: "help",
description: "Displays a help message",
callback: commandHelp,
}
var mapCommand = cliCommand{
name: "map",
description: "Displays the names of the next 20 location areas",
callback: commandMap,
}
var mapBackCommand = cliCommand{
name: "mapb",
description: "Displays the names of the previous 20 location areas",
callback: commandMapBack,
}
2026-07-26 10:54:19 -05:00
c := &context{
commands: map[string]cliCommand{},
client: pokeapi.NewClient(pokecache.NewCache(5 * time.Second)),
prevOffset: 0,
nextOffset: 0,
2026-07-26 10:54:19 -05:00
}
c.register(exitCommand)
c.register(helpCommand)
c.register(mapCommand)
c.register(mapBackCommand)
2026-07-26 10:54:19 -05:00
return c
}
type commandFunc func(c *context) error
type cliCommand struct {
name string
description string
callback commandFunc
}
func commandExit(c *context) error {
fmt.Println("Closing the Pokedex... Goodbye!")
os.Exit(0)
return nil
}
func commandHelp(c *context) error {
fmt.Println("Welcome to the Pokedex!")
fmt.Println("Usage:")
fmt.Println("")
sortedKeys := []string{}
for k := range c.commands {
sortedKeys = append(sortedKeys, k)
}
sort.Strings(sortedKeys)
for _, key := range sortedKeys {
command := c.commands[key]
fmt.Printf("%s: %s\n", command.name, command.description)
}
return nil
}
func getMaps(c *context, offset int) error {
page, err := c.client.Locations.Get(offset)
if err != nil {
fmt.Println("Unable to get locations")
return err
}
c.prevOffset = page.GetPreviousOffset()
c.nextOffset = page.GetNextOffset()
if len(page.Results) == 0 {
fmt.Println("No locations found")
} else {
locationsPerPage := 20
currentPage := (offset / locationsPerPage) + 1
totalPages := page.Count / locationsPerPage
fmt.Printf("Displaying page %d of %d page(s)\n", currentPage, totalPages)
}
for _, location := range page.Results {
fmt.Printf("%s\n", location.Name)
}
return nil
}
func commandMap(c *context) error {
return getMaps(c, c.nextOffset)
}
func commandMapBack(c *context) error {
if c.prevOffset == 0 && (c.nextOffset == 0 || c.nextOffset == 20) {
fmt.Println("You're on the first page")
return nil
}
return getMaps(c, c.prevOffset)
}