mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-10 06:16:32 +00:00
fac0e50e37
This component introduces `StatusLetterIdenticon`, `StatusImageIdenticon` and `StatusIdenticon`. - `StatusLetterIdenticon` renders an identicon with a single letter based on a name. - `StatusImageIdenticon` renders an actual image based on an identicon URL - `StatusIdenticon` is a composition of the former both, but with a loading mechanism to decide which should be rendered The commit also ensures all of these components are used respectively throughout the application.
42 lines
776 B
QML
42 lines
776 B
QML
import QtQuick 2.13
|
|
import "../../imports"
|
|
import "../../shared"
|
|
import "../../shared/status"
|
|
|
|
Item {
|
|
id: root
|
|
|
|
property string chatName
|
|
property int chatType
|
|
property string identicon
|
|
|
|
width: 40
|
|
height: 40
|
|
|
|
Loader {
|
|
sourceComponent: root.chatType == Constants.chatTypeOneToOne ? imageIdenticon : letterIdenticon
|
|
anchors.fill: parent
|
|
}
|
|
|
|
Component {
|
|
id: letterIdenticon
|
|
|
|
StatusLetterIdenticon {
|
|
chatName: root.chatName
|
|
width: parent.width
|
|
height: parent.height
|
|
}
|
|
}
|
|
|
|
Component {
|
|
id: imageIdenticon
|
|
|
|
StatusImageIdenticon {
|
|
source: root.identicon
|
|
width: parent.width
|
|
height: parent.height
|
|
}
|
|
}
|
|
}
|
|
|