2019-10-20 13:39:47 +03:00
|
|
|
import QtQuick 2.6
|
2019-11-30 03:43:39 +03:00
|
|
|
import im.nheko 1.0
|
2019-10-20 13:39:47 +03:00
|
|
|
|
2020-01-11 16:07:51 +03:00
|
|
|
Item {
|
|
|
|
// Workaround to have an assignable global property
|
|
|
|
Item {
|
|
|
|
id: model
|
|
|
|
property var data;
|
2019-10-20 13:39:47 +03:00
|
|
|
}
|
2020-01-11 16:07:51 +03:00
|
|
|
|
|
|
|
property alias modelData: model.data
|
|
|
|
|
|
|
|
height: chooser.childrenRect.height
|
2020-04-09 01:07:04 +03:00
|
|
|
property real implicitWidth: (chooser.child && chooser.child.implicitWidth) ? chooser.child.implicitWidth : width
|
2020-01-11 16:07:51 +03:00
|
|
|
|
|
|
|
DelegateChooser {
|
|
|
|
id: chooser
|
|
|
|
//role: "type" //< not supported in our custom implementation, have to use roleValue
|
|
|
|
roleValue: model.data.type
|
|
|
|
anchors.fill: parent
|
|
|
|
|
2020-01-11 20:53:32 +03:00
|
|
|
DelegateChoice {
|
|
|
|
roleValue: MtxEvent.UnknownMessage
|
|
|
|
Placeholder { text: "Unretrieved event" }
|
|
|
|
}
|
2020-01-11 16:07:51 +03:00
|
|
|
DelegateChoice {
|
|
|
|
roleValue: MtxEvent.TextMessage
|
|
|
|
TextMessage {}
|
2019-11-22 19:08:32 +03:00
|
|
|
}
|
2020-01-11 16:07:51 +03:00
|
|
|
DelegateChoice {
|
|
|
|
roleValue: MtxEvent.NoticeMessage
|
|
|
|
NoticeMessage {}
|
2019-11-22 19:08:32 +03:00
|
|
|
}
|
2020-01-11 16:07:51 +03:00
|
|
|
DelegateChoice {
|
|
|
|
roleValue: MtxEvent.EmoteMessage
|
2020-02-09 03:24:24 +03:00
|
|
|
NoticeMessage {
|
|
|
|
formatted: chat.model.escapeEmoji(modelData.userName) + " " + model.data.formattedBody
|
2020-02-20 22:51:07 +03:00
|
|
|
color: timelineManager.userColor(modelData.userId, colors.window)
|
2020-02-09 03:24:24 +03:00
|
|
|
}
|
2019-12-10 16:46:52 +03:00
|
|
|
}
|
2020-01-11 16:07:51 +03:00
|
|
|
DelegateChoice {
|
|
|
|
roleValue: MtxEvent.ImageMessage
|
|
|
|
ImageMessage {}
|
|
|
|
}
|
|
|
|
DelegateChoice {
|
|
|
|
roleValue: MtxEvent.Sticker
|
|
|
|
ImageMessage {}
|
|
|
|
}
|
|
|
|
DelegateChoice {
|
|
|
|
roleValue: MtxEvent.FileMessage
|
|
|
|
FileMessage {}
|
|
|
|
}
|
|
|
|
DelegateChoice {
|
|
|
|
roleValue: MtxEvent.VideoMessage
|
|
|
|
PlayableMediaMessage {}
|
|
|
|
}
|
|
|
|
DelegateChoice {
|
|
|
|
roleValue: MtxEvent.AudioMessage
|
|
|
|
PlayableMediaMessage {}
|
|
|
|
}
|
|
|
|
DelegateChoice {
|
|
|
|
roleValue: MtxEvent.Redacted
|
|
|
|
Pill {
|
|
|
|
text: qsTr("redacted")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
DelegateChoice {
|
|
|
|
roleValue: MtxEvent.Encryption
|
|
|
|
Pill {
|
|
|
|
text: qsTr("Encryption enabled")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
DelegateChoice {
|
|
|
|
roleValue: MtxEvent.Name
|
|
|
|
NoticeMessage {
|
2020-02-09 03:24:24 +03:00
|
|
|
text: model.data.roomName ? qsTr("room name changed to: %1").arg(model.data.roomName) : qsTr("removed room name")
|
2020-01-11 16:07:51 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
DelegateChoice {
|
|
|
|
roleValue: MtxEvent.Topic
|
|
|
|
NoticeMessage {
|
2020-02-09 03:24:24 +03:00
|
|
|
text: model.data.roomTopic ? qsTr("topic changed to: %1").arg(model.data.roomTopic) : qsTr("removed topic")
|
2020-01-11 16:07:51 +03:00
|
|
|
}
|
|
|
|
}
|
2020-02-29 03:27:51 +03:00
|
|
|
DelegateChoice {
|
|
|
|
roleValue: MtxEvent.RoomCreate
|
|
|
|
NoticeMessage {
|
|
|
|
text: qsTr("%1 created and configured room: %2").arg(model.data.userName).arg(model.data.roomId)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
DelegateChoice {
|
|
|
|
// TODO: make a more complex formatter for the power levels.
|
|
|
|
roleValue: MtxEvent.PowerLevels
|
|
|
|
NoticeMessage {
|
|
|
|
text: timelineManager.timeline.formatPowerLevelEvent(model.data.id)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
DelegateChoice {
|
|
|
|
roleValue: MtxEvent.RoomJoinRules
|
|
|
|
NoticeMessage {
|
|
|
|
text: timelineManager.timeline.formatJoinRuleEvent(model.data.id)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
DelegateChoice {
|
|
|
|
roleValue: MtxEvent.RoomHistoryVisibility
|
|
|
|
NoticeMessage {
|
|
|
|
text: timelineManager.timeline.formatHistoryVisibilityEvent(model.data.id)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
DelegateChoice {
|
|
|
|
roleValue: MtxEvent.RoomGuestAccess
|
|
|
|
NoticeMessage {
|
|
|
|
text: timelineManager.timeline.formatGuestAccessEvent(model.data.id)
|
|
|
|
}
|
|
|
|
}
|
2020-01-23 22:34:04 +03:00
|
|
|
DelegateChoice {
|
|
|
|
roleValue: MtxEvent.Member
|
|
|
|
NoticeMessage {
|
2020-02-09 03:24:24 +03:00
|
|
|
text: timelineManager.timeline.formatMemberEvent(model.data.id);
|
2020-01-23 22:34:04 +03:00
|
|
|
}
|
|
|
|
}
|
2020-01-11 16:07:51 +03:00
|
|
|
DelegateChoice {
|
|
|
|
Placeholder {}
|
2019-12-10 16:46:52 +03:00
|
|
|
}
|
2019-10-20 13:39:47 +03:00
|
|
|
}
|
|
|
|
}
|