mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-23 22:48:07 +01:00
32ec0d2472
Port 55e7c08a83
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
27 lines
741 B
TypeScript
27 lines
741 B
TypeScript
import { Icon } from './icon';
|
|
|
|
const domParser = new DOMParser();
|
|
|
|
const stripRelMe = (html: string) => {
|
|
const document = domParser.parseFromString(html, 'text/html').documentElement;
|
|
|
|
document.querySelectorAll<HTMLAnchorElement>('a[rel]').forEach((link) => {
|
|
link.rel = link.rel
|
|
.split(' ')
|
|
.filter((x: string) => x !== 'me')
|
|
.join(' ');
|
|
});
|
|
|
|
const body = document.querySelector('body');
|
|
return body ? { __html: body.innerHTML } : undefined;
|
|
};
|
|
|
|
interface Props {
|
|
link: string;
|
|
}
|
|
export const VerifiedBadge: React.FC<Props> = ({ link }) => (
|
|
<span className='verified-badge'>
|
|
<Icon id='check' className='verified-badge__mark' />
|
|
<span dangerouslySetInnerHTML={stripRelMe(link)} />
|
|
</span>
|
|
);
|