You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cointop/cointop/conversion.go

151 lines
4.1 KiB
Go

package cointop
import (
"fmt"
"sort"
"github.com/miguelmota/cointop/pkg/color"
"github.com/miguelmota/cointop/pkg/pad"
)
//var supportedfiatconversions = []string{"AUD", "BRL", "CAD", "CHF", "CLP", "CNY", "CZK", "DKK", "EUR", "GBP", "HKD", "HUF", "IDR", "ILS", "INR", "JPY", "KRW", "MXN", "MYR", "NOK", "NZD", "PHP", "PKR", "PLN", "RUB", "SEK", "SGD", "THB", "TRY", "TWD", "ZAR"}
var supportedfiatconversions = map[string]string{
"USD": "US Dollar",
"EUR": "Euro",
"GBP": "British Pound",
"CNY": "Chinese Yuan",
"HKD": "Hong Kong Dollar",
"JPY": "Japanese Yen",
"KRW": "South Korean Won",
"NZD": "New Zealand Dollar",
6 years ago
//"CFH": "Swiss Franc",
"MXN": "Mexican Peso",
"AUD": "Australian Dollar",
"IDR": "Indonesian Rupiah",
"RUB": "Russian Ruble",
"CAD": "Canadian dollar",
}
var supportedcryptoconversion = map[string]string{
"BTC": "Bitcoin",
"ETH": "Ethereum",
}
var alphanumericcharacters = []rune{'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'}
func (ct *Cointop) supportedCurrencyConversions() map[string]string {
all := map[string]string{}
for k, v := range supportedfiatconversions {
all[k] = v
}
for k, v := range supportedcryptoconversion {
all[k] = v
}
return all
}
func (ct *Cointop) supportedFiatCurrencyConversions() map[string]string {
return supportedfiatconversions
}
func (ct *Cointop) supportedCryptoCurrencyConversions() map[string]string {
return supportedfiatconversions
}
func (ct *Cointop) sortedSupportedCurrencyConversions() []string {
currencies := ct.supportedCurrencyConversions()
keys := make([]string, 0, len(currencies))
for k := range currencies {
keys = append(keys, k)
}
sort.Strings(keys)
return keys
}
func (ct *Cointop) toggleConvertMenu() error {
ct.convertmenuvisible = !ct.convertmenuvisible
if ct.convertmenuvisible {
return ct.showConvertMenu()
}
return ct.hideConvertMenu()
}
func (ct *Cointop) updateConvertMenu() {
header := color.GreenBg(fmt.Sprintf(" Currency Conversion %s\n\n", pad.Left("[q] close menu ", ct.maxtablewidth-20, " ")))
helpline := " Press the corresponding key to select currency for conversion\n\n"
cnt := 0
h := ct.viewHeight(ct.convertmenuviewname)
percol := h - 5
cols := make([][]string, percol)
for i := range cols {
cols[i] = make([]string, 20)
}
keys := ct.sortedSupportedCurrencyConversions()
currencies := ct.supportedCurrencyConversions()
for i, key := range keys {
currency := currencies[key]
if cnt%percol == 0 {
cnt = 0
}
shortcut := string(alphanumericcharacters[i])
if key == ct.currencyconversion {
shortcut = color.YellowBold("*")
key = color.WhiteBold(key)
currency = color.YellowBold(currency)
} else {
key = color.White(key)
currency = color.Yellow(currency)
}
item := fmt.Sprintf(" [ %1s ] %4s %-34s", shortcut, key, currency)
cols[cnt] = append(cols[cnt], item)
cnt = cnt + 1
}
var body string
for i := 0; i < percol; i++ {
var row string
for j := 0; j < len(cols[i]); j++ {
item := cols[i][j]
row = fmt.Sprintf("%s%s", row, item)
}
body = fmt.Sprintf("%s%s\n", body, row)
}
content := fmt.Sprintf("%s%s%s", header, helpline, body)
ct.update(func() {
ct.convertmenuview.Clear()
ct.convertmenuview.Frame = true
fmt.Fprintln(ct.convertmenuview, content)
})
}
func (ct *Cointop) showConvertMenu() error {
ct.convertmenuvisible = true
ct.updateConvertMenu()
ct.setActiveView(ct.convertmenuviewname)
return nil
}
func (ct *Cointop) hideConvertMenu() error {
ct.convertmenuvisible = false
ct.setViewOnBottom(ct.convertmenuviewname)
ct.setActiveView(ct.tableviewname)
ct.update(func() {
ct.convertmenuview.Clear()
ct.convertmenuview.Frame = false
fmt.Fprintln(ct.convertmenuview, "")
})
return nil
}
func (ct *Cointop) setCurrencyConverstion(convert string) func() error {
return func() error {
ct.currencyconversion = convert
ct.hideConvertMenu()
go ct.refreshAll()
return nil
}
}