status-desktop/ui/app/AppLayouts/Profile/Sections/PrivacyContainer.qml

214 lines
6.1 KiB
QML
Raw Normal View History

2020-06-17 19:18:31 +00:00
import QtQuick 2.13
import QtQuick.Controls 2.13
import QtQuick.Layouts 1.13
import QtGraphicalEffects 1.13
2020-05-27 21:28:25 +00:00
import "../../../../imports"
import "../../../../shared"
2020-09-17 16:42:59 +00:00
import "../../../../shared/status"
2020-10-04 23:03:37 +00:00
import "Privileges/"
2020-05-27 21:28:25 +00:00
Item {
id: privacyContainer
Layout.fillHeight: true
Layout.fillWidth: true
ListModel {
id: previewableSites
}
Component.onCompleted: {
const sites = profileModel.getLinkPreviewWhitelist()
try {
const sitesJSON = JSON.parse(sites)
let settingUpdadted = false
sitesJSON.forEach(function (site) {
if (appSettings.whitelistedUnfurlingSites[site.address] === undefined) {
appSettings.whitelistedUnfurlingSites[site.address] = false
settingUpdadted = true
}
previewableSites.append(site)
})
if (settingUpdadted) {
applicationWindow.whitelistChanged()
}
} catch (e) {
console.error('Could not parse the whitelist for sites', e)
}
}
2020-10-04 23:03:37 +00:00
property Component dappListPopup: DappList {
onClosed: destroy()
}
Column {
id: containerColumn
spacing: Style.current.padding
2020-05-27 21:28:25 +00:00
anchors.top: parent.top
anchors.topMargin: Style.current.padding
anchors.right: parent.right
anchors.rightMargin: contentMargin
anchors.left: parent.left
anchors.leftMargin: contentMargin
anchors.bottom: parent.bottom
StatusSectionHeadline {
id: labelSecurity
//% "Security"
text: qsTrId("security")
}
Item {
id: backupSeedPhrase
height: backupText.height
width: parent.width
StyledText {
id: backupText
//% "Backup Seed Phrase"
text: qsTrId("backup-seed-phrase")
font.pixelSize: 15
2020-10-26 20:20:31 +00:00
color: !badge.visible ? Style.current.darkGrey : Style.current.textColor
}
2020-10-26 20:20:31 +00:00
Rectangle {
id: badge
visible: !profileModel.isMnemonicBackedUp
anchors.verticalCenter: parent.verticalCenter
anchors.right: parent.right
anchors.rightMargin: 0
2020-10-26 20:20:31 +00:00
radius: 9
color: Style.current.blue
width: 18
height: 18
Text {
font.pixelSize: 12
color: Style.current.white
anchors.centerIn: parent
text: "1"
}
}
MouseArea {
2020-10-26 20:20:31 +00:00
enabled: !profileModel.isMnemonicBackedUp
anchors.fill: parent
onClicked: backupSeedModal.open()
2020-10-26 20:20:31 +00:00
cursorShape: enabled && Qt.PointingHandCursor
}
}
BackupSeedModal {
id: backupSeedModal
}
Separator {
id: separator
Layout.topMargin: Style.current.bigPadding - containerColumn.spacing
}
2020-10-04 23:03:37 +00:00
Item {
id: dappPermissions
height: dappPermissionsText.height
width: parent.width
StyledText {
id: dappPermissionsText
text: qsTr("Set DApp access permissions")
font.pixelSize: 15
}
SVGImage {
id: caret2
anchors.right: parent.right
anchors.rightMargin: 0
anchors.verticalCenter: dappPermissionsText.verticalCenter
source: "../../../img/caret.svg"
width: 13
height: 7
rotation: -90
}
ColorOverlay {
anchors.fill: caret2
2020-10-26 20:20:31 +00:00
source: caret2
2020-10-04 23:03:37 +00:00
color: Style.current.darkGrey
rotation: -90
}
MouseArea {
anchors.fill: parent
onClicked: dappListPopup.createObject(privacyContainer).open()
cursorShape: Qt.PointingHandCursor
}
}
Separator {
id: separator2
Layout.topMargin: Style.current.bigPadding - containerColumn.spacing
2020-10-04 23:03:37 +00:00
}
StatusSectionHeadline {
id: labelPrivacy
2020-08-26 15:52:26 +00:00
//% "Privacy"
text: qsTrId("privacy")
}
RowLayout {
id: displayImageSettings
StyledText {
//% "Display images in chat automatically"
text: qsTrId("display-images-in-chat-automatically")
}
2020-09-17 16:42:59 +00:00
StatusSwitch {
checked: appSettings.displayChatImages
onCheckedChanged: function (value) {
appSettings.displayChatImages = this.checked
}
}
StyledText {
//% "under development"
text: qsTrId("under-development")
}
}
StatusSectionHeadline {
id: labelURLUnfurling
text: qsTr("URL Previews")
}
ListView {
id: sitesListView
width: parent.width
model: previewableSites
interactive: false
height: childrenRect.height
delegate: Component {
RowLayout {
id: displayYoutubeSettings
StyledText {
text: qsTr("Display %1 previews").arg(title)
}
StatusSwitch {
checked: !!appSettings.whitelistedUnfurlingSites[address]
onCheckedChanged: function () {
changeUnfurlingWhitelist(address, this.checked)
}
}
StyledText {
//% "under development"
text: qsTrId("under-development")
}
}
}
}
}
2020-05-27 21:28:25 +00:00
}
/*##^##
Designer {
D{i:0;autoSize:true;formeditorColor:"#ffffff";height:480;width:640}
}
##^##*/