npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-elements-templates

v1.0.0

Published

String templates which can accept React Elements as data values (parameters). Tiny and zero dependencies.

Downloads

9

Readme

React Elements Templates Build Status

String templates that can accept React Elements as data values (parameters). Tiny (less then 1kb), zero runtime dependencies.


Install:

npm i react-elements-templates
yarn add react-elements-templates

Templates are great tools for decoupling your code and user messages, but usually they fall short if you data values come not as simple strings, but as HTML or React components.

[!IMPORTANT] React Elements Templates can take any ReactNode (Element, string, array, etc - basically anything that's valid in JSX) and put it in the right place inside your string template. The returned value is React Fragment (or string in some simple cases) which can be used in you JSX right away.

TypeScript can analyze your templates and make sure they're getting all values they need at compile time, see Usage with TypeScript.


Basic use cases

Imports:

// Basic:
import T from 'react-elements-templates'
// default, T is React component
// feel free to import under whatever name you like

// Everything:
import {
  T, Template, //  React component
  t, template, //  alternatively, function with the same return type - use whatever feels best
  initT , initTemplate // factory function to customize templates, see below
} from 'react-elements-templates'

Simple string - works like any template:

const message = "%greeting%, %towhom%! :)";
//...

<SomeJSX>
  <T values={{greeting:'hello', towhom:'world'}}>{message}</T>
</SomeJSX>

// OR there's function version t(...) or template(...) with the same return signature. Use whatever feels best for your code.

const content = t(message, {greeting:'hello', towhom:'world'});
<SomeJSX>{content}</SomeJSX>

You can use any delimiters you like instead of %...%, see Customizing.

With Html element as value:

const message = "Hello, %profile_link%! We are happy to see you again.";
//...

<T values={{
  profile_link:<a href={user.profile}>{user.name}</a>
}}>{TEXT.GREETING}</T>
// Equivalent to following inline JSX: 
// <>Hello,{<a href="https://mysite.com/bill">Bill</a>}! We are happy to see you again.</>

Third party or custom React component:

const message = "Please contact use at %link%";
//...

<T values={{
  link: <Link href={'https://'+settings.feedback_link}>{settings.feedback_link_text}</Link>
}}>{message}</T>

Array of elements (don't forget key prop):

<T values={{phones: settings.phones.map(ph=>
  <p><a href={"tel:"+ph} key={ph}>{ph}</a></p>
)}}>{TEXT.CONTACT_US}</T>
// Returns Fragment containing each phone number wrapped in <a> and <p> elements

And so on - any {value} that can go inside JSX can be passed as data value to template.


Customizing

To get customized version of React Elements Templates you can use initT (or initTemplate) factory function called with options object:

import {initT} from 'react-elements-templates'  //or initTemplate

const {T : MyT} = initT({ 
// returns object containing normally exported values - {t, T, template, Template} - now customized
  delimiters:['{{','}}'] as const, 
  // tuple of [start, end] custom delimiters. Omit "as const" if you're not using TypeScript, see below
  throwInDev:false 
  // won't throw errors of missing placeholder or value even in development, see below
});

<MyT values={{custom:"cool"}}>
  {'my template with {{custom}} syntax'}
</MyT>

Also you can pass options object as a prop for single-use customization:

<T values={{custom:"cool"}}
  options={{delimiters:['{{','}}'] as const}} {/*Omit "as const" if you're not using TypeScript, see below*/}
>
  {'my template with {{custom}} syntax'}
</T>;

// OR as third argument to function t(...)

t('my template with {{custom}} syntax',
  {custom:"cool"},
  {delimiters:['{{','}}'] as const}/*Omit "as const" if you're not using TypeScript, see below*/
);

Errors thrown in Development

Don't let nasty placeholders to creep into UI! By default React Elements Templates will throw an error on render in development if:

  1. value for placeholder found in template was not provided
  2. template doesn't contain certain placeholder for which value was provided
const message = 'and %foo% ,and %bar%';
//...

<T values={{foo: 'Foo!'}}>{message}</T>
// Error: Value for placeholder "bar" in template "and %foo%, and %bar%" was not provided.

<T values={{
  foo: 'Foo!',
  bar: 'Bar!',
  foobar: 'FooBar!'
}}>{message}</T>
// Error: Placeholder "foobar" value was not utilized in template the 'and %foo% ,and %bar%'.

[!IMPORTANT] Those errors are NEVER thrown in production (if process.env['NODE_ENV'] is not 'development'), in which case template is silently rendered as is.

Behavior can be turned off, see Customizing.

Also see Usage with TypeScript on how to catch those at compile time!


Usage with TypeScript

Here's a good one :-) If your template string values are defined "as const" (their type is string literal, not simply 'string'), TS will be able to make sure all values are provided for every given template:

const TEXT = {
  ABOUT:"the %life%, the %universe%..."
  // etc...
} as const;
//...

<T values={{
  universe: '42'
}}>{TEXT.ABOUT}</T>;
//Property 'life' is missing in type '{ universe: string }' but required in type '{ life: ReactNode; universe: ReactNode }'.

<T values={{
  life:42,
  universe:42, 
  everything:42
}}>{TEXT.ABOUT}</T>
// Object literal may only specify known properties, and 'everything' does not exist in type '{ life: ReactNode; universe: ReactNode }'.

[!TIP] NOTE: If you're importing you text from JSON file check out this for hacks on how to make them "as const". Or maybe by time you're reading this TS supports it out of the box already!

Also don't forget "as const" if you're passing custom delimiters (either to initT factory or component/function directly). Otherwise TS will infer its types as [string, string] and accept values object with any keys.

initT({delimiters: ['{{','}}'] as const});

<T values={{}}
  options={{delimiters:['{{','}}'] as const}}
>{'some template'}</T>

MIT