mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-10 14:26:34 +00:00
2f050a025f
Changes: 1. Align dialog with Figma design 2. Add new components for round image with badge and connection status tag 3. Add tests 4. Dapps service will now receive wallet `RootStore` as input and reuse existing models with account balance and other necessary info for account selection and chain selection 5. Minor updates in stores 6. Minor updates in WC toast messages to display app domain instead of app url
74 lines
2.1 KiB
QML
74 lines
2.1 KiB
QML
import QtQuick 2.15
|
|
import QtQuick.Layouts 1.15
|
|
|
|
import StatusQ 0.1
|
|
import StatusQ.Controls 0.1
|
|
import StatusQ.Core 0.1
|
|
import StatusQ.Core.Theme 0.1
|
|
import StatusQ.Core.Utils 0.1
|
|
|
|
import shared.popups.walletconnect 1.0
|
|
import utils 1.0
|
|
|
|
ColumnLayout {
|
|
id: root
|
|
property alias name: appNameText.text
|
|
property url dAppUrl: ""
|
|
property url iconUrl: ""
|
|
|
|
spacing: Style.current.padding
|
|
|
|
RoundImageWithBadge {
|
|
objectName: "dappIcon"
|
|
Layout.alignment: Qt.AlignHCenter
|
|
Layout.preferredWidth: 72
|
|
Layout.preferredHeight: Layout.preferredWidth
|
|
|
|
imageUrl: iconUrl
|
|
}
|
|
|
|
ColumnLayout {
|
|
Layout.fillWidth: true
|
|
spacing: 4
|
|
|
|
StatusBaseText {
|
|
id: appNameText
|
|
objectName: "appNameText"
|
|
Layout.fillWidth: true
|
|
Layout.maximumWidth: root.width
|
|
horizontalAlignment: Text.AlignHCenter
|
|
elide: Text.ElideRight
|
|
font.bold: true
|
|
font.pixelSize: 17
|
|
}
|
|
|
|
StatusFlatButton {
|
|
id: appUrlText
|
|
objectName: "appUrlControl"
|
|
Layout.alignment: Qt.AlignHCenter
|
|
Layout.maximumWidth: root.width
|
|
icon.name: "external-link"
|
|
icon.color: hovered ? Theme.palette.baseColor1 : Theme.palette.directColor1
|
|
textPosition: StatusBaseButton.TextPosition.Left
|
|
size: StatusBaseButton.Size.Tiny
|
|
textColor: Theme.palette.directColor1
|
|
hoverColor: "transparent"
|
|
spacing: 0
|
|
font.pixelSize: 15
|
|
font.weight: Font.Normal
|
|
horizontalPadding: 0
|
|
verticalPadding: 0
|
|
text: StringUtils.extractDomainFromLink(dAppUrl)
|
|
onClicked: {
|
|
Global.openLinkWithConfirmation(dAppUrl, text)
|
|
}
|
|
}
|
|
ConnectionStatusTag {
|
|
Layout.alignment: Qt.AlignHCenter
|
|
Layout.maximumWidth: root.width
|
|
objectName: "connectionStatusTag"
|
|
success: d.connectionSuccessful
|
|
visible: d.connectionAttempted
|
|
}
|
|
}
|
|
} |