Add achievements plugin support for organization account (#230)

This commit is contained in:
Simon Lecoq
2021-04-13 13:46:45 +02:00
committed by GitHub
parent 5cb4bb6c28
commit 71381132aa
10 changed files with 509 additions and 268 deletions

View File

@@ -61,6 +61,7 @@
following:{totalCount:faker.datatype.number(10000)},
bio:faker.lorem.sentence(),
status:{message:faker.lorem.paragraph()},
sponsorshipsAsSponsor:{totalCount:faker.datatype.number(100)},
},
})
}

View File

@@ -0,0 +1,33 @@
/**Mocked data */
export default function({faker, query, login = faker.internet.userName()}) {
console.debug("metrics/compute/mocks > mocking graphql api result > achievements/organizations")
return ({
organization:{
repositories:{
nodes:[
{
createdAt:faker.date.recent(),
nameWithOwner:`${faker.internet.userName()}/${faker.lorem.slug()}`,
},
],
totalCount:faker.datatype.number(100),
},
forks:{
nodes:[
{
createdAt:faker.date.recent(),
nameWithOwner:`${faker.internet.userName()}/${faker.lorem.slug()}`,
},
],
totalCount:faker.datatype.number(100),
},
popular:{
nodes:[{stargazers:{totalCount:faker.datatype.number(50000)}}],
},
projects:{totalCount:faker.datatype.number(100)},
packages:{totalCount:faker.datatype.number(100)},
membersWithRole:{totalCount:faker.datatype.number(100)},
sponsorshipsAsSponsor:{totalCount:faker.datatype.number(100)},
},
})
}

View File

@@ -37,7 +37,7 @@
</button>
</div>
<small class="info">
Display rankings, highlights, commits calendar, used languages and recent activity from any user account!
Display rankings, contributions, highlights, commits calendar, used languages and recent activity from any user account!
</small>
<small class="info" v-if="metrics">
Share this profile using <a :href="url">{{ url }}</a>
@@ -66,7 +66,7 @@
</div>
</section>
<div class="rankeds" v-if="account.type === 'user'">
<div class="rankeds">
<div v-for="{icon, title, text, rank, progress, value, leaderboard = null} in ranked" class="ranked" :class="{[rank.charAt(0).toLocaleLowerCase()]:rank !== '$', secret:rank === '$'}">
<div class="icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60" height="44" width="44">
@@ -104,7 +104,7 @@
</div>
</section>
<section class="container" v-if="account.type === 'user'">
<section class="container">
<h2>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16"><path d="M8.5.75a.75.75 0 00-1.5 0v5.19L4.391 3.33a.75.75 0 10-1.06 1.061L5.939 7H.75a.75.75 0 000 1.5h5.19l-2.61 2.609a.75.75 0 101.061 1.06L7 9.561v5.189a.75.75 0 001.5 0V9.56l2.609 2.61a.75.75 0 101.06-1.061L9.561 8.5h5.189a.75.75 0 000-1.5H9.56l2.61-2.609a.75.75 0 00-1.061-1.06L8.5 5.939V.75z"></path></svg>
Highlights