2018-10-30 20:01:13 +00:00
|
|
|
/**
|
|
|
|
* Copyright (C) 2018 Aleix Pol Gonzalez <aleixpol@kde.org>
|
2018-12-16 00:26:44 +00:00
|
|
|
* Copyright (C) 2018 Nicolas Fella <nicolas.fella@gmx.de>
|
|
|
|
* Copyright (C) 2018 Simon Redman <simon@ergotech.com>
|
2018-10-30 20:01:13 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of
|
|
|
|
* the License or (at your option) version 3 or any later version
|
|
|
|
* accepted by the membership of KDE e.V. (or its successor approved
|
|
|
|
* by the membership of KDE e.V.), which shall act as a proxy
|
|
|
|
* defined in Section 14 of version 3 of the license.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2019-03-23 16:29:26 +00:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2018-10-30 20:01:13 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
import QtQuick 2.5
|
|
|
|
import QtQuick.Controls 2.1
|
|
|
|
import QtQuick.Layouts 1.1
|
|
|
|
import org.kde.people 1.0
|
[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
|
|
|
import org.kde.kirigami 2.4 as Kirigami
|
2018-10-30 20:01:13 +00:00
|
|
|
import org.kde.kdeconnect 1.0
|
|
|
|
import org.kde.kdeconnect.sms 1.0
|
|
|
|
|
|
|
|
Kirigami.ScrollablePage
|
|
|
|
{
|
2019-01-23 01:27:10 +00:00
|
|
|
id: page
|
2019-03-18 21:58:34 +00:00
|
|
|
ToolTip {
|
|
|
|
id: noDevicesWarning
|
|
|
|
visible: !devicesCombo.enabled
|
|
|
|
timeout: -1
|
|
|
|
text: "⚠️ " + i18n("No devices available") + " ⚠️"
|
|
|
|
|
|
|
|
MouseArea {
|
|
|
|
// Detect mouseover and show another tooltip with more information
|
|
|
|
anchors.fill: parent
|
|
|
|
hoverEnabled: true
|
|
|
|
|
|
|
|
ToolTip.visible: containsMouse
|
|
|
|
ToolTip.delay: Qt.styleHints.mousePressAndHoldInterval
|
|
|
|
// TODO: Wrap text if line is too long for the screen
|
|
|
|
ToolTip.text: i18n("No new messages can be sent or received, but you can browse cached content")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
[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
|
|
|
|
|
|
|
|
header: Kirigami.InlineMessage {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
visible: page.initialMessage.length > 0
|
|
|
|
text: i18n("Choose recipient")
|
|
|
|
|
|
|
|
actions: [
|
|
|
|
Kirigami.Action {
|
|
|
|
iconName: "dialog-cancel"
|
|
|
|
text: "Cancel"
|
|
|
|
onTriggered: initialMessage = ""
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2018-10-30 20:01:13 +00:00
|
|
|
footer: ComboBox {
|
|
|
|
id: devicesCombo
|
|
|
|
enabled: count > 0
|
2019-03-18 21:58:34 +00:00
|
|
|
displayText: !enabled ? i18n("No devices available") : undefined
|
2018-10-30 20:01:13 +00:00
|
|
|
model: DevicesSortProxyModel {
|
|
|
|
id: devicesModel
|
2018-11-26 19:42:18 +00:00
|
|
|
//TODO: make it possible to filter if they can do sms
|
2018-10-30 20:01:13 +00:00
|
|
|
sourceModel: DevicesModel { displayFilter: DevicesModel.Paired | DevicesModel.Reachable }
|
|
|
|
onRowsInserted: if (devicesCombo.currentIndex < 0) {
|
|
|
|
devicesCombo.currentIndex = 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
textRole: "display"
|
|
|
|
}
|
|
|
|
|
2019-01-23 01:27:10 +00:00
|
|
|
readonly property bool deviceConnected: devicesCombo.enabled
|
2018-10-30 20:01:13 +00:00
|
|
|
readonly property QtObject device: devicesCombo.currentIndex >= 0 ? devicesModel.data(devicesModel.index(devicesCombo.currentIndex, 0), DevicesModel.DeviceRole) : null
|
2019-01-23 01:27:10 +00:00
|
|
|
readonly property alias lastDeviceId: conversationListModel.deviceId
|
2018-10-30 20:01:13 +00:00
|
|
|
|
2019-03-08 21:18:51 +00:00
|
|
|
Component {
|
2018-10-30 20:01:13 +00:00
|
|
|
id: chatView
|
2019-01-23 01:27:10 +00:00
|
|
|
ConversationDisplay {
|
|
|
|
deviceId: page.lastDeviceId
|
|
|
|
deviceConnected: page.deviceConnected
|
|
|
|
}
|
2018-10-30 20:01:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ListView {
|
|
|
|
id: view
|
|
|
|
currentIndex: 0
|
|
|
|
|
|
|
|
model: QSortFilterProxyModel {
|
|
|
|
sortOrder: Qt.DescendingOrder
|
|
|
|
sortRole: ConversationListModel.DateRole
|
|
|
|
filterCaseSensitivity: Qt.CaseInsensitive
|
|
|
|
sourceModel: ConversationListModel {
|
2019-01-23 01:27:10 +00:00
|
|
|
id: conversationListModel
|
2018-10-30 20:01:13 +00:00
|
|
|
deviceId: device ? device.id() : ""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
header: TextField {
|
2018-12-17 16:25:33 +00:00
|
|
|
/**
|
|
|
|
* Used as the filter of the list of messages
|
|
|
|
*/
|
2018-10-30 20:01:13 +00:00
|
|
|
id: filter
|
|
|
|
placeholderText: i18n("Filter...")
|
|
|
|
width: parent.width
|
2018-12-17 16:25:33 +00:00
|
|
|
z: 10
|
2018-10-30 20:01:13 +00:00
|
|
|
onTextChanged: {
|
|
|
|
view.model.setFilterFixedString(filter.text);
|
|
|
|
view.currentIndex = 0
|
|
|
|
}
|
|
|
|
onAccepted: {
|
|
|
|
view.currentItem.startChat()
|
|
|
|
}
|
2018-12-17 16:25:33 +00:00
|
|
|
Keys.onReturnPressed: {
|
|
|
|
event.accepted = true
|
|
|
|
filter.onAccepted()
|
|
|
|
}
|
|
|
|
Keys.onEscapePressed: {
|
|
|
|
event.accepted = filter.text != ""
|
|
|
|
filter.text = ""
|
|
|
|
}
|
2018-10-30 20:01:13 +00:00
|
|
|
Shortcut {
|
|
|
|
sequence: "Ctrl+F"
|
|
|
|
onActivated: filter.forceActiveFocus()
|
|
|
|
}
|
|
|
|
}
|
2018-12-17 16:25:33 +00:00
|
|
|
headerPositioning: ListView.OverlayHeader
|
|
|
|
|
|
|
|
Keys.forwardTo: [headerItem]
|
2018-10-30 20:01:13 +00:00
|
|
|
|
|
|
|
delegate: Kirigami.BasicListItem
|
|
|
|
{
|
|
|
|
hoverEnabled: true
|
|
|
|
|
2019-07-20 12:54:23 +01:00
|
|
|
label: i18n("<b>%1</b> <br> %2", display, toolTip) //TODO: Change to two text fields and elipsize them
|
2018-10-30 20:01:13 +00:00
|
|
|
icon: decoration
|
|
|
|
function startChat() {
|
|
|
|
applicationWindow().pageStack.push(chatView, {
|
2019-07-19 18:33:15 +01:00
|
|
|
addresses: addresses,
|
2018-10-30 20:01:13 +00:00
|
|
|
conversationId: model.conversationId,
|
2019-07-19 16:29:28 +01:00
|
|
|
isMultitarget: 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
|
|
|
initialMessage: page.initialMessage,
|
|
|
|
device: device})
|
|
|
|
initialMessage = ""
|
2018-10-30 20:01:13 +00:00
|
|
|
}
|
2019-02-27 05:45:54 +00:00
|
|
|
onClicked: {
|
|
|
|
startChat();
|
|
|
|
view.currentIndex = index
|
|
|
|
}
|
|
|
|
// Keep the currently-open chat highlighted even if this element is not focused
|
|
|
|
highlighted: chatView.conversationId == model.conversationId
|
|
|
|
}
|
|
|
|
|
|
|
|
Component.onCompleted: {
|
|
|
|
currentIndex = -1
|
|
|
|
focus = true
|
2018-10-30 20:01:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|