aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/reducers/app.js
Commit message (Collapse)AuthorAgeFilesLines
* Move account export to subviewDan Finlay2016-05-051-0/+17
| | | | | | | | | | Account detail view now has an animated transitioning `subview` section that allows us to show extra details within it. Clicking `export` now slide replaces the transaction list with the export UI. Added cancel/done/submit buttons to the Export UI. Done submits like Enter did, the other two transition back to the transaction list. For some reason when first unlocking, the selected account is being instantly replaced with the accounts list, so I need to fix that before merging this into master.
* Show any pending txs when unlockingDan Finlay2016-05-041-0/+1
| | | | Before the unlock action hard-routed to the home route, now it has a condition where it will show pending transactions instead.
* Add UI for Signing MessagesDan Finlay2016-05-041-7/+20
| | | | | | | | | | Calls to `eth.sign` are now transiently persisted in memory, and displayed in a chronological stack with pending transactions (which are still persisted to disk). This allows the user a method to sign/cancel transactions even if they miss the Chrome notification. Improved a lot of the view routing, to avoid cases where routes would show an empty account view, or transition to the accounts list when it shouldn't. Broke the transaction approval view into a couple components so messages and transactions could have their own templates.
* Fix outdated transitionsDan Finlay2016-04-301-4/+3
| | | | | | | | Fixes #151 - Cancelling or completing a tx now goes back to account detail view. - Restoring a vault now does not select an unloaded account, shows account list. - Account list now never selects an item only uses the cells as buttons.
* When no account is selected, show accounts viewDan Finlay2016-04-261-2/+3
|
* Persist selected accountDan Finlay2016-04-261-3/+1
| | | | | | When selecting an account, we now persist the selection to the `configManager`, so the selection can be restored when re-unlocking Metamask. Also found the bug where `rawtestrpc` was still being used as a default, and fixed it!
* Fixed some loading bugsDan Finlay2016-04-261-3/+1
|
* Fix testDan Finlay2016-04-261-2/+0
|
* Make account detail view the primary viewDan Finlay2016-04-261-2/+25
| | | | | | | | - When unlocking, the first account is now selected by default and displayed as the main view. - There is now a "CHANGE ACCT" button on the detail view to show the accounts list. - Clicking an account from the accounts list now navigates to the detail view and selects that account. - Config/Info screen "back" buttons now fire a new action, `GO_HOME`, which is configured to navigate to the accountDetail view, putting that logic in one place. - When locking and unlocking again, the first account is always displayed, eventually we should persist the selection.
* Moved UI into repo with its own dependency stackDan Finlay2016-04-141-0/+281