status-desktop/ui/app/AppLayouts/Communities/popups/FinaliseOwnershipDeclinePop...

58 lines
1.6 KiB
QML
Raw Normal View History

import QtQuick 2.15
import QtQuick.Controls 2.15
import QtQml.Models 2.15
import StatusQ.Core 0.1
import StatusQ.Controls 0.1
import StatusQ.Popups.Dialog 0.1
import StatusQ.Core.Theme 0.1
import utils 1.0
StatusDialog {
id: root
// Community related props:
required property string communityName
signal cancelClicked
signal declineClicked
width: 480 // by design
padding: Style.current.padding
contentItem: StatusBaseText {
wrapMode: Text.WrapAtWordBoundaryOrAnywhere
text: qsTr("If you dont want to be the owner of the %1 Community it is important that you let the previous owner know so they can organise another owner to take over. You will have to send the Owner token back to them or on to the next designated owner.").arg(root.communityName)
lineHeight: 1.2
}
header: StatusDialogHeader {
headline.title: qsTr("Are you sure you dont want to be the owner?")
actions.closeButton.onClicked: root.close()
}
footer: StatusDialogFooter {
spacing: Style.current.padding
rightButtons: ObjectModel {
StatusFlatButton {
text: qsTr("Cancel")
onClicked: {
root.cancelClicked()
close()
}
}
StatusButton {
text: qsTr("I don't want to be the owner")
type: StatusBaseButton.Type.Danger
onClicked: {
root.declineClicked()
close()
}
}
}
}
}