2020-06-18 16:54:48 -04:00
|
|
|
package display
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/url"
|
2020-08-05 13:31:59 -04:00
|
|
|
"strconv"
|
2020-06-18 16:54:48 -04:00
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/makeworld-the-better-one/amfora/renderer"
|
|
|
|
"github.com/makeworld-the-better-one/amfora/structs"
|
|
|
|
)
|
|
|
|
|
|
|
|
// This file contains the functions that aren't part of the public API.
|
2020-07-21 11:30:32 -04:00
|
|
|
// The funcs are for network and displaying.
|
2020-07-01 13:39:13 -04:00
|
|
|
|
2020-06-18 16:54:48 -04:00
|
|
|
// followLink should be used when the user "clicks" a link on a page.
|
|
|
|
// Not when a URL is opened on a new tab for the first time.
|
2020-07-07 21:13:45 -04:00
|
|
|
// It will handle setting the bottomBar.
|
|
|
|
func followLink(t *tab, prev, next string) {
|
2020-12-05 20:35:15 -05:00
|
|
|
if strings.HasPrefix(next, "about:") {
|
2020-12-06 20:57:57 -05:00
|
|
|
if final, ok := handleAbout(t, next); ok {
|
|
|
|
t.addToHistory(final)
|
2020-12-05 20:35:15 -05:00
|
|
|
}
|
2020-06-23 20:07:25 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-05-13 16:38:53 -04:00
|
|
|
if t.hasContent() && !t.isAnAboutPage() {
|
2020-07-07 21:13:45 -04:00
|
|
|
nextURL, err := resolveRelLink(t, prev, next)
|
2020-06-23 20:07:25 -04:00
|
|
|
if err != nil {
|
2020-07-01 13:39:13 -04:00
|
|
|
Error("URL Error", err.Error())
|
2020-06-23 20:07:25 -04:00
|
|
|
return
|
|
|
|
}
|
2020-07-07 21:13:45 -04:00
|
|
|
go goURL(t, nextURL)
|
2020-06-23 20:07:25 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
// No content on current tab, so the "prev" URL is not valid.
|
|
|
|
// An example is the about:newtab page
|
|
|
|
_, err := url.Parse(next)
|
2020-06-18 16:54:48 -04:00
|
|
|
if err != nil {
|
2020-06-19 14:05:05 -04:00
|
|
|
Error("URL Error", "Link URL could not be parsed")
|
2020-06-18 16:54:48 -04:00
|
|
|
return
|
|
|
|
}
|
2020-07-07 21:13:45 -04:00
|
|
|
go goURL(t, next)
|
2020-06-18 16:54:48 -04:00
|
|
|
}
|
|
|
|
|
2020-07-02 23:55:24 -04:00
|
|
|
// reformatPage will take the raw page content and reformat it according to the current terminal dimensions.
|
|
|
|
// It should be called when the terminal size changes.
|
|
|
|
// It will not waste resources if the passed page is already fitted to the current terminal width, and can be
|
|
|
|
// called safely even when the page might be already formatted properly.
|
|
|
|
func reformatPage(p *structs.Page) {
|
2021-02-27 18:17:49 -05:00
|
|
|
if p.TermWidth == termW {
|
2020-07-02 23:55:24 -04:00
|
|
|
// No changes to make
|
|
|
|
return
|
2020-06-21 17:15:21 -04:00
|
|
|
}
|
2020-07-03 17:28:56 -04:00
|
|
|
|
2020-08-25 19:17:06 -04:00
|
|
|
// TODO: Setup a renderer.RenderFromMediatype func so this isn't needed
|
|
|
|
|
2020-07-03 17:28:56 -04:00
|
|
|
var rendered string
|
2020-08-25 19:17:06 -04:00
|
|
|
switch p.Mediatype {
|
|
|
|
case structs.TextGemini:
|
2020-07-03 17:28:56 -04:00
|
|
|
// Links are not recorded because they won't change
|
2020-09-01 16:41:30 -04:00
|
|
|
proxied := true
|
2020-11-22 16:25:20 -05:00
|
|
|
if strings.HasPrefix(p.URL, "gemini") ||
|
|
|
|
strings.HasPrefix(p.URL, "about") ||
|
|
|
|
strings.HasPrefix(p.URL, "file") {
|
2020-09-01 16:41:30 -04:00
|
|
|
proxied = false
|
|
|
|
}
|
2021-02-27 21:18:03 -05:00
|
|
|
rendered, _ = renderer.RenderGemini(p.Raw, textWidth(), proxied)
|
2020-08-25 19:17:06 -04:00
|
|
|
case structs.TextPlain:
|
2021-02-17 14:17:13 -05:00
|
|
|
rendered = renderer.RenderPlainText(p.Raw)
|
2020-08-25 19:17:06 -04:00
|
|
|
case structs.TextAnsi:
|
2021-02-17 14:17:13 -05:00
|
|
|
rendered = renderer.RenderANSI(p.Raw)
|
2020-08-25 19:17:06 -04:00
|
|
|
default:
|
2020-07-03 17:28:56 -04:00
|
|
|
// Rendering this type is not implemented
|
|
|
|
return
|
|
|
|
}
|
2020-07-02 23:55:24 -04:00
|
|
|
p.Content = rendered
|
2021-02-27 18:17:49 -05:00
|
|
|
p.TermWidth = termW
|
2020-07-02 23:55:24 -04:00
|
|
|
}
|
|
|
|
|
2020-07-04 11:32:11 -04:00
|
|
|
// reformatPageAndSetView is for reformatting a page that is already being displayed.
|
2020-07-02 23:55:24 -04:00
|
|
|
// setPage should be used when a page is being loaded for the first time.
|
2020-07-07 21:13:45 -04:00
|
|
|
func reformatPageAndSetView(t *tab, p *structs.Page) {
|
2021-02-27 18:17:49 -05:00
|
|
|
if p.TermWidth == termW {
|
2020-07-26 11:50:18 -04:00
|
|
|
// No changes to make
|
|
|
|
return
|
|
|
|
}
|
2020-07-03 12:22:44 -04:00
|
|
|
reformatPage(p)
|
2020-07-07 21:13:45 -04:00
|
|
|
t.view.SetText(p.Content)
|
|
|
|
t.applyScroll() // Go back to where you were, roughly
|
2021-02-17 14:17:13 -05:00
|
|
|
|
|
|
|
App.Draw()
|
2020-06-21 17:15:21 -04:00
|
|
|
}
|
|
|
|
|
2020-07-07 21:13:45 -04:00
|
|
|
// setPage displays a Page on the passed tab number.
|
|
|
|
// The bottomBar is not actually changed in this func
|
|
|
|
func setPage(t *tab, p *structs.Page) {
|
|
|
|
if !isValidTab(t) {
|
|
|
|
// Don't waste time reformatting an invalid tab
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-07-02 23:55:24 -04:00
|
|
|
// Make sure the page content is fitted to the terminal every time it's displayed
|
|
|
|
reformatPage(p)
|
2020-06-28 18:09:52 -04:00
|
|
|
|
2020-07-07 21:13:45 -04:00
|
|
|
t.page = p
|
2020-08-05 13:31:59 -04:00
|
|
|
|
|
|
|
// Change page on screen
|
2020-07-07 21:13:45 -04:00
|
|
|
t.view.SetText(p.Content)
|
|
|
|
t.view.Highlight("") // Turn off highlights, other funcs may restore if necessary
|
|
|
|
t.view.ScrollToBeginning()
|
2021-02-27 18:17:49 -05:00
|
|
|
// Reset page left margin
|
2021-02-17 14:17:13 -05:00
|
|
|
tabNum := tabNumber(t)
|
2021-02-27 18:17:49 -05:00
|
|
|
browser.AddTab(
|
|
|
|
strconv.Itoa(tabNum),
|
|
|
|
makeTabLabel(strconv.Itoa(tabNum+1)),
|
|
|
|
makeContentLayout(t.view, leftMargin()),
|
|
|
|
)
|
2021-02-17 14:17:13 -05:00
|
|
|
App.Draw()
|
|
|
|
|
2020-06-18 16:54:48 -04:00
|
|
|
// Setup display
|
2020-07-07 21:13:45 -04:00
|
|
|
App.SetFocus(t.view)
|
|
|
|
|
2020-07-10 14:37:18 -04:00
|
|
|
// Save bottom bar for the tab - other funcs will apply/display it
|
2020-07-07 21:13:45 -04:00
|
|
|
t.barLabel = ""
|
2020-08-25 21:03:21 -04:00
|
|
|
t.barText = p.URL
|
2020-07-07 21:13:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// goURL is like handleURL, but takes care of history and the bottomBar.
|
|
|
|
// It should be preferred over handleURL in most cases.
|
|
|
|
// It has no return values to be processed.
|
|
|
|
//
|
|
|
|
// It should be called in a goroutine.
|
|
|
|
func goURL(t *tab, u string) {
|
2020-08-27 18:55:42 -04:00
|
|
|
final, displayed := handleURL(t, u, 0)
|
2020-07-07 21:13:45 -04:00
|
|
|
if displayed {
|
|
|
|
t.addToHistory(final)
|
|
|
|
}
|
|
|
|
if t == tabs[curTab] {
|
|
|
|
// Display the bottomBar state that handleURL set
|
|
|
|
t.applyBottomBar()
|
|
|
|
}
|
2020-06-18 16:54:48 -04:00
|
|
|
}
|