-
-
Notifications
You must be signed in to change notification settings - Fork 138
/
Markdown.go
186 lines (150 loc) · 4.86 KB
/
Markdown.go
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
package giu
import (
"image"
"image/color"
"net/http"
"strings"
"time"
"github.com/AllenDang/cimgui-go/backend"
"github.com/AllenDang/cimgui-go/imgui"
"github.com/AllenDang/cimgui-go/immarkdown"
)
type markdownState struct {
cfg immarkdown.MarkdownConfig
images map[string]immarkdown.MarkdownImageData
}
func (m *markdownState) Dispose() {
// noop
}
// MarkdownWidget implements DearImGui markdown extension
// https://github.com/juliettef/imgui_markdown
// It is like LabelWidget but with md formatting.
type MarkdownWidget struct {
md string
id ID
headers [3]immarkdown.MarkdownHeadingFormat
}
func (m *MarkdownWidget) getState() *markdownState {
if s := GetState[markdownState](Context, m.id); s != nil {
return s
}
newState := m.newState()
SetState[markdownState](Context, m.id, newState)
return newState
}
func (m *MarkdownWidget) newState() *markdownState {
cfg := immarkdown.NewEmptyMarkdownConfig()
fmtCb := immarkdown.MarkdownFormalCallback(func(data *immarkdown.MarkdownFormatInfo, start bool) {
immarkdown.DefaultMarkdownFormatCallback(*data, start)
})
cfg.SetFormatCallback(&fmtCb)
imgCb := immarkdown.MarkdownImageCallback(func(data immarkdown.MarkdownLinkCallbackData) immarkdown.MarkdownImageData {
link := data.Link()[:data.LinkLength()] // this is because imgui_markdown returns the whole text starting on link and returns link length (for some reason)
if existing, ok := m.getState().images[link]; ok {
return existing
}
result := mdLoadImage(link)
m.getState().images[link] = result
return result
})
cfg.SetImageCallback(&imgCb)
return &markdownState{
cfg: *cfg,
images: make(map[string]immarkdown.MarkdownImageData),
}
}
// Markdown creates new markdown widget.
func Markdown(md string) *MarkdownWidget {
return (&MarkdownWidget{
md: md,
id: GenAutoID("MarkdownWidget"),
headers: [3]immarkdown.MarkdownHeadingFormat{
*immarkdown.NewEmptyMarkdownHeadingFormat(),
*immarkdown.NewEmptyMarkdownHeadingFormat(),
*immarkdown.NewEmptyMarkdownHeadingFormat(),
},
}).OnLink(OpenURL)
}
// OnLink sets another than default link callback.
// NOTE: due to cimgui-go's limitation https://github.com/AllenDang/cimgui-go?tab=readme-ov-file#callbacks
// we clear MarkdownLinkCallback pool every frame. No further action from you should be required (just feel informed).
// ref (*MasterWindow).beforeRender.
func (m *MarkdownWidget) OnLink(cb func(url string)) *MarkdownWidget {
igCb := immarkdown.MarkdownLinkCallback(func(data immarkdown.MarkdownLinkCallbackData) {
link := data.Link()[:data.LinkLength()]
cb(link)
})
m.getState().cfg.SetLinkCallback(&igCb)
return m
}
// Header sets header formatting
// NOTE: level (counting from 0!) is header level. (for instance, header `# H1` will have level 0).
// NOTE: since cimgui-go there are only 3 levels (so level < 3 here). This will panic if level >= 3!
// TODO: it actually doesn't work.
func (m *MarkdownWidget) Header(level int, font *FontInfo, separator bool) *MarkdownWidget {
// ensure level is in range
Assert(level < 3, "MarkdownWidget", "Header", "Header level must be less than 3!")
m.headers[level] = *immarkdown.NewEmptyMarkdownHeadingFormat()
if font != nil {
if f, ok := Context.FontAtlas.extraFontMap[font.String()]; ok {
m.headers[level].SetFont(f)
}
}
m.headers[level].SetSeparator(separator)
state := m.getState()
state.cfg.SetHeadingFormats(&m.headers)
return m
}
// Build implements Widget interface.
func (m *MarkdownWidget) Build() {
state := m.getState()
immarkdown.Markdown(
Context.FontAtlas.RegisterString(m.md),
uint64(len(m.md)),
state.cfg,
)
}
func mdLoadImage(path string) immarkdown.MarkdownImageData {
var (
img *image.RGBA
err error
)
switch {
case strings.HasPrefix(path, "http://") || strings.HasPrefix(path, "https://"):
// Load image from url
client := &http.Client{Timeout: 5 * time.Second}
resp, respErr := client.Get(path)
if respErr != nil {
return *immarkdown.NewEmptyMarkdownImageData()
}
defer func() {
closeErr := resp.Body.Close()
Assert((closeErr == nil), "MarkdownWidget", "mdLoadImage", "Could not close http request!")
}()
rgba, _, imgErr := image.Decode(resp.Body)
if imgErr != nil {
return *immarkdown.NewEmptyMarkdownImageData()
}
img = ImageToRgba(rgba)
default:
img, err = LoadImage(path)
if err != nil {
return *immarkdown.NewEmptyMarkdownImageData()
}
}
size := img.Bounds()
id := backend.NewTextureFromRgba(img).ID
result := immarkdown.NewEmptyMarkdownImageData()
result.SetUsertextureid(id)
result.SetSize(imgui.Vec2{
X: float32(size.Dx()),
Y: float32(size.Dy()),
})
result.SetUseLinkCallback(true)
result.SetUv0(ToVec2(image.Point{0, 0}))
result.SetUv1(ToVec2(image.Point{1, 1}))
result.SetTintcol(ToVec4Color(color.RGBA{255, 255, 255, 255}))
result.SetBordercol(ToVec4Color(color.RGBA{0, 0, 0, 0}))
result.SetIsValid(true)
return *result
}