https://github.com/Steemia/Steemia
Voting Power on Menu & UI Changes
I wrote a progress bar for voting power but since it is not nice with the UI, I added it to side menu with an icon. Voting power is calculated in the backend. If you want to see how it is calculated, you can review it on GitHub.
Transfer History on Wallet
Considering the suggestions of our users we added the transfer data to the wallet page.
In order to show the transfer history in the wallet, the transfers have to be picked from activity data. So, activity is also querying the transfer history but the transfer data need to be picked from the activities.
private dispatchTransfers() {
this.steemia.dispatch_activity(query).then(data => {
// Reverse data to sort by date
let activities = data.reverse();
// Pick transfer data from activities
for(let activity of activities) {
if (activity[1].op[0] === 'transfer') {
this.transfers.push(activity)
}
}
});
}
https://github.com/Steemia/Steemia/pull/89
https://github.com/Steemia/Steemia/pull/96
https://github.com/Steemia/Steemia/pull/98
Wallet Form Validations
https://github.com/Steemia/Steemia/pull/96/commits/c08956a9c9ff7a182a99919f00705ab62ac9f8b2
Post Single Page UI Changes
https://github.com/Steemia/Steemia/commit/a60c558dd51a9118322426d7068e9be2f7cf9b64
New Language File
https://github.com/Steemia/Steemia/commit/0487ae94d46d5cc30df963e6e2b78a290ca27eac
https://github.com/Steemia/Steemia/commit/67ded42c91e30d6146d72340b7fd8906b6c1e34c
You just need to fork the following repository, feel free to send us a Pull Request... 🎊🎉
https://github.com/Steemia/Steemia