116 lines
3.2 KiB
QML
116 lines
3.2 KiB
QML
import QtQuick 2.13
|
|
import QtQuick.Controls 2.13
|
|
import QtQuick.Layouts 1.13
|
|
|
|
import utils 1.0
|
|
import shared.controls 1.0
|
|
|
|
import StatusQ.Core 0.1
|
|
import StatusQ.Controls 0.1
|
|
import StatusQ.Controls.Validators 0.1
|
|
|
|
import shared.panels 1.0
|
|
import shared.popups 1.0
|
|
import "../helpers/channelList.js" as ChannelJSON
|
|
import "../panels"
|
|
|
|
// TODO: replace with StatusModal
|
|
ModalPopup {
|
|
signal joinPublicChat(string name)
|
|
signal suggestedMessageClicked(string channel)
|
|
function validate() {
|
|
channelName.validate(true)
|
|
return channelName.valid
|
|
}
|
|
|
|
function doJoin() {
|
|
if (!validate()) {
|
|
return
|
|
}
|
|
popup.joinPublicChat(channelName.text);
|
|
popup.close();
|
|
}
|
|
|
|
id: popup
|
|
title: qsTr("Join public chat")
|
|
|
|
onOpened: {
|
|
channelName.text = "";
|
|
channelName.input.edit.forceActiveFocus(Qt.MouseFocusReason)
|
|
}
|
|
|
|
contentWrapper.anchors.bottomMargin: 0
|
|
|
|
Row {
|
|
id: description
|
|
Layout.fillHeight: false
|
|
Layout.fillWidth: true
|
|
width: parent.width
|
|
|
|
StyledText {
|
|
width: parent.width
|
|
font.pixelSize: 15
|
|
text: qsTr("A public chat is where you get to hang out with others, make friends and talk about subjects of your interest.")
|
|
wrapMode: Text.WordWrap
|
|
verticalAlignment: Text.AlignTop
|
|
}
|
|
}
|
|
|
|
StatusInput {
|
|
id: channelName
|
|
input.edit.objectName: "joinPublicChannelInput"
|
|
anchors.top: description.bottom
|
|
anchors.topMargin: Style.current.padding
|
|
placeholderText: qsTr("chat-name")
|
|
charLimit: 24
|
|
Keys.onEnterPressed: doJoin()
|
|
Keys.onReturnPressed: doJoin()
|
|
input.asset.name: "channel"
|
|
validators: [StatusMinLengthValidator {
|
|
minLength: 1
|
|
errorMessage: qsTr("You need to enter a channel name")
|
|
},
|
|
StatusValidator {
|
|
name: "validChannelNameValidator"
|
|
validate: function (t) { return Utils.isValidChannelName(t) }
|
|
errorMessage: qsTr("The channel name can only contain lowercase letters, numbers and dashes")
|
|
}]
|
|
validationMode: StatusInput.ValidationMode.OnlyWhenDirty
|
|
}
|
|
|
|
StatusScrollView {
|
|
id: sview
|
|
|
|
anchors.top: channelName.bottom
|
|
anchors.topMargin: Style.current.smallPadding
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
anchors.bottom: parent.bottom
|
|
ScrollBar.horizontal.policy: ScrollBar.AlwaysOff
|
|
ScrollBar.vertical.policy: ScrollBar.AlwaysOn
|
|
contentHeight: {
|
|
var totalHeight = 0
|
|
for (let i = 0; i < sectionRepeater.count; i++) {
|
|
totalHeight += sectionRepeater.itemAt(i).height + Style.current.padding
|
|
}
|
|
return totalHeight + Style.current.padding
|
|
}
|
|
|
|
SuggestedChannelsPanel {
|
|
id: sectionRepeater
|
|
width: sview.width
|
|
onSuggestedMessageClicked: {
|
|
popup.suggestedMessageClicked(channel);
|
|
}
|
|
}
|
|
}
|
|
|
|
footer: StatusButton {
|
|
objectName: "startChatButton"
|
|
anchors.bottom: parent.bottom
|
|
anchors.right: parent.right
|
|
onClicked : doJoin()
|
|
text: qsTr("Start chat")
|
|
}
|
|
}
|