1
0
mirror of https://gitea.com/gitea/tea.git synced 2024-06-30 06:45:26 +00:00
tea/vendor/github.com/muesli/reflow/indent/indent.go
6543 89e93d90b3 Use glamour and termev to render/colorize content (#181)
Merge branch 'master' into use-glamour

select Glamour Theme based on BackgroundColor

Merge branch 'master' into use-glamour

Merge branch 'master' into use-glamour

update termev

update go.mod

label color colorate

use glamour for issue content

Vendor: Add glamour

Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Co-authored-by: 6543 <6543@obermui.de>
Reviewed-on: https://gitea.com/gitea/tea/pulls/181
Reviewed-by: techknowlogick <techknowlogick@gitea.io>
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com>
2020-09-19 16:00:50 +00:00

112 lines
2.2 KiB
Go

package indent
import (
"bytes"
"io"
"strings"
"github.com/muesli/reflow/ansi"
)
type IndentFunc func(w io.Writer)
type Writer struct {
Indent uint
IndentFunc IndentFunc
ansiWriter *ansi.Writer
buf bytes.Buffer
skipIndent bool
ansi bool
}
func NewWriter(indent uint, indentFunc IndentFunc) *Writer {
w := &Writer{
Indent: indent,
IndentFunc: indentFunc,
}
w.ansiWriter = &ansi.Writer{
Forward: &w.buf,
}
return w
}
func NewWriterPipe(forward io.Writer, indent uint, indentFunc IndentFunc) *Writer {
return &Writer{
Indent: indent,
IndentFunc: indentFunc,
ansiWriter: &ansi.Writer{
Forward: forward,
},
}
}
// Bytes is shorthand for declaring a new default indent-writer instance,
// used to immediately indent a byte slice.
func Bytes(b []byte, indent uint) []byte {
f := NewWriter(indent, nil)
_, _ = f.Write(b)
return f.Bytes()
}
// String is shorthand for declaring a new default indent-writer instance,
// used to immediately indent a string.
func String(s string, indent uint) string {
return string(Bytes([]byte(s), indent))
}
// Write is used to write content to the indent buffer.
func (w *Writer) Write(b []byte) (int, error) {
for _, c := range string(b) {
if c == '\x1B' {
// ANSI escape sequence
w.ansi = true
} else if w.ansi {
if (c >= 0x41 && c <= 0x5a) || (c >= 0x61 && c <= 0x7a) {
// ANSI sequence terminated
w.ansi = false
}
} else {
if !w.skipIndent {
w.ansiWriter.ResetAnsi()
if w.IndentFunc != nil {
for i := 0; i < int(w.Indent); i++ {
w.IndentFunc(w.ansiWriter)
}
} else {
_, err := w.ansiWriter.Write([]byte(strings.Repeat(" ", int(w.Indent))))
if err != nil {
return 0, err
}
}
w.skipIndent = true
w.ansiWriter.RestoreAnsi()
}
if c == '\n' {
// end of current line
w.skipIndent = false
}
}
_, err := w.ansiWriter.Write([]byte(string(c)))
if err != nil {
return 0, err
}
}
return len(b), nil
}
// Bytes returns the indented result as a byte slice.
func (w *Writer) Bytes() []byte {
return w.buf.Bytes()
}
// String returns the indented result as a string.
func (w *Writer) String() string {
return w.buf.String()
}