mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
Customize contact details own view
This commit is contained in:
parent
1917e673f2
commit
61971b5b3d
@ -27,6 +27,20 @@ Item
|
|||||||
id: cntDt
|
id: cntDt
|
||||||
property var md
|
property var md
|
||||||
property bool is_contact: cntDt.md.is_contact
|
property bool is_contact: cntDt.md.is_contact
|
||||||
|
property bool isOwn: cntDt.md.own
|
||||||
|
|
||||||
|
|
||||||
|
Text
|
||||||
|
{
|
||||||
|
id: meText
|
||||||
|
|
||||||
|
text: "Yourself"
|
||||||
|
visible: isOwn
|
||||||
|
|
||||||
|
anchors.top: parent.top
|
||||||
|
anchors.topMargin: 6
|
||||||
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
|
}
|
||||||
|
|
||||||
AvatarOrColorHash
|
AvatarOrColorHash
|
||||||
{
|
{
|
||||||
@ -34,7 +48,7 @@ Item
|
|||||||
|
|
||||||
gxs_id: cntDt.md.gxs_id
|
gxs_id: cntDt.md.gxs_id
|
||||||
|
|
||||||
anchors.top: parent.top
|
anchors.top: meText.bottom
|
||||||
anchors.topMargin: 6
|
anchors.topMargin: 6
|
||||||
anchors.horizontalCenter: parent.horizontalCenter
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
}
|
}
|
||||||
@ -68,9 +82,19 @@ Item
|
|||||||
|
|
||||||
Image
|
Image
|
||||||
{
|
{
|
||||||
source: cntDt.is_contact ?
|
source:
|
||||||
"qrc:/icons/rating.svg" :
|
{
|
||||||
"qrc:/icons/rating-unrated.svg"
|
if (isOwn)
|
||||||
|
{
|
||||||
|
"qrc:/icons/keyring.svg"
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
cntDt.is_contact ?
|
||||||
|
"qrc:/icons/rating.svg" :
|
||||||
|
"qrc:/icons/rating-unrated.svg"
|
||||||
|
}
|
||||||
|
}
|
||||||
height: parent.height - 4
|
height: parent.height - 4
|
||||||
sourceSize.height: height
|
sourceSize.height: height
|
||||||
fillMode: Image.PreserveAspectFit
|
fillMode: Image.PreserveAspectFit
|
||||||
@ -82,10 +106,13 @@ Item
|
|||||||
|
|
||||||
onClicked:
|
onClicked:
|
||||||
{
|
{
|
||||||
var jDt = JSON.stringify({gxs_id: cntDt.md.gxs_id})
|
if (!isOwn)
|
||||||
if(cntDt.is_contact)
|
{
|
||||||
rsApi.request("/identity/remove_contact", jDt, tgCt)
|
var jDt = JSON.stringify({gxs_id: cntDt.md.gxs_id})
|
||||||
else rsApi.request("/identity/add_contact", jDt, tgCt)
|
if(cntDt.is_contact)
|
||||||
|
rsApi.request("/identity/remove_contact", jDt, tgCt)
|
||||||
|
else rsApi.request("/identity/add_contact", jDt, tgCt)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function tgCt() { cntDt.is_contact = !cntDt.is_contact }
|
function tgCt() { cntDt.is_contact = !cntDt.is_contact }
|
||||||
|
Loading…
Reference in New Issue
Block a user