diff options
Diffstat (limited to 'widgets')
-rw-r--r-- | widgets/compose.go | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/widgets/compose.go b/widgets/compose.go index 6a41e706..3dd569d8 100644 --- a/widgets/compose.go +++ b/widgets/compose.go @@ -434,8 +434,28 @@ func writeAttachment(path string, writer *mail.Writer) error { return nil } +func (c *Composer) GetAttachments() []string { + return c.attachments +} + func (c *Composer) AddAttachment(path string) { c.attachments = append(c.attachments, path) + c.resetReview() +} + +func (c *Composer) DeleteAttachment(path string) error { + for i, a := range c.attachments { + if a == path { + c.attachments = append(c.attachments[:i], c.attachments[i+1:]...) + c.resetReview() + return nil + } + } + + return errors.New("attachment does not exist") +} + +func (c *Composer) resetReview() { if c.review != nil { c.grid.RemoveChild(c.review) c.review = newReviewMessage(c, nil) |