Socket
Socket
Sign inDemoInstall

interpolate-components

Package Overview
Dependencies
44
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    interpolate-components

A module to turn strings into structured React components without dangerouslyInsertInnerHTML()


Version published
Maintainers
1
Install size
10.2 MB
Created

Changelog

Source

1.0.1

  • Separate project into src and lib folders to enable transpilation on npm publish.

Readme

Source

Interpolate-Components

The Interpolate-Components module takes an options object that includes:

mixedString

A string that contains component tokens to be interpolated

components

An object with components assigned to named attributes

throwErrors

Whether errors should be thrown (as in pre-production environments) or we should more gracefully return the un-interpolated original string (as in production). This is optional and is false by default.

The Interpolate-Components module takes these input options and returns a component object containing a mix of strings and descendent components that can be injected into a React element. This allows us to mix markup and content in a string without having to inject that markup using _dangerouslySetInnerHTML(). This is particularly useful for translation purposes, where it hinders translation to separate markup from content.

Component tokens are strings (containing letters, numbers, or underscores only) wrapped inside double-curly braces and have an opening, closing, and self-closing syntax, similar to html.

var example = '{{link}}opening and closing syntax example{{/link}}',
    example2 = 'Here is a self-closing example: {{input/}}';

Example usage:

/** @jsx React.DOM */

var interpolateComponents = require( 'lib/interpolate-components' ),
    example = 'This is a {{em}}fine{{/em}} example.',
    components = {
        em: <em />
    },
    children = interpolateComponents( {
        mixedString: example,
        components; components
    } ),
    jsxExample = <p>{ children }</p>;

// will render as:
// <p>This is a <em>fine</em> example.</p>

Keywords

FAQs

Last updated on 07 Jan 2016

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc