This repository has been archived by the owner on Jan 6, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Inform user about state of wallet-rpc download and monero wallet sync…
… status
- Loading branch information
1 parent
4da0828
commit 217405e
Showing
8 changed files
with
143 additions
and
5 deletions.
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
7 changes: 7 additions & 0 deletions
7
src/renderer/components/modal/swap/pages/in_progress/SyncingMoneroWalletPage.tsx
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,7 @@ | ||
import CircularProgressWithSubtitle from '../../CircularProgressWithSubtitle'; | ||
|
||
export function SyncingMoneroWalletPage() { | ||
return ( | ||
<CircularProgressWithSubtitle description="Syncing Monero wallet with blockchain, this might take a while..." /> | ||
); | ||
} |
14 changes: 14 additions & 0 deletions
14
src/renderer/components/modal/swap/pages/init/DownloadingMoneroWalletRpcPage.tsx
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,14 @@ | ||
import CircularProgressWithSubtitle from '../../CircularProgressWithSubtitle'; | ||
import { MoneroWalletRpcUpdateState } from '../../../../../../models/storeModel'; | ||
|
||
export default function DownloadingMoneroWalletRpcPage({ | ||
updateState, | ||
}: { | ||
updateState: MoneroWalletRpcUpdateState; | ||
}) { | ||
return ( | ||
<CircularProgressWithSubtitle | ||
description={`Updating monero-wallet-rpc (${updateState.progress}) `} | ||
/> | ||
); | ||
} |
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