mirror of
https://github.com/seiichiro0185/sailotp.git
synced 2024-11-14 13:16:42 +00:00
Merge pull request #41 from ZeiP/search
#38: Add a search box to the main view.
This commit is contained in:
commit
535f098ae6
2 changed files with 49 additions and 21 deletions
|
@ -65,7 +65,7 @@ ApplicationWindow
|
|||
|
||||
// Add an entry to the list
|
||||
function appendOTP(title, secret, type, counter, fav, len, diff) {
|
||||
listModel.append({"secret": secret, "title": title, "fav": fav, "type": type, "counter": counter, "len": len, "diff": diff, "otp": "------"});
|
||||
listModel.append({"secret": secret, "title": title, "fav": fav, "type": type, "counter": counter, "len": len, "diff": diff, "otp": "------", "itemVisible": true});
|
||||
}
|
||||
|
||||
// Set the OTP shown on the Cover
|
||||
|
|
|
@ -130,35 +130,63 @@ Page {
|
|||
hintText: qsTr("Pull down to add a OTP")
|
||||
}
|
||||
|
||||
header: Row {
|
||||
height: Theme.itemSizeSmall
|
||||
header: Column {
|
||||
width: parent.width
|
||||
ProgressBar {
|
||||
id: updateProgress
|
||||
anchors.top: parent.top
|
||||
// Hack to get the Progress Bar in roughly the same spot on Light and Dark Ambiances
|
||||
anchors.topMargin: Theme.colorScheme === 0 ? Theme.paddingLarge * 1.1 : Theme.paddingSmall * 0.6
|
||||
height: headerRow.height + searchRow.height
|
||||
Row {
|
||||
id: headerRow
|
||||
height: Theme.itemSizeSmall
|
||||
width: parent.width * 0.65
|
||||
maximumValue: 29
|
||||
value: 29 - seconds_global
|
||||
// Only show when there are enries
|
||||
visible: appWin.listModel.count
|
||||
width: parent.width
|
||||
ProgressBar {
|
||||
id: updateProgress
|
||||
// Hack to get the Progress Bar in roughly the same spot on Light and Dark Ambiances
|
||||
anchors.topMargin: Theme.colorScheme === 0 ? Theme.paddingLarge * 1.1 : Theme.paddingSmall * 0.6
|
||||
height: Theme.itemSizeSmall
|
||||
width: parent.width * 0.65
|
||||
maximumValue: 29
|
||||
value: 29 - seconds_global
|
||||
// Only show when there are enries
|
||||
visible: appWin.listModel.count
|
||||
}
|
||||
PageHeader {
|
||||
id: header
|
||||
anchors.top: parent.top
|
||||
height: Theme.itemSizeSmall
|
||||
width: parent.width * 0.35
|
||||
title: "SailOTP"
|
||||
}
|
||||
}
|
||||
PageHeader {
|
||||
id: header
|
||||
anchors.top: parent.top
|
||||
height: Theme.itemSizeSmall
|
||||
width: parent.width * 0.35
|
||||
title: "SailOTP"
|
||||
Row {
|
||||
id: searchRow
|
||||
width: parent.width
|
||||
TextField {
|
||||
id: searchField
|
||||
font.pixelSize: Theme.fontSizeMedium
|
||||
width: parent.width - clearIcon.width
|
||||
EnterKey.enabled: false
|
||||
inputMethodHints: Qt.ImhNoPredictiveText // Qt.ImhPreferUppercase | Qt.ImhNoAutoUppercase
|
||||
placeholderText: qsTr("Search")
|
||||
onTextChanged: {
|
||||
for (var i = 0; i < appWin.listModel.count; i++) {
|
||||
appWin.listModel.get(i).itemVisible = appWin.listModel.get(i).title.toString().toLowerCase().indexOf(searchField.text.toLowerCase()) > -1
|
||||
}
|
||||
}
|
||||
}
|
||||
IconButton {
|
||||
id: clearIcon
|
||||
icon.source: "image://theme/icon-m-backspace"
|
||||
onClicked: searchField.text = ""
|
||||
enabled: searchField.text.length > 0
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
delegate: ListItem {
|
||||
id: otpListItem
|
||||
menu: otpContextMenu
|
||||
contentHeight: Theme.itemSizeMedium
|
||||
contentHeight: visible ? Theme.itemSizeMedium : 0
|
||||
width: parent.width
|
||||
visible: itemVisible
|
||||
|
||||
function remove() {
|
||||
// Show 5s countdown, then delete from DB and List
|
||||
|
@ -237,7 +265,7 @@ Page {
|
|||
}
|
||||
}
|
||||
|
||||
// Show an update button on HTOP-Type Tokens
|
||||
// Show an update button on HOTP type tokens
|
||||
IconButton {
|
||||
icon.source: "image://theme/icon-m-refresh"
|
||||
anchors.right: parent.right
|
||||
|
|
Loading…
Reference in a new issue