suyanhanx commented on code in PR #3680:
URL:
https://github.com/apache/incubator-opendal/pull/3680#discussion_r1413127723
##########
website/src/components/committers/index.jsx:
##########
@@ -0,0 +1,53 @@
+import React from 'react'
+import styles from './index.module.css'
+
+// Sorted by apacheId
+const committers = [
+ { githubId: 'ClSlaid', apacheId: 'cailue', name: 'Cai Lue', isPMC: true },
+ { githubId: 'Young-Flash', apacheId: 'dongyang', name: 'Dongyang Zheng',
isPMC: false },
+ { githubId: 'G-XD', apacheId: 'gxd', name: 'Xiangdong', isPMC: false },
+ { githubId: 'Hexiaoqiao', apacheId: 'hexiaoqiao', name: 'Xiaoqiao He',
isPMC: true },
+ { githubId: 'oowl', apacheId: 'junouyang', name: 'Jun Ouyang', isPMC: false
},
+ { githubId: 'dqhl76', apacheId: 'liuqingyue', name: 'Liuqing Yue', isPMC:
false },
+ { githubId: 'Zheaoli', apacheId: 'manjusaka', name: 'Zheao Li', isPMC: false
},
+ { githubId: 'messense', apacheId: 'messense', name: 'Lusheng Lyu', isPMC:
false },
+ { githubId: 'morristai', apacheId: 'morristai', name: 'Morris Tai', isPMC:
false },
+ { githubId: 'WillemJiang', apacheId: 'ningjiang', name: 'Willem Ning Jiang',
isPMC: true },
+ { githubId: 'PsiACE', apacheId: 'psiace', name: 'Chojan Shang', isPMC: true
},
+ { githubId: 'silver-ymz', apacheId: 'silver', name: 'Mingzhuo Yin', isPMC:
true },
+ { githubId: 'sundy-li', apacheId: 'sundyli', name: 'Sundy Li', isPMC: true },
+ { githubId: 'suyanhanx', apacheId: 'suyanhanx', name: 'Han Xu', isPMC: true
},
+ { githubId: 'tedliu1', apacheId: 'tedliu', name: 'Ted Liu', isPMC: true },
+ { githubId: 'tisonkun', apacheId: 'tison', name: 'Zili Chen', isPMC: true },
+ { githubId: 'wu-sheng', apacheId: 'wusheng', name: 'Sheng Wu', isPMC: true },
+ { githubId: 'Xuanwo', apacheId: 'xuanwo', name: 'Hao Ding', isPMC: true },
+ { githubId: 'Ji-Xinyou', apacheId: 'xyji', name: 'Xinyou Ji', isPMC: false }
+]
+
+export default function Committers() {
+ return <>
+ <table>
+ <thead>
+ <tr>
+ <th><b>Avatar</b></th>
+ <th><b>Name</b></th>
+ <th><b>Apache ID</b></th>
+ <th><b>GitHub ID</b></th>
+ </tr>
+ </thead>
+ <tbody>
+ {committers
+ .sort((c0, c1) => c0.apacheId.localeCompare(c1.apacheId))
+ .map(v => (
+ <tr key={v.name}>
+ <td><img width={64} className={styles.contributorAvatar}
+ src={`https://github.com/${v.githubId}.png`}
alt={v.name}/></td>
+ <td>{v.isPMC ? <b>{v.name}</b> : v.name}</td>
+ <td>{v.apacheId}</td>
Review Comment:
Is there a specific need?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]