2018-04-11 18:20:40 +02:00
|
|
|
// gomuks - A terminal Matrix client written in Go.
|
2020-04-19 17:10:14 +02:00
|
|
|
// Copyright (C) 2020 Tulir Asokan
|
2018-04-11 18:20:40 +02:00
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
2019-01-17 13:13:25 +01:00
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
2018-04-11 18:20:40 +02:00
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2019-01-17 13:13:25 +01:00
|
|
|
// GNU Affero General Public License for more details.
|
2018-04-11 18:20:40 +02:00
|
|
|
//
|
2019-01-17 13:13:25 +01:00
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2018-04-11 18:20:40 +02:00
|
|
|
|
|
|
|
package messages
|
|
|
|
|
|
|
|
import (
|
2019-06-15 00:11:51 +02:00
|
|
|
"fmt"
|
2019-04-10 00:42:27 +02:00
|
|
|
"time"
|
|
|
|
|
2022-04-15 11:53:09 +02:00
|
|
|
"go.mau.fi/mauview"
|
|
|
|
"go.mau.fi/tcell"
|
|
|
|
|
2020-04-16 18:27:35 +02:00
|
|
|
"maunium.net/go/gomuks/matrix/muksevt"
|
2019-01-17 13:13:25 +01:00
|
|
|
|
2018-06-01 23:43:56 +02:00
|
|
|
"maunium.net/go/gomuks/config"
|
2018-06-01 23:44:21 +02:00
|
|
|
"maunium.net/go/gomuks/ui/messages/tstring"
|
2018-04-11 18:20:40 +02:00
|
|
|
)
|
|
|
|
|
2018-04-13 20:25:45 +02:00
|
|
|
type ExpandedTextMessage struct {
|
2019-06-15 00:11:51 +02:00
|
|
|
Text tstring.TString
|
|
|
|
buffer []tstring.TString
|
2018-04-11 18:20:40 +02:00
|
|
|
}
|
|
|
|
|
2018-04-13 20:25:45 +02:00
|
|
|
// NewExpandedTextMessage creates a new ExpandedTextMessage object with the provided values and the default state.
|
2020-04-16 18:27:35 +02:00
|
|
|
func NewExpandedTextMessage(evt *muksevt.Event, displayname string, text tstring.TString) *UIMessage {
|
2019-06-17 11:27:31 +02:00
|
|
|
return newUIMessage(evt, displayname, &ExpandedTextMessage{
|
2019-06-15 00:11:51 +02:00
|
|
|
Text: text,
|
|
|
|
})
|
2018-04-11 18:20:40 +02:00
|
|
|
}
|
|
|
|
|
2022-04-15 22:31:48 +02:00
|
|
|
func NewServiceMessage(text string) *UIMessage {
|
|
|
|
return &UIMessage{
|
|
|
|
SenderID: "*",
|
|
|
|
SenderName: "*",
|
|
|
|
Timestamp: time.Now(),
|
|
|
|
IsService: true,
|
|
|
|
Renderer: &ExpandedTextMessage{
|
|
|
|
Text: tstring.NewTString(text),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-15 00:11:51 +02:00
|
|
|
func NewDateChangeMessage(text string) *UIMessage {
|
2019-04-10 00:42:27 +02:00
|
|
|
midnight := time.Now()
|
|
|
|
midnight = time.Date(midnight.Year(), midnight.Month(), midnight.Day(),
|
|
|
|
0, 0, 0, 0,
|
|
|
|
midnight.Location())
|
2019-06-15 00:11:51 +02:00
|
|
|
return &UIMessage{
|
|
|
|
SenderID: "*",
|
|
|
|
SenderName: "*",
|
|
|
|
Timestamp: midnight,
|
|
|
|
IsService: true,
|
|
|
|
Renderer: &ExpandedTextMessage{
|
|
|
|
Text: tstring.NewColorTString(text, tcell.ColorGreen),
|
2019-04-10 00:42:27 +02:00
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-15 00:11:51 +02:00
|
|
|
func (msg *ExpandedTextMessage) Clone() MessageRenderer {
|
2019-04-10 20:06:19 +02:00
|
|
|
return &ExpandedTextMessage{
|
2019-06-15 00:11:51 +02:00
|
|
|
Text: msg.Text.Clone(),
|
2019-04-10 20:06:19 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-13 20:25:45 +02:00
|
|
|
func (msg *ExpandedTextMessage) NotificationContent() string {
|
2019-06-15 00:11:51 +02:00
|
|
|
return msg.Text.String()
|
2018-04-13 20:25:45 +02:00
|
|
|
}
|
|
|
|
|
2018-05-22 21:06:48 +02:00
|
|
|
func (msg *ExpandedTextMessage) PlainText() string {
|
2019-06-15 00:11:51 +02:00
|
|
|
return msg.Text.String()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (msg *ExpandedTextMessage) String() string {
|
|
|
|
return fmt.Sprintf(`&messages.ExpandedTextMessage{Text="%s"}`, msg.Text.String())
|
|
|
|
}
|
|
|
|
|
|
|
|
func (msg *ExpandedTextMessage) CalculateBuffer(prefs config.UserPreferences, width int, uiMsg *UIMessage) {
|
|
|
|
msg.buffer = calculateBufferWithText(prefs, msg.Text, width, uiMsg)
|
2018-05-22 21:06:48 +02:00
|
|
|
}
|
|
|
|
|
2019-06-15 00:11:51 +02:00
|
|
|
func (msg *ExpandedTextMessage) Height() int {
|
|
|
|
return len(msg.buffer)
|
2018-04-13 20:25:45 +02:00
|
|
|
}
|
2019-06-15 00:11:51 +02:00
|
|
|
|
2022-04-15 14:14:18 +02:00
|
|
|
func (msg *ExpandedTextMessage) Draw(screen mauview.Screen, _ *UIMessage) {
|
2019-06-15 00:11:51 +02:00
|
|
|
for y, line := range msg.buffer {
|
|
|
|
line.Draw(screen, 0, y)
|
|
|
|
}
|
|
|
|
}
|