Merge pull request #7949 from tommylung/main

Support Weibo as the social links
This commit is contained in:
UKChris-osm 2023-04-10 09:32:05 +01:00 committed by GitHub
commit ad4c4343f3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 0 deletions

View file

@ -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(

View file

@ -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) {