status-desktop/ui/app/AppLayouts/Chat/popups/community/CreateCategoryPopup.qml

245 lines
7.9 KiB
QML
Raw Normal View History

2021-05-16 15:16:42 +00:00
import QtQuick 2.12
import QtQuick.Controls 2.3
import QtQuick.Dialogs 1.3
import StatusQ.Core 0.1
import StatusQ.Core.Theme 0.1
import StatusQ.Components 0.1
import StatusQ.Controls 0.1
import StatusQ.Controls.Validators 0.1
import StatusQ.Popups 0.1
import utils 1.0
import shared.popups 1.0
StatusModal {
id: root
property var store
2021-05-16 15:16:42 +00:00
property string communityId
2021-05-17 15:05:45 +00:00
property string categoryId
property string categoryName: ""
property var channels: []
property bool isEdit: false
2021-05-16 15:16:42 +00:00
readonly property int maxCategoryNameLength: 24
readonly property var categoryNameValidator: Utils.Validate.NoEmpty
| Utils.Validate.TextLength
2021-05-16 15:16:42 +00:00
onOpened: {
2021-05-17 15:05:45 +00:00
if(isEdit){
root.contentItem.categoryName.input.text = categoryName
2022-02-01 15:31:05 +00:00
root.channels = []
root.store.prepareEditCategoryModel(categoryId);
2021-05-17 15:05:45 +00:00
}
root.contentItem.categoryName.input.forceActiveFocus(Qt.MouseFocusReason)
2021-05-16 15:16:42 +00:00
}
onClosed: destroy()
function isFormValid() {
return contentItem.categoryName.valid
2021-05-16 15:16:42 +00:00
}
header.title: isEdit ?
qsTr("Edit category") :
qsTr("New category")
2021-05-16 15:16:42 +00:00
contentItem: Column {
property alias categoryName: nameInput
2022-02-09 09:43:23 +00:00
width: root.width
topPadding: 16
2021-05-16 15:16:42 +00:00
StatusInput {
id: nameInput
anchors.left: parent.left
anchors.leftMargin: 16
label: qsTr("Category title")
charLimit: maxCategoryNameLength
input.placeholderText: qsTr("Name the category")
validators: [StatusMinLengthValidator {
minLength: 1
2022-01-28 00:02:06 +00:00
errorMessage: Utils.getErrorMessage(nameInput.errors, qsTr("category name"))
}]
}
2021-05-16 15:16:42 +00:00
StatusModalDivider {
topPadding: 8
bottomPadding: 8
2021-05-16 15:16:42 +00:00
}
ScrollView {
id: scrollView
2021-05-16 15:16:42 +00:00
width: root.width
height: Math.min(content.height, 300)
anchors.horizontalCenter: parent.horizontalCenter
2021-05-16 15:16:42 +00:00
property ScrollBar vScrollBar: ScrollBar.vertical
2021-05-16 15:16:42 +00:00
contentHeight: content.height
ScrollBar.horizontal.policy: ScrollBar.AlwaysOff
clip: true
2021-05-16 15:16:42 +00:00
function scrollBackUp() {
vScrollBar.setPosition(0)
2021-05-16 15:16:42 +00:00
}
Item {
id: content
width: parent.width
height: channelsLabel.height + communityChannelList.height
Item {
id: channelsLabel
anchors.horizontalCenter: parent.horizontalCenter
width: parent.width - 32
height: 34
StatusBaseText {
text: qsTr("Channels")
anchors.bottom: parent.bottom
anchors.bottomMargin: 4
font.pixelSize: 15
color: Theme.palette.baseColor1
}
}
ListView {
id: communityChannelList
anchors.top: channelsLabel.bottom
height: childrenRect.height
width: parent.width
2022-02-01 15:31:05 +00:00
model: isEdit ? root.store.chatCommunitySectionModule.editCategoryChannelsModel : root.store.chatCommunitySectionModule.model
interactive: false
clip: true
delegate: StatusListItem {
anchors.horizontalCenter: parent.horizontalCenter
2022-02-01 15:31:05 +00:00
visible: model.type != Constants.chatType.unknown
height: visible ? implicitHeight : 0
title: "#" + model.name
icon.emoji: model.emoji
icon.color: model.color
image.isIdenticon: false
image.source: model.icon
ringSettings.ringSpecModel: model.colorHash
icon.isLetterIdenticon: true
icon.background.color: model.color
sensor.onClicked: channelItemCheckbox.checked = !channelItemCheckbox.checked
components: [
StatusCheckBox {
id: channelItemCheckbox
2022-02-01 15:31:05 +00:00
checked: root.isEdit ? model.categoryId == root.categoryId : false
onCheckedChanged: {
if(checked){
2022-02-01 15:31:05 +00:00
var idx = root.channels.indexOf(model.itemId)
if(idx === -1){
2022-01-25 20:39:20 +00:00
root.channels.push(model.itemId)
}
} else {
2022-02-01 15:31:05 +00:00
root.channels = root.channels.filter(el => el !== model.itemId);
}
}
2021-05-16 15:16:42 +00:00
}
]
}
2021-05-16 15:16:42 +00:00
}
}
}
2021-05-16 15:16:42 +00:00
StatusModalDivider {
visible: deleteCategoryButton.visible
topPadding: 8
bottomPadding: 8
}
2021-05-17 15:05:45 +00:00
StatusListItem {
id: deleteCategoryButton
anchors.horizontalCenter: parent.horizontalCenter
visible: isEdit
title: qsTr("Delete category")
icon.name: "delete"
type: StatusListItem.Type.Danger
sensor.onClicked: {
Global.openPopup(deleteCategoryConfirmationDialogComponent, {
title: qsTr("Delete %1 category").arg(root.contentItem.categoryName.input.text),
confirmationText: qsTr("Are you sure you want to delete %1 category? Channels inside the category wont be deleted.").arg(root.contentItem.categoryName.input.text)
2022-02-09 09:43:23 +00:00
})
}
}
2021-05-17 15:05:45 +00:00
Item {
height: 8
width: parent.width
}
2021-05-17 15:05:45 +00:00
Component {
id: deleteCategoryConfirmationDialogComponent
ConfirmationDialog {
btnType: "warn"
showCancelButton: true
onClosed: {
destroy()
}
onCancelButtonClicked: {
close();
}
onConfirmButtonClicked: function(){
const error = root.store.deleteCommunityCategory(root.categoryId);
if (error) {
categoryError.text = error
return categoryError.open()
2021-05-17 15:05:45 +00:00
}
close();
root.close()
2021-05-17 15:05:45 +00:00
}
}
2021-05-16 15:16:42 +00:00
}
}
rightButtons: [
StatusButton {
enabled: isFormValid()
text: isEdit ?
qsTr("Save") :
qsTr("Create")
onClicked: {
if (!isFormValid()) {
scrollView.scrollBackUp()
return
}
2021-05-17 15:05:45 +00:00
let error = ""
if (isEdit) {
2022-02-01 15:31:05 +00:00
error = root.store.editCommunityCategory(root.categoryId, Utils.filterXSS(root.contentItem.categoryName.input.text), JSON.stringify(channels));
} else {
2022-02-01 15:31:05 +00:00
error = root.store.createCommunityCategory(Utils.filterXSS(root.contentItem.categoryName.input.text), JSON.stringify(channels));
}
2021-05-16 15:16:42 +00:00
if (error) {
categoryError.text = error
return categoryError.open()
}
2021-05-16 15:16:42 +00:00
root.close()
}
2021-05-16 15:16:42 +00:00
}
]
MessageDialog {
id: categoryError
2022-02-09 09:43:23 +00:00
title: isEdit ?
qsTr("Error editing the category") :
qsTr("Error creating the category")
icon: StandardIcon.Critical
standardButtons: StandardButton.Ok
2021-05-16 15:16:42 +00:00
}
}