import QtQuick 2.3 import "../../../../../shared" import "../../../../../imports" Item { property string authorCurrentMsg: "authorCurrentMsg" property int verticalMargin: 50 id: channelIdentifier visible: authorCurrentMsg == "" anchors.horizontalCenter: parent.horizontalCenter anchors.top: parent.top anchors.topMargin: this.visible ? verticalMargin : 0 height: this.visible ? childrenRect.height + verticalMargin : 0 Rectangle { id: circleId anchors.horizontalCenter: parent.horizontalCenter width: 120 height: 120 radius: 120 border.width: chatsModel.activeChannel.chatType === Constants.chatTypeOneToOne ? 2 : 0 border.color: Style.current.border color: { if (chatsModel.activeChannel.chatType === Constants.chatTypeOneToOne) { return Style.current.transparent } return chatsModel.activeChannel.color } Image { visible: chatsModel.activeChannel.chatType === Constants.chatTypeOneToOne anchors.horizontalCenter: parent.horizontalCenter anchors.verticalCenter: parent.verticalCenter width: 120 height: 120 fillMode: Image.PreserveAspectFit source: chatsModel.activeChannel.identicon mipmap: true smooth: false antialiasing: true } StyledText { visible: chatsModel.activeChannel.chatType !== Constants.chatTypeOneToOne text: (chatsModel.activeChannel.name.charAt(0) === "#" ? chatsModel.activeChannel.name.charAt(1) : chatsModel.activeChannel.name.charAt(0)).toUpperCase() opacity: 0.7 font.weight: Font.Bold font.pixelSize: 51 color: Style.current.white anchors.horizontalCenter: parent.horizontalCenter anchors.verticalCenter: parent.verticalCenter } } StyledText { id: channelName wrapMode: Text.Wrap text: { if (chatsModel.activeChannel.chatType !== Constants.chatTypePublic) { return chatsModel.activeChannel.name; } else { return "#" + chatsModel.activeChannel.name; } } font.weight: Font.Bold font.pixelSize: 22 color: Style.current.textColor anchors.top: circleId.bottom anchors.topMargin: 16 anchors.horizontalCenter: parent.horizontalCenter } Item { visible: chatsModel.activeChannel.chatType === Constants.chatTypePrivateGroupChat && !chatsModel.activeChannel.isMember(profileModel.profile.pubKey) anchors.top: channelName.bottom anchors.topMargin: 16 id: joinOrDecline StyledText { id: joinChat //% "Join chat" text: qsTrId("join-chat") font.pixelSize: 20 color: Style.current.blue anchors.horizontalCenter: parent.horizontalCenter MouseArea { cursorShape: Qt.PointingHandCursor anchors.fill: parent onClicked: { chatsModel.joinGroup() } } } StyledText { //% "Decline invitation" text: qsTrId("group-chat-decline-invitation") font.pixelSize: 20 color: Style.current.blue anchors.horizontalCenter: parent.horizontalCenter anchors.top: joinChat.bottom anchors.topMargin: Style.current.padding MouseArea { cursorShape: Qt.PointingHandCursor anchors.fill: parent onClicked: { chatsModel.leaveActiveChat() } } } } } /*##^## Designer { D{i:0;autoSize:true;formeditorZoom:0.5;height:480;width:640} } ##^##*/