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

@permettezmoideconstruire/prismic-reactjs

v1.3.0

Published

render prismic rich text as React Element

Downloads

5

Readme

alt text

npm version Build Status

Prismic Rich (💰) Text, for React

A simple utility to render Rich Text with Prismic API V2

Prismic provides content writers with a WYSIWYG editor. It's awesome for formatting text but harder to deal with on client side. Fortunately, Prismic React provides utilities to tackle this exact issue!

Based on prismic-richtext, it allows you to render Prismic generated Rich Text as React components. It's meant to work in pair with the prismic-javascript library, a new javascript kit for the prismic API v2 available here.

Installation

Prismic Api Endpoint

First and foremost, make sure you're using the V2 API. Your prismic-configuration.js (or equivalent) should probably contain a line like this one (or equivalent) 👇

apiEndpoint: your-repo-name.prismic.io/api/v2

Consider polyfilling:

NPM

👇 Prismic React is on npm...

npm install prismic-reactjs --save

CDN

... and on CDN!

https://unpkg.com/prismic-reactjs

(You may need to adapt the version number)

Downloadable version

You'll find downloadable versions on our release page: https://github.com/prismicio/prismic-reactjs/releases.

The kit is universal, it can be used:

  • Server-side with NodeJS
  • Client-side as part of your build with Browserify, Parcel, webpack...
  • Client-side with a simple script tag

Usage

Although this package is mainly about RichText, Prismic React exposes 3 utilities. Import them in your project this way:

import {Date, Link, RichText} from 'prismic-reactjs';

Date utility

Like Link, Date is directly imported from prismic-helpers. It converts a Date string received from the API, to an ISO (8601) Javascript Date (ie. something you're used to work with):

Date(mydoc.data.mydate)

Link utility

Link generates links to documents within your website (and outside). Give it a Link fragment and you'll get a full fledged url:

Link.url(mydoc.data.mylink, ctx.linkResolver)

👆Note that linkResolver argument is not required if you are 100% sure that your're not linking to a document !

RichText Component

RichText is a simple React component used to render a Rich Text. If you've been used to work with RichText.render, you're pretty much good to go!

Basic example

This is the most basic way to make it work, where myDoc.data.title is (obviously) a Rich Text object. linkResolver will be triggered everytime RichText meets a link and wants to correctly resolve it.

  import { RichText } from 'prismic-reactjs';

  // Use linkResolver if you *actually* have links
  const linkResolver = (doc) => {
    switch (doc.type) {
        case ('homepage'): return '/'
    }
  }

  const Header = (myDoc) => (
    <header>
        <RichText
            render={myDoc.data.title}
            linkResolver={linkResolver}
        />
    </header>
  );
  export default Header;

As text

Occasionally, you may require to render not a component, but a simple string. Use RichText's static property asText to do so:

  const Title = (myDoc) => (
    <h1>
        {RichText.asText(myDoc.data.title)}
    </h1>
  )

Creating a custom Link

Under the hood, prismic-richtext takes your rich text data and serializes it. Based on your data type (ie. heading, paragraph, list, link...), it creates an HTML template and renders it as a React component. Most of the time, it's enough: a list will always be a list. But if you work with React, you'll probably want to render Prismic links as React router dom Link instead of <a> tags. We created a property called serializeHyperlink, just for that:

const myCustomLink = (type, element, content, children, index) => (
  <Link key={element.data.id} to={linkResolver(element.data)}>
    <a>{content}</a>
  </Link>
);
  const MyComponent = (myDoc) => (
    <div>
        <RichText
            render={myDoc.data.textWithLinks}
            serializeHyperlink={myCustomLink}
        />
    </div>

Passing your own serializer

If serializeHyperlink is not enough, you can alternatively pass an htmlSerializer function. Full example and all accessible elements can be found here. If you need examples or help on this, feel free to open an issue!

Wrapping your rich text in a React component

Out of the box, RichText wraps your content in a React.fragment. But you can pass an optional Component property to RichText component. Re-writing our first example, we could simply pass header to Component:

  const Header = (myDoc) => <RichText render={myDoc.data.title} Component="header" />

Deprecation

In earlier versions of Prismic React, rich text rendering was deferred to a method called render. This method is still accessible, although it doesn't seem to offer any advantage over a React component. If you disagree, please let me know!

example use


import { RichText } from 'prismic-reactjs';

const Header = (myDoc) => (
    <header>
        {RichText.render(myDoc.data.title)}
    </header>
);

👆 Please note that this method is now a static property of RichText component.

Install the kit locally

Source files are in the src/ directory. You only need Node.js and npm to work on the codebase.

npm install
npm run dev

License

This software is licensed under the Apache 2 license, quoted below.

Copyright 2013-2019 Prismic.io (http://prismic.io).

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this project except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.