2018-10-30 20:01:13 +00:00
|
|
|
/**
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-FileCopyrightText: 2018 Aleix Pol Gonzalez <aleixpol@kde.org>
|
|
|
|
* SPDX-FileCopyrightText: 2018 Nicolas Fella <nicolas.fella@gmx.de>
|
|
|
|
* SPDX-FileCopyrightText: 2018 Simon Redman <simon@ergotech.com>
|
2018-10-30 20:01:13 +00:00
|
|
|
*
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
2018-10-30 20:01:13 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
import QtQuick 2.1
|
2020-05-09 17:50:08 +01:00
|
|
|
import QtQuick.Controls 2.2 as Controls
|
2018-10-30 20:01:13 +00:00
|
|
|
import QtQuick.Layouts 1.1
|
|
|
|
import org.kde.people 1.0
|
|
|
|
import org.kde.kirigami 2.4 as Kirigami
|
|
|
|
import org.kde.kdeconnect.sms 1.0
|
2019-03-09 23:23:33 +00:00
|
|
|
import QtGraphicalEffects 1.0
|
2018-10-30 20:01:13 +00:00
|
|
|
|
|
|
|
Kirigami.ScrollablePage
|
|
|
|
{
|
|
|
|
id: page
|
2019-01-23 01:27:10 +00:00
|
|
|
|
|
|
|
property bool deviceConnected
|
|
|
|
property string deviceId
|
[SMS App] Allow passing a message via args
Summary:
Add --message option to kdeconnect-sms to pass a message. The user only needs to choose a recepient and the message will be sent. Useful for integration with 3rd party
apps, e.g. via Purpose
Test Plan:
kdeconnect-sms --message "Hello World", choose chat, message is sent
Click another chat, no message sent
kdeconnect-sms without args, no message sent
Reviewers: #kde_connect, sredman
Reviewed By: #kde_connect, sredman
Subscribers: andyholmes, sredman, apol, kdeconnect
Tags: #kde_connect
Differential Revision: https://phabricator.kde.org/D17292
2019-03-09 21:32:36 +00:00
|
|
|
// property QtObject device
|
|
|
|
property string conversationId
|
2019-07-19 16:29:28 +01:00
|
|
|
property bool isMultitarget
|
[SMS App] Allow passing a message via args
Summary:
Add --message option to kdeconnect-sms to pass a message. The user only needs to choose a recepient and the message will be sent. Useful for integration with 3rd party
apps, e.g. via Purpose
Test Plan:
kdeconnect-sms --message "Hello World", choose chat, message is sent
Click another chat, no message sent
kdeconnect-sms without args, no message sent
Reviewers: #kde_connect, sredman
Reviewed By: #kde_connect, sredman
Subscribers: andyholmes, sredman, apol, kdeconnect
Tags: #kde_connect
Differential Revision: https://phabricator.kde.org/D17292
2019-03-09 21:32:36 +00:00
|
|
|
property string initialMessage
|
2020-03-21 22:57:28 +00:00
|
|
|
property string invalidId: "-1"
|
2018-10-30 20:01:13 +00:00
|
|
|
|
2019-07-21 12:16:11 +01:00
|
|
|
property bool isInitalized: false
|
|
|
|
|
2019-07-19 18:33:15 +01:00
|
|
|
property var conversationModel: ConversationModel {
|
|
|
|
deviceId: page.deviceId
|
|
|
|
threadId: page.conversationId
|
2020-05-18 03:41:26 +01:00
|
|
|
addressList: page.addresses
|
2019-07-29 21:12:32 +01:00
|
|
|
|
|
|
|
onLoadingFinished: {
|
|
|
|
page.isInitalized = true
|
|
|
|
}
|
2019-07-19 18:33:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
property var addresses
|
2020-05-09 17:50:08 +01:00
|
|
|
title: SmsHelper.getTitleForAddresses(addresses)
|
2018-10-30 20:01:13 +00:00
|
|
|
|
[SMS App] Allow passing a message via args
Summary:
Add --message option to kdeconnect-sms to pass a message. The user only needs to choose a recepient and the message will be sent. Useful for integration with 3rd party
apps, e.g. via Purpose
Test Plan:
kdeconnect-sms --message "Hello World", choose chat, message is sent
Click another chat, no message sent
kdeconnect-sms without args, no message sent
Reviewers: #kde_connect, sredman
Reviewed By: #kde_connect, sredman
Subscribers: andyholmes, sredman, apol, kdeconnect
Tags: #kde_connect
Differential Revision: https://phabricator.kde.org/D17292
2019-03-09 21:32:36 +00:00
|
|
|
Component.onCompleted: {
|
|
|
|
if (initialMessage.length > 0) {
|
2019-03-18 21:56:01 +00:00
|
|
|
messageField.text = initialMessage;
|
[SMS App] Allow passing a message via args
Summary:
Add --message option to kdeconnect-sms to pass a message. The user only needs to choose a recepient and the message will be sent. Useful for integration with 3rd party
apps, e.g. via Purpose
Test Plan:
kdeconnect-sms --message "Hello World", choose chat, message is sent
Click another chat, no message sent
kdeconnect-sms without args, no message sent
Reviewers: #kde_connect, sredman
Reviewed By: #kde_connect, sredman
Subscribers: andyholmes, sredman, apol, kdeconnect
Tags: #kde_connect
Differential Revision: https://phabricator.kde.org/D17292
2019-03-09 21:32:36 +00:00
|
|
|
initialMessage = ""
|
|
|
|
}
|
2020-03-21 22:57:28 +00:00
|
|
|
if (conversationId == invalidId) {
|
|
|
|
isInitalized = true
|
|
|
|
}
|
[SMS App] Allow passing a message via args
Summary:
Add --message option to kdeconnect-sms to pass a message. The user only needs to choose a recepient and the message will be sent. Useful for integration with 3rd party
apps, e.g. via Purpose
Test Plan:
kdeconnect-sms --message "Hello World", choose chat, message is sent
Click another chat, no message sent
kdeconnect-sms without args, no message sent
Reviewers: #kde_connect, sredman
Reviewed By: #kde_connect, sredman
Subscribers: andyholmes, sredman, apol, kdeconnect
Tags: #kde_connect
Differential Revision: https://phabricator.kde.org/D17292
2019-03-09 21:32:36 +00:00
|
|
|
}
|
|
|
|
|
2018-12-13 05:50:08 +00:00
|
|
|
/**
|
|
|
|
* Build a chat message which is representative of all chat messages
|
|
|
|
*
|
|
|
|
* In other words, one which I can use to get a reasonable height guess
|
|
|
|
*/
|
|
|
|
ChatMessage {
|
|
|
|
id: genericMessage
|
2019-07-27 11:02:24 +01:00
|
|
|
name: "Generic Sender"
|
2018-12-13 05:50:08 +00:00
|
|
|
messageBody: "Generic Message Body"
|
|
|
|
dateTime: new Date('2000-0-0')
|
|
|
|
visible: false
|
|
|
|
enabled: false
|
|
|
|
}
|
|
|
|
|
2018-10-30 20:01:13 +00:00
|
|
|
ListView {
|
2018-12-13 05:50:08 +00:00
|
|
|
id: viewport
|
2018-10-30 20:01:13 +00:00
|
|
|
model: QSortFilterProxyModel {
|
|
|
|
id: model
|
|
|
|
sortOrder: Qt.AscendingOrder
|
|
|
|
sortRole: ConversationModel.DateRole
|
2019-07-19 18:33:15 +01:00
|
|
|
sourceModel: conversationModel
|
2018-10-30 20:01:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
spacing: Kirigami.Units.largeSpacing
|
2019-07-21 12:16:11 +01:00
|
|
|
highlightMoveDuration: 0
|
2018-10-30 20:01:13 +00:00
|
|
|
|
2020-05-09 17:50:08 +01:00
|
|
|
Controls.BusyIndicator {
|
2019-07-21 18:27:08 +01:00
|
|
|
running: !isInitalized
|
|
|
|
}
|
|
|
|
|
|
|
|
onContentHeightChanged: {
|
|
|
|
if (viewport.contentHeight <= 0) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!isInitalized) {
|
2019-12-22 07:49:55 +00:00
|
|
|
// If we aren't initialized, we need to request enough messages to fill the view
|
2019-07-21 18:27:08 +01:00
|
|
|
// In order to do that, request one more message until we have enough
|
|
|
|
if (viewport.contentHeight < viewport.height) {
|
|
|
|
console.debug("Requesting another message to fill the screen")
|
|
|
|
conversationModel.requestMoreMessages(1)
|
|
|
|
} else {
|
2019-12-22 07:49:55 +00:00
|
|
|
// Finish initializing: Scroll to the bottom of the view
|
2019-07-21 18:27:08 +01:00
|
|
|
|
|
|
|
// View the most-recent message
|
|
|
|
viewport.forceLayout()
|
|
|
|
Qt.callLater(viewport.positionViewAtEnd)
|
|
|
|
isInitalized = true
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-30 20:01:13 +00:00
|
|
|
delegate: ChatMessage {
|
2019-07-27 11:02:24 +01:00
|
|
|
name: model.sender
|
2018-10-30 20:01:13 +00:00
|
|
|
messageBody: model.display
|
|
|
|
sentByMe: model.fromMe
|
|
|
|
dateTime: new Date(model.date)
|
2020-06-27 17:37:59 +01:00
|
|
|
multiTarget: isMultitarget
|
2020-08-09 20:00:57 +01:00
|
|
|
attachmentList: model.attachments
|
2018-12-13 05:50:08 +00:00
|
|
|
|
2020-07-01 20:15:45 +01:00
|
|
|
width: viewport.width
|
|
|
|
|
2018-12-13 05:50:08 +00:00
|
|
|
ListView.onAdd: {
|
2019-07-21 12:16:11 +01:00
|
|
|
if (!isInitalized) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-07-21 18:27:08 +01:00
|
|
|
if (index == viewport.count - 1) {
|
2018-12-13 05:50:08 +00:00
|
|
|
// This message is being inserted at the newest position
|
|
|
|
// We want to scroll to show it if the user is "almost" looking at it
|
|
|
|
|
|
|
|
// Define some fudge area. If the message is being drawn offscreen but within
|
|
|
|
// this distance, we move to show it anyway.
|
|
|
|
// Selected to be genericMessage.height because that value scales for different
|
|
|
|
// font sizes / DPI / etc. -- Better ideas are welcome!
|
|
|
|
// Double the value works nicely
|
|
|
|
var offscreenFudge = 2 * genericMessage.height
|
|
|
|
|
|
|
|
var viewportYBottom = viewport.contentY + viewport.height
|
|
|
|
|
|
|
|
if (y < viewportYBottom + genericMessage.height) {
|
2019-07-21 12:16:11 +01:00
|
|
|
viewport.highlightMoveDuration = -1
|
2018-12-13 05:50:08 +00:00
|
|
|
viewport.currentIndex = index
|
|
|
|
}
|
2019-07-21 18:27:08 +01:00
|
|
|
}
|
2018-12-13 05:50:08 +00:00
|
|
|
}
|
2019-07-27 11:02:24 +01:00
|
|
|
|
|
|
|
onMessageCopyRequested: {
|
2020-05-09 17:50:08 +01:00
|
|
|
SmsHelper.copyToClipboard(message)
|
2019-07-27 11:02:24 +01:00
|
|
|
}
|
2018-10-30 20:01:13 +00:00
|
|
|
}
|
|
|
|
|
2018-12-13 05:50:08 +00:00
|
|
|
onMovementEnded: {
|
2019-07-21 12:16:11 +01:00
|
|
|
if (!isInitalized) {
|
|
|
|
return
|
|
|
|
}
|
2018-12-13 05:50:08 +00:00
|
|
|
// Unset the highlightRangeMode if it was set previously
|
|
|
|
highlightRangeMode = ListView.ApplyRange
|
|
|
|
|
2019-07-21 12:16:11 +01:00
|
|
|
// If we have scrolled to the last message currently in the view, request some more
|
2018-12-13 05:50:08 +00:00
|
|
|
if (atYBeginning) {
|
|
|
|
// "Lock" the view to the message currently at the beginning of the view
|
|
|
|
// This prevents the view from snapping to the top of the messages we are about to request
|
|
|
|
currentIndex = 0 // Index 0 is the beginning of the view
|
|
|
|
preferredHighlightBegin = visibleArea.yPosition
|
|
|
|
preferredHighlightEnd = preferredHighlightBegin + currentItem.height
|
|
|
|
highlightRangeMode = ListView.StrictlyEnforceRange
|
|
|
|
|
2019-07-21 18:27:08 +01:00
|
|
|
highlightMoveDuration = 0
|
2018-12-13 05:50:08 +00:00
|
|
|
|
|
|
|
// Get more messages
|
2019-07-19 18:33:15 +01:00
|
|
|
conversationModel.requestMoreMessages()
|
2018-12-13 05:50:08 +00:00
|
|
|
}
|
|
|
|
}
|
2018-10-30 20:01:13 +00:00
|
|
|
}
|
|
|
|
|
2020-08-31 11:05:25 +01:00
|
|
|
footer: SendingArea {
|
|
|
|
width: parent.width
|
|
|
|
addresses: page.addresses
|
2018-10-30 20:01:13 +00:00
|
|
|
}
|
|
|
|
}
|