mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
Make the cryptolive using the global config reference.
Signed-off-by: Eugene Dzhurinsky <jdevelop@gmail.com>
This commit is contained in:
parent
500dd0ab17
commit
f48e515270
@ -7,12 +7,9 @@ import (
|
|||||||
"sync"
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/olebedev/config"
|
"github.com/senorprogrammer/wtf/wtf"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Config is a pointer to the global config object
|
|
||||||
var Config *config.Config
|
|
||||||
|
|
||||||
var baseURL = "https://min-api.cryptocompare.com/data/price"
|
var baseURL = "https://min-api.cryptocompare.com/data/price"
|
||||||
var ok = true
|
var ok = true
|
||||||
|
|
||||||
@ -35,12 +32,12 @@ func NewWidget() *Widget {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (widget *Widget) setList() {
|
func (widget *Widget) setList() {
|
||||||
currenciesMap, _ := Config.Map("wtf.mods.cryptolive.currencies")
|
currenciesMap, _ := wtf.Config.Map("wtf.mods.cryptolive.currencies")
|
||||||
|
|
||||||
widget.list = &list{}
|
widget.list = &list{}
|
||||||
|
|
||||||
for currency := range currenciesMap {
|
for currency := range currenciesMap {
|
||||||
displayName, _ := Config.String("wtf.mods.cryptolive.currencies." + currency + ".displayName")
|
displayName, _ := wtf.Config.String("wtf.mods.cryptolive.currencies." + currency + ".displayName")
|
||||||
toList := getToList(currency)
|
toList := getToList(currency)
|
||||||
widget.list.addItem(currency, displayName, toList)
|
widget.list.addItem(currency, displayName, toList)
|
||||||
}
|
}
|
||||||
@ -70,10 +67,10 @@ func (widget *Widget) Refresh(wg *sync.WaitGroup) {
|
|||||||
func (widget *Widget) display() {
|
func (widget *Widget) display() {
|
||||||
str := ""
|
str := ""
|
||||||
var (
|
var (
|
||||||
fromNameColor = Config.UString("wtf.mods.cryptolive.colors.from.name", "coral")
|
fromNameColor = wtf.Config.UString("wtf.mods.cryptolive.colors.from.name", "coral")
|
||||||
fromDisplayNameColor = Config.UString("wtf.mods.cryptolive.colors.from.displayName", "grey")
|
fromDisplayNameColor = wtf.Config.UString("wtf.mods.cryptolive.colors.from.displayName", "grey")
|
||||||
toNameColor = Config.UString("wtf.mods.cryptolive.colors.to.name", "white")
|
toNameColor = wtf.Config.UString("wtf.mods.cryptolive.colors.to.name", "white")
|
||||||
toPriceColor = Config.UString("wtf.mods.cryptolive.colors.to.price", "green")
|
toPriceColor = wtf.Config.UString("wtf.mods.cryptolive.colors.to.price", "green")
|
||||||
)
|
)
|
||||||
for _, item := range widget.list.items {
|
for _, item := range widget.list.items {
|
||||||
str += fmt.Sprintf(" [%s]%s[%s] (%s)\n", fromNameColor, item.displayName, fromDisplayNameColor, item.name)
|
str += fmt.Sprintf(" [%s]%s[%s] (%s)\n", fromNameColor, item.displayName, fromDisplayNameColor, item.name)
|
||||||
@ -87,7 +84,7 @@ func (widget *Widget) display() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func getToList(fromName string) []*toCurrency {
|
func getToList(fromName string) []*toCurrency {
|
||||||
toNames, _ := Config.List("wtf.mods.cryptolive.currencies." + fromName + ".to")
|
toNames, _ := wtf.Config.List("wtf.mods.cryptolive.currencies." + fromName + ".to")
|
||||||
|
|
||||||
var toList []*toCurrency
|
var toList []*toCurrency
|
||||||
|
|
||||||
|
@ -8,11 +8,9 @@ import (
|
|||||||
"sync"
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/olebedev/config"
|
"github.com/senorprogrammer/wtf/wtf"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Config is a pointer to the global config object
|
|
||||||
var Config *config.Config
|
|
||||||
var baseURL = "https://min-api.cryptocompare.com/data/top/exchanges"
|
var baseURL = "https://min-api.cryptocompare.com/data/top/exchanges"
|
||||||
|
|
||||||
type textColors struct {
|
type textColors struct {
|
||||||
@ -50,17 +48,17 @@ func NewWidget() *Widget {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (widget *Widget) setList() {
|
func (widget *Widget) setList() {
|
||||||
currenciesMap, _ := Config.Map("wtf.mods.cryptolive.top")
|
currenciesMap, _ := wtf.Config.Map("wtf.mods.cryptolive.top")
|
||||||
|
|
||||||
for fromCurrency := range currenciesMap {
|
for fromCurrency := range currenciesMap {
|
||||||
displayName := Config.UString("wtf.mods.cryptolive.top."+fromCurrency+".displayName", "")
|
displayName := wtf.Config.UString("wtf.mods.cryptolive.top."+fromCurrency+".displayName", "")
|
||||||
limit := Config.UInt("wtf.mods.cryptolive.top."+fromCurrency+".limit", 1)
|
limit := wtf.Config.UInt("wtf.mods.cryptolive.top."+fromCurrency+".limit", 1)
|
||||||
widget.list.addItem(fromCurrency, displayName, limit, makeToList(fromCurrency, limit))
|
widget.list.addItem(fromCurrency, displayName, limit, makeToList(fromCurrency, limit))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func makeToList(fCurrencyName string, limit int) (list []*tCurrency) {
|
func makeToList(fCurrencyName string, limit int) (list []*tCurrency) {
|
||||||
toList, _ := Config.List("wtf.mods.cryptolive.top." + fCurrencyName + ".to")
|
toList, _ := wtf.Config.List("wtf.mods.cryptolive.top." + fCurrencyName + ".to")
|
||||||
|
|
||||||
for _, toCurrency := range toList {
|
for _, toCurrency := range toList {
|
||||||
list = append(list, &tCurrency{
|
list = append(list, &tCurrency{
|
||||||
@ -74,11 +72,11 @@ func makeToList(fCurrencyName string, limit int) (list []*tCurrency) {
|
|||||||
|
|
||||||
func (widget *Widget) config() {
|
func (widget *Widget) config() {
|
||||||
// set colors
|
// set colors
|
||||||
widget.colors.from.name = Config.UString("wtf.mods.cryptolive.colors.top.from.name", "coral")
|
widget.colors.from.name = wtf.Config.UString("wtf.mods.cryptolive.colors.top.from.name", "coral")
|
||||||
widget.colors.from.displayName = Config.UString("wtf.mods.cryptolive.colors.top.from.displayName", "grey")
|
widget.colors.from.displayName = wtf.Config.UString("wtf.mods.cryptolive.colors.top.from.displayName", "grey")
|
||||||
widget.colors.to.name = Config.UString("wtf.mods.cryptolive.colors.top.to.name", "red")
|
widget.colors.to.name = wtf.Config.UString("wtf.mods.cryptolive.colors.top.to.name", "red")
|
||||||
widget.colors.to.field = Config.UString("wtf.mods.cryptolive.colors.top.to.field", "white")
|
widget.colors.to.field = wtf.Config.UString("wtf.mods.cryptolive.colors.top.to.field", "white")
|
||||||
widget.colors.to.value = Config.UString("wtf.mods.cryptolive.colors.top.to.value", "value")
|
widget.colors.to.value = wtf.Config.UString("wtf.mods.cryptolive.colors.top.to.value", "value")
|
||||||
}
|
}
|
||||||
|
|
||||||
/* -------------------- Exported Functions -------------------- */
|
/* -------------------- Exported Functions -------------------- */
|
||||||
|
@ -4,15 +4,11 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"sync"
|
"sync"
|
||||||
|
|
||||||
"github.com/olebedev/config"
|
|
||||||
"github.com/senorprogrammer/wtf/cryptoexchanges/cryptolive/price"
|
"github.com/senorprogrammer/wtf/cryptoexchanges/cryptolive/price"
|
||||||
"github.com/senorprogrammer/wtf/cryptoexchanges/cryptolive/toplist"
|
"github.com/senorprogrammer/wtf/cryptoexchanges/cryptolive/toplist"
|
||||||
"github.com/senorprogrammer/wtf/wtf"
|
"github.com/senorprogrammer/wtf/wtf"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Config is a pointer to the global config object
|
|
||||||
var Config *config.Config
|
|
||||||
|
|
||||||
// Widget define wtf widget to register widget later
|
// Widget define wtf widget to register widget later
|
||||||
type Widget struct {
|
type Widget struct {
|
||||||
wtf.TextWidget
|
wtf.TextWidget
|
||||||
@ -22,9 +18,6 @@ type Widget struct {
|
|||||||
|
|
||||||
// NewWidget Make new instance of widget
|
// NewWidget Make new instance of widget
|
||||||
func NewWidget() *Widget {
|
func NewWidget() *Widget {
|
||||||
price.Config = Config
|
|
||||||
toplist.Config = Config
|
|
||||||
|
|
||||||
widget := Widget{
|
widget := Widget{
|
||||||
TextWidget: wtf.NewTextWidget(" CryptoLive ", "cryptolive", false),
|
TextWidget: wtf.NewTextWidget(" CryptoLive ", "cryptolive", false),
|
||||||
priceWidget: price.NewWidget(),
|
priceWidget: price.NewWidget(),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user