🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

string-to-jsx-loader

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

string-to-jsx-loader

Webpack loader that converts strings to JSX

0.0.2
latest
Source
npm
Version published
Weekly downloads
8
Maintainers
1
Weekly downloads
 
Created
Source

string-to-jsx-loader npm FOSSA Status

Install

$ npm install -S string-to-jsx-loader

Configuration

webpack.config.js

module.exports = {
	module: {
		rules: {
			enforce: 'pre',
			test: /\.json$/,
			include: [resolve(__dirname, 'some/folder')],
			use: [
				{ loader: 'babel-loader' },
				{ loader: 'string-to-jsx-loader' }
			]
		}
	}
}

Example

For example, this can be used as a translation library (see preact-jsx-i18n)

{
	"text": "Hello!",
	"variable": "Hello {name}",
	"buy": "Buy {item} for {money}?",
	"html": "This <b>works</b><i>too</i>!",
	"complexHtml": "You can even <span>{nested} <b>{elements}</b></span>!"
}

becomes

{
	text: 'Hello!',
	variable: ({ name }) => ['Hello ', name],
	buy: ({ item, money }) => ['Buy ', item, ' for ', money, '?'],
	html: ['This ', <b>works</b>, <i>too</i>, '!'],
	complexHtml: ({ nest, elements }) => ['You can even ', <span>{nest} <b>{elements}</b></span>, '!']
}

which can then simply be used in JSX components:

import dictionary from './en.json'

const Translate = ({ id, ...props }) => typeof dictionary[id] === 'function' ? dictionary[id](props) : dictionary[id]
const Item = ({ name }) => (<div style={{ color: 'red' }}>{name}</div>)
const Money = ({ amount }) => (<div style={{ color: 'yellow' }}>${amount}</div>)

<Translate id="buy" item={<Item name="Computer" />} money={<Money amount={2000} />}>

License

FOSSA Status

Keywords

webpack

FAQs

Package last updated on 24 Mar 2020

Did you know?

Socket

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