Implement adding new custom push rules

This commit is contained in:
miruka
2021-02-23 08:12:38 -04:00
parent 5b296ed6be
commit f466fe9f08
5 changed files with 52 additions and 13 deletions

View File

@@ -68,16 +68,50 @@ HListView {
}
section.property: "kind"
section.delegate: HLabel {
section.delegate: HRowLayout {
width: root.width
padding: theme.spacing
font.pixelSize: theme.fontSize.big
text:
section === "override" ? qsTr("High priority general rules") :
section === "content" ? qsTr("Message content rules") :
section === "room" ? qsTr("Room rules") :
section === "sender" ? qsTr("Sender rules") :
qsTr("Low priority general rules")
HLabel {
padding: theme.spacing
font.pixelSize: theme.fontSize.big
text:
section === "override" ? qsTr("High priority general rules") :
section === "content" ? qsTr("Message content rules") :
section === "room" ? qsTr("Room rules") :
section === "sender" ? qsTr("Sender rules") :
qsTr("Low priority general rules")
Layout.fillWidth: true
}
PositiveButton {
readonly property var newRule: ({
id: '[section, ""]',
kind: section,
rule_id: "",
order: 0,
default: false,
enabled: true,
conditions: "[]",
pattern: "",
actions: "[]",
notify: false,
highlight: false,
bubble: false,
sound: false,
urgency_hint: false,
})
backgroundColor: "transparent"
icon.name: "pushrule-add"
iconItem.small: true
Layout.fillHeight: true
Layout.fillWidth: false
onClicked: window.makePopup(
"Popups/PushRuleSettingsPopup/PushRuleSettingsPopup.qml",
{userId: root.userId, rule: newRule, ruleExists: false},
)
}
}
delegate: NotificationRuleDelegate {