scully-plugin-meetup
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

scully-plugin-meetup

The scully-plugin-meetup is a router plugin for Scully that fetches data from the Meetup Event API durigin route discovery. Scully uses the results of the Meetup Event API to render static files for each event.

📦 Installation

To install this plugin with npm run

$ npm install scully-plugin-meetup --save-dev

Usage

Your app has should have an Angular route configured with the path event/:eventId. Scully needs help understanding the route parameter :eventId.

The following is an example of how you could use the scully-plugin-meetup to get eventIds pre-rendered based on the Meetup Event API.

// scully.config.ts
export const config: ScullyConfig = {
  // Add the following to your file
  routes: {
    '/event/:eventId': {
      type: 'meetup',
      eventId: {
        name: 'YOUR_MEETUP_GROUP_NAME',
        property: 'id',
      },
    },
  },
};

Example of configuration

The above example tells Scully to use the meetup plugin for fetching some the data via HTTP whenever it finds a route matching /event/:eventId. The Meetup plugin plucks the provided property name from each of the items and will generate static pages based on all of the events that are in the result.

It is possible to configure the meetup plugin, below an example where you will only get the lastest 10 events from the past.

// scully.config.ts
export const config: ScullyConfig = {
  // Add the following to your file
  routes: {
    '/event/:eventId': {
      type: 'meetup',
      eventId: {
        name: 'YOUR_MEETUP_GROUP_NAME',
        property: 'id',
        amount: 10,
        status: `past`,
      },
    },
  },
};
Configuration property Description Example values
name The name of your meetup group Dutch-Angular-Group
Amount The amount of events the api needs to return 10 (max 100)
Status The status of an event, this can be past or upcoming past
Sorting A function that handles the sorting of the event (eventA, eventB) => (eventA.date < eventB.date ? 1 : -1)

Package Sidebar

Install

npm i scully-plugin-meetup

Weekly Downloads

1

Version

1.0.0

License

MIT

Unpacked Size

7.05 kB

Total Files

8

Last publish

Collaborators

  • jefiozie