Skip to content

Commit

Permalink
seiichiro0185#38: Add a search box to the main view.
Browse files Browse the repository at this point in the history
  • Loading branch information
ZeiP committed Jan 3, 2021
1 parent f1d195f commit da4f2bb
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 21 deletions.
2 changes: 1 addition & 1 deletion qml/harbour-sailotp.qml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
68 changes: 48 additions & 20 deletions qml/pages/MainView.qml
Original file line number Diff line number Diff line change
Expand Up @@ -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().indexOf(searchField.text) > -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit da4f2bb

Please sign in to comment.