This repository has been archived by the owner on Nov 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Vault Management UI (round 2) #4631
Merged
+1,296
−65
Merged
Changes from all commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
3a482ef
Add VaultMeta edit dialog
jacogr 955f1f8
Updated (WIP)
jacogr 1f9a98b
Meta & password edit completed
jacogr d20f23f
Added SelectionList component for selections
jacogr c7e3491
Use SelectionList in DappPermisions
jacogr 1e27a10
AddDapps uses SelectionList
jacogr a5abb28
Fix AccountCard to consistent height
jacogr c057003
Merge branch 'master' into jg-vaults-2
jacogr f4b1c03
Merge branch 'master' into jg-selectionlist
jacogr 69105a9
Convert Signer defaults to SelectionList
jacogr 7b6f50d
Subtle selection border
jacogr 1a87840
Display account vault information
jacogr e730c4a
Merge branch 'jg-selectionlist' into jg-vaults-2
jacogr c49aef2
Merge branch 'master' into jg-vaults-2
jacogr caf4403
Allow invalid addresses to display icons (e.g. vaults)
jacogr 34a00b3
Display vault on edit meta
jacogr 02e13e7
Convert VaultAccounts to SelectionList
jacogr bdb61ad
Merge branch 'jg-selectionlist' into jg-vaults-2
jacogr 9ef1e2c
Allow editing of Vault in meta
jacogr b25ae9f
Merge branch 'master' into jg-selectionlist
jacogr 3812efd
Add tests for SectionList component
jacogr c8789cc
Add tests for VaultSelector component
jacogr ed88435
Merge branch 'master' into jg-vaults-2
jacogr 442b20c
Auto-focus description field (aligns with #4657)
jacogr 853d644
Merge branch 'master' into jg-selectionlist
jacogr 93c4eef
Apply scroll fixes from lates commit in #4621
jacogr a08dde9
Merge branch 'jg-selectionlist' into jg-vaults-2
jacogr fe098aa
Remove unneeded logs
jacogr 9e81b22
Remove extra div, fixing ParityBar overflow
jacogr cae456b
Merge branch 'jg-selectionlist' into jg-vaults-2
jacogr 2cad995
Merge branch 'master' into jg-vaults-2
jacogr e4369f3
Merge branch 'master' into jg-vaults-2
jacogr a55de14
Merge branch 'master' into jg-vaults-2
jacogr d8dca9c
Disable save if password don't match
jacogr b98f115
s/disabled/readOnly/
jacogr c22a1a4
string -> bool
jacogr File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// Copyright 2015-2017 Parity Technologies (UK) Ltd. | ||
// This file is part of Parity. | ||
|
||
// Parity is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
|
||
// Parity 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 General Public License for more details. | ||
|
||
// You should have received a copy of the GNU General Public License | ||
// along with Parity. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
export default from './vaultMeta'; |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can't it be loaded only once (the Vault Store) when the app starts ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The reason it is done here is to ensure we have the current info. It is loaded already at this point, basically a refresh if/when it was changed outside of the window. (It should be ok, but rather safe than sorry)