Merge pull request #7949 from tommylung/main
Support Weibo as the social links
This commit is contained in:
commit
ad4c4343f3
2 changed files with 13 additions and 0 deletions
|
@ -8,6 +8,7 @@ import { faPinterestSquare } from '@fortawesome/free-brands-svg-icons';
|
|||
import { faSnapchatSquare } from '@fortawesome/free-brands-svg-icons';
|
||||
import { faTwitterSquare } from '@fortawesome/free-brands-svg-icons';
|
||||
import { faVk } from '@fortawesome/free-brands-svg-icons';
|
||||
import { faWeibo } from '@fortawesome/free-brands-svg-icons';
|
||||
import { faYoutubeSquare } from '@fortawesome/free-brands-svg-icons';
|
||||
|
||||
export default function CategoryRowSocialLinks(props) {
|
||||
|
@ -50,6 +51,12 @@ export default function CategoryRowSocialLinks(props) {
|
|||
<a key='vk' target='_blank' href={href}><FontAwesomeIcon icon={faVk} size='lg' /></a>
|
||||
);
|
||||
}
|
||||
if (props.weibo) {
|
||||
href = 'https://weibo.com/' + props.weibo;
|
||||
items.push(
|
||||
<a key='weibo' target='_blank' href={href}><FontAwesomeIcon icon={faWeibo} size='lg' /></a>
|
||||
);
|
||||
}
|
||||
if (props.snapchat) {
|
||||
href = 'https://www.snapchat.com/add/' + props.snapchat;
|
||||
items.push(
|
||||
|
|
|
@ -367,6 +367,12 @@ function processEntities(result) {
|
|||
target.identities.vk = vkUser;
|
||||
}
|
||||
|
||||
// P3579 - Sina Weibo user ID
|
||||
const weiboUser = getClaimValue(entities, 'P3579');
|
||||
if (weiboUser) {
|
||||
target.identities.weibo = weiboUser;
|
||||
}
|
||||
|
||||
// P3836 - Pinterest ID
|
||||
const pinterestUser = getClaimValue(entity, 'P3836');
|
||||
if (pinterestUser) {
|
||||
|
|
Loading…
Add table
Reference in a new issue