Contributor profiles #135

Merged
raucao merged 8 commits from feature/contributor_profiles into master 2019-07-12 09:42:27 +00:00
raucao commented 2019-07-11 08:04:51 +00:00 (Migrated from github.com)

This adds the basic layout and functionality for rendering (linkable) details in a third column/pane, and as first addition it implements basic contributor profile cards. Account links and stats are still missing, but easy to add from here on.

See commits for some more details.

Screenshot from 2019-07-11 10-05-44

This adds the basic layout and functionality for rendering (linkable) details in a third column/pane, and as first addition it implements basic contributor profile cards. Account links and stats are still missing, but easy to add from here on. See commits for some more details. ![Screenshot from 2019-07-11 10-05-44](https://user-images.githubusercontent.com/842/61033295-777ad680-a3c3-11e9-973b-aec95be8c307.png)
raucao commented 2019-07-11 13:34:55 +00:00 (Migrated from github.com)

Now also includes account links:

Screenshot from 2019-07-11 15-31-17

Now also includes account links: ![Screenshot from 2019-07-11 15-31-17](https://user-images.githubusercontent.com/842/61055287-68ab1880-a3f1-11e9-90fa-de3d0910de12.png)
galfert (Migrated from github.com) approved these changes 2019-07-12 09:35:27 +00:00
galfert (Migrated from github.com) left a comment

Very nice.

Very nice.
@@ -0,0 +1,15 @@
import Component from '@ember/component';
galfert (Migrated from github.com) commented 2019-07-12 09:25:07 +00:00

Necessary information? ;)

Necessary information? ;)
raucao (Migrated from github.com) reviewed 2019-07-12 09:38:47 +00:00
@@ -0,0 +1,15 @@
import Component from '@ember/component';
raucao (Migrated from github.com) commented 2019-07-12 09:38:47 +00:00

Haha, good catch. :)

Haha, good catch. :) ```suggestion ```
bumi (Migrated from github.com) reviewed 2019-07-12 09:48:50 +00:00
bumi (Migrated from github.com) left a comment

this is super cool!

this is super cool!
@@ -0,0 +28,4 @@
<p>
<a href="https://rinkeby.etherscan.io/address/{{model.account}}" class="button small" target="_blank" rel="noopener">Inspect Ethereum transactions</a>
{{#if model.ipfsHash}}
<a href="https://ipfs.io/ipfs/{{model.ipfsHash}}" class="button small" target="_blank" rel="noopener">Inspect IPFS profile</a>
bumi (Migrated from github.com) commented 2019-07-12 09:46:44 +00:00

we could use the gatewayUrl here

we could use the `gatewayUrl` here
raucao (Migrated from github.com) reviewed 2019-07-12 09:53:04 +00:00
@@ -0,0 +28,4 @@
<p>
<a href="https://rinkeby.etherscan.io/address/{{model.account}}" class="button small" target="_blank" rel="noopener">Inspect Ethereum transactions</a>
{{#if model.ipfsHash}}
<a href="https://ipfs.io/ipfs/{{model.ipfsHash}}" class="button small" target="_blank" rel="noopener">Inspect IPFS profile</a>
raucao (Migrated from github.com) commented 2019-07-12 09:53:04 +00:00

That was actually intentional, for two reasons:

  1. Have it be an independent source
  2. Have stuff be cached on ipfs.io so more nodes can distribute it
That was actually intentional, for two reasons: 1. Have it be an independent source 2. Have stuff be cached on ipfs.io so more nodes can distribute it
Sign in to join this conversation.