|
|
@@ -0,0 +1,56 @@
|
|
|
+package main
|
|
|
+
|
|
|
+import (
|
|
|
+ "image"
|
|
|
+ _ "image/jpeg"
|
|
|
+ _ "image/png"
|
|
|
+ "net/http"
|
|
|
+
|
|
|
+ "github.com/diamondburned/arikawa/v3/discord"
|
|
|
+ "github.com/gdamore/tcell/v2"
|
|
|
+ "github.com/rivo/tview"
|
|
|
+)
|
|
|
+
|
|
|
+type AttachmentImage struct {
|
|
|
+ *tview.Image
|
|
|
+}
|
|
|
+
|
|
|
+func newAttachmentImage(a discord.Attachment) (*AttachmentImage, error) {
|
|
|
+ ai := &AttachmentImage{
|
|
|
+ Image: tview.NewImage(),
|
|
|
+ }
|
|
|
+
|
|
|
+ ai.SetInputCapture(ai.onInputCapture)
|
|
|
+ ai.SetBackgroundColor(tcell.GetColor(cfg.Theme.BackgroundColor))
|
|
|
+ ai.SetTitleColor(tcell.GetColor(cfg.Theme.TitleColor))
|
|
|
+ ai.SetTitleAlign(tview.AlignLeft)
|
|
|
+
|
|
|
+ p := cfg.Theme.BorderPadding
|
|
|
+ ai.SetBorder(cfg.Theme.Border)
|
|
|
+ ai.SetBorderColor(tcell.GetColor(cfg.Theme.BorderColor))
|
|
|
+ ai.SetBorderPadding(p[0], p[1], p[2], p[3])
|
|
|
+
|
|
|
+ resp, err := http.Get(a.URL)
|
|
|
+ if err != nil {
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+ defer resp.Body.Close()
|
|
|
+
|
|
|
+ i, _, err := image.Decode(resp.Body)
|
|
|
+ if err != nil {
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+
|
|
|
+ ai.SetTitle(a.Filename)
|
|
|
+ ai.SetImage(i)
|
|
|
+ return ai, nil
|
|
|
+}
|
|
|
+
|
|
|
+func (ai *AttachmentImage) onInputCapture(event *tcell.EventKey) *tcell.EventKey {
|
|
|
+ if event.Name() == cfg.Keys.Cancel {
|
|
|
+ app.SetRoot(mainFlex, true)
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+
|
|
|
+ return event
|
|
|
+}
|