This repository was archived by the owner on Jan 15, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 53
wallet-porfolio #1183
Open
Adesojisouljay
wants to merge
25
commits into
development
Choose a base branch
from
feat/redesign-wallet-page
base: development
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
wallet-porfolio #1183
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
a284929
wallet porfolio
Adesojisouljay c328ac8
fixed trans
Adesojisouljay 703288b
engine token details
Adesojisouljay b282444
fixed points
Adesojisouljay 80ac66e
engine transactions history
Adesojisouljay c885bc3
profile tokens
Adesojisouljay 2a9c3ef
profile tokens: engine
Adesojisouljay c67a23f
checkbox fixes
Adesojisouljay 1aa76f6
type logo amd date format
Adesojisouljay edb371e
Merge branch 'development' of https://github.com/ecency/ecency-vision…
Adesojisouljay 8833e1a
fix map key
Adesojisouljay 4e06397
fixed chart toggle
Adesojisouljay 2907956
chcekbox logics
Adesojisouljay 37739d6
logic fixes
Adesojisouljay ecf9e74
transactions filtering
Adesojisouljay 43480a1
filter transactions
Adesojisouljay 7e31c80
Merge branch 'development' of https://github.com/ecency/ecency-vision…
Adesojisouljay 8a5607a
fixed style import
Adesojisouljay 30ec4d7
syntax fixes
Adesojisouljay 5a80234
clear consoles
Adesojisouljay 56df71e
default chart
Adesojisouljay a38aee5
fixed wallet path
Adesojisouljay 95ac4e2
Merge branch 'development' of https://github.com/ecency/ecency-vision…
Adesojisouljay 23fbe1e
bug fixes
Adesojisouljay fdcb288
Merge branch 'development' of https://github.com/ecency/ecency-vision…
Adesojisouljay 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,33 @@ | ||
| @import "src/style/colors"; | ||
| @import "src/style/variables"; | ||
| @import "src/style/bootstrap_vars"; | ||
| @import "src/style/mixins"; | ||
|
|
||
| .portfolio-list-container{ | ||
| display: flex; | ||
| align-items: center; | ||
| justify-content: space-between; | ||
|
|
||
| .token-list{ | ||
| padding: 10px; | ||
| gap: 5px; | ||
| // flex-wrap: wrap; | ||
|
|
||
| img{ | ||
| width: 50px; | ||
| height: 50px; | ||
| border-radius: 50%; | ||
| } | ||
| span{ | ||
| margin: 0 15px; | ||
| } | ||
| } | ||
|
|
||
| .add-btn{ | ||
|
|
||
| input{ | ||
| width: 20px; | ||
| height: 20px; | ||
| } | ||
| } | ||
| } |
This file contains hidden or 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,35 @@ | ||
| import React, { useEffect, useState} from 'react' | ||
| import { _t } from '../../i18n'; | ||
| import "./index.scss"; | ||
|
|
||
| const EngineTokensList = (props: any) => { | ||
| const { token, handleChange, i, favoriteToken } = props; | ||
|
|
||
| const [checked, setChecked] = useState(favoriteToken) | ||
|
|
||
| return ( | ||
| <> | ||
| <div className="list-body portfolio-list-container cursor-pointer"> | ||
| <div className="token-list"> | ||
| <img src={token.icon} /> | ||
| <span className="item-name notransalte cursor-pointer"> | ||
| {token?.name} | ||
| </span> | ||
| </div> | ||
| <div className='add-btn'> | ||
| <input | ||
| type="checkbox" | ||
| value={token?.name} | ||
| checked={(checked ? true : false)} | ||
| onChange={(e) => { | ||
| handleChange(e.target.checked, token); | ||
| setChecked(!checked) | ||
| }} | ||
| /> | ||
| </div> | ||
| </div> | ||
| </> | ||
| ) | ||
| } | ||
|
|
||
| export default EngineTokensList; |
This file contains hidden or 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.
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.
Please, do not use
async/awaitandthenconstructions together.It should be: