react-contentful-embedly
TypeScript icon, indicating that this package has built-in type declarations

0.1.1 • Public • Published

react-contentful-embedly

npm version CI Status

Display Embedly in contentful rich document with React Hooks

Motivation

Developer's perspective We use Embedly to display external content. To show Embedly cards in your sites and apps, you should use the relevant libraries provided by Embedly. See the documentation for more information.

Markdown editor documentation | Contentful

Install

$ npm install react-contentful-embedly
$ yarn add react-contentful-embedly

Usage

import React from 'react'
import { useEmbedly, EmbedlyAttributes } from 'react-contentful-embedly'
import { documentToReactComponents } from '@contentful/rich-text-react-renderer'
import { Document } from '@contentful/rich-text-types'
 
const Component = () => {
  const attributes: EmbedlyAttributes = { align: 'left' }
  const option = useEmbedly(attributes)
  // Or `const option = useEmbedly({ align: 'left' })`
 
  const documentIncludesEmbedly: Document = {
    nodeType: 'document',
    data: {},
    content: [
      {
        nodeType: 'paragraph',
        data: {},
        content: [
          {
            nodeType: 'text',
            value:
              'Embedded content: https://www.youtube.com/watch?v=Sa4DYkIEzz8',
            marks: [],
            data: {}
          }
        ]
      }
    ]
  }
 
  return <div>{documentToReactComponents(documentIncludesEmbedly, option)}</div>
}

Result (Screenshot):

result

API Docs

useEmbedly

(attributes: EmbedlyAttributes) => Options

You can get Options for @contentful/rich-text-react-renderer and install package to render embedly.

EmbedlyAttributes

Type of Embedly card attributes.

{
  via?: string
  chrome?: '0' | '1'
  theme?: 'light' | 'black'
  image?: string
  embed?: string
  controls?: '0' | '1'
  width?: string
  align?: 'left' | 'center' | 'right'
  recommend?: '0' | '1'
  key?: string
}

Ref: Cards · Embedly Documentation

License

MIT © saitoeku3

/react-contentful-embedly/

    Package Sidebar

    Install

    npm i react-contentful-embedly

    Weekly Downloads

    2

    Version

    0.1.1

    License

    MIT

    Unpacked Size

    8.08 kB

    Total Files

    9

    Last publish

    Collaborators

    • saitoeku3