Socket
Socket
Sign inDemoInstall

@undataforum/gatsby-theme-events-core

Package Overview
Dependencies
10
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @undataforum/gatsby-theme-events-core

This theme adds a Event interface and MdxEvent type to Gatsby sites.


Version published
Weekly downloads
3
Maintainers
1
Install size
25.0 MB
Created
Weekly downloads
 

Readme

Source

@undataforum/gatsby-theme-events-core

A Gatsby theme that adds an Event interface and MdxEvent type to Gatsby sites.

Options

KeyDefault ValueDescription
basePath/Basepath for deployments at path other than root.
collectioneventsThe collection is added to Event nodes. It is also part of the path.
contentPathcontent/eventsLocation of event MDX files and assets. You can organize them in whichever way you want, e.g. place them in sub-directories.
mdxOtherwiseConfiguredfalseSet this flag to true if gatsby-plugin-mdx is already configured for your site.

Any other options will have no effect on the theme, but they will get routed through all tempaltes via pageContext and you can access them from within a template.

Frontmatter

KeyRequiredDescription
idYou can override Gatsby's internal ID with this field. This comes in handy when you want to be able to easily identify and query a specific event, e.g. for a pinned events feature.
titleEvent title. An event's slug is automatically derived from the title.
slugUse this field to overwrite the automatically derived slug.
dateStart date and time. Shortened ISO 8601 timestamp (yyyy-MM-ddTHH:mm), e.g. 2019-08-29T09:00.
endDateEnd date and time. See date.
timezoneTime zone name from tz database, e.g. America/New_York. This is the time zone for your event (should be local time).
moderatorsArray of moderator names.
speakersArray of speaker names.
locationLocation ID. You can localize the location ID in shadowed templates.
descriptionThe default description for SEO purposes is the first paragraph in an event MDX file. With this field you can overrwrite the default.
registrationLinkOptional registration link.
attachmentsArray of relative paths to attachments, e.g. images or PDFs.

Interfaces

EventDescription interface

FieldTypeDescription
idID!Gatsby node GUID.
bodyString!String representation of the description.
textString!Text only representation of the description.

Event interface

FieldTypeDescription
idID!Gatsby node GUID.
collectionString!Collection to which this event belongs.
titleString!Event title.
startDateDate!Start date converted to UTC.
endDateDate!End date converted to UTC.
moderators[String!]Array of moderator names.
speakers[String!]Array of speaker names.
locationString!Location ID (currently not linked to anything).
descriptionEventDescription!Event description (formatted and text).
registrationLinkStringRegistration link.
bodyString!A string representation of the body of the event page.
pathString!Path to generated page.

Type MdxEvent implements Event. If you prefer to use a data source other than MDX files, you can write a child theme that implements the Event interface.

Tagging support

This theme is compatible with @maiertech/gatsby-theme-tags-core, which implements tagging for MDX files. Check its README for more information on how to wire it up. You can add the tagging theme more than once and create multiple independent tag collections. But the most common use case is one tag collection for multiple tagged collections. Use option mdxCollections to configure which collections should be included.

Once you have added the tagging theme to your gatsby-config.js you need to follow these steps:

  1. You can add an optional tags field to the frontmatter of posts. The tags theme will include them in the configured collection and corresponding tag pages. At this point any pages generated by the tags theme are unstyled.
  2. Shadow tag-page.js and Shadow tags-page.js to style tag pages.
  3. Modify the shadowed event-page.js to display the tags. You can use the Tags component to display the tags. Tags are already included in the template query. In oder to assemble paths to tag pages, you can add theme option tagCollection with the tag collection name. All theme options are routed through to the template and accessible via pageContext.

Note that Field description for tagged items is not supported, because description in frontmatter is optional in @undataforum/gatsby-theme-events-core since descriptions default to the first paragraph in MDX files.

Keywords

FAQs

Last updated on 09 Mar 2021

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc