Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
react-text-format
Advanced tools
React Component to find and parse links, emails, phone numbers, credit cards and keywords to required format.
React Component to find and parse links, emails, phone numbers, image's URL, credit cards and keywords to required format.
yarn add react-text-format
or
npm install react-text-format --save
Name | Type | Default |
---|---|---|
allowedFormats | Array ['URL', 'Email', 'Image', 'Phone', 'CreditCard'] | ['URL', 'Email', 'Phone'] |
linkTarget | String (_blank | _self | _parent | _top | framename) | _self |
terms | Array of strings | [] |
linkDecorator | React.Node (decoratedHref: string, decoratedText: string, linkTarget: string) | Output Format: <a href="{URL}" target="{target}" rel='noopener' className='rtfLink'> <URL> </a> |
emailDecorator | React.Node (decoratedHref: string, decoratedText: string) | Output Format:<a href="mailto: {EMAIL ADDRESS}" className='rtfEmail'> {EMAIL ADDRESS} </a> |
phoneDecorator | React.Node (decoratedText: string) | Output Format<a href="tel:{PHONE NUMBER}" className='rtfEmail'> {PHONE NUMBER} </a> |
creditCardDecorator | React.Node (decoratedText: string) | Output Format: <span className='rtfCreditCard'> {CREDIT CARD NUMBER} </span> |
imageDecorator | React.Node (decoratedURL: string) | Output Format: <img src="{URL OF IMAGE}" rel='noopener' className='rtfImage' /> |
termDecorator | React.Node (decoratedText: string) | Output Format: <span className='rtfTerm'>{decoratedText}</span> |
import ReactTextFormat from 'react-text-format';
React.render(
<ReactTextFormat>
This is demo link http://www.google.com
This is demo email <span data-email="miller@yahoo.com">miller@yahoo.com</span>
This is demo image https://preview.ibb.co/hqhoyA/lexie-barnhorn-1114350-unsplash.jpg
This is demo credit Card 5555555555554444
This is demo phone Number 123.456.7890
This is demo phone Number (212) 555 1212
This is demo phone Number (212) 555-1212
This is demo phone Number 212-555-1212 ext. 101
This is demo phone Number 212 555 1212 x101
This is an anchor <a href="http://formatter.com">http://formatter.com</a>;
</ReactTextFormat>,
document.body
);
import ReactTextFormat from 'react-text-format';
customLinkDecorator = (
decoratedHref: string,
decoratedText: string,
linkTarget: string
): React.Node => {
return (
<a
href={decoratedHref}
target={linkTarget}
rel='noopener'
className='customLink'
>
{decoratedText}
</a>
)
}
customImageDecorator = (
decoratedURL: string
): React.Node => {
return (
<div>
<img src={decoratedURL} rel='noopener' width="100" className='customImage' />
</div>
)
}
customEmailDecorator = (
decoratedHref: string,
decoratedText: string
): React.Node => {
return (
<a href={decoratedHref} className='customEmail'>
{decoratedText}
</a>
)
}
customPhoneDecorator = (
decoratedText: string
): React.Node => {
return (
<a href={`tel:${decoratedText}`} className='customPhone'>
{decoratedText}
</a>
)
}
customCreditCardDecorator = (
decoratedText: string
): React.Node => {
return (
<i className='customCreditCard'>
<b>{decoratedText}</b>
</i>
)
}
customTermDecorator = (decoratedText: string): React.Node => {
return (
<b className="keyword">
{decoratedText}
</b>
);
};
React.render(
<ReactTextFormat
allowedFormats={['URL', 'Email', 'Image', 'Phone', 'CreditCard']}
linkDecorator={customLinkDecorator}
emailDecorator={customEmailDecorator}
phoneDecorator={customPhoneDecorator}
creditCardDecorator={customCreditCardDecorator}
imageDecorator={customImageDecorator}
terms={["Link", "phone", "image", "Anchor", "email", "Credit"]}
termDecorator={customTermDecorator}
>
This is demo link http://www.google.com
This is encoded Link http://go%2Emsn%2Ecom/nl/133942%2Easp
This is demo email <span data-email="miller@yahoo.com">miller@yahoo.com</span>
This is demo image
https://preview.ibb.co/hqhoyA/lexie-barnhorn-1114350-unsplash.jpg
This is demo credit Card 5555555555554444
This is demo phone Number 123.456.7890
This is demo phone Number (212) 555 1212
This is demo Phone Number (212) 555-1212
This is demo phone Number 212-555-1212 ext. 101
This is demo phone Number 212 555 1212 x101
This is an anchor <a href="http://formatter.com">http://formatter.com</a>;
</ReactTextFormat>,
document.body
);
FAQs
React Component to find and parse links, emails, phone numbers, credit cards and keywords to required format.
The npm package react-text-format receives a total of 696 weekly downloads. As such, react-text-format popularity was classified as not popular.
We found that react-text-format demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.