Move special list/blockquote prefixing to renderer
This commit is contained in:
parent
cf93671ecd
commit
e6180c9b6f
@ -18,25 +18,27 @@ package messages
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"math"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/mattn/go-runewidth"
|
"github.com/mattn/go-runewidth"
|
||||||
|
|
||||||
"maunium.net/go/gomuks/config"
|
|
||||||
"maunium.net/go/gomuks/ui/widget"
|
|
||||||
"maunium.net/go/mautrix"
|
"maunium.net/go/mautrix"
|
||||||
"maunium.net/go/mauview"
|
"maunium.net/go/mauview"
|
||||||
"maunium.net/go/tcell"
|
"maunium.net/go/tcell"
|
||||||
|
|
||||||
|
"maunium.net/go/gomuks/config"
|
||||||
|
"maunium.net/go/gomuks/ui/widget"
|
||||||
)
|
)
|
||||||
|
|
||||||
type HTMLMessage struct {
|
type HTMLMessage struct {
|
||||||
BaseMessage
|
BaseMessage
|
||||||
|
|
||||||
Root *HTMLEntity
|
Root HTMLEntity
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewHTMLMessage(id, sender, displayname string, msgtype mautrix.MessageType, root *HTMLEntity, timestamp time.Time) UIMessage {
|
func NewHTMLMessage(id, sender, displayname string, msgtype mautrix.MessageType, root HTMLEntity, timestamp time.Time) UIMessage {
|
||||||
return &HTMLMessage{
|
return &HTMLMessage{
|
||||||
BaseMessage: newBaseMessage(id, sender, displayname, msgtype, timestamp),
|
BaseMessage: newBaseMessage(id, sender, displayname, msgtype, timestamp),
|
||||||
Root: root,
|
Root: root,
|
||||||
@ -68,7 +70,7 @@ func (hw *HTMLMessage) CalculateBuffer(preferences config.UserPreferences, width
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (hw *HTMLMessage) Height() int {
|
func (hw *HTMLMessage) Height() int {
|
||||||
return hw.Root.height
|
return hw.Root.Height()
|
||||||
}
|
}
|
||||||
|
|
||||||
func (hw *HTMLMessage) PlainText() string {
|
func (hw *HTMLMessage) PlainText() string {
|
||||||
@ -79,14 +81,106 @@ func (hw *HTMLMessage) NotificationContent() string {
|
|||||||
return hw.Root.PlainText()
|
return hw.Root.PlainText()
|
||||||
}
|
}
|
||||||
|
|
||||||
type HTMLEntity struct {
|
type AdjustStyleFunc func(tcell.Style) tcell.Style
|
||||||
|
|
||||||
|
type HTMLEntity interface {
|
||||||
|
AdjustStyle(AdjustStyleFunc) HTMLEntity
|
||||||
|
Draw(screen mauview.Screen)
|
||||||
|
IsBlock() bool
|
||||||
|
GetTag() string
|
||||||
|
PlainText() string
|
||||||
|
String() string
|
||||||
|
Height() int
|
||||||
|
|
||||||
|
calculateBuffer(width, startX int, bare bool) int
|
||||||
|
getStartX() int
|
||||||
|
}
|
||||||
|
|
||||||
|
type BlockquoteEntity struct {
|
||||||
|
*BaseHTMLEntity
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewBlockquoteEntity(children []HTMLEntity) *BlockquoteEntity {
|
||||||
|
return &BlockquoteEntity{&BaseHTMLEntity{
|
||||||
|
Tag: "blockquote",
|
||||||
|
Children: children,
|
||||||
|
Block: true,
|
||||||
|
Indent: 2,
|
||||||
|
}}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (be *BlockquoteEntity) Draw(screen mauview.Screen) {
|
||||||
|
be.BaseHTMLEntity.Draw(screen)
|
||||||
|
for y := 0; y < be.height; y++ {
|
||||||
|
screen.SetContent(0, y, '>', nil, be.Style)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (be *BlockquoteEntity) String() string {
|
||||||
|
return fmt.Sprintf("&BlockquoteEntity{%s},\n", be.BaseHTMLEntity)
|
||||||
|
}
|
||||||
|
|
||||||
|
type ListEntity struct {
|
||||||
|
*BaseHTMLEntity
|
||||||
|
Ordered bool
|
||||||
|
Start int
|
||||||
|
}
|
||||||
|
|
||||||
|
func digits(num int) int {
|
||||||
|
if num <= 0 {
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
return int(math.Floor(math.Log10(float64(num))) + 1)
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewListEntity(ordered bool, start int, children []HTMLEntity) *ListEntity {
|
||||||
|
entity := &ListEntity{
|
||||||
|
BaseHTMLEntity: &BaseHTMLEntity{
|
||||||
|
Tag: "ul",
|
||||||
|
Children: children,
|
||||||
|
Block: true,
|
||||||
|
Indent: 2,
|
||||||
|
},
|
||||||
|
Ordered: ordered,
|
||||||
|
Start: start,
|
||||||
|
}
|
||||||
|
if ordered {
|
||||||
|
entity.Tag = "ol"
|
||||||
|
entity.Indent += digits(start + len(children) - 1)
|
||||||
|
}
|
||||||
|
return entity
|
||||||
|
}
|
||||||
|
|
||||||
|
func (le *ListEntity) Draw(screen mauview.Screen) {
|
||||||
|
width, _ := screen.Size()
|
||||||
|
|
||||||
|
proxyScreen := &mauview.ProxyScreen{Parent: screen, OffsetX: le.Indent, Width: width - le.Indent}
|
||||||
|
for i, entity := range le.Children {
|
||||||
|
proxyScreen.Height = entity.Height()
|
||||||
|
if le.Ordered {
|
||||||
|
number := le.Start + i
|
||||||
|
line := fmt.Sprintf("%d. %s", number, strings.Repeat(" ", le.Indent-2-digits(number)))
|
||||||
|
widget.WriteLine(screen, mauview.AlignLeft, line, 0, proxyScreen.OffsetY, le.Indent, le.Style)
|
||||||
|
} else {
|
||||||
|
screen.SetContent(0, proxyScreen.OffsetY, '●', nil, le.Style)
|
||||||
|
}
|
||||||
|
entity.Draw(proxyScreen)
|
||||||
|
proxyScreen.OffsetY += entity.Height()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (le *ListEntity) String() string {
|
||||||
|
return fmt.Sprintf("&ListEntity{Ordered=%t, Start=%d, Base=%s},\n", le.Ordered, le.Start, le.BaseHTMLEntity)
|
||||||
|
}
|
||||||
|
|
||||||
|
type BaseHTMLEntity struct {
|
||||||
// Permanent variables
|
// Permanent variables
|
||||||
Tag string
|
Tag string
|
||||||
Text string
|
Text string
|
||||||
Style tcell.Style
|
Style tcell.Style
|
||||||
Children []*HTMLEntity
|
Children []HTMLEntity
|
||||||
Block bool
|
Block bool
|
||||||
Indent int
|
Indent int
|
||||||
|
|
||||||
DefaultHeight int
|
DefaultHeight int
|
||||||
|
|
||||||
@ -97,7 +191,22 @@ type HTMLEntity struct {
|
|||||||
height int
|
height int
|
||||||
}
|
}
|
||||||
|
|
||||||
func (he *HTMLEntity) AdjustStyle(fn func(tcell.Style) tcell.Style) *HTMLEntity {
|
func NewHTMLTextEntity(text string) *BaseHTMLEntity {
|
||||||
|
return &BaseHTMLEntity{
|
||||||
|
Tag: "text",
|
||||||
|
Text: text,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewHTMLEntity(tag string, children []HTMLEntity, block bool) *BaseHTMLEntity {
|
||||||
|
return &BaseHTMLEntity{
|
||||||
|
Tag: tag,
|
||||||
|
Children: children,
|
||||||
|
Block: block,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (he *BaseHTMLEntity) AdjustStyle(fn AdjustStyleFunc) HTMLEntity {
|
||||||
for _, child := range he.Children {
|
for _, child := range he.Children {
|
||||||
child.AdjustStyle(fn)
|
child.AdjustStyle(fn)
|
||||||
}
|
}
|
||||||
@ -105,7 +214,23 @@ func (he *HTMLEntity) AdjustStyle(fn func(tcell.Style) tcell.Style) *HTMLEntity
|
|||||||
return he
|
return he
|
||||||
}
|
}
|
||||||
|
|
||||||
func (he *HTMLEntity) Draw(screen mauview.Screen) {
|
func (he *BaseHTMLEntity) IsBlock() bool {
|
||||||
|
return he.Block
|
||||||
|
}
|
||||||
|
|
||||||
|
func (he *BaseHTMLEntity) GetTag() string {
|
||||||
|
return he.Tag
|
||||||
|
}
|
||||||
|
|
||||||
|
func (he *BaseHTMLEntity) Height() int {
|
||||||
|
return he.height
|
||||||
|
}
|
||||||
|
|
||||||
|
func (he *BaseHTMLEntity) getStartX() int {
|
||||||
|
return he.startX
|
||||||
|
}
|
||||||
|
|
||||||
|
func (he *BaseHTMLEntity) Draw(screen mauview.Screen) {
|
||||||
width, _ := screen.Size()
|
width, _ := screen.Size()
|
||||||
if len(he.buffer) > 0 {
|
if len(he.buffer) > 0 {
|
||||||
x := he.startX
|
x := he.startX
|
||||||
@ -117,19 +242,19 @@ func (he *HTMLEntity) Draw(screen mauview.Screen) {
|
|||||||
if len(he.Children) > 0 {
|
if len(he.Children) > 0 {
|
||||||
proxyScreen := &mauview.ProxyScreen{Parent: screen, OffsetX: he.Indent, Width: width - he.Indent}
|
proxyScreen := &mauview.ProxyScreen{Parent: screen, OffsetX: he.Indent, Width: width - he.Indent}
|
||||||
for i, entity := range he.Children {
|
for i, entity := range he.Children {
|
||||||
if i != 0 && entity.startX == 0 {
|
if i != 0 && entity.getStartX() == 0 {
|
||||||
proxyScreen.OffsetY++
|
proxyScreen.OffsetY++
|
||||||
}
|
}
|
||||||
proxyScreen.Height = entity.height
|
proxyScreen.Height = entity.Height()
|
||||||
entity.Draw(proxyScreen)
|
entity.Draw(proxyScreen)
|
||||||
proxyScreen.OffsetY += entity.height - 1
|
proxyScreen.OffsetY += entity.Height() - 1
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (he *HTMLEntity) String() string {
|
func (he *BaseHTMLEntity) String() string {
|
||||||
var buf strings.Builder
|
var buf strings.Builder
|
||||||
buf.WriteString("&HTMLEntity{\n")
|
buf.WriteString("&BaseHTMLEntity{\n")
|
||||||
_, _ = fmt.Fprintf(&buf, ` Tag="%s", Style=%d, Block=%t, Indent=%d, startX=%d, height=%d,`,
|
_, _ = fmt.Fprintf(&buf, ` Tag="%s", Style=%d, Block=%t, Indent=%d, startX=%d, height=%d,`,
|
||||||
he.Tag, he.Style, he.Block, he.Indent, he.startX, he.height)
|
he.Tag, he.Style, he.Block, he.Indent, he.startX, he.height)
|
||||||
buf.WriteRune('\n')
|
buf.WriteRune('\n')
|
||||||
@ -151,7 +276,7 @@ func (he *HTMLEntity) String() string {
|
|||||||
return buf.String()
|
return buf.String()
|
||||||
}
|
}
|
||||||
|
|
||||||
func (he *HTMLEntity) PlainText() string {
|
func (he *BaseHTMLEntity) PlainText() string {
|
||||||
if len(he.Children) == 0 {
|
if len(he.Children) == 0 {
|
||||||
return he.Text
|
return he.Text
|
||||||
}
|
}
|
||||||
@ -159,12 +284,12 @@ func (he *HTMLEntity) PlainText() string {
|
|||||||
buf.WriteString(he.Text)
|
buf.WriteString(he.Text)
|
||||||
newlined := false
|
newlined := false
|
||||||
for _, child := range he.Children {
|
for _, child := range he.Children {
|
||||||
if child.Block && !newlined {
|
if child.IsBlock() && !newlined {
|
||||||
buf.WriteRune('\n')
|
buf.WriteRune('\n')
|
||||||
}
|
}
|
||||||
newlined = false
|
newlined = false
|
||||||
buf.WriteString(child.PlainText())
|
buf.WriteString(child.PlainText())
|
||||||
if child.Block {
|
if child.IsBlock() {
|
||||||
buf.WriteRune('\n')
|
buf.WriteRune('\n')
|
||||||
newlined = true
|
newlined = true
|
||||||
}
|
}
|
||||||
@ -172,7 +297,7 @@ func (he *HTMLEntity) PlainText() string {
|
|||||||
return buf.String()
|
return buf.String()
|
||||||
}
|
}
|
||||||
|
|
||||||
func (he *HTMLEntity) calculateBuffer(width, startX int, bare bool) int {
|
func (he *BaseHTMLEntity) calculateBuffer(width, startX int, bare bool) int {
|
||||||
he.startX = startX
|
he.startX = startX
|
||||||
if he.Block {
|
if he.Block {
|
||||||
he.startX = 0
|
he.startX = 0
|
||||||
@ -181,11 +306,11 @@ func (he *HTMLEntity) calculateBuffer(width, startX int, bare bool) int {
|
|||||||
if len(he.Children) > 0 {
|
if len(he.Children) > 0 {
|
||||||
childStartX := he.startX
|
childStartX := he.startX
|
||||||
for _, entity := range he.Children {
|
for _, entity := range he.Children {
|
||||||
if entity.Block || childStartX == 0 || he.height == 0 {
|
if entity.IsBlock() || childStartX == 0 || he.height == 0 {
|
||||||
he.height++
|
he.height++
|
||||||
}
|
}
|
||||||
childStartX = entity.calculateBuffer(width-he.Indent, childStartX, bare)
|
childStartX = entity.calculateBuffer(width-he.Indent, childStartX, bare)
|
||||||
he.height += entity.height - 1
|
he.height += entity.Height() - 1
|
||||||
}
|
}
|
||||||
if len(he.Text) == 0 && !he.Block {
|
if len(he.Text) == 0 && !he.Block {
|
||||||
return childStartX
|
return childStartX
|
||||||
|
@ -17,8 +17,6 @@
|
|||||||
package parser
|
package parser
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
|
||||||
"math"
|
|
||||||
"regexp"
|
"regexp"
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
@ -29,11 +27,11 @@ import (
|
|||||||
"github.com/lucasb-eyer/go-colorful"
|
"github.com/lucasb-eyer/go-colorful"
|
||||||
"golang.org/x/net/html"
|
"golang.org/x/net/html"
|
||||||
|
|
||||||
"maunium.net/go/gomuks/ui/messages"
|
|
||||||
"maunium.net/go/mautrix"
|
"maunium.net/go/mautrix"
|
||||||
"maunium.net/go/tcell"
|
"maunium.net/go/tcell"
|
||||||
|
|
||||||
"maunium.net/go/gomuks/matrix/rooms"
|
"maunium.net/go/gomuks/matrix/rooms"
|
||||||
|
"maunium.net/go/gomuks/ui/messages"
|
||||||
"maunium.net/go/gomuks/ui/widget"
|
"maunium.net/go/gomuks/ui/widget"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -80,57 +78,30 @@ func (parser *htmlParser) getAttribute(node *html.Node, attribute string) string
|
|||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
func digits(num int) int {
|
func (parser *htmlParser) listToEntity(node *html.Node, stripLinebreak bool) messages.HTMLEntity {
|
||||||
if num <= 0 {
|
children := parser.nodeToEntities(node.FirstChild, stripLinebreak)
|
||||||
return 0
|
|
||||||
}
|
|
||||||
return int(math.Floor(math.Log10(float64(num))) + 1)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (parser *htmlParser) listToTString(node *html.Node, stripLinebreak bool) *messages.HTMLEntity {
|
|
||||||
ordered := node.Data == "ol"
|
ordered := node.Data == "ol"
|
||||||
listItems := parser.nodeToEntities(node.FirstChild, stripLinebreak)
|
start := 1
|
||||||
counter := 1
|
|
||||||
indentLength := 0
|
|
||||||
if ordered {
|
if ordered {
|
||||||
start := parser.getAttribute(node, "start")
|
if startRaw := parser.getAttribute(node, "start"); len(startRaw) > 0 {
|
||||||
if len(start) > 0 {
|
var err error
|
||||||
counter, _ = strconv.Atoi(start)
|
start, err = strconv.Atoi(startRaw)
|
||||||
|
if err != nil {
|
||||||
|
start = 1
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
longestIndex := (counter - 1) + len(listItems)
|
|
||||||
indentLength = digits(longestIndex)
|
|
||||||
}
|
}
|
||||||
var children []*messages.HTMLEntity
|
listItems := children[:0]
|
||||||
for _, child := range listItems {
|
for _, child := range children {
|
||||||
if child.Tag != "li" {
|
if child.GetTag() == "li" {
|
||||||
continue
|
listItems = append(listItems, child)
|
||||||
}
|
}
|
||||||
var prefix string
|
|
||||||
if ordered {
|
|
||||||
indexPadding := indentLength - digits(counter)
|
|
||||||
prefix = fmt.Sprintf("%d. %s", counter, strings.Repeat(" ", indexPadding))
|
|
||||||
} else {
|
|
||||||
prefix = "● "
|
|
||||||
}
|
|
||||||
child.Text = prefix + child.Text
|
|
||||||
child.Block = true
|
|
||||||
child.Indent = indentLength + 2
|
|
||||||
children = append(children, child)
|
|
||||||
counter++
|
|
||||||
}
|
|
||||||
return &messages.HTMLEntity{
|
|
||||||
Tag: node.Data,
|
|
||||||
Text: "",
|
|
||||||
Style: tcell.StyleDefault,
|
|
||||||
Children: children,
|
|
||||||
Block: true,
|
|
||||||
Indent: 0,
|
|
||||||
}
|
}
|
||||||
|
return messages.NewListEntity(ordered, start, listItems)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (parser *htmlParser) basicFormatToEntity(node *html.Node, stripLinebreak bool) *messages.HTMLEntity {
|
func (parser *htmlParser) basicFormatToEntity(node *html.Node, stripLinebreak bool) messages.HTMLEntity {
|
||||||
entity := &messages.HTMLEntity{
|
entity := &messages.BaseHTMLEntity{
|
||||||
Tag: node.Data,
|
Tag: node.Data,
|
||||||
Children: parser.nodeToEntities(node.FirstChild, stripLinebreak),
|
Children: parser.nodeToEntities(node.FirstChild, stripLinebreak),
|
||||||
}
|
}
|
||||||
@ -178,28 +149,22 @@ func (parser *htmlParser) parseColor(node *html.Node, mainName, altName string)
|
|||||||
return tcell.NewRGBColor(int32(r), int32(g), int32(b)), true
|
return tcell.NewRGBColor(int32(r), int32(g), int32(b)), true
|
||||||
}
|
}
|
||||||
|
|
||||||
func (parser *htmlParser) headerToEntity(node *html.Node, stripLinebreak bool) *messages.HTMLEntity {
|
func (parser *htmlParser) headerToEntity(node *html.Node, stripLinebreak bool) messages.HTMLEntity {
|
||||||
length := int(node.Data[1] - '0')
|
length := int(node.Data[1] - '0')
|
||||||
prefix := strings.Repeat("#", length) + " "
|
prefix := strings.Repeat("#", length) + " "
|
||||||
return (&messages.HTMLEntity{
|
return (&messages.BaseHTMLEntity{
|
||||||
Tag: node.Data,
|
Tag: node.Data,
|
||||||
Text: prefix,
|
Text: prefix,
|
||||||
Children: parser.nodeToEntities(node.FirstChild, stripLinebreak),
|
Children: parser.nodeToEntities(node.FirstChild, stripLinebreak),
|
||||||
}).AdjustStyle(AdjustStyleBold)
|
}).AdjustStyle(AdjustStyleBold)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (parser *htmlParser) blockquoteToEntity(node *html.Node, stripLinebreak bool) *messages.HTMLEntity {
|
func (parser *htmlParser) blockquoteToEntity(node *html.Node, stripLinebreak bool) messages.HTMLEntity {
|
||||||
return &messages.HTMLEntity{
|
return messages.NewBlockquoteEntity(parser.nodeToEntities(node.FirstChild, stripLinebreak))
|
||||||
Tag: "blockquote",
|
|
||||||
Text: ">",
|
|
||||||
Children: parser.nodeToEntities(node.FirstChild, stripLinebreak),
|
|
||||||
Block: true,
|
|
||||||
Indent: 2,
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (parser *htmlParser) linkToEntity(node *html.Node, stripLinebreak bool) *messages.HTMLEntity {
|
func (parser *htmlParser) linkToEntity(node *html.Node, stripLinebreak bool) messages.HTMLEntity {
|
||||||
entity := &messages.HTMLEntity{
|
entity := &messages.BaseHTMLEntity{
|
||||||
Tag: "a",
|
Tag: "a",
|
||||||
Children: parser.nodeToEntities(node.FirstChild, stripLinebreak),
|
Children: parser.nodeToEntities(node.FirstChild, stripLinebreak),
|
||||||
}
|
}
|
||||||
@ -223,7 +188,7 @@ func (parser *htmlParser) linkToEntity(node *html.Node, stripLinebreak bool) *me
|
|||||||
return entity
|
return entity
|
||||||
}
|
}
|
||||||
|
|
||||||
func (parser *htmlParser) imageToEntity(node *html.Node) *messages.HTMLEntity {
|
func (parser *htmlParser) imageToEntity(node *html.Node) messages.HTMLEntity {
|
||||||
alt := parser.getAttribute(node, "alt")
|
alt := parser.getAttribute(node, "alt")
|
||||||
if len(alt) == 0 {
|
if len(alt) == 0 {
|
||||||
alt = parser.getAttribute(node, "title")
|
alt = parser.getAttribute(node, "title")
|
||||||
@ -231,7 +196,7 @@ func (parser *htmlParser) imageToEntity(node *html.Node) *messages.HTMLEntity {
|
|||||||
alt = "[inline image]"
|
alt = "[inline image]"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
entity := &messages.HTMLEntity{
|
entity := &messages.BaseHTMLEntity{
|
||||||
Tag: "img",
|
Tag: "img",
|
||||||
Text: alt,
|
Text: alt,
|
||||||
}
|
}
|
||||||
@ -255,7 +220,7 @@ func styleEntryToStyle(se chroma.StyleEntry) tcell.Style {
|
|||||||
Background(colourToColor(se.Background))
|
Background(colourToColor(se.Background))
|
||||||
}
|
}
|
||||||
|
|
||||||
func (parser *htmlParser) syntaxHighlight(text, language string) *messages.HTMLEntity {
|
func (parser *htmlParser) syntaxHighlight(text, language string) messages.HTMLEntity {
|
||||||
lexer := lexers.Get(language)
|
lexer := lexers.Get(language)
|
||||||
if lexer == nil {
|
if lexer == nil {
|
||||||
return nil
|
return nil
|
||||||
@ -266,12 +231,12 @@ func (parser *htmlParser) syntaxHighlight(text, language string) *messages.HTMLE
|
|||||||
}
|
}
|
||||||
style := styles.SolarizedDark
|
style := styles.SolarizedDark
|
||||||
tokens := iter.Tokens()
|
tokens := iter.Tokens()
|
||||||
children := make([]*messages.HTMLEntity, len(tokens))
|
children := make([]messages.HTMLEntity, len(tokens))
|
||||||
for i, token := range tokens {
|
for i, token := range tokens {
|
||||||
if token.Value == "\n" {
|
if token.Value == "\n" {
|
||||||
children[i] = &messages.HTMLEntity{Block: true, Tag: "br"}
|
children[i] = &messages.BaseHTMLEntity{Block: true, Tag: "br"}
|
||||||
} else {
|
} else {
|
||||||
children[i] = &messages.HTMLEntity{
|
children[i] = &messages.BaseHTMLEntity{
|
||||||
Tag: token.Type.String(),
|
Tag: token.Type.String(),
|
||||||
Text: token.Value,
|
Text: token.Value,
|
||||||
Style: styleEntryToStyle(style.Get(token.Type)),
|
Style: styleEntryToStyle(style.Get(token.Type)),
|
||||||
@ -280,21 +245,21 @@ func (parser *htmlParser) syntaxHighlight(text, language string) *messages.HTMLE
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return &messages.HTMLEntity{
|
return &messages.BaseHTMLEntity{
|
||||||
Tag: "pre",
|
Tag: "pre",
|
||||||
Block: true,
|
Block: true,
|
||||||
Children: children,
|
Children: children,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (parser *htmlParser) codeblockToEntity(node *html.Node) *messages.HTMLEntity {
|
func (parser *htmlParser) codeblockToEntity(node *html.Node) messages.HTMLEntity {
|
||||||
entity := &messages.HTMLEntity{
|
entity := &messages.BaseHTMLEntity{
|
||||||
Tag: "pre",
|
Tag: "pre",
|
||||||
Block: true,
|
Block: true,
|
||||||
}
|
}
|
||||||
// TODO allow disabling syntax highlighting
|
// TODO allow disabling syntax highlighting
|
||||||
if node.FirstChild.Type == html.ElementNode && node.FirstChild.Data == "code" {
|
if node.FirstChild.Type == html.ElementNode && node.FirstChild.Data == "code" {
|
||||||
text := (&messages.HTMLEntity{
|
text := (&messages.BaseHTMLEntity{
|
||||||
Children: parser.nodeToEntities(node.FirstChild.FirstChild, false),
|
Children: parser.nodeToEntities(node.FirstChild.FirstChild, false),
|
||||||
}).PlainText()
|
}).PlainText()
|
||||||
attr := parser.getAttribute(node.FirstChild, "class")
|
attr := parser.getAttribute(node.FirstChild, "class")
|
||||||
@ -315,16 +280,16 @@ func (parser *htmlParser) codeblockToEntity(node *html.Node) *messages.HTMLEntit
|
|||||||
return entity
|
return entity
|
||||||
}
|
}
|
||||||
|
|
||||||
func (parser *htmlParser) tagNodeToEntity(node *html.Node, stripLinebreak bool) *messages.HTMLEntity {
|
func (parser *htmlParser) tagNodeToEntity(node *html.Node, stripLinebreak bool) messages.HTMLEntity {
|
||||||
switch node.Data {
|
switch node.Data {
|
||||||
case "blockquote":
|
case "blockquote":
|
||||||
return parser.blockquoteToEntity(node, stripLinebreak)
|
return parser.blockquoteToEntity(node, stripLinebreak)
|
||||||
case "ol", "ul":
|
case "ol", "ul":
|
||||||
return parser.listToTString(node, stripLinebreak)
|
return parser.listToEntity(node, stripLinebreak)
|
||||||
case "h1", "h2", "h3", "h4", "h5", "h6":
|
case "h1", "h2", "h3", "h4", "h5", "h6":
|
||||||
return parser.headerToEntity(node, stripLinebreak)
|
return parser.headerToEntity(node, stripLinebreak)
|
||||||
case "br":
|
case "br":
|
||||||
return &messages.HTMLEntity{Tag: "br", Block: true}
|
return &messages.BaseHTMLEntity{Tag: "br", Block: true}
|
||||||
case "b", "strong", "i", "em", "s", "del", "u", "ins", "font":
|
case "b", "strong", "i", "em", "s", "del", "u", "ins", "font":
|
||||||
return parser.basicFormatToEntity(node, stripLinebreak)
|
return parser.basicFormatToEntity(node, stripLinebreak)
|
||||||
case "a":
|
case "a":
|
||||||
@ -334,7 +299,7 @@ func (parser *htmlParser) tagNodeToEntity(node *html.Node, stripLinebreak bool)
|
|||||||
case "pre":
|
case "pre":
|
||||||
return parser.codeblockToEntity(node)
|
return parser.codeblockToEntity(node)
|
||||||
default:
|
default:
|
||||||
return &messages.HTMLEntity{
|
return &messages.BaseHTMLEntity{
|
||||||
Tag: node.Data,
|
Tag: node.Data,
|
||||||
Children: parser.nodeToEntities(node.FirstChild, stripLinebreak),
|
Children: parser.nodeToEntities(node.FirstChild, stripLinebreak),
|
||||||
Block: parser.isBlockTag(node.Data),
|
Block: parser.isBlockTag(node.Data),
|
||||||
@ -342,13 +307,13 @@ func (parser *htmlParser) tagNodeToEntity(node *html.Node, stripLinebreak bool)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (parser *htmlParser) singleNodeToEntity(node *html.Node, stripLinebreak bool) *messages.HTMLEntity {
|
func (parser *htmlParser) singleNodeToEntity(node *html.Node, stripLinebreak bool) messages.HTMLEntity {
|
||||||
switch node.Type {
|
switch node.Type {
|
||||||
case html.TextNode:
|
case html.TextNode:
|
||||||
if stripLinebreak {
|
if stripLinebreak {
|
||||||
node.Data = strings.Replace(node.Data, "\n", "", -1)
|
node.Data = strings.Replace(node.Data, "\n", "", -1)
|
||||||
}
|
}
|
||||||
return &messages.HTMLEntity{
|
return &messages.BaseHTMLEntity{
|
||||||
Tag: "text",
|
Tag: "text",
|
||||||
Text: node.Data,
|
Text: node.Data,
|
||||||
}
|
}
|
||||||
@ -358,7 +323,7 @@ func (parser *htmlParser) singleNodeToEntity(node *html.Node, stripLinebreak boo
|
|||||||
if node.FirstChild.Data == "html" && node.FirstChild.NextSibling == nil {
|
if node.FirstChild.Data == "html" && node.FirstChild.NextSibling == nil {
|
||||||
return parser.singleNodeToEntity(node.FirstChild, stripLinebreak)
|
return parser.singleNodeToEntity(node.FirstChild, stripLinebreak)
|
||||||
}
|
}
|
||||||
return &messages.HTMLEntity{
|
return &messages.BaseHTMLEntity{
|
||||||
Tag: "html",
|
Tag: "html",
|
||||||
Children: parser.nodeToEntities(node.FirstChild, stripLinebreak),
|
Children: parser.nodeToEntities(node.FirstChild, stripLinebreak),
|
||||||
Block: true,
|
Block: true,
|
||||||
@ -368,7 +333,7 @@ func (parser *htmlParser) singleNodeToEntity(node *html.Node, stripLinebreak boo
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (parser *htmlParser) nodeToEntities(node *html.Node, stripLinebreak bool) (entities []*messages.HTMLEntity) {
|
func (parser *htmlParser) nodeToEntities(node *html.Node, stripLinebreak bool) (entities []messages.HTMLEntity) {
|
||||||
for ; node != nil; node = node.NextSibling {
|
for ; node != nil; node = node.NextSibling {
|
||||||
if entity := parser.singleNodeToEntity(node, stripLinebreak); entity != nil {
|
if entity := parser.singleNodeToEntity(node, stripLinebreak); entity != nil {
|
||||||
entities = append(entities, entity)
|
entities = append(entities, entity)
|
||||||
@ -377,7 +342,7 @@ func (parser *htmlParser) nodeToEntities(node *html.Node, stripLinebreak bool) (
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
var BlockTags = []string{"p", "h1", "h2", "h3", "h4", "h5", "h6", "ol", "ul", "pre", "blockquote", "div", "hr", "table"}
|
var BlockTags = []string{"p", "h1", "h2", "h3", "h4", "h5", "h6", "ol", "ul", "li", "pre", "blockquote", "div", "hr", "table"}
|
||||||
|
|
||||||
func (parser *htmlParser) isBlockTag(tag string) bool {
|
func (parser *htmlParser) isBlockTag(tag string) bool {
|
||||||
for _, blockTag := range BlockTags {
|
for _, blockTag := range BlockTags {
|
||||||
@ -388,27 +353,27 @@ func (parser *htmlParser) isBlockTag(tag string) bool {
|
|||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
func (parser *htmlParser) Parse(htmlData string) *messages.HTMLEntity {
|
func (parser *htmlParser) Parse(htmlData string) messages.HTMLEntity {
|
||||||
node, _ := html.Parse(strings.NewReader(htmlData))
|
node, _ := html.Parse(strings.NewReader(htmlData))
|
||||||
return parser.singleNodeToEntity(node, true)
|
return parser.singleNodeToEntity(node, true)
|
||||||
}
|
}
|
||||||
|
|
||||||
// ParseHTMLMessage parses a HTML-formatted Matrix event into a UIMessage.
|
// ParseHTMLMessage parses a HTML-formatted Matrix event into a UIMessage.
|
||||||
func ParseHTMLMessage(room *rooms.Room, evt *mautrix.Event, senderDisplayname string) *messages.HTMLEntity {
|
func ParseHTMLMessage(room *rooms.Room, evt *mautrix.Event, senderDisplayname string) messages.HTMLEntity {
|
||||||
htmlData := evt.Content.FormattedBody
|
htmlData := evt.Content.FormattedBody
|
||||||
htmlData = strings.Replace(htmlData, "\t", " ", -1)
|
htmlData = strings.Replace(htmlData, "\t", " ", -1)
|
||||||
|
|
||||||
parser := htmlParser{room}
|
parser := htmlParser{room}
|
||||||
root := parser.Parse(htmlData)
|
root := parser.Parse(htmlData)
|
||||||
root.Block = false
|
root.(*messages.BaseHTMLEntity).Block = false
|
||||||
|
|
||||||
if evt.Content.MsgType == mautrix.MsgEmote {
|
if evt.Content.MsgType == mautrix.MsgEmote {
|
||||||
root = &messages.HTMLEntity{
|
root = &messages.BaseHTMLEntity{
|
||||||
Tag: "emote",
|
Tag: "emote",
|
||||||
Children: []*messages.HTMLEntity{
|
Children: []messages.HTMLEntity{
|
||||||
{Text: "* "},
|
messages.NewHTMLTextEntity("* "),
|
||||||
{Text: senderDisplayname, Style: tcell.StyleDefault.Foreground(widget.GetHashColor(evt.Sender))},
|
messages.NewHTMLTextEntity("* ").AdjustStyle(AdjustStyleTextColor(widget.GetHashColor(evt.Sender))),
|
||||||
{Text: " "},
|
messages.NewHTMLTextEntity(" "),
|
||||||
root,
|
root,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user