1.2.1 • Published 1 year ago

@apostrophecms/open-graph v1.2.1

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Open Graph

CircleCI Chat on Discord

Open Graph fields for Apostrophe 3

Installation

npm install @apostrophecms/open-graph

Use

Configure @apostrophecms/open-graph in app.js.

const apos = require('apostrophe')({
  shortName: 'project',
  modules: {
    '@apostrophecms/open-graph': {}
  }
});

Setting the baseUrl

Open Graph images will not be set with absolute URLs if the baseUrl is not set. This should either be set statically in app.js, more likely, in environment configuration, such as in data/local.js. Some social media platforms consider an aboslute URL to be a requirement and will not accept the image URL without it.

In app.js as part of your main Apostrophe app

require('apostrophe')({
  shortName: 'mysite',
  baseUrl: 'https://mysite.com',
  modules: {
    // other module configurations
  }
});

As part of an environment configuration in data/local.js

  module.exports = {
    baseUrl: 'https://mysite.com',
    modules: {
      // other environment-specific module configurations
    }
  };

Opting out of Open Graph Fields

Adding openGraph: false to any module will prevent Open Graph fields from being added. Good use cases for this are utility modules, special page types, or piece types that don't have index or show pages.

require('apostrophe')({
  shortName: 'mysite',
  baseUrl: 'https://mysite.com',
  modules: {
    category: {
      options: {
        openGraph: false;
      }
    }
  }
});

The following modules opt out of the Open Graph fields by default:

  • @apostrophecms/global
  • @apostrophecms/user
  • @apostrophecms/image
  • @apostrophecms/image-tag
  • @apostrophecms/file
  • @apostrophecms/file-tag

Field Reference

The following are the fields that are added to pieces and pages

NameDescriptionModule Effected
openGraphTitleOG Title, populates <meta property="og:title" />@apostrophecms/doc-type
openGraphDescriptionOG Description, populates <meta property="og:description" />@apostrophecms/doc-type
openGraphTypeOG Type, populates <meta property="og:type" />, defaults to 'website'@apostrophecms/doc-type
openGraphImageOG Image, populates <meta property="og:image" />@apostrophecms/doc-type
1.2.1

1 year ago

1.2.0

2 years ago

1.1.0

3 years ago

1.0.0

3 years ago

1.0.0-beta.1

3 years ago