Skip to content

Commit feabc56

Browse files
author
Yvain Liechti
committed
move variables to env
1 parent bb036fa commit feabc56

File tree

3 files changed

+53
-19
lines changed

3 files changed

+53
-19
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,7 @@ Board to follow Hacktoberfest participation
1313
```
1414
export GITHUB_API_LOGIN="yourLogin"
1515
export GITHUB_API_TOKEN="yourToken"
16+
export GITHUB_ORG="yourOrg"
17+
export GITHUB_ORg_TEAM="yourOrgTeam"
1618
```
1719
5. Start to dev `npm run start`

src/getData.js

+45-18
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,47 @@ function getQuery(login) {
2828
`
2929
}
3030

31-
module.exports = async (username, token, org, verbose) => {
31+
module.exports = async ({
32+
username,
33+
token,
34+
org,
35+
team,
36+
verbose,
37+
}) => {
3238
const auth = `Basic ${btoa(`${username}:${token}`)}`;
3339

40+
const query = (team) ? `
41+
query {
42+
organization(login:"${org}") {
43+
team(slug:"${team}") {
44+
members(first: 100) {
45+
edges {
46+
node {
47+
login
48+
name
49+
avatarUrl
50+
}
51+
}
52+
}
53+
}
54+
}
55+
}
56+
` : `
57+
query {
58+
organization(login:"${org}") {
59+
membersWithRole(first: 100) {
60+
edges {
61+
node {
62+
login
63+
name
64+
avatarUrl
65+
}
66+
}
67+
}
68+
}
69+
}
70+
`;
71+
3472
if (verbose) { console.info('Fetch org members'); }
3573
const response = await fetch(`https://api.github.com/graphql`, {
3674
method: 'POST',
@@ -40,31 +78,20 @@ module.exports = async (username, token, org, verbose) => {
4078
'Accept': 'application/json',
4179
},
4280
body: JSON.stringify({
43-
query:`
44-
query {
45-
organization(login:"${org}") {
46-
membersWithRole(first: 100) {
47-
edges {
48-
node {
49-
login
50-
name
51-
avatarUrl
52-
}
53-
}
54-
}
55-
}
56-
}
57-
`,
81+
query
5882
}),
5983
});
6084

6185

6286
if (false === response.ok) {
6387
return;
6488
}
65-
const { data : { organization : { membersWithRole : { edges } } } } = await response.json();
6689

67-
const membersStats = edges.map(async ({node}) => {
90+
const jsonResponse = await response.json();
91+
92+
const membersInfo = team ? jsonResponse.data.organization.team.members.edges : jsonResponse.data.organization.membersWithRole.edges;
93+
94+
const membersStats = membersInfo.map(async ({node}) => {
6895
if (verbose) { console.info(`Fetch "${node.login}" pull request counter.`); }
6996
try {
7097
const responcePR = await fetch(`https://api.github.com/graphql`, {

webpack.config.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,12 @@ const HtmlWebpackPlugin = require('html-webpack-plugin');
2727
*/
2828

2929
module.exports = async () => {
30-
const data = await getMembersData(process.env.GITHUB_API_LOGIN, process.env.GITHUB_API_TOKEN, 'cleverage');
30+
const data = await getMembersData({
31+
username: process.env.GITHUB_API_LOGIN,
32+
token: process.env.GITHUB_API_TOKEN,
33+
org: process.env.GITHUB_ORG,
34+
team: process.env.GITHUB_ORG_TEAM,
35+
});
3136

3237
return {
3338
mode: 'development',

0 commit comments

Comments
 (0)