Add credits footer
This commit is contained in:
parent
98559b66aa
commit
04025866b2
5
main.go
5
main.go
@ -315,7 +315,10 @@ func (m model) wordsView() string {
|
|||||||
func (m model) footerView() string {
|
func (m model) footerView() string {
|
||||||
info := infoStyle.Render(fmt.Sprintf("%3.f%%", m.wordsViewport.ScrollPercent()*100))
|
info := infoStyle.Render(fmt.Sprintf("%3.f%%", m.wordsViewport.ScrollPercent()*100))
|
||||||
line := strings.Repeat("─", int(math.Max(0, float64(m.wordsViewport.Width-lipgloss.Width(info)))))
|
line := strings.Repeat("─", int(math.Max(0, float64(m.wordsViewport.Width-lipgloss.Width(info)))))
|
||||||
return lipgloss.JoinHorizontal(lipgloss.Center, line, info)
|
credits := "Inspiration : https://cemantix.herokuapp.com/ (@enigmathix)\n" +
|
||||||
|
"Sources : https://gitlab.crans.org/ynerant/cemantix-charm (@ynerant)\n" +
|
||||||
|
"Données : Wikipédia France (+ Word2Vec), Grammalecte"
|
||||||
|
return lipgloss.JoinVertical(lipgloss.Center, lipgloss.JoinHorizontal(lipgloss.Center, line, info), credits)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m model) View() string {
|
func (m model) View() string {
|
||||||
|
Loading…
Reference in New Issue
Block a user