2020-12-11 20:29:46 +00:00
|
|
|
import QtQuick 2.12
|
|
|
|
import QtQuick.Controls 2.3
|
|
|
|
import QtQuick.Dialogs 1.3
|
2020-12-11 20:38:10 +00:00
|
|
|
import "../../../../imports"
|
2020-12-11 20:29:46 +00:00
|
|
|
|
2021-07-07 12:45:11 +00:00
|
|
|
import StatusQ.Core 0.1
|
|
|
|
import StatusQ.Core.Theme 0.1
|
|
|
|
import StatusQ.Controls 0.1
|
2021-08-16 13:46:00 +00:00
|
|
|
import StatusQ.Controls.Validators 0.1
|
2021-07-07 12:45:11 +00:00
|
|
|
import StatusQ.Components 0.1
|
|
|
|
import StatusQ.Popups 0.1
|
|
|
|
|
|
|
|
StatusModal {
|
|
|
|
id: popup
|
2020-12-11 20:29:46 +00:00
|
|
|
property string communityId
|
2021-05-28 02:55:50 +00:00
|
|
|
property QtObject channel
|
|
|
|
property bool isEdit: false
|
2021-05-16 15:16:42 +00:00
|
|
|
property string categoryId: ""
|
2021-06-29 12:47:28 +00:00
|
|
|
|
|
|
|
readonly property int maxChannelNameLength: 30
|
|
|
|
readonly property int maxChannelDescLength: 140
|
2021-06-02 19:43:33 +00:00
|
|
|
|
|
|
|
property Component pinnedMessagesPopupComponent
|
|
|
|
|
2021-07-22 15:03:59 +00:00
|
|
|
//% "New channel"
|
|
|
|
header.title: qsTrId("create-channel-title")
|
2020-12-11 20:29:46 +00:00
|
|
|
|
|
|
|
onOpened: {
|
2021-09-07 13:23:07 +00:00
|
|
|
contentItem.channelName.input.text = ""
|
|
|
|
contentItem.channelName.input.forceActiveFocus(Qt.MouseFocusReason)
|
2021-05-28 02:55:50 +00:00
|
|
|
if (isEdit) {
|
2021-07-16 20:22:50 +00:00
|
|
|
//% "Edit #%1"
|
|
|
|
header.title = qsTrId("edit---1").arg(channel.name);
|
2021-09-07 13:23:07 +00:00
|
|
|
contentItem.channelId = channel.id
|
|
|
|
contentItem.channelCategoryId = channel.categoryId
|
|
|
|
contentItem.channelName.input.text = channel.name
|
|
|
|
contentItem.channelDescription.input.text = channel.description
|
2021-05-28 02:55:50 +00:00
|
|
|
}
|
2020-12-11 20:29:46 +00:00
|
|
|
}
|
2021-07-07 12:45:11 +00:00
|
|
|
|
2021-03-29 12:28:41 +00:00
|
|
|
onClosed: destroy()
|
2020-12-11 20:29:46 +00:00
|
|
|
|
2021-06-29 12:47:28 +00:00
|
|
|
function isFormValid() {
|
2021-09-07 13:23:07 +00:00
|
|
|
return contentItem.channelName.valid &&
|
|
|
|
contentItem.channelDescription.valid
|
2020-12-11 20:29:46 +00:00
|
|
|
}
|
|
|
|
|
2021-09-02 14:40:10 +00:00
|
|
|
contentItem: ScrollView {
|
2021-07-07 12:45:11 +00:00
|
|
|
|
|
|
|
id: scrollView
|
2020-12-11 20:29:46 +00:00
|
|
|
|
|
|
|
property ScrollBar vScrollBar: ScrollBar.vertical
|
|
|
|
|
2021-07-07 12:45:11 +00:00
|
|
|
property alias channelName: nameInput
|
|
|
|
property alias channelDescription: descriptionTextArea
|
2021-08-30 11:23:11 +00:00
|
|
|
property string channelId
|
|
|
|
property string channelCategoryId
|
2021-07-07 12:45:11 +00:00
|
|
|
|
2020-12-11 20:29:46 +00:00
|
|
|
contentHeight: content.height
|
2021-07-07 12:45:11 +00:00
|
|
|
height: Math.min(content.height, 432)
|
|
|
|
width: popup.width
|
|
|
|
|
2020-12-11 20:29:46 +00:00
|
|
|
ScrollBar.horizontal.policy: ScrollBar.AlwaysOff
|
|
|
|
clip: true
|
|
|
|
|
|
|
|
function scrollBackUp() {
|
|
|
|
vScrollBar.setPosition(0)
|
|
|
|
}
|
|
|
|
|
2021-07-07 12:45:11 +00:00
|
|
|
Column {
|
2020-12-11 20:29:46 +00:00
|
|
|
id: content
|
2021-07-07 12:45:11 +00:00
|
|
|
width: popup.width
|
|
|
|
|
2021-08-16 13:46:00 +00:00
|
|
|
StatusInput {
|
|
|
|
id: nameInput
|
|
|
|
charLimit: popup.maxChannelNameLength
|
|
|
|
input.placeholderText: qsTr("Channel name")
|
|
|
|
input.onTextChanged: {
|
|
|
|
input.text = Utils.convertSpacesToDashesAndUpperToLowerCase(input.text);
|
|
|
|
input.cursorPosition = input.text.length
|
|
|
|
errorMessage = Utils.getErrorMessage(errors, qsTr("channel name"))
|
2021-03-29 12:28:41 +00:00
|
|
|
}
|
2021-08-16 13:46:00 +00:00
|
|
|
validators: [StatusMinLengthValidator { minLength: 1 }]
|
2020-12-11 20:29:46 +00:00
|
|
|
}
|
|
|
|
|
2021-07-07 12:45:11 +00:00
|
|
|
StatusModalDivider {
|
|
|
|
topPadding: 8
|
|
|
|
bottomPadding: 8
|
2020-12-11 20:29:46 +00:00
|
|
|
}
|
|
|
|
|
2021-08-16 13:46:00 +00:00
|
|
|
StatusInput {
|
|
|
|
id: descriptionTextArea
|
|
|
|
label: qsTr("Description")
|
|
|
|
charLimit: 140
|
|
|
|
|
|
|
|
input.placeholderText: qsTr("Describe the channel")
|
|
|
|
input.multiline: true
|
|
|
|
input.implicitHeight: 88
|
|
|
|
input.onTextChanged: errorMessage = Utils.getErrorMessage(errors, qsTr("channel description"))
|
|
|
|
validators: [StatusMinLengthValidator { minLength: 1 }]
|
2021-05-28 02:55:50 +00:00
|
|
|
}
|
2021-08-16 13:46:00 +00:00
|
|
|
|
2021-07-07 12:45:11 +00:00
|
|
|
/* TODO: use the code below to enable private channels and message limit */
|
|
|
|
/* StatusListItem { */
|
|
|
|
/* width: parent.width */
|
|
|
|
/* height: 56 */
|
|
|
|
/* sensor.enabled: false */
|
2021-07-16 20:22:50 +00:00
|
|
|
//% "Private channel"
|
|
|
|
/* title: qsTrId("private-channel") */
|
2021-07-07 12:45:11 +00:00
|
|
|
/* components: [ */
|
|
|
|
/* StatusSwitch { */
|
|
|
|
/* id: privateSwitch */
|
|
|
|
/* } */
|
|
|
|
/* ] */
|
|
|
|
/* } */
|
|
|
|
|
|
|
|
/* StatusBaseText { */
|
|
|
|
/* width: parent.width - 32 */
|
|
|
|
/* anchors.left: parent.left */
|
|
|
|
/* anchors.right: parent.right */
|
|
|
|
/* anchors.rightMargin: 121 */
|
|
|
|
/* anchors.leftMargin: 16 */
|
|
|
|
/* color: Theme.palette.baseColor1 */
|
|
|
|
/* wrapMode: Text.WordWrap */
|
2021-07-16 20:22:50 +00:00
|
|
|
//% "By making a channel private, only members with selected permission will be able to access it"
|
|
|
|
/* text: qsTrId("by-making-a-channel-private--only-members-with-selected-permission-will-be-able-to-access-it") */
|
2021-07-07 12:45:11 +00:00
|
|
|
/* } */
|
|
|
|
|
|
|
|
/* StatusModalDivider { */
|
|
|
|
/* topPadding: 8 */
|
|
|
|
/* bottomPadding: 8 */
|
|
|
|
/* } */
|
|
|
|
|
|
|
|
/* StatusListItem { */
|
|
|
|
/* width: parent.width */
|
|
|
|
/* height: 56 */
|
|
|
|
/* sensor.enabled: false */
|
2021-07-16 20:22:50 +00:00
|
|
|
//% "Message limit"
|
|
|
|
/* title: qsTrId("message-limit") */
|
2021-07-07 12:45:11 +00:00
|
|
|
/* components: [ */
|
|
|
|
/* StatusSwitch {} */
|
|
|
|
/* ] */
|
|
|
|
/* } */
|
|
|
|
|
|
|
|
/* StatusBaseText { */
|
|
|
|
/* width: parent.width - 32 */
|
|
|
|
/* anchors.left: parent.left */
|
|
|
|
/* anchors.right: parent.right */
|
|
|
|
/* anchors.rightMargin: 121 */
|
|
|
|
/* anchors.leftMargin: 16 */
|
|
|
|
/* color: Theme.palette.baseColor1 */
|
|
|
|
/* wrapMode: Text.WordWrap */
|
2021-07-16 20:22:50 +00:00
|
|
|
//% "Limit channel members to sending one message per chose time interval"
|
|
|
|
/* text: qsTrId("limit-channel-members-to-sending-one-message-per-chose-time-interval") */
|
2021-07-07 12:45:11 +00:00
|
|
|
/* } */
|
|
|
|
|
2021-09-07 13:23:07 +00:00
|
|
|
Item {
|
|
|
|
width: parent.width
|
|
|
|
height: 8
|
|
|
|
}
|
|
|
|
|
2021-07-07 12:45:11 +00:00
|
|
|
StatusListItem {
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
2021-07-16 20:22:50 +00:00
|
|
|
//% "Pinned messages"
|
|
|
|
title: qsTrId("pinned-messages")
|
2021-07-07 12:45:11 +00:00
|
|
|
icon.name: "pin"
|
|
|
|
label: chatsModel.messageView.pinnedMessagesList.count
|
|
|
|
components: [
|
|
|
|
StatusIcon {
|
|
|
|
icon: "chevron-down"
|
|
|
|
rotation: 270
|
|
|
|
color: Theme.palette.baseColor1
|
|
|
|
}
|
|
|
|
]
|
2020-12-11 20:29:46 +00:00
|
|
|
|
2021-07-07 12:45:11 +00:00
|
|
|
sensor.onClicked: openPopup(pinnedMessagesPopupComponent)
|
2020-12-11 20:29:46 +00:00
|
|
|
}
|
|
|
|
|
2021-09-07 13:23:07 +00:00
|
|
|
Item {
|
|
|
|
width: parent.width
|
|
|
|
height: 8
|
2021-07-07 12:45:11 +00:00
|
|
|
}
|
2020-12-11 20:29:46 +00:00
|
|
|
}
|
2021-07-07 12:45:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
rightButtons: [
|
|
|
|
StatusButton {
|
|
|
|
enabled: isFormValid()
|
|
|
|
text: isEdit ?
|
2021-07-16 20:22:50 +00:00
|
|
|
//% "Save"
|
|
|
|
qsTrId("save") :
|
|
|
|
//% "Create"
|
|
|
|
qsTrId("create")
|
2021-07-07 12:45:11 +00:00
|
|
|
onClicked: {
|
|
|
|
if (!isFormValid()) {
|
|
|
|
scrollView.scrollBackUp()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
let error = "";
|
|
|
|
if (!isEdit) {
|
|
|
|
error = chatsModel.createCommunityChannel(communityId,
|
2021-09-07 13:23:07 +00:00
|
|
|
Utils.filterXSS(popup.contentItem.channelName.input.text),
|
|
|
|
Utils.filterXSS(popup.contentItem.channelDescription.input.text),
|
2021-08-30 11:23:11 +00:00
|
|
|
categoryId)
|
2021-07-07 12:45:11 +00:00
|
|
|
// TODO: pass the private value when private channels
|
|
|
|
// are implemented
|
|
|
|
//privateSwitch.checked)
|
|
|
|
} else {
|
|
|
|
error = chatsModel.editCommunityChannel(communityId,
|
2021-09-07 13:23:07 +00:00
|
|
|
popup.contentItem.channelId,
|
|
|
|
Utils.filterXSS(popup.contentItem.channelName.input.text),
|
|
|
|
Utils.filterXSS(popup.contentItem.channelDescription.input.text),
|
|
|
|
popup.contentItem.channelCategoryId)
|
2021-07-07 12:45:11 +00:00
|
|
|
// TODO: pass the private value when private channels
|
|
|
|
// are implemented
|
|
|
|
//privateSwitch.checked)
|
|
|
|
}
|
|
|
|
|
|
|
|
if (error) {
|
|
|
|
const errorJson = JSON.parse(error)
|
|
|
|
creatingError.text = errorJson.error
|
|
|
|
return creatingError.open()
|
|
|
|
}
|
2020-12-11 20:29:46 +00:00
|
|
|
|
2021-07-07 12:45:11 +00:00
|
|
|
// TODO Open the community once we have designs for it
|
|
|
|
popup.close()
|
|
|
|
}
|
2020-12-11 20:29:46 +00:00
|
|
|
}
|
2021-07-07 12:45:11 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
MessageDialog {
|
|
|
|
id: creatingError
|
|
|
|
//% "Error creating the community"
|
|
|
|
title: qsTrId("error-creating-the-community")
|
|
|
|
icon: StandardIcon.Critical
|
|
|
|
standardButtons: StandardButton.Ok
|
2020-12-11 20:29:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|