* Change to using arrow functions Co-authored-by: v1b3m <vibenjamin6@gmail.com> Co-authored-by: Matheus <matheus_benini@hotmail.com> * Add lint rule --------- Co-authored-by: v1b3m <vibenjamin6@gmail.com> Co-authored-by: Matheus <matheus_benini@hotmail.com> Co-authored-by: Charles Bochet <charles@twenty.com>
60 lines
1.3 KiB
TypeScript
60 lines
1.3 KiB
TypeScript
import * as React from 'react';
|
|
import styled from '@emotion/styled';
|
|
|
|
import { RoundedLink } from './RoundedLink';
|
|
|
|
export enum LinkType {
|
|
Url = 'url',
|
|
LinkedIn = 'linkedin',
|
|
Twitter = 'twitter',
|
|
}
|
|
|
|
type OwnProps = {
|
|
href: string;
|
|
children?: React.ReactNode;
|
|
type?: LinkType;
|
|
onClick?: (event: React.MouseEvent<HTMLElement>) => void;
|
|
};
|
|
|
|
const StyledRawLink = styled(RoundedLink)`
|
|
overflow: hidden;
|
|
|
|
a {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
`;
|
|
|
|
export const SocialLink = ({ children, href, onClick, type }: OwnProps) => {
|
|
let displayValue = children;
|
|
|
|
if (type === 'linkedin') {
|
|
const matches = href.match(
|
|
/(?:https?:\/\/)?(?:www.)?linkedin.com\/(?:in|company)\/([-a-zA-Z0-9@:%_+.~#?&//=]*)/,
|
|
);
|
|
if (matches && matches[1]) {
|
|
displayValue = matches[1];
|
|
} else {
|
|
displayValue = 'LinkedIn';
|
|
}
|
|
}
|
|
|
|
if (type === 'twitter') {
|
|
const matches = href.match(
|
|
/(?:https?:\/\/)?(?:www.)?twitter.com\/([-a-zA-Z0-9@:%_+.~#?&//=]*)/,
|
|
);
|
|
if (matches && matches[1]) {
|
|
displayValue = `@${matches[1]}`;
|
|
} else {
|
|
displayValue = '@twitter';
|
|
}
|
|
}
|
|
|
|
return (
|
|
<StyledRawLink href={href} onClick={onClick}>
|
|
{displayValue}
|
|
</StyledRawLink>
|
|
);
|
|
};
|