mirror of
https://github.com/Kong/insomnia
synced 2024-11-12 17:26:32 +00:00
7f86b46417
* Added error boundaries for better failing * Fix regex escaping (fixes #525) * Many more error boundaries
37 lines
792 B
JavaScript
37 lines
792 B
JavaScript
// @flow
|
|
import * as React from 'react';
|
|
import autobind from 'autobind-decorator';
|
|
import * as querystring from '../../../common/querystring';
|
|
import Link from './link';
|
|
|
|
type Props = {|
|
|
email: string,
|
|
children?: React.Node,
|
|
subject?: string,
|
|
body?: string,
|
|
|};
|
|
|
|
@autobind
|
|
class Mailto extends React.PureComponent<Props> {
|
|
render () {
|
|
const {email, body, subject, children} = this.props;
|
|
|
|
const params = [];
|
|
if (subject) {
|
|
params.push({name: 'subject', value: subject});
|
|
}
|
|
if (body) {
|
|
params.push({name: 'body', value: body});
|
|
}
|
|
|
|
const qs = querystring.buildFromParams(params);
|
|
const href = querystring.joinUrl(`mailto:${email}`, qs);
|
|
|
|
return (
|
|
<Link href={href}>{children || email}</Link>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default Mailto;
|