mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
* WTF-1031 Rename WtfApp.app to WtfApp.tviewApp Signed-off-by: Chris Cummer <chriscummer@me.com> * WTF-1031 Add scaffolding for main to support multiple WtfApp instances Signed-off-by: Chris Cummer <chriscummer@me.com> * WTF-1031 WIP Signed-off-by: Chris Cummer <chriscummer@me.com> * Remove common functionality from KeyboardWidget and into Base Signed-off-by: Chris Cummer <chriscummer@me.com> * Augment with some descriptive comments Signed-off-by: Chris Cummer <chriscummer@me.com> * Add full support for multiple app instances via the AppManager. Still to do: * Config support for multiple apps/multiple config files * The ability to switch between apps Signed-off-by: Chris Cummer <chriscummer@me.com> * Move SetTerminal out of main and into its own file Signed-off-by: Chris Cummer <chriscummer@me.com>
72 lines
1.9 KiB
Go
72 lines
1.9 KiB
Go
package app
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/olebedev/config"
|
|
"github.com/rivo/tview"
|
|
)
|
|
|
|
// WtfAppManager handles the instances of WtfApp, ensuring that they're displayed as requested
|
|
type WtfAppManager struct {
|
|
WtfApps []*WtfApp
|
|
|
|
selected int
|
|
}
|
|
|
|
// NewAppManager creates and returns an instance of AppManager
|
|
func NewAppManager() WtfAppManager {
|
|
appMan := WtfAppManager{
|
|
WtfApps: []*WtfApp{},
|
|
}
|
|
|
|
return appMan
|
|
}
|
|
|
|
// MakeNewWtfApp creates and starts a new instance of WtfApp from a set of configuration params
|
|
func (appMan *WtfAppManager) MakeNewWtfApp(config *config.Config, configFilePath string) {
|
|
wtfApp := NewWtfApp(tview.NewApplication(), config, configFilePath)
|
|
appMan.Add(wtfApp)
|
|
|
|
wtfApp.Start()
|
|
}
|
|
|
|
// Add adds a WtfApp to the collection of apps that the AppManager manages.
|
|
// This app is then available for display onscreen.
|
|
func (appMan *WtfAppManager) Add(wtfApp *WtfApp) {
|
|
appMan.WtfApps = append(appMan.WtfApps, wtfApp)
|
|
}
|
|
|
|
// Current returns the currently-displaying instance of WtfApp
|
|
func (appMan *WtfAppManager) Current() (*WtfApp, error) {
|
|
if appMan.selected < 0 || appMan.selected >= len(appMan.WtfApps) {
|
|
return nil, errors.New("invalid app index selected")
|
|
}
|
|
|
|
return appMan.WtfApps[appMan.selected], nil
|
|
}
|
|
|
|
// Next cycles the WtfApps forward by one, making the next one in the list
|
|
// the current one. If there are none after the current one, it wraps around.
|
|
func (appMan *WtfAppManager) Next() (*WtfApp, error) {
|
|
appMan.selected++
|
|
|
|
if appMan.selected >= len(appMan.WtfApps) {
|
|
appMan.selected = 0
|
|
}
|
|
|
|
return appMan.Current()
|
|
}
|
|
|
|
// Prev cycles the WtfApps backwards by one, making the previous one in the
|
|
// list the current one. If there are none before the current one, it wraps around.
|
|
func (appMan *WtfAppManager) Prev() (*WtfApp, error) {
|
|
appMan.selected--
|
|
|
|
if appMan.selected < 0 {
|
|
appMan.selected = len(appMan.WtfApps) - 1
|
|
}
|
|
|
|
return appMan.Current()
|
|
}
|