aboutsummaryrefslogtreecommitdiff
path: root/ui/messages/html/blockquote.go
blob: bb7c0094a871a924115b9e691c1b3376980a42ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
// gomuks - A terminal Matrix client written in Go.
// Copyright (C) 2019 Tulir Asokan
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program.  If not, see <https://www.gnu.org/licenses/>.

package html

import (
	"fmt"
	"strings"

	"maunium.net/go/mauview"
)

type BlockquoteEntity struct {
	*ContainerEntity
}

const BlockQuoteChar = '>'

func NewBlockquoteEntity(children []Entity) *BlockquoteEntity {
	return &BlockquoteEntity{&ContainerEntity{
		BaseEntity: &BaseEntity{
			Tag:   "blockquote",
			Block: true,
		},
		Children: children,
		Indent:   2,
	}}
}

func (be *BlockquoteEntity) AdjustStyle(fn AdjustStyleFunc) Entity {
	be.BaseEntity = be.BaseEntity.AdjustStyle(fn).(*BaseEntity)
	return be
}

func (be *BlockquoteEntity) Clone() Entity {
	return &BlockquoteEntity{ContainerEntity: be.ContainerEntity.Clone().(*ContainerEntity)}
}

func (be *BlockquoteEntity) Draw(screen mauview.Screen) {
	be.ContainerEntity.Draw(screen)
	for y := 0; y < be.height; y++ {
		screen.SetContent(0, y, BlockQuoteChar, nil, be.Style)
	}
}

func (be *BlockquoteEntity) PlainText() string {
	if len(be.Children) == 0 {
		return ""
	}
	var buf strings.Builder
	newlined := false
	for i, child := range be.Children {
		if i != 0 && child.IsBlock() && !newlined {
			buf.WriteRune('\n')
		}
		newlined = false
		for i, row := range strings.Split(child.PlainText(), "\n") {
			if i != 0 {
				buf.WriteRune('\n')
			}
			buf.WriteRune('>')
			buf.WriteRune(' ')
			buf.WriteString(row)
		}
		if child.IsBlock() {
			buf.WriteRune('\n')
			newlined = true
		}
	}
	return strings.TrimSpace(buf.String())
}

func (be *BlockquoteEntity) String() string {
	return fmt.Sprintf("&html.BlockquoteEntity{%s},\n", be.BaseEntity)
}