feat(StatusMemberListItem): Added component documentation (#629)

Added component documentation and updated functions to be private.

Part of #620
This commit is contained in:
Noelia 2022-04-07 22:50:09 +02:00 committed by Michał Cieślak
parent 64bb0c35a0
commit 340ccf2915
2 changed files with 80 additions and 16 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 72 KiB

View File

@ -2,17 +2,80 @@ import QtQuick 2.0
import StatusQ.Core.Theme 0.1 import StatusQ.Core.Theme 0.1
import StatusQ.Core 0.1 import StatusQ.Core 0.1
/*!
\qmltype StatusMemberListItem
\inherits StatusListItem
\inqmlmodule StatusQ.Components
\since StatusQ.Components 0.1
\brief It is a list item with a specific format to display members of a community or chat. Inherits from \c StatusListItem.
The \c StatusMemberListItem is a clickable / hovering list item with a specific format to display members of a community or chat.
It displays the member avatar, trust and mutual contact indicators, nick name, user name, chat key and information about the member connectivity.
Example of how the control looks like:
\image status_member_list_item.png
Example of how to use it:
\qml
StatusMemberListItem {
nickName: "carmen.eth"
isOnline: false
trustIndicator: StatusContactVerificationIcons.TrustedType.Untrustworthy
}
StatusMemberListItem {
nickName: "This girl I know from work"
userName: "annabelle"
isOnline: true
}
\endqml
For a list of components available see StatusQ.
*/
StatusListItem { StatusListItem {
id: root id: root
/*!
\qmlproperty string StatusMemberListItem::nickName
This property holds the nick name of the member represented.
*/
property string nickName: "" property string nickName: ""
/*!
\qmlproperty string StatusMemberListItem::userName
This property holds the user name of the member represented.
*/
property string userName: "" property string userName: ""
/*!
\qmlproperty string StatusMemberListItem::chatKey
This property holds the chat key of the member represented.
*/
property string chatKey: "" property string chatKey: ""
/*!
\qmlproperty string StatusMemberListItem::isMutualContact
This property holds if the member represented is a mutual contact.
*/
property bool isMutualContact: false property bool isMutualContact: false
/*!
\qmlproperty string StatusMemberListItem::trustIndicator
This property holds the trust indicator of the member represented. Possible values are:
\list
\li StatusContactVerificationIcons.TrustedType.None
\li StatusContactVerificationIcons.TrustedType.Verified
\li StatusContactVerificationIcons.TrustedType.Untrustworthy
\endlist
*/
property var trustIndicator: StatusContactVerificationIcons.TrustedType.None property var trustIndicator: StatusContactVerificationIcons.TrustedType.None
/*!
\qmlproperty string StatusMemberListItem::isOnline
This property holds the connectivity status of the member represented.
*/
property bool isOnline: false property bool isOnline: false
QtObject {
id: d
// Subtitle composition: // Subtitle composition:
function composeSubtitile() { function composeSubtitile() {
var compose = "" var compose = ""
@ -33,6 +96,7 @@ StatusListItem {
function composeShortKeyChat(chatKey) { function composeShortKeyChat(chatKey) {
return chatKey.substring(0, 5) + "..." + chatKey.substring(chatKey.length - 3) return chatKey.substring(0, 5) + "..." + chatKey.substring(chatKey.length - 3)
} }
}
// root object settings: // root object settings:
title: root.nickName title: root.nickName
@ -40,7 +104,7 @@ StatusListItem {
isMutualContact: root.isMutualContact isMutualContact: root.isMutualContact
trustIndicator: root.trustIndicator trustIndicator: root.trustIndicator
} }
subTitle: composeSubtitile() subTitle: d.composeSubtitile()
statusListItemSubTitle.font.pixelSize: 10 statusListItemSubTitle.font.pixelSize: 10
icon.isLetterIdenticon: !root.image.source.toString() icon.isLetterIdenticon: !root.image.source.toString()
statusListItemIcon.badge.visible: true statusListItemIcon.badge.visible: true