Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing filtering on lists #5963

Merged
merged 18 commits into from Jan 26, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
b0f1897
Add missing filtering on lists
Jan 13, 2022
e3d562b
Add missing filtering on lists - use formatted balance string
Jan 21, 2022
2c920b4
Add missing filtering on lists - remove DummyTransactionAwareTradable
Jan 21, 2022
135541f
Add missing filtering on lists - reusable code for contract filtering
Jan 21, 2022
4cace81
Add missing filtering on lists - reusable code for offer filtering
Jan 21, 2022
4cd744f
Add missing filtering on lists - reusable code for BsqSwapTrade filte…
Jan 21, 2022
1b571e9
Add missing filtering on lists - reusable code for Trade filtering
Jan 21, 2022
06b73a6
Add missing filtering on lists - introduce FilterableListItem
Jan 21, 2022
291ccef
Add missing filtering on lists - fix codacy
Jan 21, 2022
75b9902
Add missing filtering on lists - introduce shared FilterBox
Jan 21, 2022
752606d
Add missing filtering on lists - adapt PendingTradesView to use Filte…
Jan 22, 2022
caee121
Add missing filtering on lists - adapt OpenOffersView to use FilterBox
Jan 22, 2022
f381644
Add missing filtering on lists - adapt FailedTradesView to use FilterBox
Jan 22, 2022
1791a38
Add missing filtering on lists - adapt UnconfirmedBsqSwapsView to use…
Jan 22, 2022
3c43e42
Add missing filtering on lists - adapt ClosedTradesView to use FilterBox
Jan 22, 2022
024db34
Add missing filtering on lists - fix NPE on WithdrawalView
Jan 25, 2022
4268d5e
Add missing filtering on lists - fix license
Jan 25, 2022
98a8a2e
Add missing filtering on lists - use containsIgnoreCase
Jan 25, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
17 changes: 17 additions & 0 deletions desktop/src/main/java/bisq/desktop/components/list/FilterBox.java
@@ -1,3 +1,20 @@
/*
* This file is part of Bisq.
*
* Bisq is free software: you can redistribute it and/or modify it
* under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at
* your option) any later version.
*
* Bisq is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public
* License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Bisq. If not, see <http://www.gnu.org/licenses/>.
*/

package bisq.desktop.components.list;
ripcurlx marked this conversation as resolved.
Show resolved Hide resolved

import bisq.desktop.components.AutoTooltipLabel;
Expand Down
@@ -1,3 +1,20 @@
/*
* This file is part of Bisq.
*
* Bisq is free software: you can redistribute it and/or modify it
* under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at
* your option) any later version.
*
* Bisq is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public
* License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Bisq. If not, see <http://www.gnu.org/licenses/>.
*/

package bisq.desktop.util.filtering;

public interface FilterableListItem {
Expand Down
@@ -1,3 +1,20 @@
/*
* This file is part of Bisq.
*
* Bisq is free software: you can redistribute it and/or modify it
* under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at
* your option) any later version.
*
* Bisq is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public
* License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Bisq. If not, see <http://www.gnu.org/licenses/>.
*/

package bisq.desktop.util.filtering;

import bisq.core.offer.Offer;
Expand Down