2020-06-17 19:18:31 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
|
|
|
import QtQuick.Layouts 1.13
|
2020-06-15 12:51:04 +00:00
|
|
|
import "../../../../imports"
|
|
|
|
import "../../../../shared"
|
|
|
|
import "./"
|
|
|
|
|
2020-09-23 18:01:33 +00:00
|
|
|
ModalPopup {
|
2020-06-15 16:24:21 +00:00
|
|
|
function doRename(){
|
2020-12-06 15:24:28 +00:00
|
|
|
chatsModel.groups.rename(groupName.text)
|
2020-06-15 16:24:21 +00:00
|
|
|
popup.close();
|
|
|
|
}
|
|
|
|
|
2020-06-15 12:51:04 +00:00
|
|
|
id: popup
|
2020-09-23 18:01:33 +00:00
|
|
|
height: 210
|
2020-06-15 12:51:04 +00:00
|
|
|
|
2020-09-23 18:01:33 +00:00
|
|
|
//% "Group name"
|
|
|
|
title: qsTrId("group-name")
|
2020-06-15 12:51:04 +00:00
|
|
|
|
|
|
|
onOpened: {
|
|
|
|
groupName.forceActiveFocus(Qt.MouseFocusReason)
|
|
|
|
groupName.text = chatsModel.activeChannel.name
|
|
|
|
}
|
|
|
|
|
2020-09-23 18:01:33 +00:00
|
|
|
Input {
|
|
|
|
id: groupName
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.leftMargin: Style.current.padding
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: Style.current.padding
|
|
|
|
//% "Group name"
|
|
|
|
placeholderText: qsTrId("group-name")
|
|
|
|
Keys.onEnterPressed: doRename()
|
|
|
|
Keys.onReturnPressed: doRename()
|
2020-06-15 12:51:04 +00:00
|
|
|
}
|
|
|
|
|
2020-09-23 18:01:33 +00:00
|
|
|
footer: StyledButton {
|
|
|
|
id: saveBtn
|
|
|
|
height: 44
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
anchors.right: parent.right
|
|
|
|
//% "Save"
|
|
|
|
label: qsTrId("save")
|
|
|
|
onClicked : doRename()
|
|
|
|
}
|
2020-06-15 12:51:04 +00:00
|
|
|
}
|