-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
UI: Initial load status for initial load tab (#1522)
This PR adds user-facing information denoting the current phase of snapshot flow - fetching, syncing or consolidate. <img width="1528" alt="Screenshot 2024-03-21 at 11 15 49 PM" src="https://github.com/PeerDB-io/peerdb/assets/65964360/ad0623e6-fb89-476a-9453-9647a41cf53f"> <img width="1528" alt="Screenshot 2024-03-21 at 11 16 39 PM" src="https://github.com/PeerDB-io/peerdb/assets/65964360/9c067b1f-7ae2-446a-bead-c92190660b3f"> Functionally tested. Fixes #1511
- Loading branch information
1 parent
8f0c29a
commit e1dbd98
Showing
10 changed files
with
340 additions
and
251 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
ALTER TABLE peerdb_stats.qrep_runs | ||
ADD COLUMN destination_table TEXT; | ||
|
||
ALTER TABLE peerdb_stats.qrep_runs | ||
ADD COLUMN source_table TEXT; | ||
|
||
ALTER TABLE peerdb_stats.qrep_runs | ||
ADD COLUMN fetch_complete BOOLEAN DEFAULT FALSE; | ||
|
||
ALTER TABLE peerdb_stats.qrep_runs | ||
ADD COLUMN consolidate_complete BOOLEAN DEFAULT FALSE; |
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
Oops, something went wrong.