2020-05-26 06:51:06 +00:00
|
|
|
package input
|
|
|
|
|
|
|
|
import (
|
2020-07-17 07:26:55 +00:00
|
|
|
"time"
|
|
|
|
|
2020-05-26 06:51:06 +00:00
|
|
|
"github.com/diamondburned/cchat"
|
2020-07-10 23:26:07 +00:00
|
|
|
"github.com/diamondburned/cchat-gtk/internal/gts"
|
2020-06-17 22:58:38 +00:00
|
|
|
"github.com/diamondburned/cchat-gtk/internal/log"
|
2020-07-10 23:26:07 +00:00
|
|
|
"github.com/diamondburned/cchat-gtk/internal/ui/messages/input/attachment"
|
2020-07-01 19:56:32 +00:00
|
|
|
"github.com/diamondburned/cchat-gtk/internal/ui/messages/input/username"
|
2020-07-03 03:22:48 +00:00
|
|
|
"github.com/diamondburned/cchat-gtk/internal/ui/primitives"
|
2020-10-15 06:32:11 +00:00
|
|
|
"github.com/diamondburned/cchat-gtk/internal/ui/primitives/completion"
|
2020-07-01 01:09:22 +00:00
|
|
|
"github.com/diamondburned/cchat-gtk/internal/ui/primitives/scrollinput"
|
2020-08-31 04:47:58 +00:00
|
|
|
"github.com/diamondburned/gspell"
|
2020-05-26 06:51:06 +00:00
|
|
|
"github.com/gotk3/gotk3/gtk"
|
2020-06-17 22:58:38 +00:00
|
|
|
"github.com/pkg/errors"
|
2020-05-26 06:51:06 +00:00
|
|
|
)
|
|
|
|
|
2020-06-13 07:29:32 +00:00
|
|
|
// Controller is an interface to control message containers.
|
|
|
|
type Controller interface {
|
|
|
|
AddPresendMessage(msg PresendMessage) (onErr func(error))
|
2020-06-17 22:58:38 +00:00
|
|
|
LatestMessageFrom(userID string) (messageID string, ok bool)
|
2020-06-13 07:29:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type InputView struct {
|
|
|
|
*Field
|
2020-10-15 06:32:11 +00:00
|
|
|
Completer *completion.Completer
|
2020-06-13 07:29:32 +00:00
|
|
|
}
|
|
|
|
|
2020-07-03 03:22:48 +00:00
|
|
|
var textCSS = primitives.PrepareCSS(`
|
2020-07-10 23:26:07 +00:00
|
|
|
.message-input {
|
|
|
|
padding-top: 2px;
|
|
|
|
padding-bottom: 2px;
|
|
|
|
}
|
|
|
|
|
2020-07-04 04:41:12 +00:00
|
|
|
.message-input, .message-input * {
|
2020-08-29 01:42:28 +00:00
|
|
|
background-color: mix(@theme_bg_color, @theme_fg_color, 0.03);
|
2020-07-03 03:22:48 +00:00
|
|
|
}
|
2020-07-04 04:41:12 +00:00
|
|
|
|
|
|
|
.message-input * {
|
2020-07-10 23:26:07 +00:00
|
|
|
transition: linear 50ms background-color;
|
2020-07-04 04:41:12 +00:00
|
|
|
border: 1px solid alpha(@theme_fg_color, 0.2);
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message-input:focus * {
|
|
|
|
border-color: @theme_selected_bg_color;
|
|
|
|
}
|
2020-07-03 03:22:48 +00:00
|
|
|
`)
|
|
|
|
|
2020-08-29 01:42:28 +00:00
|
|
|
var inputBoxCSS = primitives.PrepareClassCSS("input-box", `
|
|
|
|
.input-box {
|
|
|
|
background-color: @theme_bg_color;
|
|
|
|
}
|
|
|
|
`)
|
|
|
|
|
2020-06-13 07:29:32 +00:00
|
|
|
func NewView(ctrl Controller) *InputView {
|
|
|
|
text, _ := gtk.TextViewNew()
|
|
|
|
text.SetSensitive(false)
|
|
|
|
text.SetWrapMode(gtk.WRAP_WORD_CHAR)
|
2020-07-04 04:41:12 +00:00
|
|
|
text.SetVAlign(gtk.ALIGN_START)
|
|
|
|
text.SetProperty("top-margin", 4)
|
|
|
|
text.SetProperty("bottom-margin", 4)
|
|
|
|
text.SetProperty("left-margin", 8)
|
|
|
|
text.SetProperty("right-margin", 8)
|
2020-10-20 22:45:28 +00:00
|
|
|
text.SetProperty("monospace", true)
|
2020-06-13 07:29:32 +00:00
|
|
|
text.Show()
|
|
|
|
|
2020-07-03 03:22:48 +00:00
|
|
|
primitives.AddClass(text, "message-input")
|
|
|
|
primitives.AttachCSS(text, textCSS)
|
|
|
|
|
2020-06-13 07:29:32 +00:00
|
|
|
// Bind the text event handler to text first.
|
2020-10-15 06:32:11 +00:00
|
|
|
c := completion.NewCompleter(text)
|
2020-06-13 07:29:32 +00:00
|
|
|
|
|
|
|
// Bind the input callback later.
|
|
|
|
f := NewField(text, ctrl)
|
|
|
|
f.Show()
|
|
|
|
|
2020-07-01 01:34:13 +00:00
|
|
|
return &InputView{f, c}
|
2020-06-13 07:29:32 +00:00
|
|
|
}
|
|
|
|
|
2020-10-15 06:32:11 +00:00
|
|
|
func (v *InputView) SetMessenger(session cchat.Session, messenger cchat.Messenger) {
|
|
|
|
v.Field.SetMessenger(session, messenger)
|
|
|
|
|
|
|
|
if messenger == nil {
|
|
|
|
return
|
|
|
|
}
|
2020-06-13 07:29:32 +00:00
|
|
|
|
|
|
|
// Ignore ok; completer can be nil.
|
2020-10-15 06:32:11 +00:00
|
|
|
// TODO: this is possibly racy vs the above SetMessenger.
|
|
|
|
if sender := messenger.AsSender(); sender != nil {
|
|
|
|
v.Completer.SetCompleter(sender.AsCompleter())
|
|
|
|
}
|
2020-06-13 07:29:32 +00:00
|
|
|
}
|
|
|
|
|
2020-05-26 06:51:06 +00:00
|
|
|
type Field struct {
|
2020-07-10 23:26:07 +00:00
|
|
|
// Box contains the field box and the attachment container.
|
2020-06-04 23:00:41 +00:00
|
|
|
*gtk.Box
|
2020-07-10 23:26:07 +00:00
|
|
|
Attachments *attachment.Container
|
|
|
|
|
|
|
|
// FieldBox contains the username container and the input field. It spans
|
|
|
|
// horizontally.
|
|
|
|
FieldBox *gtk.Box
|
2020-07-03 03:22:48 +00:00
|
|
|
Username *username.Container
|
2020-06-04 23:00:41 +00:00
|
|
|
|
|
|
|
TextScroll *gtk.ScrolledWindow
|
2020-08-31 04:47:58 +00:00
|
|
|
text *gtk.TextView // const
|
|
|
|
speller *gspell.TextView // const
|
|
|
|
buffer *gtk.TextBuffer // const
|
2020-06-04 23:00:41 +00:00
|
|
|
|
2020-07-17 18:01:40 +00:00
|
|
|
send *gtk.Button
|
|
|
|
attach *gtk.Button
|
|
|
|
|
|
|
|
ctrl Controller
|
|
|
|
|
|
|
|
// Embed a state field which allows us to easily reset it.
|
|
|
|
fieldState
|
|
|
|
}
|
|
|
|
|
|
|
|
type fieldState struct {
|
2020-10-15 06:32:11 +00:00
|
|
|
UserID string
|
|
|
|
Messenger cchat.Messenger
|
|
|
|
Sender cchat.Sender
|
|
|
|
upload bool // true if server supports files
|
|
|
|
editor cchat.Editor
|
|
|
|
typing cchat.TypingIndicator
|
2020-05-26 06:51:06 +00:00
|
|
|
|
2020-06-17 22:58:38 +00:00
|
|
|
editingID string // never empty
|
2020-07-17 07:26:55 +00:00
|
|
|
lastTyped time.Time
|
|
|
|
typerDura time.Duration
|
2020-06-04 23:00:41 +00:00
|
|
|
}
|
|
|
|
|
2020-07-17 18:01:40 +00:00
|
|
|
func (s *fieldState) Reset() {
|
|
|
|
*s = fieldState{}
|
|
|
|
}
|
|
|
|
|
2020-08-29 01:42:28 +00:00
|
|
|
var inputFieldCSS = primitives.PrepareClassCSS("input-field", `
|
|
|
|
.input-field {
|
|
|
|
margin: 3px 5px;
|
|
|
|
margin-top: 1px;
|
|
|
|
}
|
|
|
|
`)
|
|
|
|
|
|
|
|
var scrolledInputCSS = primitives.PrepareClassCSS("scrolled-input", `
|
|
|
|
.scrolled-input {
|
|
|
|
margin: 0 5px;
|
|
|
|
}
|
2020-07-04 04:41:12 +00:00
|
|
|
`)
|
2020-06-04 23:00:41 +00:00
|
|
|
|
2020-06-13 07:29:32 +00:00
|
|
|
func NewField(text *gtk.TextView, ctrl Controller) *Field {
|
2020-07-10 23:26:07 +00:00
|
|
|
field := &Field{text: text, ctrl: ctrl}
|
|
|
|
field.buffer, _ = text.GetBuffer()
|
2020-08-31 04:47:58 +00:00
|
|
|
field.speller = gspell.GetFromGtkTextView(text)
|
|
|
|
field.speller.BasicSetup()
|
2020-07-10 23:26:07 +00:00
|
|
|
|
|
|
|
field.Username = username.NewContainer()
|
|
|
|
field.Username.Show()
|
|
|
|
|
|
|
|
field.TextScroll = scrollinput.NewV(text, 150)
|
|
|
|
field.TextScroll.Show()
|
2020-08-29 01:42:28 +00:00
|
|
|
scrolledInputCSS(field.TextScroll)
|
2020-07-10 23:26:07 +00:00
|
|
|
|
2020-07-17 18:01:40 +00:00
|
|
|
field.attach, _ = gtk.ButtonNewFromIconName("mail-attachment-symbolic", gtk.ICON_SIZE_BUTTON)
|
|
|
|
field.attach.SetRelief(gtk.RELIEF_NONE)
|
|
|
|
field.attach.SetSensitive(false)
|
|
|
|
// Only show this if the server supports it (upload == true).
|
|
|
|
primitives.AddClass(field.attach, "attach-button")
|
2020-07-10 23:26:07 +00:00
|
|
|
|
2020-07-17 18:01:40 +00:00
|
|
|
field.send, _ = gtk.ButtonNewFromIconName("mail-send-symbolic", gtk.ICON_SIZE_BUTTON)
|
|
|
|
field.send.SetRelief(gtk.RELIEF_NONE)
|
|
|
|
field.send.Show()
|
|
|
|
primitives.AddClass(field.send, "send-button")
|
2020-07-10 23:26:07 +00:00
|
|
|
|
2020-08-29 01:42:28 +00:00
|
|
|
field.FieldBox, _ = gtk.BoxNew(gtk.ORIENTATION_HORIZONTAL, 0)
|
2020-07-10 23:26:07 +00:00
|
|
|
field.FieldBox.PackStart(field.Username, false, false, 0)
|
2020-07-17 18:01:40 +00:00
|
|
|
field.FieldBox.PackStart(field.attach, false, false, 0)
|
2020-07-10 23:26:07 +00:00
|
|
|
field.FieldBox.PackStart(field.TextScroll, true, true, 0)
|
2020-07-17 18:01:40 +00:00
|
|
|
field.FieldBox.PackStart(field.send, false, false, 0)
|
2020-07-10 23:26:07 +00:00
|
|
|
field.FieldBox.Show()
|
2020-08-29 01:42:28 +00:00
|
|
|
inputFieldCSS(field.FieldBox)
|
2020-07-10 23:26:07 +00:00
|
|
|
|
|
|
|
field.Attachments = attachment.New()
|
|
|
|
field.Attachments.Show()
|
|
|
|
|
|
|
|
field.Box, _ = gtk.BoxNew(gtk.ORIENTATION_VERTICAL, 2)
|
|
|
|
field.Box.PackStart(field.Attachments, false, false, 0)
|
|
|
|
field.Box.PackStart(field.FieldBox, false, false, 0)
|
|
|
|
field.Box.Show()
|
2020-08-29 01:42:28 +00:00
|
|
|
inputBoxCSS(field.Box)
|
2020-07-10 23:26:07 +00:00
|
|
|
|
|
|
|
text.SetFocusHAdjustment(field.TextScroll.GetHAdjustment())
|
|
|
|
text.SetFocusVAdjustment(field.TextScroll.GetVAdjustment())
|
|
|
|
// Bind text events.
|
2020-06-04 23:00:41 +00:00
|
|
|
text.Connect("key-press-event", field.keyDown)
|
2020-07-10 23:26:07 +00:00
|
|
|
// Bind the send button.
|
2020-07-17 18:01:40 +00:00
|
|
|
field.send.Connect("clicked", field.sendInput)
|
2020-07-10 23:26:07 +00:00
|
|
|
// Bind the attach button.
|
2020-07-17 18:01:40 +00:00
|
|
|
field.attach.Connect("clicked", func() { gts.SpawnUploader("", field.Attachments.AddFiles) })
|
2020-07-10 23:26:07 +00:00
|
|
|
|
|
|
|
// Connect to the field's revealer. On resize, we want the attachments
|
|
|
|
// carousel to have the same padding too.
|
|
|
|
field.Username.Connect("size-allocate", func(w gtk.IWidget) {
|
|
|
|
// Calculate the left width: from the left of the message box to the
|
|
|
|
// right of the attach button, covering the username container.
|
2020-08-29 01:42:28 +00:00
|
|
|
var leftWidth = 5 + field.attach.GetAllocatedWidth() + w.ToWidget().GetAllocatedWidth()
|
2020-07-10 23:26:07 +00:00
|
|
|
// Set the autocompleter's left margin to be the same.
|
|
|
|
field.Attachments.SetMarginStart(leftWidth)
|
|
|
|
})
|
2020-07-03 03:22:48 +00:00
|
|
|
|
2020-06-04 23:00:41 +00:00
|
|
|
return field
|
2020-05-26 06:51:06 +00:00
|
|
|
}
|
|
|
|
|
2020-06-07 07:06:13 +00:00
|
|
|
// Reset prepares the field before SetSender() is called.
|
|
|
|
func (f *Field) Reset() {
|
2020-07-10 23:26:07 +00:00
|
|
|
// Paranoia. The View should already change to a different stack, but we're
|
|
|
|
// doing this just in case.
|
2020-06-07 07:06:13 +00:00
|
|
|
f.text.SetSensitive(false)
|
|
|
|
|
2020-07-17 18:01:40 +00:00
|
|
|
f.fieldState.Reset()
|
2020-07-03 03:22:48 +00:00
|
|
|
f.Username.Reset()
|
2020-06-07 07:06:13 +00:00
|
|
|
|
|
|
|
// reset the input
|
2020-07-10 23:26:07 +00:00
|
|
|
f.clearText()
|
2020-06-07 07:06:13 +00:00
|
|
|
}
|
|
|
|
|
2020-10-15 06:32:11 +00:00
|
|
|
// SetMessenger changes the messenger of the input field. If nil, the input
|
|
|
|
// will be disabled. Reset() should be called first.
|
|
|
|
func (f *Field) SetMessenger(session cchat.Session, messenger cchat.Messenger) {
|
2020-06-07 04:27:28 +00:00
|
|
|
// Update the left username container in the input.
|
2020-10-15 06:32:11 +00:00
|
|
|
f.Username.Update(session, messenger)
|
2020-06-17 22:58:38 +00:00
|
|
|
f.UserID = session.ID()
|
2020-06-04 23:00:41 +00:00
|
|
|
|
|
|
|
// Set the sender.
|
2020-10-15 06:32:11 +00:00
|
|
|
if messenger != nil {
|
|
|
|
f.Messenger = messenger
|
|
|
|
f.Sender = messenger.AsSender()
|
2020-06-07 07:06:13 +00:00
|
|
|
f.text.SetSensitive(true)
|
2020-06-17 22:58:38 +00:00
|
|
|
|
2020-06-28 23:01:08 +00:00
|
|
|
// Allow editor to be nil.
|
2020-10-15 06:32:11 +00:00
|
|
|
f.editor = f.Messenger.AsEditor()
|
2020-07-17 07:26:55 +00:00
|
|
|
// Allow typer to be nil.
|
2020-10-15 06:32:11 +00:00
|
|
|
f.typing = f.Messenger.AsTypingIndicator()
|
2020-07-17 07:26:55 +00:00
|
|
|
|
2020-07-17 18:01:40 +00:00
|
|
|
// See if we can upload files.
|
2020-10-15 06:32:11 +00:00
|
|
|
f.SetAllowUpload(f.Sender.CanAttach())
|
2020-07-17 18:01:40 +00:00
|
|
|
|
2020-07-17 07:26:55 +00:00
|
|
|
// Populate the duration state if typer is not nil.
|
2020-10-15 06:32:11 +00:00
|
|
|
if f.typing != nil {
|
|
|
|
f.typerDura = f.typing.TypingTimeout()
|
2020-06-17 22:58:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-17 18:01:40 +00:00
|
|
|
func (f *Field) SetAllowUpload(allow bool) {
|
|
|
|
f.upload = allow
|
|
|
|
|
|
|
|
// Don't allow clicks on the attachment button if allow is false.
|
|
|
|
f.attach.SetSensitive(allow)
|
|
|
|
// Disable the attachmetn carousel for good measure, which also prevents
|
|
|
|
// drag-and-drops.
|
|
|
|
f.Attachments.SetEnabled(allow)
|
|
|
|
|
|
|
|
// Show the attachment button if we can, else hide it.
|
|
|
|
if f.upload {
|
|
|
|
f.attach.Show()
|
|
|
|
} else {
|
|
|
|
f.attach.Hide()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-28 23:01:08 +00:00
|
|
|
// Editable returns whether or not the input field can be edited.
|
|
|
|
func (f *Field) Editable(msgID string) bool {
|
2020-10-15 06:32:11 +00:00
|
|
|
return f.editor != nil && f.editor.IsEditable(msgID)
|
2020-06-17 22:58:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (f *Field) StartEditing(msgID string) bool {
|
|
|
|
// Do we support message editing? If not, exit.
|
2020-06-28 23:01:08 +00:00
|
|
|
if !f.Editable(msgID) {
|
2020-06-17 22:58:38 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// Try and request the old message content for editing.
|
2020-10-15 06:32:11 +00:00
|
|
|
content, err := f.editor.RawContent(msgID)
|
2020-06-17 22:58:38 +00:00
|
|
|
if err != nil {
|
|
|
|
// TODO: show error
|
|
|
|
log.Error(errors.Wrap(err, "Failed to get message content"))
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set the current editing state and set the input after requesting the
|
|
|
|
// content.
|
|
|
|
f.editingID = msgID
|
|
|
|
f.buffer.SetText(content)
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// StopEditing cancels the current editing message. It returns a false and does
|
|
|
|
// nothing if the editor is not editing anything.
|
|
|
|
func (f *Field) StopEditing() bool {
|
|
|
|
if f.editingID == "" {
|
|
|
|
return false
|
2020-06-07 07:06:13 +00:00
|
|
|
}
|
2020-06-17 22:58:38 +00:00
|
|
|
|
|
|
|
f.editingID = ""
|
|
|
|
f.clearText()
|
|
|
|
|
|
|
|
return true
|
2020-05-26 06:51:06 +00:00
|
|
|
}
|
|
|
|
|
2020-07-10 23:26:07 +00:00
|
|
|
// clearText resets the input field
|
2020-06-17 22:58:38 +00:00
|
|
|
func (f *Field) clearText() {
|
|
|
|
f.buffer.Delete(f.buffer.GetBounds())
|
2020-07-10 23:26:07 +00:00
|
|
|
f.Attachments.Reset()
|
2020-06-17 22:58:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// getText returns the text from the input, but it doesn't cut it.
|
|
|
|
func (f *Field) getText() string {
|
|
|
|
start, end := f.buffer.GetBounds()
|
|
|
|
text, _ := f.buffer.GetText(start, end, false)
|
|
|
|
return text
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *Field) textLen() int {
|
|
|
|
return f.buffer.GetCharCount()
|
|
|
|
}
|