1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-12-12 11:15:00 +02:00
lazygit/pkg/gui/information_panel.go

68 lines
1.9 KiB
Go
Raw Normal View History

2021-04-11 13:52:04 +02:00
package gui
import (
"fmt"
2021-04-11 15:32:20 +02:00
"github.com/jesseduffield/lazygit/pkg/constants"
"github.com/jesseduffield/lazygit/pkg/gui/style"
"github.com/jesseduffield/lazygit/pkg/utils"
"github.com/mattn/go-runewidth"
2021-04-11 13:52:04 +02:00
)
func (gui *Gui) informationStr() string {
2023-03-23 09:47:29 +02:00
if activeMode, ok := gui.helpers.Mode.GetActiveMode(); ok {
return activeMode.Description()
2021-04-11 13:52:04 +02:00
}
if gui.g.Mouse {
donate := style.FgMagenta.SetUnderline().Sprint(gui.c.Tr.Donate)
askQuestion := style.FgYellow.SetUnderline().Sprint(gui.c.Tr.AskQuestion)
2021-04-11 13:52:04 +02:00
return fmt.Sprintf("%s %s %s", donate, askQuestion, gui.Config.GetVersion())
} else {
return gui.Config.GetVersion()
}
}
func (gui *Gui) handleInfoClick() error {
if !gui.g.Mouse {
return nil
}
view := gui.Views.Information
cx, _ := view.Cursor()
width, _ := view.Size()
2023-03-23 09:47:29 +02:00
if activeMode, ok := gui.helpers.Mode.GetActiveMode(); ok {
if width-cx > runewidth.StringWidth(gui.c.Tr.ResetInParentheses) {
2022-03-20 01:19:14 +02:00
return nil
2021-04-11 13:52:04 +02:00
}
2023-03-23 09:47:29 +02:00
return activeMode.Reset()
2021-04-11 13:52:04 +02:00
}
var title, url string
2021-04-11 13:52:04 +02:00
// if we're not in an active mode we show the donate button
if cx <= runewidth.StringWidth(gui.c.Tr.Donate) {
url = constants.Links.Donate
title = gui.c.Tr.Donate
} else if cx <= runewidth.StringWidth(gui.c.Tr.Donate)+1+runewidth.StringWidth(gui.c.Tr.AskQuestion) {
url = constants.Links.Discussions
title = gui.c.Tr.AskQuestion
}
err := gui.os.OpenLink(url)
if err != nil {
// Opening the link via the OS failed for some reason. (For example, this
// can happen if the `os.openLink` config key references a command that
// doesn't exist, or that errors when called.)
//
// In that case, rather than crash the app, fall back to simply showing a
// dialog asking the user to visit the URL.
placeholders := map[string]string{"url": url}
message := utils.ResolvePlaceholderString(gui.c.Tr.PleaseGoToURL, placeholders)
return gui.c.Alert(title, message)
2021-04-11 13:52:04 +02:00
}
2021-04-11 13:52:04 +02:00
return nil
}