mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-04-23 12:18:51 +02:00
runewidth.StringWidth is an expensive call, even if the input string is pure ASCII. Improve this by providing a wrapper that short-circuits the call to len if the input is ASCII. Benchmark results show that for non-ASCII strings it makes no noticable difference, but for ASCII strings it provides a more than 200x speedup. BenchmarkStringWidthAsciiOriginal-10 718135 1637 ns/op BenchmarkStringWidthAsciiOptimized-10 159197538 7.545 ns/op BenchmarkStringWidthNonAsciiOriginal-10 486290 2391 ns/op BenchmarkStringWidthNonAsciiOptimized-10 502286 2383 ns/op
67 lines
1.8 KiB
Go
67 lines
1.8 KiB
Go
package gui
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/jesseduffield/lazygit/pkg/constants"
|
|
"github.com/jesseduffield/lazygit/pkg/gui/style"
|
|
"github.com/jesseduffield/lazygit/pkg/utils"
|
|
)
|
|
|
|
func (gui *Gui) informationStr() string {
|
|
if activeMode, ok := gui.helpers.Mode.GetActiveMode(); ok {
|
|
return activeMode.Description()
|
|
}
|
|
|
|
if gui.g.Mouse {
|
|
donate := style.FgMagenta.SetUnderline().Sprint(gui.c.Tr.Donate)
|
|
askQuestion := style.FgYellow.SetUnderline().Sprint(gui.c.Tr.AskQuestion)
|
|
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()
|
|
|
|
if activeMode, ok := gui.helpers.Mode.GetActiveMode(); ok {
|
|
if width-cx > utils.StringWidth(gui.c.Tr.ResetInParentheses) {
|
|
return nil
|
|
}
|
|
return activeMode.Reset()
|
|
}
|
|
|
|
var title, url string
|
|
|
|
// if we're not in an active mode we show the donate button
|
|
if cx <= utils.StringWidth(gui.c.Tr.Donate) {
|
|
url = constants.Links.Donate
|
|
title = gui.c.Tr.Donate
|
|
} else if cx <= utils.StringWidth(gui.c.Tr.Donate)+1+utils.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)
|
|
}
|
|
|
|
return nil
|
|
}
|